]> Git Repo - linux.git/commitdiff
printk: reduce setup_text_buf size to LOG_LINE_MAX
authorJohn Ogness <[email protected]>
Wed, 30 Sep 2020 09:01:34 +0000 (11:07 +0206)
committerPetr Mladek <[email protected]>
Wed, 30 Sep 2020 11:54:21 +0000 (13:54 +0200)
@setup_text_buf only copies the original text messages (without any
prefix or extended text). It only needs to be LOG_LINE_MAX in size.

Signed-off-by: John Ogness <[email protected]>
Reviewed-by: Petr Mladek <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
kernel/printk/printk.c

index 15cd73da05286907de2e19991130742e467861f0..f5c2945d1e3f486b391d876ed95daf991344f7c6 100644 (file)
@@ -1095,7 +1095,7 @@ static unsigned int __init add_to_rb(struct printk_ringbuffer *rb,
        return prb_record_text_space(&e);
 }
 
-static char setup_text_buf[CONSOLE_EXT_LOG_MAX] __initdata;
+static char setup_text_buf[LOG_LINE_MAX] __initdata;
 
 void __init setup_log_buf(int early)
 {
This page took 0.061774 seconds and 4 git commands to generate.