diff options
Diffstat (limited to 'arch/x86/kernel/cpu/common.c')
-rw-r--r-- | arch/x86/kernel/cpu/common.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index 775f10100d7f..c9176bae7fd8 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c | |||
@@ -904,6 +904,14 @@ static void __init early_identify_cpu(struct cpuinfo_x86 *c) | |||
904 | 904 | ||
905 | setup_force_cpu_cap(X86_FEATURE_ALWAYS); | 905 | setup_force_cpu_cap(X86_FEATURE_ALWAYS); |
906 | fpu__init_system(c); | 906 | fpu__init_system(c); |
907 | |||
908 | #ifdef CONFIG_X86_32 | ||
909 | /* | ||
910 | * Regardless of whether PCID is enumerated, the SDM says | ||
911 | * that it can't be enabled in 32-bit mode. | ||
912 | */ | ||
913 | setup_clear_cpu_cap(X86_FEATURE_PCID); | ||
914 | #endif | ||
907 | } | 915 | } |
908 | 916 | ||
909 | void __init early_cpu_init(void) | 917 | void __init early_cpu_init(void) |