diff options
author | Burt P <pburt0@gmail.com> | 2018-05-29 05:12:50 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2018-05-29 07:02:18 -0700 |
commit | 7da8583b97bf871887fd2bc1ee4b935de531ea6b (patch) | |
tree | c23aeda9bad468392621ed27123d92ff33c2f9d3 /modules/devices/x86/x86_data.c | |
parent | cbee641dde7a94f456b7350b1902bfb35ae6af85 (diff) |
x86: CPU bug flag for speculative store bypass attack
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/devices/x86/x86_data.c')
-rw-r--r-- | modules/devices/x86/x86_data.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/devices/x86/x86_data.c b/modules/devices/x86/x86_data.c index c052f4e1..dbc95952 100644 --- a/modules/devices/x86/x86_data.c +++ b/modules/devices/x86/x86_data.c @@ -282,6 +282,7 @@ static struct { { "bug:cpu_meltdown", NC_("x86-flag", /*/bug:cpu_insecure & bug:cpu_meltdown*/ "CPU is affected by meltdown attack and needs kernel page table isolation") }, { "bug:spectre_v1", NC_("x86-flag", /*/bug:spectre_v1*/ "CPU is affected by Spectre variant 1 attack with conditional branches") }, { "bug:spectre_v2", NC_("x86-flag", /*/bug:spectre_v2*/ "CPU is affected by Spectre variant 2 attack with indirect branches") }, + { "bug:spec_store_bypass", NC_("x86-flag", /*/bug:spec_store_bypass*/ "CPU is affected by speculative store bypass attack") }, /* power management * ... from arch/x86/kernel/cpu/powerflags.h */ { "pm:ts", NC_("x86-flag", /*/flag:pm:ts*/ "temperature sensor") }, |