aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu/intel.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-09-05 03:21:21 -0400
committerIngo Molnar <mingo@elte.hu>2008-09-05 03:21:21 -0400
commit9042763808c5285a1a61b45b0fe98a710a4c903c (patch)
tree349be736a3b56a64c8835df03f127959bfc6e0e0 /arch/x86/kernel/cpu/intel.c
parent446d27338d3b422dd3dfe496d0f362230994d059 (diff)
parentaa3341a168883654d1b13f5931c5ed2762537831 (diff)
Merge branch 'x86/x2apic' into x86/core
Conflicts: arch/x86/kernel/cpu/common_64.c Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu/intel.c')
-rw-r--r--arch/x86/kernel/cpu/intel.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c
index c5ac08124adc..959417b8cd64 100644
--- a/arch/x86/kernel/cpu/intel.c
+++ b/arch/x86/kernel/cpu/intel.c
@@ -176,9 +176,16 @@ static void __cpuinit init_intel(struct cpuinfo_x86 *c)
176 if (p) 176 if (p)
177 strcpy(c->x86_model_id, p); 177 strcpy(c->x86_model_id, p);
178 178
179 c->x86_max_cores = num_cpu_cores(c); 179 detect_extended_topology(c);
180 180
181 detect_ht(c); 181 if (!cpu_has(c, X86_FEATURE_XTOPOLOGY)) {
182 /*
183 * let's use the legacy cpuid vector 0x1 and 0x4 for topology
184 * detection.
185 */
186 c->x86_max_cores = num_cpu_cores(c);
187 detect_ht(c);
188 }
182 189
183 /* Work around errata */ 190 /* Work around errata */
184 Intel_errata_workarounds(c); 191 Intel_errata_workarounds(c);