Skip to content

Commit

Permalink
printk: reduce LOG_BUF_SHIFT range for H8300
Browse files Browse the repository at this point in the history
[ Upstream commit 550c10d ]

The .bss section for the h8300 is relatively small. A value of
CONFIG_LOG_BUF_SHIFT that is larger than 19 will create a static
printk ringbuffer that is too large. Limit the range appropriately
for the H8300.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: John Ogness <john.ogness@linutronix.de>
Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Petr Mladek <pmladek@suse.com>
Link: https://lore.kernel.org/r/20200812073122.25412-1-john.ogness@linutronix.de
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
jogness authored and gregkh committed Nov 5, 2020
1 parent 80685a9 commit b3142fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion init/Kconfig
Expand Up @@ -594,7 +594,8 @@ config IKHEADERS

config LOG_BUF_SHIFT
int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
range 12 25
range 12 25 if !H8300
range 12 19 if H8300
default 17
depends on PRINTK
help
Expand Down

0 comments on commit b3142fe

Please sign in to comment.