diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-06-08 21:29:22 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-10 05:32:09 -0400 |
commit | e0da33646826b66ef933d47ea2fb7a693fd849bf (patch) | |
tree | 398d86b96531e574c4710ea1538806b7e0ae0fef /arch/x86/kernel/apic_64.c | |
parent | c3ff01672a23fabb40d4b80ff25a845582fd07c2 (diff) |
x86: introduce max_physical_apicid for bigsmp switching
a multi-socket test-system with 3 or 4 ioapics, when 4 dualcore cpus or
2 quadcore cpus installed, needs to switch to bigsmp or physflat.
CPU apic id is [4,11] instead of [0,7], and we need to check max apic
id instead of cpu numbers.
also add check for 32 bit when acpi is not compiled in or acpi=off.
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/apic_64.c')
-rw-r--r-- | arch/x86/kernel/apic_64.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kernel/apic_64.c b/arch/x86/kernel/apic_64.c index 54087f920f2f..1872555b98a3 100644 --- a/arch/x86/kernel/apic_64.c +++ b/arch/x86/kernel/apic_64.c | |||
@@ -1093,6 +1093,9 @@ void __cpuinit generic_processor_info(int apicid, int version) | |||
1093 | */ | 1093 | */ |
1094 | cpu = 0; | 1094 | cpu = 0; |
1095 | } | 1095 | } |
1096 | if (apicid > max_physical_apicid) | ||
1097 | max_physical_apicid = apicid; | ||
1098 | |||
1096 | /* are we being called early in kernel startup? */ | 1099 | /* are we being called early in kernel startup? */ |
1097 | if (x86_cpu_to_apicid_early_ptr) { | 1100 | if (x86_cpu_to_apicid_early_ptr) { |
1098 | u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr; | 1101 | u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr; |