All of lore.kernel.org
 help / color / mirror / Atom feed
From: Byungchul Park <byungchul.park@lge.com>
To: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Cc: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Jan Kara <jack@suse.com>, Petr Mladek <pmladek@suse.com>,
	Tejun Heo <tj@kernel.org>,
	Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>,
	linux-kernel@vger.kernel.org, Jan Kara <jack@suse.cz>
Subject: Re: [RFC][PATCH v5 1/2] printk: Make printk() completely async
Date: Mon, 21 Mar 2016 17:47:43 +0900	[thread overview]
Message-ID: <20160321084743.GB2279@X58A-UD3R> (raw)
In-Reply-To: <20160321080751.GA2279@X58A-UD3R>

On Mon, Mar 21, 2016 at 05:07:51PM +0900, Byungchul Park wrote:
> On Mon, Mar 21, 2016 at 04:35:07PM +0900, Sergey Senozhatsky wrote:
> > On (03/21/16 09:56), Byungchul Park wrote:
> > > > > > +	if (!sync_print) {
> > > > > > +		if (in_sched) {
> > > > > > +			/*
> > > > > > +			 * @in_sched messages may come too early, when we don't
> > > > > > +			 * yet have @printk_kthread. We can't print deferred
> > > > > > +			 * messages directly, because this may deadlock, route
> > > > > > +			 * them via IRQ context.
> > > > > > +			 */
> > > > > > +			__this_cpu_or(printk_pending,
> > > > > > +					PRINTK_PENDING_OUTPUT);
> > > > > > +			irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
> > > > > > +		} else if (printk_kthread && !in_panic) {
> > > > > > +			/* Offload printing to a schedulable context. */
> > > > > > +			wake_up_process(printk_kthread);
> > > > > 
> > > > > It will not print the "lockup suspected" message at all, for e.g. rq->lock,
> > > > > p->pi_lock and any locks which are used within wake_up_process().
> > > > 
> > > > this will switch to old SYNC printk() mode should such a lockup ever
> > > > happen, which is a giant advantage over any other implementation; doing
> > > > wake_up_process() within the 'we can detect recursive printk() here'
> > > > gives us better control.
> > > > 
> > > > why
> > > >   printk()->IRQ->wake_up_process()->spin_dump()->printk()->IRQ->wake_up_process()->spin_dump()->printk()->IRQ...
> > > > is better?
> > > 
> > > What is IRQ?
> > 
> > this is how printk() can print the messages in async mode apart from
> > direct and wake_up_process() in vprintk_emit().
> 
> Do you mean IRQ work?
> 
> Is there any reason why you don't put the wake_up_process() out of the
> critical section with my suggestion, even though it can solve the infinite
> recuresion you worried about?

Just to be sure, whether you take my suggestion or not is not important.
I just suggested it in this thread since it can solve what you worried
about. That's all. I can post it in another thread though. Why don't you
consider it so that yours don't miss any printk message? Do you think there
are any problems in my suggestion?

> 
> > 
> > 	-ss
> > 
> > > > > Furtheremore, any printk() within wake_up_process() cannot work at all, as
> > > > > well.
> > > > 
> > > > there is printk_deferred() which has LOGLEVEL_SCHED and which must be used
> > > > in sched functions.
> > > 
> > > It would be good for all scheduler code to use the printk_deferred() as you
> > > said, but it's not true yet.
> > > 
> > > > 
> > > > 	-ss
> > > 

  reply	other threads:[~2016-03-21  8:47 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-20 14:13 [RFC][PATCH v5 0/2] printk: Make printk() completely async Sergey Senozhatsky
2016-03-20 14:13 ` [RFC][PATCH v5 1/2] " Sergey Senozhatsky
2016-03-21  0:06   ` Byungchul Park
2016-03-21  0:43     ` Sergey Senozhatsky
2016-03-21  0:56       ` Byungchul Park
2016-03-21  7:35         ` Sergey Senozhatsky
2016-03-21  8:07           ` Byungchul Park
2016-03-21  8:47             ` Byungchul Park [this message]
2016-03-21  9:28               ` Sergey Senozhatsky
2016-03-21 14:32                 ` Jan Kara
2016-03-21 14:58                   ` Sergey Senozhatsky
2016-03-21 15:33                     ` Jan Kara
2016-03-21 17:11                       ` Sergey Senozhatsky
2016-03-22  2:18                         ` Byungchul Park
2016-03-22  2:13                 ` Byungchul Park
2016-03-22  5:52                   ` Sergey Senozhatsky
2016-03-22  6:57                     ` Byungchul Park
2016-03-22  7:43                       ` Sergey Senozhatsky
2016-03-21  8:51             ` Sergey Senozhatsky
2016-03-20 14:13 ` [RFC][PATCH v5 2/2] printk: Make wake_up_klogd_work_func() async Sergey Senozhatsky

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=20160321084743.GB2279@X58A-UD3R \
    --to=byungchul.park@lge.com \
    --cc=akpm@linux-foundation.org \
    --cc=jack@suse.com \
    --cc=jack@suse.cz \
    --cc=linux-kernel@vger.kernel.org \
    --cc=penguin-kernel@I-love.SAKURA.ne.jp \
    --cc=pmladek@suse.com \
    --cc=sergey.senozhatsky.work@gmail.com \
    --cc=sergey.senozhatsky@gmail.com \
    --cc=tj@kernel.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.