From: Suren Baghdasaryan Date: Mon, 15 Sep 2025 20:09:18 +0000 (-0700) Subject: slab: mark slab->obj_exts allocation failures unconditionally X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f7381b9116407ba2a429977c80ff8df953ea9354;p=thirdparty%2Fkernel%2Fstable.git slab: mark slab->obj_exts allocation failures unconditionally alloc_slab_obj_exts() should mark failed obj_exts vector allocations independent on whether the vector is being allocated for a new or an existing slab. Current implementation skips doing this for existing slabs. Fix this by marking failed allocations unconditionally. Fixes: 09c46563ff6d ("codetag: debug: introduce OBJEXTS_ALLOC_FAIL to mark failed slab_ext allocations") Reported-by: Shakeel Butt Closes: https://lore.kernel.org/all/avhakjldsgczmq356gkwmvfilyvf7o6temvcmtt5lqd4fhp5rk@47gp2ropyixg/ Signed-off-by: Suren Baghdasaryan Cc: stable@vger.kernel.org # v6.10+ Acked-by: Shakeel Butt Signed-off-by: Vlastimil Babka --- diff --git a/mm/slub.c b/mm/slub.c index 674c5036a18a0..b74d65aa32c6b 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -2039,8 +2039,7 @@ int alloc_slab_obj_exts(struct slab *slab, struct kmem_cache *s, slab_nid(slab)); if (!vec) { /* Mark vectors which failed to allocate */ - if (new_slab) - mark_failed_objexts_alloc(slab); + mark_failed_objexts_alloc(slab); return -ENOMEM; }