]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
printk: reduce LOG_BUF_SHIFT range for H8300
authorJohn Ogness <john.ogness@linutronix.de>
Wed, 12 Aug 2020 07:31:22 +0000 (09:37 +0206)
committerStefan Bader <stefan.bader@canonical.com>
Thu, 10 Dec 2020 11:02:49 +0000 (12:02 +0100)
BugLink: https://bugs.launchpad.net/bugs/1904450
[ 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>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: William Breathitt Gray <william.gray@canonical.com>
init/Kconfig

index 41cd3951412d908e1f5d4f7a144be20bbf5eadd2..f7b95a10fcc58abf4f8403886956ddf2c844ec03 100644 (file)
@@ -603,7 +603,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