diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2021-02-20 19:06:34 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-02-20 19:06:34 -0800 |
commit | 3e89c7ea7a828fec5694101e0f0ff7240e634470 (patch) | |
tree | 8218f84745ee3cf5eabce6c76b8eb4cf5d82a017 /arch/x86/kernel/cpu/intel.c | |
parent | 8518496639123ebcceb1be173c4f00edf178bfbd (diff) | |
parent | 9223d0dccb8f8523754122f68316dd1a4f39f7f8 (diff) | |
download | linux-3e89c7ea7a828fec5694101e0f0ff7240e634470.tar.gz linux-3e89c7ea7a828fec5694101e0f0ff7240e634470.tar.bz2 linux-3e89c7ea7a828fec5694101e0f0ff7240e634470.zip |
Merge tag 'ras_updates_for_v5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull RAS updates from Borislav Petkov:
- move therm_throt.c to the thermal framework, where it belongs.
- identify CPUs which miss to enter the broadcast handler, as an
additional debugging aid.
* tag 'ras_updates_for_v5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
thermal: Move therm_throt there from x86/mce
x86/mce: Get rid of mcheck_intel_therm_init()
x86/mce: Make mce_timed_out() identify holdout CPUs
Diffstat (limited to 'arch/x86/kernel/cpu/intel.c')
-rw-r--r-- | arch/x86/kernel/cpu/intel.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c index 816fdbec795a..0e422a544835 100644 --- a/arch/x86/kernel/cpu/intel.c +++ b/arch/x86/kernel/cpu/intel.c @@ -24,6 +24,7 @@ #include <asm/traps.h> #include <asm/resctrl.h> #include <asm/numa.h> +#include <asm/thermal.h> #ifdef CONFIG_X86_64 #include <linux/topology.h> @@ -719,6 +720,8 @@ static void init_intel(struct cpuinfo_x86 *c) tsx_disable(); split_lock_init(); + + intel_init_thermal(c); } #ifdef CONFIG_X86_32 |