diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-21 15:40:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-21 15:40:15 -0400 |
commit | 47c317a7aaa2fbac03811a569829fa954e641520 (patch) | |
tree | e6e20c1d9d73e9b2377e4af8f8381af072f681bb /mm | |
parent | e89970aa93b06d0605a488e74af3b0a2a80e03b5 (diff) | |
parent | 0ebd652b35e988c0be3390e49b39cc064ba1cfce (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6:
slub: dump more data on slab corruption
SLUB: simplify re on_each_cpu()
Diffstat (limited to 'mm')
-rw-r--r-- | mm/slub.c | 10 |
1 files changed, 1 insertions, 9 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, |
@@ -1495,15 +1495,7 @@ static void flush_cpu_slab(void *d) | |||
1495 | 1495 | ||
1496 | static void flush_all(struct kmem_cache *s) | 1496 | static void flush_all(struct kmem_cache *s) |
1497 | { | 1497 | { |
1498 | #ifdef CONFIG_SMP | ||
1499 | on_each_cpu(flush_cpu_slab, s, 1); | 1498 | on_each_cpu(flush_cpu_slab, s, 1); |
1500 | #else | ||
1501 | unsigned long flags; | ||
1502 | |||
1503 | local_irq_save(flags); | ||
1504 | flush_cpu_slab(s); | ||
1505 | local_irq_restore(flags); | ||
1506 | #endif | ||
1507 | } | 1499 | } |
1508 | 1500 | ||
1509 | /* | 1501 | /* |