File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 342
342
#define X86_BUG_MONITOR X86_BUG(12) /* IPI required to wake up remote CPU */
343
343
#define X86_BUG_AMD_E400 X86_BUG(13) /* CPU is among the affected by Erratum 400 */
344
344
#define X86_BUG_CPU_MELTDOWN X86_BUG(14) /* CPU is affected by meltdown attack and needs kernel page table isolation */
345
+ #define X86_BUG_SPECTRE_V1 X86_BUG(15) /* CPU is affected by Spectre variant 1 attack with conditional branches */
346
+ #define X86_BUG_SPECTRE_V2 X86_BUG(16) /* CPU is affected by Spectre variant 2 attack with indirect branches */
345
347
346
348
#endif /* _ASM_X86_CPUFEATURES_H */
Original file line number Diff line number Diff line change @@ -902,6 +902,9 @@ static void __init early_identify_cpu(struct cpuinfo_x86 *c)
902
902
if (c -> x86_vendor != X86_VENDOR_AMD )
903
903
setup_force_cpu_bug (X86_BUG_CPU_MELTDOWN );
904
904
905
+ setup_force_cpu_bug (X86_BUG_SPECTRE_V1 );
906
+ setup_force_cpu_bug (X86_BUG_SPECTRE_V2 );
907
+
905
908
fpu__init_system (c );
906
909
907
910
#ifdef CONFIG_X86_32
You can’t perform that action at this time.
0 commit comments