diff options
author | Borislav Petkov <bp@suse.de> | 2013-03-20 15:07:23 +0100 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2013-04-02 10:12:52 -0700 |
commit | 65fc985b37dc241c4db7cd32adcbc989193fe3c8 (patch) | |
tree | b530d4cb1b0a42ad8c220639aa7f9f970e8774df /arch/x86/include/asm/processor.h | |
parent | 07961ac7c0ee8b546658717034fe692fd12eefa9 (diff) | |
download | talos-obmc-linux-65fc985b37dc241c4db7cd32adcbc989193fe3c8.tar.gz talos-obmc-linux-65fc985b37dc241c4db7cd32adcbc989193fe3c8.zip |
x86, cpu: Expand cpufeature facility to include cpu bugs
We add another 32-bit vector at the end of the ->x86_capability
bitvector which collects bugs present in CPUs. After all, a CPU bug is a
kind of a capability, albeit a strange one.
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: http://lkml.kernel.org/r/1363788448-31325-2-git-send-email-bp@alien8.de
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/include/asm/processor.h')
-rw-r--r-- | arch/x86/include/asm/processor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index 3270116b1488..23c8081d3870 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h @@ -107,7 +107,7 @@ struct cpuinfo_x86 { __u32 extended_cpuid_level; /* Maximum supported CPUID level, -1=no CPUID: */ int cpuid_level; - __u32 x86_capability[NCAPINTS]; + __u32 x86_capability[NCAPINTS + NBUGINTS]; char x86_vendor_id[16]; char x86_model_id[64]; /* in KB - valid for CPUS which support this call: */ |