diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2008-07-19 07:17:22 -0400 |
---|---|---|
committer | Pekka Enberg <penberg@cs.helsinki.fi> | 2008-07-19 07:17:22 -0400 |
commit | 0ebd652b35e988c0be3390e49b39cc064ba1cfce (patch) | |
tree | 320df368cab858929101325f9e3b956e9cd3c52c /mm/slub.c | |
parent | 41ab8592ca35a20580665cae18c172816236b21e (diff) |
slub: dump more data on slab corruption
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>
Diffstat (limited to 'mm/slub.c')
-rw-r--r-- | mm/slub.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -492,7 +492,7 @@ static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p) | |||
492 | if (p > addr + 16) | 492 | if (p > addr + 16) |
493 | print_section("Bytes b4", p - 16, 16); | 493 | print_section("Bytes b4", p - 16, 16); |
494 | 494 | ||
495 | print_section("Object", p, min(s->objsize, 128)); | 495 | print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE)); |
496 | 496 | ||
497 | if (s->flags & SLAB_RED_ZONE) | 497 | if (s->flags & SLAB_RED_ZONE) |
498 | print_section("Redzone", p + s->objsize, | 498 | print_section("Redzone", p + s->objsize, |