From: Zhao Chenhui <chenhui.zhao@freescale.com>
To: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] powerpc/sysfs: disable hotplug for the boot cpu
Date: Thu, 13 Jun 2013 19:25:52 +0800 [thread overview]
Message-ID: <20130613112552.GC7536@localhost.localdomain> (raw)
In-Reply-To: <1371007522.8250.169.camel@pasglop>
On Wed, Jun 12, 2013 at 01:25:22PM +1000, Benjamin Herrenschmidt wrote:
> On Mon, 2013-06-03 at 18:43 +0800, Zhao Chenhui wrote:
> > On Sat, Jun 01, 2013 at 07:49:44AM +1000, Benjamin Herrenschmidt wrote:
> > > On Tue, 2013-05-28 at 15:59 +0800, Zhao Chenhui wrote:
> > > > Some features depend on the boot cpu, for instance, hibernate/suspend.
> > > > So disable hotplug for the boot cpu.
> > >
> > > Don't we have code to "move" the boot CPU around when that happens ?
> > >
> > > Ben.
> > >
> >
> > Currently, the code in generic_cpu_disable() likes this:
> >
> > if (cpu == boot_cpuid)
> > return -EBUSY;
>
> But the code in pseries/hotplug-cpu.c doesn't, we just "move" the boot
> CPU around when that happens. Any reason we can't do that generically ?
>
> Cheers,
> Ben.
>
Some multicore SoCs firstly boot up the cpu0 after warm reset.
In some suspend/resume cases, SoC will do a warm reset when resuming.
In order to ensure that the suspending and resuming is running
on a same cpu, cpu0 should be the last cpu to suspend. Here, cpu0 is
the boot_cpuid.
-Chenhui
> > If the dying cpu is the boot cpu, it will return -EBUSY. In the subsequent error handling,
> > cpu_notify_nofail(CPU_DOWN_FAILED) in _cpu_down() will be called. Unfortunately, some
> > cpu notifier callbacks handled CPU_DOWN_PREPARE, but not CPU_DOWN_FAILED, such as sched_cpu_inactive().
> > So it will cause issues.
> >
> > If we set the hotpluggable for the boot cpu, we can prevent user applications from disabling the boot cpu.
> >
> > -Chenhui
> >
WARNING: multiple messages have this Message-ID (diff)
From: Zhao Chenhui <chenhui.zhao@freescale.com>
To: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: <linuxppc-dev@lists.ozlabs.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] powerpc/sysfs: disable hotplug for the boot cpu
Date: Thu, 13 Jun 2013 19:25:52 +0800 [thread overview]
Message-ID: <20130613112552.GC7536@localhost.localdomain> (raw)
In-Reply-To: <1371007522.8250.169.camel@pasglop>
On Wed, Jun 12, 2013 at 01:25:22PM +1000, Benjamin Herrenschmidt wrote:
> On Mon, 2013-06-03 at 18:43 +0800, Zhao Chenhui wrote:
> > On Sat, Jun 01, 2013 at 07:49:44AM +1000, Benjamin Herrenschmidt wrote:
> > > On Tue, 2013-05-28 at 15:59 +0800, Zhao Chenhui wrote:
> > > > Some features depend on the boot cpu, for instance, hibernate/suspend.
> > > > So disable hotplug for the boot cpu.
> > >
> > > Don't we have code to "move" the boot CPU around when that happens ?
> > >
> > > Ben.
> > >
> >
> > Currently, the code in generic_cpu_disable() likes this:
> >
> > if (cpu == boot_cpuid)
> > return -EBUSY;
>
> But the code in pseries/hotplug-cpu.c doesn't, we just "move" the boot
> CPU around when that happens. Any reason we can't do that generically ?
>
> Cheers,
> Ben.
>
Some multicore SoCs firstly boot up the cpu0 after warm reset.
In some suspend/resume cases, SoC will do a warm reset when resuming.
In order to ensure that the suspending and resuming is running
on a same cpu, cpu0 should be the last cpu to suspend. Here, cpu0 is
the boot_cpuid.
-Chenhui
> > If the dying cpu is the boot cpu, it will return -EBUSY. In the subsequent error handling,
> > cpu_notify_nofail(CPU_DOWN_FAILED) in _cpu_down() will be called. Unfortunately, some
> > cpu notifier callbacks handled CPU_DOWN_PREPARE, but not CPU_DOWN_FAILED, such as sched_cpu_inactive().
> > So it will cause issues.
> >
> > If we set the hotpluggable for the boot cpu, we can prevent user applications from disabling the boot cpu.
> >
> > -Chenhui
> >
next prev parent reply other threads:[~2013-06-13 11:26 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-28 7:59 [PATCH] powerpc/mpic: fix irq distribution problem when MPIC_SINGLE_DEST_CPU Zhao Chenhui
2013-05-28 7:59 ` Zhao Chenhui
2013-05-28 7:59 ` [PATCH] powerpc/sysfs: disable hotplug for the boot cpu Zhao Chenhui
2013-05-28 7:59 ` Zhao Chenhui
2013-05-31 21:49 ` Benjamin Herrenschmidt
2013-05-31 21:49 ` Benjamin Herrenschmidt
2013-06-03 10:43 ` Zhao Chenhui
2013-06-03 10:43 ` Zhao Chenhui
2013-06-12 3:25 ` Benjamin Herrenschmidt
2013-06-13 11:25 ` Zhao Chenhui [this message]
2013-06-13 11:25 ` Zhao Chenhui
2013-06-14 22:53 ` Benjamin Herrenschmidt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130613112552.GC7536@localhost.localdomain \
--to=chenhui.zhao@freescale.com \
--cc=benh@kernel.crashing.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.