diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-01-08 10:01:42 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-09 05:13:41 +0100 |
commit | 50dd26ba0947aa653f0e42897aad7a4adce4e620 (patch) | |
tree | c9d0e0b03024ceb4098311a1fe557038c6497089 | |
parent | [PATCH] radix-tree: reduce tree height upon partial truncation (diff) | |
download | linux-50dd26ba0947aa653f0e42897aad7a4adce4e620.tar.xz linux-50dd26ba0947aa653f0e42897aad7a4adce4e620.zip |
[PATCH] DEBUG_SLAB depends on SLAB
Make DEBUG_SLAB depend on SLAB.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: Matt Mackall <mpm@selenic.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | lib/Kconfig.debug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 80598cfd728c..c48260fb8fd9 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -79,7 +79,7 @@ config SCHEDSTATS config DEBUG_SLAB bool "Debug memory allocations" - depends on DEBUG_KERNEL + depends on DEBUG_KERNEL && SLAB help Say Y here to have the kernel do limited verification on memory allocation as well as poisoning memory on free to catch use of freed |