| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | Re: [PATCH V2] MIPS: Fix poweroff failure when HOTPLUG_CPU configured. |
| From: | Huacai Chen <chenhc@lemote.com> |
| Date: | Thu, 16 Aug 2012 11:47:06 +0800 |
| Cc: | linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, Fuxin Zhang <zhangfx@lemote.com>, Zhangjin Wu <wuzhangjin@gmail.com>, Hongliang Tao <taohl@lemote.com>, Hua Yan <yanh@lemote.com>, Yong Zhang <yong.zhang@windriver.com>, stable@vger.kernel.org |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=VzIT+pOKBGBURYjCpsYFFaKrPltwepyBeYhvKotD3gw=; b=azgbP2NttR/4z0qia8K1siIJwLGHPQv7mq4r2yt7BKp4d/ZObh4inPJaPvCgOyJMlM zINF2cssRgFsnwiKDLCB2905dg2Xzv/WIz8oJaU/vlMFjL3bjrr1Zh78A2R2NRXeASYb Tc5YPHmGIGeXTG3eTGkNrtcErZH2Kg3QHpuA/904AtgEryWMwarKx6R7zpZaCod0CQno XbyL3D3nXVqtWOjK/sm7m6sBW9T1rcjOW5DMpgMEAboRh2B0lB6aQKKvQfYS4g0+/qvb 0cyv3I57zA21Br/P6Lfvh0sO5hrXSb4yDWcqWFTQ+zPs/A9BuoJQb3k7sGIikm8qrXHg 41HA== |
| In-reply-to: | <20120814114856.GA17040@linux-mips.org> |
| 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: | <1344862344-27434-1-git-send-email-chenhc@lemote.com> <20120814114856.GA17040@linux-mips.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
On Tue, Aug 14, 2012 at 7:48 PM, Ralf Baechle <ralf@linux-mips.org> wrote: > On Mon, Aug 13, 2012 at 08:52:24PM +0800, Huacai Chen wrote: > >> 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. > >> 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)) > > Looks good - but I'm wondering if the "!cpu_isset(cpu, cpu_callin_map)" > can be removed as well? I removed "!cpu_isset(cpu, cpu_callin_map)" and it works well on Loongson, but I don't know whether it will affect cavium-octeon... > > Also, which -stable branches is this patch applicable? > > Ralf > |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH V5 13/18] drm: Define SAREA_MAX for Loongson (PageSize = 16KB)., Huacai Chen |
|---|---|
| Next by Date: | [PATCH] I2C: MIPS: lantiq: add FALC-ON i2c bus master, John Crispin |
| Previous by Thread: | Re: [PATCH V2] MIPS: Fix poweroff failure when HOTPLUG_CPU configured., Huacai Chen |
| Next by Thread: | Re: [PATCH V2] MIPS: Fix poweroff failure when HOTPLUG_CPU configured., Kevin Cernekee |
| Indexes: | [Date] [Thread] [Top] [All Lists] |