diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2009-10-28 13:33:09 +0000 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2009-10-28 15:11:00 +0000 |
commit | c017b4be3e84176cab10eca5e6c4faeb8cfc6f3e (patch) | |
tree | b858895759880262dff8754ef58b3e716bebae2c /mm/slab.c | |
parent | e7cb55b946a2182c347047dc903c6ed0daef100c (diff) | |
download | op-kernel-dev-c017b4be3e84176cab10eca5e6c4faeb8cfc6f3e.zip op-kernel-dev-c017b4be3e84176cab10eca5e6c4faeb8cfc6f3e.tar.gz |
kmemleak: Simplify the kmemleak_scan_area() function prototype
This function was taking non-necessary arguments which can be determined
by kmemleak. The patch also modifies the calling sites.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Christoph Lameter <cl@linux-foundation.org>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'mm/slab.c')
-rw-r--r-- | mm/slab.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2584,8 +2584,8 @@ static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp, * kmemleak does not treat the ->s_mem pointer as a reference * to the object. Otherwise we will not report the leak. */ - kmemleak_scan_area(slabp, offsetof(struct slab, list), - sizeof(struct list_head), local_flags); + kmemleak_scan_area(&slabp->list, sizeof(struct list_head), + local_flags); if (!slabp) return NULL; } else { |