Re: Size-128 slab leak

From: Pekka Enberg
Date: Thu Feb 02 2006 - 02:30:40 EST


Hi,

On 2/2/06, Andrew Morton <akpm@xxxxxxxx> wrote:
> @@ -2550,6 +2550,15 @@ static void *cache_alloc_debugcheck_afte
> *dbg_redzone1(cachep, objp) = RED_ACTIVE;
> *dbg_redzone2(cachep, objp) = RED_ACTIVE;
> }
> + {
> + int objnr;
> + struct slab *slabp;
> +
> + slabp = page_get_slab(virt_to_page(objp));
> +
> + objnr = (objp - slabp->s_mem) / cachep->objsize;
> + slab_bufctl(slabp)[objnr] = (unsigned long)caller;
> + }

We already have last caller in dbg_userword. Manfred, is there a
reason we're not using it?

Pekka
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/