From: Petr Mladek <pmladek@suse.com>
To: John Ogness <john.ogness@linutronix.de>
Cc: Sergey Senozhatsky <senozhatsky@chromium.org>,
Steven Rostedt <rostedt@goodmis.org>,
Thomas Gleixner <tglx@linutronix.de>,
linux-kernel@vger.kernel.org,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: Re: guarantee forward progress: was: Re: [PATCH printk v2 11/12] printk: extend console_lock for proper kthread support
Date: Mon, 11 Apr 2022 12:45:20 +0200 [thread overview]
Message-ID: <YlQGwNi2yB8WFaVM@alley> (raw)
In-Reply-To: <87v8vjnxdg.fsf@jogness.linutronix.de>
On Fri 2022-04-08 22:23:15, John Ogness wrote:
> On 2022-04-08, Petr Mladek <pmladek@suse.com> wrote:
> > I played a lot with it and it is really hard because:
> >
> > + new messages can appear anytime
> > + direct mode might get requested anytime
> > + only the direct mode knows whether all messages were flushed
> > on all consoles
>
> Yes, and this is why v1 dramatically simplified the picture by making
> kthreads not care about direct mode. In v1 the kthread logic is very
> simple: If there are messages to print, try to print them no matter
> what. We didn't need to worry if someone was printing, because we knew
> that at least the kthread was always printing.
>
> This meant that there would be times when direct mode is active but the
> kthreads are doing the printing. But in my experimenting, that tends to
> be the case anyway, even with this more complex v2 approach. The reason
> is that if some code does:
>
> printk_prefer_direct_enter();
> (100 lines of printk calls)
> printk_prefer_direct_exit();
>
> And directly before that printk_prefer_direct_enter() _any_ kthread was
> already inside call_console_driver(), then _all_ the console_trylock()
> calls of the above 100 printk's will fail. Inserting messages into the
> ringbuffer is fast and any active printer will not have finished
> printing its message before the above code snippet is done.
Good to know.
> In fact, the above snippet will only do direct printing if there were
> previously no unflushed messages. That is true for v1 (by design) and v2
> (by misfortune, because ringbuffer insertion is much faster than a
> single call_console_driver() call).
Yup.
> This new idea (v2) of trying to stop kthreads in order to "step aside"
> for direct printing is really just adding a lot of complexity, a lot of
> irqwork calls, and a lot of races. And with my experimenting I am not
> seeing any gain, except for new risks of nobody printing.
>
> I understand that when we say printk_prefer_direct_enter() that we
> _really_ want to do direct printing. But we cannot force it if any
> printer is already inside call_console_driver(). In that case, direct
> printing simply will not and cannot happen.
I think that we should split it into situations when we need the
direct printk and where we prefer the direct printing.
1. The direct printing is needed in situations when the kthreads can't
work by design, e.g. early boot, panic, suspend, reboot.
This was the reason why I wanted to increase the chance that
kthreads would not block it. But as you write above, it does
not help much. The consoles are so slow that the direct mode
is not used.
It is clear that my proposal does not work. And it is not
reliable anyway. This patchset actually takes care of some
situations much better way, by calling pr_flush() in console_stop()
or suspend_console().
2. The direct printing is only preferred in some situations where
the system is in troubles, for example, stall reports.
The direct mode is preferred because we think that it will be
more reliable. It is a conservative thinking. But in fact,
the kthreads might provide better results in many situations.
These stall reports often print a lot of debugging information.
The direct mode might cause soft-lockups and stalls on its own.
The kthreads allow showing the messages faster on fast consoles.
I could imagine that we actually remove the direct mode for
these stall reports in the future.
Anyway, it is perfectly fine to print them using kthreads
when the kthreads are working.
> For v3 I recommend going back to the v1 model, where kthreads do not
> care if direct mode is preferred. I claim that v2 does yield any more
> actual direct printing than v1 did.
I agree.
> However, I would keep the v2 change that kthreads go into their
> wait_event check after every message. That at least provides earlier
> responses for kthreads to stop themselves if they are disabled.
I am not sure what you mean. They seems to be completely disabled
only when newly registered console is not able to create the kthread
or when the kthread is not able to allocate buffers.
I think that there is no hurry to stop the other kthreads in this
case.
Or do you mean panic?
> Once we have atomic consoles, things will look different. Then we
> perform true synchronous direct printing. But without them, the "prefer"
> in printk_prefer_direct_enter() is only a preference that can only be
> satisfied under ideal situations (i.e. no kthread is inside
> call_console_driver()).
OK.
Best Regards,
Petr
next prev parent reply other threads:[~2022-04-11 10:45 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-05 13:25 [PATCH printk v2 00/12] implement threaded console printing John Ogness
2022-04-05 13:25 ` [PATCH printk v2 01/12] printk: rename cpulock functions John Ogness
2022-04-06 9:07 ` Petr Mladek
2022-04-05 13:25 ` [PATCH printk v2 02/12] printk: cpu sync always disable interrupts John Ogness
2022-04-05 13:25 ` [PATCH printk v2 03/12] printk: get caller_id/timestamp after migration disable John Ogness
2022-04-05 13:25 ` [PATCH printk v2 04/12] printk: call boot_delay_msec() in printk_delay() John Ogness
2022-04-05 13:25 ` [PATCH printk v2 05/12] printk: add macro for console detail messages John Ogness
2022-04-06 10:31 ` Petr Mladek
2022-04-05 13:25 ` [PATCH printk v2 06/12] printk: refactor and rework printing logic John Ogness
2022-04-06 14:02 ` Petr Mladek
2022-04-05 13:25 ` [PATCH printk v2 07/12] printk: move buffer definitions into console_emit_next_record() caller John Ogness
2022-04-06 14:40 ` Petr Mladek
2022-04-05 13:25 ` [PATCH printk v2 08/12] printk: add pr_flush() John Ogness
2022-04-06 15:17 ` Petr Mladek
2022-04-08 18:57 ` John Ogness
2022-04-05 13:25 ` [PATCH printk v2 09/12] printk: add functions to prefer direct printing John Ogness
2022-04-07 9:56 ` Petr Mladek
2022-04-07 13:35 ` Helge Deller
2022-04-07 14:35 ` John Ogness
2022-04-07 19:36 ` Helge Deller
2022-04-07 20:04 ` John Ogness
2022-04-07 20:20 ` Helge Deller
2022-04-11 12:50 ` Petr Mladek
2022-04-09 15:57 ` Paul E. McKenney
2022-04-05 13:25 ` [PATCH printk v2 10/12] printk: add kthread console printers John Ogness
2022-04-07 16:43 ` start/stop: was: " Petr Mladek
2022-04-07 16:49 ` console_is_usable() check: " Petr Mladek
2022-04-07 16:53 ` wake_up_klogd(): " Petr Mladek
2022-04-07 16:56 ` console_flush_all(): was: : was " Petr Mladek
2022-04-05 13:25 ` [PATCH printk v2 11/12] printk: extend console_lock for proper kthread support John Ogness
2022-04-08 13:45 ` guarantee forward progress: was: " Petr Mladek
2022-04-08 20:17 ` John Ogness
2022-04-11 10:45 ` Petr Mladek [this message]
2022-04-08 13:52 ` register_console: " Petr Mladek
2022-04-05 13:25 ` [PATCH printk v2 12/12] printk: remove @console_locked John Ogness
2022-04-05 15:03 ` [PATCH printk v2 00/12] implement threaded console printing Andy Shevchenko
2022-04-05 21:24 ` John Ogness
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=YlQGwNi2yB8WFaVM@alley \
--to=pmladek@suse.com \
--cc=gregkh@linuxfoundation.org \
--cc=john.ogness@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=senozhatsky@chromium.org \
--cc=tglx@linutronix.de \
/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