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

From: James Bottomley
Date: Tue Apr 14 2009 - 11:53:34 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 58d24ef..0567c0a 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -357,7 +357,7 @@ void __cpuinit smp_store_cpu_info(int id)

copy_cpuinfo_x86(c, &boot_cpu_data);
c->cpu_index = id;
- if (id != 0)
+ if (id != boot_cpu_id)
identify_secondary_cpu(c);
}

--
1.6.2.1

--
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/