Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 318df36e authored by Joonsoo Kim's avatar Joonsoo Kim Committed by Pekka Enberg
Browse files

slub: do not put a slab to cpu partial list when cpu_partial is 0



In free path, we don't check number of cpu_partial, so one slab can
be linked in cpu partial list even if cpu_partial is 0. To prevent this,
we should check number of cpu_partial in put_cpu_partial().

Acked-by: default avatarChristoph Lameeter <cl@linux.com>
Reviewed-by: default avatarWanpeng Li <liwanp@linux.vnet.ibm.com>
Signed-off-by: default avatarJoonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: default avatarPekka Enberg <penberg@kernel.org>
parent c17fd13e
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1954,6 +1954,9 @@ static void put_cpu_partial(struct kmem_cache *s, struct page *page, int drain)
	int pages;
	int pobjects;

	if (!s->cpu_partial)
		return;

	do {
		pages = 0;
		pobjects = 0;