mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-09 06:33:34 +00:00
SLUB: simplify re on_each_cpu()
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>
This commit is contained in:
parent
a3cf859321
commit
41ab8592ca
@ -1495,15 +1495,7 @@ static void flush_cpu_slab(void *d)
|
|||||||
|
|
||||||
static void flush_all(struct kmem_cache *s)
|
static void flush_all(struct kmem_cache *s)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_SMP
|
|
||||||
on_each_cpu(flush_cpu_slab, s, 1);
|
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
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user