From: Catalin Marinas Date: Wed, 14 May 2014 00:02:04 +0000 (+1000) Subject: lib/radix-tree.c: update the kmemleak stack trace for radix tree allocations X-Git-Tag: next-20140516~2^2~257 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e82e4c1cf385c980fd5d439d6a0459faea7f92db;p=karo-tx-linux.git lib/radix-tree.c: update the kmemleak stack trace for radix tree allocations Since radix_tree_preload() stack trace is not always useful for debugging an actual radix tree memory leak, this patch updates the kmemleak allocation stack trace in the radix_tree_node_alloc() function. Signed-off-by: Catalin Marinas Acked-by: Johannes Weiner Signed-off-by: Andrew Morton --- diff --git a/lib/radix-tree.c b/lib/radix-tree.c index 55f7a9c27312..6ad8130f2053 100644 --- a/lib/radix-tree.c +++ b/lib/radix-tree.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include @@ -200,6 +201,11 @@ radix_tree_node_alloc(struct radix_tree_root *root) rtp->nodes[rtp->nr - 1] = NULL; rtp->nr--; } + /* + * Update the allocation stack trace as this is more useful + * for debugging. + */ + kmemleak_update_trace(ret); } if (ret == NULL) ret = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);