Skip to content

Commit

Permalink
slub: dump more data on slab corruption
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Pekka Enberg committed Jul 19, 2008
1 parent 41ab859 commit 0ebd652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm/slub.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0ebd652

Please sign in to comment.