xen: don't bother to stop other cpus on shutdown/reboot
authorJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Mon, 29 Nov 2010 22:16:53 +0000 (14:16 -0800)
committerJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Mon, 29 Nov 2010 22:16:53 +0000 (14:16 -0800)
Xen will shoot all the VCPUs when we do a shutdown hypercall, so there's
no need to do it manually.

In any case it will fail because all the IPI irqs have been pulled
down by this point, so the cross-CPU calls will simply hang forever.

Until change 76fac077db6b34e2c6383a7b4f3f4f7b7d06d8ce the function calls
were not synchronously waited for, so this wasn't apparent.  However after
that change the calls became synchronous leading to a hang on shutdown
on multi-VCPU guests.

Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Cc: Stable Kernel <stable@kernel.org>
Cc: Alok Kataria <akataria@vmware.com>
arch/x86/xen/enlighten.c

index 235c0f4d3861da6f1c9d64ded710c7c2176cf895..4a5973abefc8e5598d1101897938047899b7c9eb 100644 (file)
@@ -1016,10 +1016,6 @@ static void xen_reboot(int reason)
 {
        struct sched_shutdown r = { .reason = reason };
 
-#ifdef CONFIG_SMP
-       stop_other_cpus();
-#endif
-
        if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
                BUG();
 }
This page took 0.045735 seconds and 5 git commands to generate.