diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2011-04-27 17:06:19 +0100 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2011-05-19 17:36:27 +0100 |
commit | 79e0d9bd262bdd36009e8092e57e34dc5e22a1c7 (patch) | |
tree | f61d4ea8f69202b96a0ad4c6f845eee13496b536 /lib/Kconfig.debug | |
parent | 52c3ce4ec5601ee383a14f1485f6bac7b278896e (diff) | |
download | kernel_samsung_aries-79e0d9bd262bdd36009e8092e57e34dc5e22a1c7.zip kernel_samsung_aries-79e0d9bd262bdd36009e8092e57e34dc5e22a1c7.tar.gz kernel_samsung_aries-79e0d9bd262bdd36009e8092e57e34dc5e22a1c7.tar.bz2 |
kmemleak: Select DEBUG_FS unconditionally in DEBUG_KMEMLEAK
In the past DEBUG_FS used to depend on SYSFS and DEBUG_KMEMLEAK selected
it conditionally. This is no longer the case, so always select DEBUG_FS
via DEBUG_KMEMLEAK.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'lib/Kconfig.debug')
-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 c768bcd..4eebb90 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -400,7 +400,7 @@ config DEBUG_KMEMLEAK depends on DEBUG_KERNEL && EXPERIMENTAL && !MEMORY_HOTPLUG && \ (X86 || ARM || PPC || S390 || SPARC64 || SUPERH || MICROBLAZE || TILE) - select DEBUG_FS if SYSFS + select DEBUG_FS select STACKTRACE if STACKTRACE_SUPPORT select KALLSYMS select CRC32 |