summaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smpboot_64.c
diff options
context:
space:
mode:
authorYinghai Lu2008-01-30 13:33:39 +0100
committerIngo Molnar2008-01-30 13:33:39 +0100
commit23916d49155552767726f116daf32dfb2aa3af23 (patch)
tree23fe5c6a6914c2465b9ecd94092e20707e86aa52 /arch/x86/kernel/smpboot_64.c
parentx86: not set boot cpu in cpu_present_map again (diff)
downloadkernel-qcow2-linux-23916d49155552767726f116daf32dfb2aa3af23.tar.gz
kernel-qcow2-linux-23916d49155552767726f116daf32dfb2aa3af23.tar.xz
kernel-qcow2-linux-23916d49155552767726f116daf32dfb2aa3af23.zip
x86: not set boot cpu in cpu_online_map in smp_prepare_boot_cpu()
in init/main.c boot_cpu_init() does that before. Signed-off-by: Yinghai Lu <yinghai.lu@sun.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/smpboot_64.c')
-rw-r--r--arch/x86/kernel/smpboot_64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/smpboot_64.c b/arch/x86/kernel/smpboot_64.c
index 4e14ecb90764..cc64b8085c2a 100644
--- a/arch/x86/kernel/smpboot_64.c
+++ b/arch/x86/kernel/smpboot_64.c
@@ -921,7 +921,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus)
void __init smp_prepare_boot_cpu(void)
{
int me = smp_processor_id();
- cpu_set(me, cpu_online_map);
+ /* already set me in cpu_online_map in boot_cpu_init() */
cpu_set(me, cpu_callout_map);
per_cpu(cpu_state, me) = CPU_ONLINE;
}