summaryrefslogtreecommitdiffstats
path: root/mm/slub.c
diff options
context:
space:
mode:
authorChen Tao <chentao3@hotmail.com>2020-10-16 05:10:01 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2020-10-16 20:11:19 +0200
commit70b6d25ec59cbc1327456ca15c2a779421ed13ce (patch)
tree0912a8047dcbc38543c448db74830ddf34dba860 /mm/slub.c
parentmm: fix some broken comments (diff)
downloadlinux-70b6d25ec59cbc1327456ca15c2a779421ed13ce.tar.xz
linux-70b6d25ec59cbc1327456ca15c2a779421ed13ce.zip
mm: fix some comments formatting
Correct one function name "get_partials" with "get_partial". Update the old struct name of list3 with kmem_cache_node. Signed-off-by: Chen Tao <chentao3@hotmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Reviewed-by: Mike Rapoport <rppt@linux.ibm.com> Link: https://lkml.kernel.org/r/Message-ID: Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to '')
-rw-r--r--mm/slub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slub.c b/mm/slub.c
index 61d0d2968413..b30be2385d1c 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -1956,7 +1956,7 @@ static void *get_partial_node(struct kmem_cache *s, struct kmem_cache_node *n,
/*
* Racy check. If we mistakenly see no partial slabs then we
* just allocate an empty slab. If we mistakenly try to get a
- * partial slab and there is none available then get_partials()
+ * partial slab and there is none available then get_partial()
* will return NULL.
*/
if (!n || !n->nr_partial)