linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] slub: let need_slab_obj_exts() return false if SLAB_NO_OBJ_EXT is set
@ 2026-02-05 12:07 Hao Li
  2026-02-06  0:53 ` Harry Yoo
  0 siblings, 1 reply; 7+ messages in thread
From: Hao Li @ 2026-02-05 12:07 UTC (permalink / raw)
  To: vbabka, harry.yoo, akpm, cl, rientjes, roman.gushchin, linux-mm,
	linux-kernel, hao.li
  Cc: akpm, cl, rientjes, roman.gushchin, linux-mm, linux-kernel, Hao Li

SLAB_NO_OBJ_EXT is set for boot caches, but need_slab_obj_exts() doesn't
check this flag. We should return false unconditionally when
SLAB_NO_OBJ_EXT is set.

Signed-off-by: Hao Li <hao.li@linux.dev>
---
 mm/slub.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/mm/slub.c b/mm/slub.c
index 865047eaf02b..3b1402e1c39d 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -901,6 +901,9 @@ static inline unsigned long get_orig_size(struct kmem_cache *s, void *object)
  */
 static inline bool need_slab_obj_exts(struct kmem_cache *s)
 {
+	if (s->flags & SLAB_NO_OBJ_EXT)
+		return false;
+
 	if (memcg_kmem_online() && (s->flags & SLAB_ACCOUNT))
 		return true;
 
-- 
2.50.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2026-02-06 11:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-02-05 12:07 [PATCH] slub: let need_slab_obj_exts() return false if SLAB_NO_OBJ_EXT is set Hao Li
2026-02-06  0:53 ` Harry Yoo
2026-02-06  9:40   ` Vlastimil Babka
2026-02-06 10:01     ` Harry Yoo
2026-02-06 10:03       ` Vlastimil Babka
2026-02-06 10:21         ` Harry Yoo
2026-02-06 11:35           ` Hao Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox