On Mon, Jun 08, 2015 at 06:14:32AM +0100, Liu, XinwuX wrote: > when kernel uses kmalloc to allocate memory, slub/slab will find > a suitable kmem_cache. Ususally the cache's object size is often > greater than requested size. There is unused space which contains > dirty data. These dirty data might have pointers pointing to a block > of leaked memory. Kernel wouldn't consider this memory as leaked when > scanning kmemleak object. > > The patch fixes it by clearing the unused memory. In general, I'm not bothered about this. We may miss a leak or two but in my experience they eventually show up at some point. Have you seen any real leaks not being reported because of this? Note that we already have a lot of non-pointer data that is scanned by kmemleak (it can't distinguish which members are pointers in a data structure). > mm/slab.c | 22 +++++++++++++++++++++- > mm/slub.c | 35 +++++++++++++++++++++++++++++++++++ > 2 files changed, 56 insertions(+), 1 deletion(-) > > diff --git a/mm/slab.c b/mm/slab.c > index 7eb38dd..ef25e7d 100644 > --- a/mm/slab.c > +++ b/mm/slab.c > @@ -3423,6 +3423,12 @@ kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size) > ret = slab_alloc(cachep, flags, _RET_IP_); > +#ifdef CONFIG_DEBUG_KMEMLEAK > + int delta = cachep->object_size - size; > + > + if (ret && likely(!(flags & __GFP_ZERO)) && (delta > 0)) > + memset((void *)((char *)ret + size), 0, delta); > +#endif On the implementation side, there is too much code duplication. I would rather add something like the kmemleak_erase(), e.g. kmemleak_erase_range(addr, object_size, actual_size) which is an empty static inline when !CONFIG_DEBUG_KMEMLEAK. Kmemleak already has an API for similar cases, kmemleak_scan_area(). While this allocates an extra structure, it could be adapted to only change some of the object properties. However, the rb tree lookup is probably still slower than a memset(). -- Catalin -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>