aboutsummaryrefslogtreecommitdiff
path: root/modules/devices/x86
diff options
context:
space:
mode:
authorBurt P <pburt0@gmail.com>2018-01-25 19:07:12 -0600
committerLeandro A. F. Pereira <leandro@hardinfo.org>2018-02-09 08:24:50 -0800
commitdd4f8f186170e0532aea3126a7c50e95eb5a8d84 (patch)
treebae29c0db0fd59dd8f518cbbc7892bbac09381aa /modules/devices/x86
parentf7e15c89f7c5ca3c7e45c097f1dae588e6969899 (diff)
x86: metldown and spectre bug flags
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/devices/x86')
-rw-r--r--modules/devices/x86/x86_data.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/devices/x86/x86_data.c b/modules/devices/x86/x86_data.c
index eb8ba3eb..c052f4e1 100644
--- a/modules/devices/x86/x86_data.c
+++ b/modules/devices/x86/x86_data.c
@@ -278,7 +278,10 @@ static struct {
{ "bug:swapgs_fence", NC_("x86-flag", /*/bug:swapgs_fence*/ "SWAPGS without input dep on GS") },
{ "bug:monitor", NC_("x86-flag", /*/bug:monitor*/ "IPI required to wake up remote CPU") },
{ "bug:amd_e400", NC_("x86-flag", /*/bug:amd_e400*/ "AMD Erratum 400") },
- { "bug:cpu_insecure", NC_("x86-flag", /*/bug:cpu_insecure*/ "Page table isolation is being used") },
+ { "bug:cpu_insecure", NC_("x86-flag", /*/bug:cpu_insecure & bug:cpu_meltdown*/ "CPU is affected by meltdown attack and needs kernel page table isolation") },
+ { "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") },
/* power management
* ... from arch/x86/kernel/cpu/powerflags.h */
{ "pm:ts", NC_("x86-flag", /*/flag:pm:ts*/ "temperature sensor") },