diff mbox

[v1,2/4] sparc64: allow platforms to say when to unload boot console

Message ID 1488925719-647821-3-git-send-email-pasha.tatashin@oracle.com
State Superseded
Delegated to: David Miller
Headers show

Commit Message

Pavel Tatashin March 7, 2017, 10:28 p.m. UTC
Add a weak function that can be overwritten by platforms that tells whether
it is time to unregister boot console.

Signed-off-by: Pavel Tatashin <pasha.tatashin@oracle.com>
Shannon Nelson <shannon.nelson@oracle.com>
---
 kernel/printk/printk.c |   17 ++++++++++++++---
 1 files changed, 14 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
index 2984fb0..e5c7baa 100644
--- a/kernel/printk/printk.c
+++ b/kernel/printk/printk.c
@@ -2385,6 +2385,16 @@  static int __init keep_bootcon_setup(char *str)
 early_param("keep_bootcon", keep_bootcon_setup);
 
 /*
+ * Returns true of boot console should be kept, can be overwritten by platforms
+ */
+bool __weak plat_unregister_bootcon(struct console *newcon,
+				    struct console *bcon)
+{
+	return bcon &&
+		(newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV;
+}
+
+/*
  * The console driver calls this routine during kernel initialization
  * to register the console printing procedure with printk() and to
  * print any messages that were printed by the kernel before the
@@ -2409,6 +2419,7 @@  void register_console(struct console *newcon)
 	unsigned long flags;
 	struct console *bcon = NULL;
 	struct console_cmdline *c;
+	bool unreg_bootcon;
 
 	if (console_drivers)
 		for_each_console(bcon)
@@ -2503,6 +2514,8 @@  void register_console(struct console *newcon)
 	if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
 		newcon->flags &= ~CON_PRINTBUFFER;
 
+	unreg_bootcon = plat_unregister_bootcon(newcon, bcon);
+
 	/*
 	 *	Put this console in the list - keep the
 	 *	preferred driver at the head of the list.
@@ -2551,9 +2564,7 @@  void register_console(struct console *newcon)
 	pr_info("%sconsole [%s%d] enabled\n",
 		(newcon->flags & CON_BOOT) ? "boot" : "" ,
 		newcon->name, newcon->index);
-	if (bcon &&
-	    ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
-	    !keep_bootcon) {
+	if (unreg_bootcon && !keep_bootcon) {
 		/* We need to iterate through all boot consoles, to make
 		 * sure we print everything out, before we unregister them.
 		 */