diff options
author | Borislav Petkov <bp@suse.de> | 2013-03-20 14:07:25 (GMT) |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2013-04-02 17:12:53 (GMT) |
commit | 93a829e8e2c292f1d30155f64803101ca1cb7d3d (patch) | |
tree | 14543e11fa52235976ed9cda780e65d294bfd1af /arch/x86/kernel/cpu/proc.c | |
parent | e2604b49e8a8827e8bc5b61bc0c5a889e028fdad (diff) | |
download | linux-93a829e8e2c292f1d30155f64803101ca1cb7d3d.tar.xz |
x86, cpu: Convert FDIV bug detection
... to the new facility. Add a reference to the wikipedia article
explaining the FDIV test we're doing here.
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: http://lkml.kernel.org/r/1363788448-31325-4-git-send-email-bp@alien8.de
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/kernel/cpu/proc.c')
-rw-r--r-- | arch/x86/kernel/cpu/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/proc.c b/arch/x86/kernel/cpu/proc.c index 2d60b2b..5dfb6c6 100644 --- a/arch/x86/kernel/cpu/proc.c +++ b/arch/x86/kernel/cpu/proc.c @@ -34,7 +34,7 @@ static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c) "fpu_exception\t: %s\n" "cpuid level\t: %d\n" "wp\t\t: %s\n", - c->fdiv_bug ? "yes" : "no", + static_cpu_has_bug(X86_BUG_FDIV) ? "yes" : "no", static_cpu_has_bug(X86_BUG_F00F) ? "yes" : "no", c->coma_bug ? "yes" : "no", c->hard_math ? "yes" : "no", |