Re: replay log: Re: [PATCH printk v4 38/39] printk: relieve console_lock of list synchronization duties

From: John Ogness
Date: Tue Nov 15 2022 - 12:25:00 EST


On 2022-11-15, Petr Mladek <pmladek@xxxxxxxx> wrote:
>>> --- a/kernel/printk/printk.c
>>> +++ b/kernel/printk/printk.c
>>> @@ -3334,6 +3330,11 @@ void register_console(struct console *newcon)
>>> * boot console that is the furthest behind.
>>> */
>>> if (bootcon_registered && !keep_bootcon) {
>>> + /*
>>> + * Hold the console_lock to guarantee safe access to
>>> + * console->seq.
>>> + */
>>> + console_lock();
>>> for_each_console(con) {
>>> if ((con->flags & CON_BOOT) &&
>>> (con->flags & CON_ENABLED) &&
>>> @@ -3341,6 +3342,7 @@ void register_console(struct console *newcon)
>>> newcon->seq = con->seq;
>>> }
>>> }
>>> + console_unlock();
>
> So, without the above two hunks:
>
> Reviewed-by: Petr Mladek <pmladek@xxxxxxxx>

Note that we actually need those hunks to guarantee a consistent @seq
value. The console_lock is the only synchronization mechanism available
to read console->seq.

John