| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH V3 15/16] MIPS: Fix poweroff failure when HOTPLUG_CPU configured. |
| From: | Huacai Chen <chenhuacai@gmail.com> |
| Date: | Fri, 22 Jun 2012 11:01:12 +0800 |
| Cc: | linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, Fuxin Zhang <zhangfx@lemote.com>, Zhangjin Wu <wuzhangjin@gmail.com>, Huacai Chen <chenhc@lemote.com>, Hongliang Tao <taohl@lemote.com>, Hua Yan <yanh@lemote.com>, stable@vger.kernel.org |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=hPmFYMIfYw1sBWfuaBWY4ntQdhShoVbGNLw2OFGmkAE=; b=b3OGTNiGSKAOQ1CJlsu3dljRIuYEM1fx2a1Q72woWzVO0mMjDOpOcY6rk+bduBOhZ7 lbW7tMb1851KLgZ4RmbHnI/J77zWAnRzB8A9VHPlShRxTp29nQtupiLmPaeT/Qh8QgVj hD009rfDO+OAZocDC+saBdkyC4vhyujyyc24DwUbNnhTDKmhL44ieyHakPXwFbo1Vd75 nQJHYuZX59BoIEIqRcpO5JMQwpXYtYUesfvTvsuCVAAaIvn2E8ClaTQhuDu6/L2t6i8M l90A+aGy2B7TVhaKs2SMcTjESHHwT0JXbNZ/2fTaaUdL/76qncqklmG4l3cArv2n43wk lRTg== |
| In-reply-to: | <1340334073-17804-1-git-send-email-chenhc@lemote.com> |
| List-archive: | <http://www.linux-mips.org/archives/linux-mips/> |
| List-help: | <mailto:ecartis@linux-mips.org?Subject=help> |
| List-id: | linux-mips <linux-mips.eddie.linux-mips.org> |
| List-owner: | <mailto:ralf@linux-mips.org> |
| List-post: | <mailto:linux-mips@linux-mips.org> |
| List-software: | Ecartis version 1.0.0 |
| List-subscribe: | <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips> |
| List-unsubscribe: | <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips> |
| References: | <1340334073-17804-1-git-send-email-chenhc@lemote.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
When poweroff machine, kernel_power_off() call disable_nonboot_cpus().
And if we have HOTPLUG_CPU configured, disable_nonboot_cpus() is not an
empty function but attempt to actually disable the nonboot cpus. Since
system state is SYSTEM_POWER_OFF, play_dead() won't be called and thus
disable_nonboot_cpus() hangs. Therefore, we make this patch to avoid
poweroff failure.
Signed-off-by: Huacai Chen <chenhc@lemote.com>
Signed-off-by: Hongliang Tao <taohl@lemote.com>
Signed-off-by: Hua Yan <yanh@lemote.com>
Reviewed-by: Yong Zhang <yong.zhang@windriver.com>
Cc: stable@vger.kernel.org
---
arch/mips/kernel/process.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c
index e9a5fd7..69b17a9 100644
--- a/arch/mips/kernel/process.c
+++ b/arch/mips/kernel/process.c
@@ -72,9 +72,7 @@ void __noreturn cpu_idle(void)
}
}
#ifdef CONFIG_HOTPLUG_CPU
- if (!cpu_online(cpu) && !cpu_isset(cpu, cpu_callin_map) &&
- (system_state == SYSTEM_RUNNING ||
- system_state == SYSTEM_BOOTING))
+ if (!cpu_online(cpu) && !cpu_isset(cpu, cpu_callin_map))
play_dead();
#endif
rcu_idle_exit();
--
1.7.7.3
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH V3 14/16] MIPS: Loongson 3: Add CPU hotplug support., Huacai Chen |
|---|---|
| Next by Date: | [PATCH V3 16/16] MIPS: Loongson: Add a Loongson-3 default config file., Huacai Chen |
| Previous by Thread: | [PATCH V3 14/16] MIPS: Loongson 3: Add CPU hotplug support., Huacai Chen |
| Next by Thread: | [PATCH V3 16/16] MIPS: Loongson: Add a Loongson-3 default config file., Huacai Chen |
| Indexes: | [Date] [Thread] [Top] [All Lists] |