From: Stephen Warren <swarren@xxxxxxxxxx> On Tegra at least, this change allows kexec to work with SMP enabled. Without this, machine_shutdown() simply puts all CPUs into a loop. If the code of that loop is over-written, the CPUs may hang or crash (which I do observe in practice), or cause the kexec'd kernel not to be able to initialize them. This fix has the added benefit that the kexec always happens on the boot CPU, and thus kexec mirrors the initial kernel boot as much as possible. Signed-off-by: Stephen Warren <swarren at nvidia.com> --- Russell, I assume this should go into the ARM patch tracker if OK? arch/arm/kernel/process.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index f79dd1e..1893bda 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c @@ -239,6 +239,7 @@ __setup("reboot=", reboot_setup); void machine_shutdown(void) { + disable_nonboot_cpus(); #ifdef CONFIG_SMP smp_send_stop(); #endif -- 1.7.10.4