aboutsummaryrefslogtreecommitdiff
path: root/mm/slub.c
diff options
context:
space:
mode:
authorGravatar Chengming Zhou <chengming.zhou@linux.dev> 2024-02-21 12:12:54 +0000
committerGravatar Vlastimil Babka <vbabka@suse.cz> 2024-02-21 16:20:53 +0100
commitc94d222445c168788a8849413e676fcc256e9479 (patch)
tree121a5f3eab2a763d751cfa40c92b43c3676b4f6c /mm/slub.c
parentmm, slab: remove unused object_size parameter in kmem_cache_flags() (diff)
downloadlinux-c94d222445c168788a8849413e676fcc256e9479.tar.gz
linux-c94d222445c168788a8849413e676fcc256e9479.tar.bz2
linux-c94d222445c168788a8849413e676fcc256e9479.zip
mm, slab: fix the comment of cpu partial list
The partial slabs on cpu partial list are not frozen after the commit 8cd3fa428b56 ("slub: Delay freezing of partial slabs") merged. So fix the comment. Signed-off-by: Chengming Zhou <chengming.zhou@linux.dev> Signed-off-by: Vlastimil Babka <vbabka@suse.cz>
Diffstat (limited to 'mm/slub.c')
-rw-r--r--mm/slub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slub.c b/mm/slub.c
index d8d8dd8e9803..e28929e6e252 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -391,7 +391,7 @@ struct kmem_cache_cpu {
};
struct slab *slab; /* The slab from which we are allocating */
#ifdef CONFIG_SLUB_CPU_PARTIAL
- struct slab *partial; /* Partially allocated frozen slabs */
+ struct slab *partial; /* Partially allocated slabs */
#endif
local_lock_t lock; /* Protects the fields above */
#ifdef CONFIG_SLUB_STATS