summaryrefslogtreecommitdiffstats
path: root/lib/Kconfig.debug
diff options
context:
space:
mode:
authorNicolas Boichat <drinkcat@chromium.org>2019-09-23 18:33:55 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2019-09-24 18:54:07 -0400
commitb751c52bb587ae66f773b15204ef7a147467f4c7 (patch)
treed3af8a380367c37df6797054edbecf356b3bcd79 /lib/Kconfig.debug
parent9d5f0be0f7556873cd00125dc579a9d9d186b0d0 (diff)
kmemleak: increase DEBUG_KMEMLEAK_EARLY_LOG_SIZE default to 16K
The current default value (400) is too low on many systems (e.g. some ARM64 platform takes up 1000+ entries). syzbot uses 16000 as default value, and has proved to be enough on beefy configurations, so let's pick that value. This consumes more RAM on boot (each entry is 160 bytes, so in total ~2.5MB of RAM), but the memory would later be freed (early_log is __initdata). Link: http://lkml.kernel.org/r/20190730154027.101525-1-drinkcat@chromium.org Signed-off-by: Nicolas Boichat <drinkcat@chromium.org> Suggested-by: Dmitry Vyukov <dvyukov@google.com> Acked-by: Catalin Marinas <catalin.marinas@arm.com> Acked-by: Dmitry Vyukov <dvyukov@google.com> Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Kees Cook <keescook@chromium.org> Cc: Petr Mladek <pmladek@suse.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Cc: Joe Lawrence <joe.lawrence@redhat.com> Cc: Uladzislau Rezki <urezki@gmail.com> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Andrey Ryabinin <aryabinin@virtuozzo.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/Kconfig.debug')
-rw-r--r--lib/Kconfig.debug2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index e0e14780a13d..3c88e54da86c 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -580,7 +580,7 @@ config DEBUG_KMEMLEAK_EARLY_LOG_SIZE
580 int "Maximum kmemleak early log entries" 580 int "Maximum kmemleak early log entries"
581 depends on DEBUG_KMEMLEAK 581 depends on DEBUG_KMEMLEAK
582 range 200 40000 582 range 200 40000
583 default 400 583 default 16000
584 help 584 help
585 Kmemleak must track all the memory allocations to avoid 585 Kmemleak must track all the memory allocations to avoid
586 reporting false positives. Since memory may be allocated or 586 reporting false positives. Since memory may be allocated or