projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7eb0d5e
)
kmemleak: Improve the "Early log buffer exceeded" error message
author
Catalin Marinas
<catalin.marinas@arm.com>
Fri, 11 Sep 2009 09:42:09 +0000
(10:42 +0100)
committer
Catalin Marinas
<catalin.marinas@arm.com>
Fri, 11 Sep 2009 09:42:09 +0000
(10:42 +0100)
Based on a suggestion from Jaswinder, clarify what the user would need
to do to avoid this error message from kmemleak.
Reported-by: Jaswinder Singh Rajput <jaswinder@kernel.org>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
mm/kmemleak.c
patch
|
blob
|
blame
|
history
diff --git
a/mm/kmemleak.c
b/mm/kmemleak.c
index 39da954b5059f19cf803ea6e8d3728188c57ad1d..4ea4510e2996cb5dab18852cb1f5e285f7fbd81e 100644
(file)
--- a/
mm/kmemleak.c
+++ b/
mm/kmemleak.c
@@
-792,7
+792,8
@@
static void __init log_early(int op_type, const void *ptr, size_t size,
struct early_log *log;
if (crt_early_log >= ARRAY_SIZE(early_log)) {
- pr_warning("Early log buffer exceeded\n");
+ pr_warning("Early log buffer exceeded, "
+ "please increase DEBUG_KMEMLEAK_EARLY_LOG_SIZE\n");
kmemleak_disable();
return;
}