aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smpboot.c
diff options
context:
space:
mode:
authorYinghai Lu <yinghai@kernel.org>2010-02-10 04:20:37 -0500
committerH. Peter Anvin <hpa@zytor.com>2010-02-17 20:30:22 -0500
commit2b633e3fac5efada088b57d31e65401f22bcc18f (patch)
treea5a63de9ef9db656dd9c87c7eaf360762fe69759 /arch/x86/kernel/smpboot.c
parent6738762d73a237ec322b04d8b9d55c8fd5d84713 (diff)
smp: Use nr_cpus= to set nr_cpu_ids early
On x86, before prefill_possible_map(), nr_cpu_ids will be NR_CPUS aka CONFIG_NR_CPUS. Add nr_cpus= to set nr_cpu_ids. so we can simulate cpus <=8 are installed on normal config. -v2: accordging to Christoph, acpi_numa_init should use nr_cpu_ids in stead of NR_CPUS. -v3: add doc in kernel-parameters.txt according to Andrew. Signed-off-by: Yinghai Lu <yinghai@kernel.org> LKML-Reference: <1265793639-15071-34-git-send-email-yinghai@kernel.org> Acked-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: H. Peter Anvin <hpa@zytor.com> Cc: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r--arch/x86/kernel/smpboot.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 678d0b8c26f3..eff2fe175422 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -1213,11 +1213,12 @@ __init void prefill_possible_map(void)
1213 1213
1214 total_cpus = max_t(int, possible, num_processors + disabled_cpus); 1214 total_cpus = max_t(int, possible, num_processors + disabled_cpus);
1215 1215
1216 if (possible > CONFIG_NR_CPUS) { 1216 /* nr_cpu_ids could be reduced via nr_cpus= */
1217 if (possible > nr_cpu_ids) {
1217 printk(KERN_WARNING 1218 printk(KERN_WARNING
1218 "%d Processors exceeds NR_CPUS limit of %d\n", 1219 "%d Processors exceeds NR_CPUS limit of %d\n",
1219 possible, CONFIG_NR_CPUS); 1220 possible, nr_cpu_ids);
1220 possible = CONFIG_NR_CPUS; 1221 possible = nr_cpu_ids;
1221 } 1222 }
1222 1223
1223 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n", 1224 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",