]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
slub: use count_partial_free_approx() in slab_out_of_memory()
authorJianfeng Wang <jianfeng.w.wang@oracle.com>
Tue, 23 Apr 2024 04:55:54 +0000 (21:55 -0700)
committerVlastimil Babka <vbabka@suse.cz>
Tue, 23 Apr 2024 11:18:39 +0000 (13:18 +0200)
slab_out_of_memory() uses count_partial() to get the exact count
of free objects for each node. As it may get called in the slab
allocation path, count_partial_free_approx() can be used to avoid
the risk and overhead of traversing a long partial slab list.

At the same time, show_slab_objects() still uses count_partial().
Thus, slub users can still have the option to access the exact
count of objects via sysfs if the overhead is acceptable to them.

Signed-off-by: Jianfeng Wang <jianfeng.w.wang@oracle.com>
Acked-by: David Rientjes <rientjes@google.com>
Signed-off-by: Vlastimil Babka <vbabka@suse.cz>
mm/slub.c

index 7e2a208134c313ae9efad133cc255773c0fab3c9..3aa12b9b323d9e8969a3506cece15d512be08216 100644 (file)
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -3301,7 +3301,7 @@ slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
                unsigned long nr_objs;
                unsigned long nr_free;
 
-               nr_free  = count_partial(n, count_free);
+               nr_free  = count_partial_free_approx(n);
                nr_slabs = node_nr_slabs(n);
                nr_objs  = node_nr_objs(n);