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 342342#define X86_BUG_MONITOR X86_BUG(12) /* IPI required to wake up remote CPU */
343343#define X86_BUG_AMD_E400 X86_BUG(13) /* CPU is among the affected by Erratum 400 */
344344#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 */
345347
346348#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)
902902 if (c -> x86_vendor != X86_VENDOR_AMD )
903903 setup_force_cpu_bug (X86_BUG_CPU_MELTDOWN );
904904
905+ setup_force_cpu_bug (X86_BUG_SPECTRE_V1 );
906+ setup_force_cpu_bug (X86_BUG_SPECTRE_V2 );
907+
905908 fpu__init_system (c );
906909
907910#ifdef CONFIG_X86_32
You can’t perform that action at this time.
0 commit comments