Skip to content

Commit

Permalink
SLUB: simplify re on_each_cpu()
Browse files Browse the repository at this point in the history
on_each_cpu() expands to function call on UP, too.

Acked-by: Christoph Lameter <cl@linux-foundation.org>
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
  • Loading branch information
Alexey Dobriyan authored and Pekka Enberg committed Jul 16, 2008
1 parent a3cf859 commit 41ab859
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions mm/slub.c
Original file line number Diff line number Diff line change
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 41ab859

Please sign in to comment.