Explorar o código

[PATCH] x86_64: fix SMP boot lockup on some machines

Fixes boot up lockups on some machines where CPU apic ids don't start with
0

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Andi Kleen %!s(int64=20) %!d(string=hai) anos
pai
achega
54264911ce
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      arch/x86_64/kernel/smpboot.c

+ 1 - 1
arch/x86_64/kernel/smpboot.c

@@ -229,7 +229,7 @@ static __cpuinit void sync_master(void *arg)
 {
 	unsigned long flags, i;
 
-	if (smp_processor_id() != boot_cpu_id)
+	if (smp_processor_id() != 0)
 		return;
 
 	go[MASTER] = 0;