diff options
author | John Ogness <john.ogness@linutronix.de> | 2020-08-12 09:37:22 +0206 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-11-05 11:08:41 +0100 |
commit | 040b531929dae903c5b347d4a87ca969a86e6906 (patch) | |
tree | 113d43444693faa2a609cf0913158246abfafa89 /init | |
parent | f3dc5ac4011eac5a3a8b28fc13fe08b7dfb5af34 (diff) | |
download | linux-stable-040b531929dae903c5b347d4a87ca969a86e6906.tar.gz linux-stable-040b531929dae903c5b347d4a87ca969a86e6906.tar.bz2 linux-stable-040b531929dae903c5b347d4a87ca969a86e6906.zip |
printk: reduce LOG_BUF_SHIFT range for H8300
[ Upstream commit 550c10d28d21bd82a8bb48debbb27e6ed53262f6 ]
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>
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init/Kconfig b/init/Kconfig index 47035b5a46f6..5eb91dde4018 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -535,7 +535,8 @@ config IKCONFIG_PROC 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 |