From: Brian King <brking@linux.vnet.ibm.com>
To: Michael Neuling <mikey@neuling.org>
Cc: linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH 1/1] powerpc: Ignore IPIs to offline CPUs
Date: Tue, 20 Apr 2010 22:15:40 -0500 [thread overview]
Message-ID: <4BCE6DDC.4020902@linux.vnet.ibm.com> (raw)
In-Reply-To: <12054.1271815478@neuling.org>
On 04/20/2010 09:04 PM, Michael Neuling wrote:
> In message <201004210154.o3L1sXaR001791@d01av04.pok.ibm.com> you wrote:
>>
>> Since there is nothing to stop an IPI from occurring to an
>> offline CPU, rather than printing a warning to the logs,
>> just ignore the IPI. This was seen while stress testing
>> SMT enable/disable.
>
> This seems like a recipe for disaster. Do we at least need a
> WARN_ON_ONCE?
Actually we are only seeing it once per offlining of a CPU,
and only once in a while.
My guess is that once the CPU is marked offline fewer IPIs
get sent to it since its no longer in the online mask.
Perhaps we should be disabling IPIs to offline CPUs instead?
-Brian
>
>> Signed-off-by: Brian King <brking@linux.vnet.ibm.com>
>> ---
>>
>> arch/powerpc/platforms/pseries/xics.c | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff -puN arch/powerpc/platforms/pseries/xics.c~powerpc_xics_ipi_offline arch
> /powerpc/platforms/pseries/xics.c
>> --- linux-2.6/arch/powerpc/platforms/pseries/xics.c~powerpc_xics_ipi_offline
> 2010-04-20 20:46:06.000000000 -0500
>> +++ linux-2.6-bjking1/arch/powerpc/platforms/pseries/xics.c 2010-04-20 20:4
> 7:53.000000000 -0500
>> @@ -545,7 +545,8 @@ static irqreturn_t xics_ipi_dispatch(int
>> {
>> unsigned long *tgt = &per_cpu(xics_ipi_message, cpu);
>>
>> - WARN_ON(cpu_is_offline(cpu));
>> + if (cpu_is_offline(cpu))
>> + return IRQ_HANDLED;
>>
>> mb(); /* order mmio clearing qirr */
>> while (*tgt) {
>> _
>
> FYI random white space change here.
>
>> _______________________________________________
>> Linuxppc-dev mailing list
>> Linuxppc-dev@lists.ozlabs.org
>> https://lists.ozlabs.org/listinfo/linuxppc-dev
>>
>
> Mikey
--
Brian King
Linux on Power Virtualization
IBM Linux Technology Center
next prev parent reply other threads:[~2010-04-21 3:15 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-21 1:54 [PATCH 1/1] powerpc: Ignore IPIs to offline CPUs Brian King
2010-04-21 2:04 ` Michael Neuling
2010-04-21 3:15 ` Brian King [this message]
2010-04-21 13:35 ` Michael Ellerman
2010-04-21 13:50 ` Brian King
2010-04-21 21:03 ` Michael Neuling
2010-04-21 22:15 ` Brian King
2010-04-21 22:49 ` Michael Neuling
2010-04-21 23:33 ` Brian King
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=4BCE6DDC.4020902@linux.vnet.ibm.com \
--to=brking@linux.vnet.ibm.com \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mikey@neuling.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).