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

Commit a5aa63a5 authored by Joonsoo Kim's avatar Joonsoo Kim Committed by Linus Torvalds
Browse files

mm/slab: drain the free slab as much as possible



slabs_tofree() implies freeing all free slab.  We can do it with just
providing INT_MAX.

Signed-off-by: default avatarJoonsoo Kim <iamjoonsoo.kim@lge.com>
Acked-by: default avatarChristoph Lameter <cl@linux.com>
Cc: Jesper Dangaard Brouer <brouer@redhat.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8888177e
Loading
Loading
Loading
Loading
+3 −9
Original line number Original line Diff line number Diff line
@@ -895,12 +895,6 @@ static int init_cache_node_node(int node)
	return 0;
	return 0;
}
}


static inline int slabs_tofree(struct kmem_cache *cachep,
						struct kmem_cache_node *n)
{
	return (n->free_objects + cachep->num - 1) / cachep->num;
}

static void cpuup_canceled(long cpu)
static void cpuup_canceled(long cpu)
{
{
	struct kmem_cache *cachep;
	struct kmem_cache *cachep;
@@ -965,7 +959,7 @@ static void cpuup_canceled(long cpu)
		n = get_node(cachep, node);
		n = get_node(cachep, node);
		if (!n)
		if (!n)
			continue;
			continue;
		drain_freelist(cachep, n, slabs_tofree(cachep, n));
		drain_freelist(cachep, n, INT_MAX);
	}
	}
}
}


@@ -1117,7 +1111,7 @@ static int __meminit drain_cache_node_node(int node)
		if (!n)
		if (!n)
			continue;
			continue;


		drain_freelist(cachep, n, slabs_tofree(cachep, n));
		drain_freelist(cachep, n, INT_MAX);


		if (!list_empty(&n->slabs_full) ||
		if (!list_empty(&n->slabs_full) ||
		    !list_empty(&n->slabs_partial)) {
		    !list_empty(&n->slabs_partial)) {
@@ -2311,7 +2305,7 @@ int __kmem_cache_shrink(struct kmem_cache *cachep, bool deactivate)


	check_irq_on();
	check_irq_on();
	for_each_kmem_cache_node(cachep, node, n) {
	for_each_kmem_cache_node(cachep, node, n) {
		drain_freelist(cachep, n, slabs_tofree(cachep, n));
		drain_freelist(cachep, n, INT_MAX);


		ret += !list_empty(&n->slabs_full) ||
		ret += !list_empty(&n->slabs_full) ||
			!list_empty(&n->slabs_partial);
			!list_empty(&n->slabs_partial);