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
Subject: Re: [PATCH printk v5 17/17] printk: Avoid false positive lockdep report for legacy printing
Date: Tue, 3 Sep 2024 16:53:50 +0200 [thread overview]
Message-ID: <Ztci_qeXE9FGr5EA@pathway.suse.cz> (raw)
In-Reply-To: <20240830152916.10136-18-john.ogness@linutronix.de>
On Fri 2024-08-30 17:35:16, John Ogness wrote:
> Legacy console printing from printk() caller context may invoke
> the console driver from atomic context. This leads to a lockdep
> splat because the console driver will acquire a sleeping lock
> and the caller may already hold a spinning lock. This is noticed
> by lockdep on !PREEMPT_RT configurations because it will lead to
> a problem on PREEMPT_RT.
>
> However, on PREEMPT_RT the printing path from atomic context is
> always avoided and the console driver is always invoked from a
> dedicated thread. Thus the lockdep splat on !PREEMPT_RT is a
> false positive.
>
> For !PREEMPT_RT override the lock-context before invoking the
> console driver to avoid the false positive.
>
> Do not override the lock-context for PREEMPT_RT in order to
> allow lockdep to catch any real locking context issues related
> to the write callback usage.
>
> --- a/kernel/printk/printk.c
> +++ b/kernel/printk/printk.c
> @@ -3030,31 +3058,46 @@ static bool console_emit_next_record(struct console *con, bool *handover, int co
> con->dropped = 0;
> }
>
> - /*
> - * While actively printing out messages, if another printk()
> - * were to occur on another CPU, it may wait for this one to
> - * finish. This task can not be preempted if there is a
> - * waiter waiting to take over.
> - *
> - * Interrupts are disabled because the hand over to a waiter
> - * must not be interrupted until the hand over is completed
> - * (@console_waiter is cleared).
> - */
> - printk_safe_enter_irqsave(flags);
> - console_lock_spinning_enable();
> + /* Write everything out to the hardware. */
>
> - /* Do not trace print latency. */
> - stop_critical_timings();
> + if (force_legacy_kthread() && !panic_in_progress()) {
> + /*
> + * With forced threading this function is in a task context
> + * (either legacy kthread or get_init_console_seq()). There
> + * is no need for concern about printk reentrance, handovers,
> + * or lockdep complaints.
> + */
The legacy kthread is used only when it is running.
What about early boot messages?
And what about NBCON_PRIO_EMERGENCY?
Hmm, it seems that force_legacy_kthread() really prevents calling this
in interrupt context because is_printk_legacy_deferred() always
returns true in this case. Is this correct? I actually reported this
as a bug, see https://lore.kernel.org/r/ZtcRZpLjCjWeC4nG@pathway.suse.cz
Or is this the only possible way to avoid taking sleeping spinlock
under raw spinlock in RT, please?
> - /* Write everything out to the hardware. */
> - con->write(con, outbuf, pmsg.outbuf_len);
> + con->write(con, outbuf, pmsg.outbuf_len);
> + con->seq = pmsg.seq + 1;
> + } else {
> + /*
> + * While actively printing out messages, if another printk()
> + * were to occur on another CPU, it may wait for this one to
> + * finish. This task can not be preempted if there is a
> + * waiter waiting to take over.
> + *
> + * Interrupts are disabled because the hand over to a waiter
> + * must not be interrupted until the hand over is completed
> + * (@console_waiter is cleared).
> + */
> + printk_safe_enter_irqsave(flags);
> + console_lock_spinning_enable();
>
> - start_critical_timings();
> + /* Do not trace print latency. */
> + stop_critical_timings();
>
> - con->seq = pmsg.seq + 1;
> + printk_legacy_allow_spinlock_enter();
> + con->write(con, outbuf, pmsg.outbuf_len);
> + printk_legacy_allow_spinlock_exit();
>
> - *handover = console_lock_spinning_disable_and_check(cookie);
> - printk_safe_exit_irqrestore(flags);
> + start_critical_timings();
> +
> + con->seq = pmsg.seq + 1;
> +
> + *handover = console_lock_spinning_disable_and_check(cookie);
> + printk_safe_exit_irqrestore(flags);
> + }
> skip:
> return true;
> }
Best Regards,
Petr
prev parent reply other threads:[~2024-09-03 14:53 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-30 15:28 [PATCH printk v5 00/17] add threaded printing + the rest John Ogness
2024-08-30 15:29 ` [PATCH printk v5 01/17] printk: nbcon: Add function for printers to reacquire ownership John Ogness
2024-08-30 15:29 ` [PATCH printk v5 02/17] printk: Fail pr_flush() if before SYSTEM_SCHEDULING John Ogness
2024-08-30 15:29 ` [PATCH printk v5 03/17] printk: Flush console on unregister_console() John Ogness
2024-08-30 15:29 ` [PATCH printk v5 04/17] printk: nbcon: Add context to usable() and emit() John Ogness
2024-08-30 15:29 ` [PATCH printk v5 05/17] printk: nbcon: Init @nbcon_seq to highest possible John Ogness
2024-08-30 15:29 ` [PATCH printk v5 06/17] printk: nbcon: Introduce printer kthreads John Ogness
2024-09-02 14:19 ` Petr Mladek
2024-08-30 15:29 ` [PATCH printk v5 07/17] printk: nbcon: Relocate nbcon_atomic_emit_one() John Ogness
2024-08-30 15:29 ` [PATCH printk v5 08/17] printk: nbcon: Use thread callback if in task context for legacy John Ogness
2024-08-30 15:29 ` [PATCH printk v5 09/17] printk: nbcon: Rely on kthreads for normal operation John Ogness
2024-09-03 10:10 ` Petr Mladek
2024-09-03 11:50 ` John Ogness
2024-08-30 15:29 ` [PATCH printk v5 10/17] printk: Provide helper for message prepending John Ogness
2024-08-30 15:29 ` [PATCH printk v5 11/17] printk: nbcon: Show replay message on takeover John Ogness
2024-08-30 15:29 ` [PATCH printk v5 12/17] proc: consoles: Add notation to c_start/c_stop John Ogness
2024-08-30 15:29 ` [PATCH printk v5 13/17] proc: Add nbcon support for /proc/consoles John Ogness
2024-08-30 15:29 ` [PATCH printk v5 14/17] tty: sysfs: Add nbcon support for 'active' John Ogness
2024-08-30 15:29 ` [PATCH printk v5 15/17] printk: Implement legacy printer kthread for PREEMPT_RT John Ogness
2024-09-03 13:38 ` Petr Mladek
2024-09-03 14:24 ` John Ogness
2024-08-30 15:29 ` [PATCH printk v5 16/17] printk: nbcon: Assign nice -20 for printing threads John Ogness
2024-08-30 15:29 ` [PATCH printk v5 17/17] printk: Avoid false positive lockdep report for legacy printing John Ogness
2024-09-03 14:53 ` Petr Mladek [this message]
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=Ztci_qeXE9FGr5EA@pathway.suse.cz \
--to=pmladek@suse.com \
--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
all inboxes | Powered by JetHome®