diff options
author | Konstantin Khlebnikov <khlebnikov@yandex-team.ru> | 2017-10-13 15:58:22 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-10-13 16:18:33 -0700 |
commit | ca182551857cc2c1e6a2b7f1e72090a137a15008 (patch) | |
tree | 2811f50f3d352d6f82f453e05a76489637b2d1b0 /include | |
parent | 7e86600606cef21beec725039d70377fb364f881 (diff) | |
download | linux-stable-ca182551857cc2c1e6a2b7f1e72090a137a15008.tar.gz linux-stable-ca182551857cc2c1e6a2b7f1e72090a137a15008.tar.bz2 linux-stable-ca182551857cc2c1e6a2b7f1e72090a137a15008.zip |
kmemleak: clear stale pointers from task stacks
Kmemleak considers any pointers on task stacks as references. This
patch clears newly allocated and reused vmap stacks.
Link: http://lkml.kernel.org/r/150728990124.744199.8403409836394318684.stgit@buzz
Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/thread_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/thread_info.h b/include/linux/thread_info.h index 905d769d8ddc..5f7eeab990fe 100644 --- a/include/linux/thread_info.h +++ b/include/linux/thread_info.h @@ -42,7 +42,7 @@ enum { #define THREAD_ALIGN THREAD_SIZE #endif -#ifdef CONFIG_DEBUG_STACK_USAGE +#if IS_ENABLED(CONFIG_DEBUG_STACK_USAGE) || IS_ENABLED(CONFIG_DEBUG_KMEMLEAK) # define THREADINFO_GFP (GFP_KERNEL_ACCOUNT | __GFP_NOTRACK | \ __GFP_ZERO) #else |