[PATCH 04/13] [VOYAGER] x86: use boot_cpu_id instead of zero for checking boot processor

From: James Bottomley
Date: Sun Mar 08 2009 - 12:49:58 EST


The function smp_store_cpu_info() checks zero to see if it's
identifying a secondary. It should check boot_cpu_id.

Signed-off-by: James Bottomley <James.Bottomley@xxxxxxxxxxxxxxxxxxxxx>
---
arch/x86/kernel/smpboot.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 249334f..070fa13 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -421,7 +421,7 @@ void __cpuinit smp_store_cpu_info(int id)

*c = boot_cpu_data;
c->cpu_index = id;
- if (id != 0)
+ if (id != boot_cpu_id)
identify_secondary_cpu(c);
smp_apply_quirks(c);
}
--
1.6.1.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/