Skip to content

Commit

Permalink
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel…
Browse files Browse the repository at this point in the history
…/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()
  • Loading branch information
Linus Torvalds committed Jul 21, 2008
2 parents e89970a + 0ebd652 commit 47c317a
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions 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 Expand Up @@ -1495,15 +1495,7 @@ static void flush_cpu_slab(void *d)

static void flush_all(struct kmem_cache *s)
{
#ifdef CONFIG_SMP
on_each_cpu(flush_cpu_slab, s, 1);
#else
unsigned long flags;

local_irq_save(flags);
flush_cpu_slab(s);
local_irq_restore(flags);
#endif
}

/*
Expand Down

0 comments on commit 47c317a

Please sign in to comment.