The quilt patch titled Subject: fixup! mm, slab: move memcg charging to post-alloc hook has been removed from the -mm tree. Its filename was mm-slab-move-memcg-charging-to-post-alloc-hook-fix.patch This patch was dropped because it was folded into mm-slab-move-memcg-charging-to-post-alloc-hook.patch ------------------------------------------------------ From: Vlastimil Babka <vbabka@xxxxxxx> Subject: fixup! mm, slab: move memcg charging to post-alloc hook Date: Wed, 3 Apr 2024 17:45:15 +0200 The call to memcg_alloc_abort_single() is wrong, it expects a pointer to single object, not an array. Link: https://lkml.kernel.org/r/4af50be2-4109-45e5-8a36-2136252a635e@xxxxxxx Signed-off-by: Vlastimil Babka <vbabka@xxxxxxx> Reported-by: Aishwarya TCV <aishwarya.tcv@xxxxxxx> Tested-by: Aishwarya TCV <aishwarya.tcv@xxxxxxx> Reviewed-by: Roman Gushchin <roman.gushchin@xxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Chengming Zhou <chengming.zhou@xxxxxxxxx> Cc: Christian Brauner <brauner@xxxxxxxxxx> Cc: Christoph Lameter <cl@xxxxxxxxx> Cc: Chuck Lever <chuck.lever@xxxxxxxxxx> Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Hyeonggon Yoo <42.hyeyoo@xxxxxxxxx> Cc: Jan Kara <jack@xxxxxxx> Cc: Jeff Layton <jlayton@xxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Cc: Josh Poimboeuf <jpoimboe@xxxxxxxxxx> Cc: Kees Cook <kees@xxxxxxxxxx> Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxxxx> Cc: Muchun Song <muchun.song@xxxxxxxxx> Cc: Pekka Enberg <penberg@xxxxxxxxxx> Cc: Shakeel Butt <shakeel.butt@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/slub.c~mm-slab-move-memcg-charging-to-post-alloc-hook-fix +++ a/mm/slub.c @@ -2172,7 +2172,7 @@ bool memcg_slab_post_alloc_hook(struct k return true; if (likely(size == 1)) { - memcg_alloc_abort_single(s, p); + memcg_alloc_abort_single(s, *p); *p = NULL; } else { kmem_cache_free_bulk(s, size, p); _ Patches currently in -mm which might be from vbabka@xxxxxxx are mm-page_alloc-change-move_freepages-to-__move_freepages_block.patch mm-slab-move-memcg-charging-to-post-alloc-hook.patch mm-slab-move-slab_memcg-hooks-to-mm-memcontrolc.patch