From: Petr Mladek <pmladek@suse.cz>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>,
Steven Rostedt <rostedt@goodmis.org>,
Dave Anderson <anderson@redhat.com>,
"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
Kay Sievers <kay@vrfy.org>, Jiri Kosina <jkosina@suse.cz>,
Michal Hocko <mhocko@suse.cz>, Jan Kara <jack@suse.cz>,
linux-kernel@vger.kernel.org,
Wang Long <long.wanglong@huawei.com>,
peifeiyue@huawei.com, dzickus@redhat.com, morgan.wang@huawei.com,
sasha.levin@oracle.com, Peter Zijlstra <pzijlstr@redhat.com>
Subject: Re: [PATCH 04/10] printk: Merge and flush NMI buffer predictably via IRQ work
Date: Thu, 28 May 2015 15:12:02 +0200 [thread overview]
Message-ID: <20150528131202.GE3135@pathway.suse.cz> (raw)
In-Reply-To: <20150527161423.9ca10028e4edf4ecbd28a533@linux-foundation.org>
On Wed 2015-05-27 16:14:23, Andrew Morton wrote:
> On Mon, 25 May 2015 14:46:27 +0200 Petr Mladek <pmladek@suse.cz> wrote:
>
> > It might take ages until users see messages from NMI context. They cannot
> > be flushed to the console because the operation involves taking and
> > releasing a bunch of locks. Everything gets fixed by the followup printk
> > in normal context but it is not predictable.
> >
> > The same problem has printk_sched() and this patch reuses the existing
> > solution.
> >
> > There is no special printk() variant for NMI context. Hence the IRQ work
> > need to get queued from vprintk_emit().
> >
> > ...
> >
> > --- a/kernel/printk/printk.c
> > +++ b/kernel/printk/printk.c
> > @@ -1554,9 +1554,6 @@ int printk_deferred(const char *fmt, ...)
> > va_start(args, fmt);
> > r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, 0, fmt, args);
> > va_end(args);
> > -
> > - __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT);
> > - irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
> > preempt_enable();
> >
> > return r;
> > @@ -1880,7 +1877,10 @@ asmlinkage int vprintk_emit(int facility, int level,
> > * If called from the scheduler or NMI context, we can not get console
> > * without a possible deadlock.
> > */
> > - if (!in_sched && !in_nmi()) {
> > + if (in_sched || in_nmi()) {
> > + __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT);
> > + irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
> > + } else {
>
> This looks hairy. Why irq_work_queue() OK to call from NMI?
IMHO, irq_work_queue() was primary created for exactly this job.
I mean to move some work from NMI into a more relaxed context.
See the initial commit e360adbe29241a01 ("irq_work: Add generic
hardirq context callbacks").
In each case, the code seems to be well prepared for this. Especially,
there is a big effort to manipulate work->flags lock-less way.
The only exception is irq_work_queue_on() but it seems to be related
to the particular arch_send_call_function_single_ipi(cpu) call
that is not NMI safe.
> arch/arm64/kernel/smp.c uses smp_cross_call() which might use NMI!
smp_cross_call() is defined by set_smp_cross_call(). I see
only three functions that are assigned this way:
drivers/irqchip/irq-armada-370-xp.c: set_smp_cross_call(armada_mpic_send_doorbell);
drivers/irqchip/irq-gic-v3.c: set_smp_cross_call(gic_raise_softirq);
drivers/irqchip/irq-gic.c: set_smp_cross_call(gic_raise_softirq);
drivers/irqchip/irq-hip04.c: set_smp_cross_call(hip04_raise_softirq);
They all seems to work with soft IRQ.
> Presumably it'll call directly if the target CPU==this_cpu but I didn't
> run around and audit everything.
IMHO, this is the case of smp_call_function_single() that has the
function as a parameter. But irq_work_queue() always puts the function
into the work list and sends interrupt.
Of course, it is possible that I have missed something. I hope that
Peter or Frederic could confirm my observation.
Best Regards,
Petr
next prev parent reply other threads:[~2015-05-28 13:12 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-25 12:46 [PATCH 00/10] printk: Avoid deadlock in NMI + vprintk_emit() cleanup Petr Mladek
2015-05-25 12:46 ` [PATCH 01/10] printk: Avoid deadlock in NMI context Petr Mladek
2015-05-27 23:13 ` Andrew Morton
2015-05-28 12:00 ` Petr Mladek
2015-05-25 12:46 ` [PATCH 02/10] printk: Try harder to get logbuf_lock on NMI Petr Mladek
2015-05-27 23:14 ` Andrew Morton
2015-05-28 7:54 ` Jiri Kosina
2015-05-28 13:50 ` Petr Mladek
2015-05-28 20:09 ` Andrew Morton
2015-05-29 10:56 ` Petr Mladek
2015-05-29 20:46 ` Andrew Morton
2015-05-25 12:46 ` [PATCH 03/10] printk: Move the deferred printk stuff Petr Mladek
2015-05-25 12:46 ` [PATCH 04/10] printk: Merge and flush NMI buffer predictably via IRQ work Petr Mladek
2015-05-27 23:14 ` Andrew Morton
2015-05-28 13:12 ` Petr Mladek [this message]
2015-05-25 12:46 ` [PATCH 05/10] printk: Try hard to print Oops message in NMI context Petr Mladek
2015-05-25 12:46 ` [PATCH 06/10] printk: Split delayed printing of warnings from vprintk_emit() Petr Mladek
2015-05-25 12:46 ` [PATCH 07/10] printk: Split text formatting and analyze " Petr Mladek
2015-05-25 12:46 ` [PATCH 08/10] printk: Detect scheduler messages in vprintk_format_and_analyze() Petr Mladek
2015-05-25 12:46 ` [PATCH 09/10] printk: Split text storing logic from vprintk_emit() Petr Mladek
2015-05-25 12:46 ` [PATCH 10/10] printk: Split console call " Petr Mladek
2015-05-29 20:50 ` [PATCH 00/10] printk: Avoid deadlock in NMI + vprintk_emit() cleanup Andrew Morton
2015-06-01 13:06 ` Jan Kara
2015-06-02 9:46 ` long.wanglong
2015-06-02 9:52 ` Jiri Kosina
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=20150528131202.GE3135@pathway.suse.cz \
--to=pmladek@suse.cz \
--cc=akpm@linux-foundation.org \
--cc=anderson@redhat.com \
--cc=dzickus@redhat.com \
--cc=fweisbec@gmail.com \
--cc=jack@suse.cz \
--cc=jkosina@suse.cz \
--cc=kay@vrfy.org \
--cc=linux-kernel@vger.kernel.org \
--cc=long.wanglong@huawei.com \
--cc=mhocko@suse.cz \
--cc=morgan.wang@huawei.com \
--cc=paulmck@linux.vnet.ibm.com \
--cc=peifeiyue@huawei.com \
--cc=pzijlstr@redhat.com \
--cc=rostedt@goodmis.org \
--cc=sasha.levin@oracle.com \
/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.