aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/cpu/intel_cacheinfo.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c
index 483eda96e102..72401264912c 100644
--- a/arch/x86/kernel/cpu/intel_cacheinfo.c
+++ b/arch/x86/kernel/cpu/intel_cacheinfo.c
@@ -291,6 +291,14 @@ amd_check_l3_disable(int index, struct _cpuid4_info_regs *this_leaf)
291{ 291{
292 if (index < 3) 292 if (index < 3)
293 return; 293 return;
294
295 if (boot_cpu_data.x86 == 0x11)
296 return;
297
298 /* see erratum #382 */
299 if ((boot_cpu_data.x86 == 0x10) && (boot_cpu_data.x86_model < 0x8))
300 return;
301
294 this_leaf->can_disable = 1; 302 this_leaf->can_disable = 1;
295} 303}
296 304