diff options
| author | Nikhil P Rao <[email protected]> | 2011-05-25 10:18:41 -0700 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2011-05-25 23:01:08 +0200 |
| commit | 8b27f2ff7a24f0735c96055e676872f05398d99b (patch) | |
| tree | 0625fa8ee1323e78cdde3588d04b62a2fce2107c /arch/x86/kernel | |
| parent | af6a25f0e1ec0265c267e6ee4513925eaba6d0ed (diff) | |
x86: Remove unnecessary check in detect_ht()
This patch removes a check that causes incorrect scheduler
domain setup (SMP instead of SMT) and bootlog warning messages
when cpuid extensions for topology enumeration are not supported
and the number of processors reported to the OS is smaller than
smp_num_siblings.
Acked-by: Suresh Siddha <[email protected]>
Signed-off-by: Nikhil P Rao <[email protected]>
Link: http://lkml.kernel.org/r/1306343921.19325.1.camel@fedora13
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'arch/x86/kernel')
| -rw-r--r-- | arch/x86/kernel/cpu/common.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index c8b41623377f..53f02f5d8cce 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c @@ -477,13 +477,6 @@ void __cpuinit detect_ht(struct cpuinfo_x86 *c) if (smp_num_siblings <= 1) goto out; - if (smp_num_siblings > nr_cpu_ids) { - pr_warning("CPU: Unsupported number of siblings %d", - smp_num_siblings); - smp_num_siblings = 1; - return; - } - index_msb = get_count_order(smp_num_siblings); c->phys_proc_id = apic->phys_pkg_id(c->initial_apicid, index_msb); |