diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2013-01-14 10:08:50 +0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-01-14 18:17:17 +0400 |
commit | 837576642167d701f983e4def0d3936b514a28ae (patch) | |
tree | 2f03e38dff819054b70eb3f499e6dab873bb4c96 /arch/arm/mach-imx/platsmp.c | |
parent | afc10301f70350b490ca518ceb793928854b5453 (diff) | |
download | linux-837576642167d701f983e4def0d3936b514a28ae.tar.xz |
ARM: imx: disable cpu in .cpu_kill hook
It's buggy to disable the cpu that is being hot-unplugged in .cpu_die
hook which runs on the cpu itself. Instead, it should be done in
.cpu_kill which runs on the thread (another cpu) that asks for shutting
down the cpu. Move imx_enable_cpu(cpu, false) call into .cpu_kill
hook, and leave the cpu to be hot-unplugged in WFI within .cpu_die,
so that we can get a more stable cpu hot-plug operation.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-imx/platsmp.c')
-rw-r--r-- | arch/arm/mach-imx/platsmp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/platsmp.c b/arch/arm/mach-imx/platsmp.c index 3777b805b76b..66fae885c842 100644 --- a/arch/arm/mach-imx/platsmp.c +++ b/arch/arm/mach-imx/platsmp.c @@ -92,5 +92,6 @@ struct smp_operations imx_smp_ops __initdata = { .smp_boot_secondary = imx_boot_secondary, #ifdef CONFIG_HOTPLUG_CPU .cpu_die = imx_cpu_die, + .cpu_kill = imx_cpu_kill, #endif }; |