]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
printk: Track registered boot consoles
authorJohn Ogness <john.ogness@linutronix.de>
Tue, 20 Aug 2024 06:29:47 +0000 (08:35 +0206)
committerPetr Mladek <pmladek@suse.com>
Wed, 21 Aug 2024 12:56:24 +0000 (14:56 +0200)
Unfortunately it is not known if a boot console and a regular
(legacy or nbcon) console use the same hardware. For this reason
they must not be allowed to print simultaneously.

For legacy consoles this is not an issue because they are
already synchronized with the boot consoles using the console
lock. However nbcon consoles can be triggered separately.

Add a global flag @have_boot_console to identify if any boot
consoles are registered. This will be used in follow-up commits
to ensure that boot consoles and nbcon consoles cannot print
simultaneously.

Signed-off-by: John Ogness <john.ogness@linutronix.de>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Link: https://lore.kernel.org/r/20240820063001.36405-22-john.ogness@linutronix.de
Signed-off-by: Petr Mladek <pmladek@suse.com>
kernel/printk/printk.c

index ffb56c2150b0c4b89a1af273ae624d06628edb13..b8634a153d1df66fdb24776c9207651ba1fb711f 100644 (file)
@@ -463,6 +463,14 @@ static int console_msg_format = MSG_FORMAT_DEFAULT;
 /* syslog_lock protects syslog_* variables and write access to clear_seq. */
 static DEFINE_MUTEX(syslog_lock);
 
+/*
+ * Specifies if a boot console is registered. If boot consoles are present,
+ * nbcon consoles cannot print simultaneously and must be synchronized by
+ * the console lock. This is because boot consoles and nbcon consoles may
+ * have mapped the same hardware.
+ */
+static bool have_boot_console;
+
 #ifdef CONFIG_PRINTK
 DECLARE_WAIT_QUEUE_HEAD(log_wait);
 /* All 3 protected by @syslog_lock. */
@@ -3610,6 +3618,9 @@ void register_console(struct console *newcon)
                newcon->seq = init_seq;
        }
 
+       if (newcon->flags & CON_BOOT)
+               have_boot_console = true;
+
        /*
         * If another context is actively using the hardware of this new
         * console, it will not be aware of the nbcon synchronization. This
@@ -3680,7 +3691,9 @@ EXPORT_SYMBOL(register_console);
 static int unregister_console_locked(struct console *console)
 {
        bool use_device_lock = (console->flags & CON_NBCON) && console->write_atomic;
+       bool found_boot_con = false;
        unsigned long flags;
+       struct console *c;
        int res;
 
        lockdep_assert_console_list_lock_held();
@@ -3738,6 +3751,17 @@ static int unregister_console_locked(struct console *console)
        if (console->exit)
                res = console->exit(console);
 
+       /*
+        * With this console gone, the global flags tracking registered
+        * console types may have changed. Update them.
+        */
+       for_each_console(c) {
+               if (c->flags & CON_BOOT)
+                       found_boot_con = true;
+       }
+       if (!found_boot_con)
+               have_boot_console = found_boot_con;
+
        return res;
 }