From: Chengming Zhou Date: Wed, 21 Feb 2024 12:12:54 +0000 (+0000) Subject: mm, slab: fix the comment of cpu partial list X-Git-Tag: v6.9-rc1~156^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c94d222445c168788a8849413e676fcc256e9479;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Vlastimil Babka --- diff --git a/mm/slub.c b/mm/slub.c index d8d8dd8e98032..e28929e6e2526 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