diff options
author | Mike Travis <travis@sgi.com> | 2007-12-19 23:20:19 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-12-19 23:20:19 +0100 |
commit | fbdcf18df73758b2e187ab94678b30cd5f6ff9f9 (patch) | |
tree | c4908af0cfb6f82f5034a9adfa823bea01e38ff3 /arch | |
parent | 3d054f0fade192b454592817c16e0f49e3e295dc (diff) | |
download | op-kernel-dev-fbdcf18df73758b2e187ab94678b30cd5f6ff9f9.zip op-kernel-dev-fbdcf18df73758b2e187ab94678b30cd5f6ff9f9.tar.gz |
x86: fix show cpuinfo cpu number always zero
when called by setup_arch) after smp_store_cpu_info() had set it to the
correct value.
The error shows up in 'cat /proc/cpuinfo' will all cpus = 0.
Signed-off-by: Mike Travis <travis@sgi.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Christoph Lameter <clameter@sgi.com>
Cc: Jack Steiner <steiner@sgi.com>
Cc: Suresh B Siddha <suresh.b.siddha@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/smpboot_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/smpboot_64.c b/arch/x86/kernel/smpboot_64.c index 500670c..5948895 100644 --- a/arch/x86/kernel/smpboot_64.c +++ b/arch/x86/kernel/smpboot_64.c @@ -141,8 +141,8 @@ static void __cpuinit smp_store_cpu_info(int id) struct cpuinfo_x86 *c = &cpu_data(id); *c = boot_cpu_data; - c->cpu_index = id; identify_cpu(c); + c->cpu_index = id; print_cpu_info(c); } |