diff options
author | Ingo Molnar <mingo@kernel.org> | 2015-07-01 10:19:11 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-07-01 10:19:11 +0200 |
commit | fb39f98d14d2c92531e79bcda5a0b802e2aaf202 (patch) | |
tree | 21030949cf624fc8af512545319c3fa78eb353dd /init | |
parent | 407a2c720556e8e340e06f6a7174f5d6d80cf9ea (diff) |
printk: Increase maximum CONFIG_LOG_BUF_SHIFT from 21 to 25
So I tried to some kernel debugging that produced a ton of kernel messages
on a big box, and wanted to save them all: but CONFIG_LOG_BUF_SHIFT maxes
out at 21 (2 MB).
Increase it to 25 (32 MB).
This does not affect any existing config or defaults.
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/Kconfig b/init/Kconfig index b999fa381bf9..db615e720d28 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -820,7 +820,7 @@ config IKCONFIG_PROC config LOG_BUF_SHIFT int "Kernel log buffer size (16 => 64KB, 17 => 128KB)" - range 12 21 + range 12 25 default 17 depends on PRINTK help |