diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-01-11 09:07:19 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-01-11 09:07:19 -0800 |
commit | e8af37f3f488e7adce2b5c6f6dfe8c83c2662e1f (patch) | |
tree | d91849ad07efae053ed46efec47f077bdfb655f9 /arch/x86/include | |
parent | 8e1b295b693cbf2d8499c24fbb1f8f50c58771e3 (diff) | |
parent | e4f358916d528d479c3c12bd2fd03f2d5a576380 (diff) | |
download | linux-e8af37f3f488e7adce2b5c6f6dfe8c83c2662e1f.tar.gz linux-e8af37f3f488e7adce2b5c6f6dfe8c83c2662e1f.tar.bz2 linux-e8af37f3f488e7adce2b5c6f6dfe8c83c2662e1f.zip |
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 fixes from Ingo Molnar:
"A 32-bit build fix, CONFIG_RETPOLINE fixes and rename CONFIG_RESCTRL
to CONFIG_X86_RESCTRL"
* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86, modpost: Replace last remnants of RETPOLINE with CONFIG_RETPOLINE
x86/cache: Rename config option to CONFIG_X86_RESCTRL
samples/seccomp: Fix 32-bit build
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/resctrl_sched.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/resctrl_sched.h b/arch/x86/include/asm/resctrl_sched.h index 54990fe2a3ae..40ebddde6ac2 100644 --- a/arch/x86/include/asm/resctrl_sched.h +++ b/arch/x86/include/asm/resctrl_sched.h @@ -2,7 +2,7 @@ #ifndef _ASM_X86_RESCTRL_SCHED_H #define _ASM_X86_RESCTRL_SCHED_H -#ifdef CONFIG_RESCTRL +#ifdef CONFIG_X86_RESCTRL #include <linux/sched.h> #include <linux/jump_label.h> @@ -88,6 +88,6 @@ static inline void resctrl_sched_in(void) static inline void resctrl_sched_in(void) {} -#endif /* CONFIG_RESCTRL */ +#endif /* CONFIG_X86_RESCTRL */ #endif /* _ASM_X86_RESCTRL_SCHED_H */ |