diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-11-06 18:33:45 -0500 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2009-11-06 18:16:04 -0500 |
commit | b60e26a2f03d963f8c79ad7920d64abc4d38ecbc (patch) | |
tree | 2245ca25d14ba61cd62a9108063576fe6fc65f45 /lib | |
parent | 04609ccc40c4e8f3eabe8894eb0de881c8b984fd (diff) |
kmemleak: fix kconfig for crc32 build error
kmemleak uses crc32 functions so it needs to select CRC32.
Fixes build error:
kmemleak.c:(.text+0x7ce62): undefined reference to `crc32_le'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.debug | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 30df5865ecbe..732b9f6ab1ee 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -352,6 +352,7 @@ config DEBUG_KMEMLEAK | |||
352 | select DEBUG_FS if SYSFS | 352 | select DEBUG_FS if SYSFS |
353 | select STACKTRACE if STACKTRACE_SUPPORT | 353 | select STACKTRACE if STACKTRACE_SUPPORT |
354 | select KALLSYMS | 354 | select KALLSYMS |
355 | select CRC32 | ||
355 | help | 356 | help |
356 | Say Y here if you want to enable the memory leak | 357 | Say Y here if you want to enable the memory leak |
357 | detector. The memory allocation/freeing is traced in a way | 358 | detector. The memory allocation/freeing is traced in a way |