diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2009-06-26 17:38:25 +0100 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2009-06-26 17:38:25 +0100 |
commit | e0a2a1601bec01243bcad44414d06f59dae2eedb (patch) | |
tree | bb0f40e3d798c90c36a1f2befb0a0935fa78bdcc /mm | |
parent | a9d9058abab4ac17b79d500506e6c74bd16cecdc (diff) | |
download | op-kernel-dev-e0a2a1601bec01243bcad44414d06f59dae2eedb.zip op-kernel-dev-e0a2a1601bec01243bcad44414d06f59dae2eedb.tar.gz |
kmemleak: Enable task stacks scanning by default
This is to reduce the number of false positives reported.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/kmemleak.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/kmemleak.c b/mm/kmemleak.c index 17096d1..a38418a 100644 --- a/mm/kmemleak.c +++ b/mm/kmemleak.c @@ -194,7 +194,7 @@ static unsigned long jiffies_min_age; /* delay between automatic memory scannings */ static signed long jiffies_scan_wait; /* enables or disables the task stacks scanning */ -static int kmemleak_stack_scan; +static int kmemleak_stack_scan = 1; /* mutex protecting the memory scanning */ static DEFINE_MUTEX(scan_mutex); /* mutex protecting the access to the /sys/kernel/debug/kmemleak file */ |