Re: [PATCH v3 11/18] x86/intel_rdt: Add basic resctrl filesystem support

2016-10-10 Thread Luck, Tony
On Sun, Oct 09, 2016 at 05:31:25PM -0500, Nilay Vaish wrote: > > +static struct dentry *rdt_mount(struct file_system_type *fs_type, > > + int flags, const char *unused_dev_name, > > + void *data) > > +{ > > + struct dentry *dentry; >

Re: [PATCH v3 11/18] x86/intel_rdt: Add basic resctrl filesystem support

2016-10-09 Thread Nilay Vaish
On 7 October 2016 at 21:45, Fenghua Yu wrote: > From: Fenghua Yu > > diff --git a/arch/x86/include/asm/intel_rdt.h > b/arch/x86/include/asm/intel_rdt.h > index bad8dc7..f63815c 100644 > --- a/arch/x86/include/asm/intel_rdt.h > +++ b/arch/x86/include/asm/intel_rdt.h > @@ -2,6 +2,23 @@ > #define

[PATCH v3 11/18] x86/intel_rdt: Add basic resctrl filesystem support

2016-10-07 Thread Fenghua Yu
From: Fenghua Yu Use kernfs as basis for our user interface filesystem. This patch supports mount/umount, and one mount parameter "cdp" to enable code/data prioritization (though all we do at this point is ensure that the system can support CDP). The file system is not populated yet in this patc