]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
slub: dump more data on slab corruption
authorPekka Enberg <penberg@cs.helsinki.fi>
Sat, 19 Jul 2008 11:17:22 +0000 (14:17 +0300)
committerPekka Enberg <penberg@cs.helsinki.fi>
Sat, 19 Jul 2008 11:17:22 +0000 (14:17 +0300)
The limit of 128 bytes is too small when debugging slab corruption of the skb
cache, for example. So increase the limit to PAGE_SIZE to make debugging
corruptions easier.

Acked-by: Ingo Molnar <mingo@elte.hu>
Acked-by: Christoph Lameter <cl@linux-foundation.org>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
mm/slub.c

index 6cd9fec18f929f6050bc308393af54cfd3838829..6d4a49c1ff2fc27bef0616c03016394d551fc5be 100644 (file)
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -492,7 +492,7 @@ static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
        if (p > addr + 16)
                print_section("Bytes b4", p - 16, 16);
 
-       print_section("Object", p, min(s->objsize, 128));
+       print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE));
 
        if (s->flags & SLAB_RED_ZONE)
                print_section("Redzone", p + s->objsize,