diff options
| author | Thomas Gleixner <[email protected]> | 2019-05-06 12:04:12 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2019-05-06 12:04:12 +0200 | 
| commit | fb4e0592654adb31bc6f3a738d6499b816a655d6 (patch) | |
| tree | e6edaf18cf3a7f49e93fb51de5a47f4b9e786f53 /arch/x86/kernel/cpu/resctrl/rdtgroup.c | |
| parent | 471ba0e686cb13752bc1ff3216c54b69a2d250ea (diff) | |
| parent | 16e32c3cde7763ab875b9030b443ecbc8e352d8a (diff) | |
Merge tag 'irqchip-5.2' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/core
Pull irqchip updates from Marc Zyngier
- The huge (and terrifying) TI INTR/INTA set of drivers
- Rewrite of the stm32mp1-exti driver as a platform driver
- Update the IOMMU MSI mapping API to be RT friendly
- A number of cleanups and other low impact fixes
Diffstat (limited to 'arch/x86/kernel/cpu/resctrl/rdtgroup.c')
| -rw-r--r-- | arch/x86/kernel/cpu/resctrl/rdtgroup.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/arch/x86/kernel/cpu/resctrl/rdtgroup.c b/arch/x86/kernel/cpu/resctrl/rdtgroup.c index 399601eda8e4..54b9eef3eea9 100644 --- a/arch/x86/kernel/cpu/resctrl/rdtgroup.c +++ b/arch/x86/kernel/cpu/resctrl/rdtgroup.c @@ -2039,14 +2039,14 @@ out:  enum rdt_param {  	Opt_cdp,  	Opt_cdpl2, -	Opt_mba_mpbs, +	Opt_mba_mbps,  	nr__rdt_params  };  static const struct fs_parameter_spec rdt_param_specs[] = {  	fsparam_flag("cdp",		Opt_cdp),  	fsparam_flag("cdpl2",		Opt_cdpl2), -	fsparam_flag("mba_mpbs",	Opt_mba_mpbs), +	fsparam_flag("mba_MBps",	Opt_mba_mbps),  	{}  }; @@ -2072,7 +2072,7 @@ static int rdt_parse_param(struct fs_context *fc, struct fs_parameter *param)  	case Opt_cdpl2:  		ctx->enable_cdpl2 = true;  		return 0; -	case Opt_mba_mpbs: +	case Opt_mba_mbps:  		if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)  			return -EINVAL;  		ctx->enable_mba_mbps = true; |