]> Git Repo - linux.git/commit
printk/console: Allow to disable console output by using console="" or console=null
authorPetr Mladek <[email protected]>
Wed, 11 Nov 2020 13:54:50 +0000 (14:54 +0100)
committerPetr Mladek <[email protected]>
Fri, 20 Nov 2020 11:29:05 +0000 (12:29 +0100)
commit3cffa06aeef7ece30f6b5ac0ea51f264e8fea4d0
treeac16d87d173ddb92a2d26e9c99d9e5ffd1c0afb0
parent757055ae8dedf5333af17b3b5b4b70ba9bc9da4e
printk/console: Allow to disable console output by using console="" or console=null

The commit 48021f98130880dd74 ("printk: handle blank console arguments
passed in.") prevented crash caused by empty console= parameter value.

Unfortunately, this value is widely used on Chromebooks to disable
the console output. The above commit caused performance regression
because the messages were pushed on slow console even though nobody
was watching it.

Use ttynull driver explicitly for console="" and console=null
parameters. It has been created for exactly this purpose.

It causes that preferred_console is set. As a result, ttySX and ttyX
are not used as a fallback. And only ttynull console gets registered by
default.

It still allows to register other consoles either by additional console=
parameters or SPCR. It prevents regression because it worked this way even
before. Also it is a sane semantic. Preventing output on all consoles
should be done another way, for example, by introducing mute_console
parameter.

Link: https://lore.kernel.org/r/[email protected]
Suggested-by: Sergey Senozhatsky <[email protected]>
Reviewed-by: Guenter Roeck <[email protected]>
Tested-by: Guenter Roeck <[email protected]>
Acked-by: Sergey Senozhatsky <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
kernel/printk/printk.c
This page took 0.056487 seconds and 4 git commands to generate.