diff options
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r-- | arch/x86/kernel/smpboot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index ddb94ef37789..6978f1bf6533 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -114,7 +114,7 @@ void smp_checks(void) | |||
114 | * approved Athlon | 114 | * approved Athlon |
115 | */ | 115 | */ |
116 | if (tainted & TAINT_UNSAFE_SMP) { | 116 | if (tainted & TAINT_UNSAFE_SMP) { |
117 | if (cpus_weight(cpu_present_map)) | 117 | if (num_online_cpus()) |
118 | printk(KERN_INFO "WARNING: This combination of AMD" | 118 | printk(KERN_INFO "WARNING: This combination of AMD" |
119 | "processors is not suitable for SMP.\n"); | 119 | "processors is not suitable for SMP.\n"); |
120 | else | 120 | else |
@@ -258,7 +258,7 @@ void impress_friends(void) | |||
258 | bogosum += cpu_data(cpu).loops_per_jiffy; | 258 | bogosum += cpu_data(cpu).loops_per_jiffy; |
259 | printk(KERN_INFO | 259 | printk(KERN_INFO |
260 | "Total of %d processors activated (%lu.%02lu BogoMIPS).\n", | 260 | "Total of %d processors activated (%lu.%02lu BogoMIPS).\n", |
261 | cpus_weight(cpu_present_map), | 261 | num_online_cpus(), |
262 | bogosum/(500000/HZ), | 262 | bogosum/(500000/HZ), |
263 | (bogosum/(5000/HZ))%100); | 263 | (bogosum/(5000/HZ))%100); |
264 | 264 | ||