The patch titled Subject: memcg-drop-kmemlimit_in_bytes-fix has been added to the -mm mm-unstable branch. Its filename is memcg-drop-kmemlimit_in_bytes-fix.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/memcg-drop-kmemlimit_in_bytes-fix.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Michal Hocko <mhocko@xxxxxxxx> Subject: memcg-drop-kmemlimit_in_bytes-fix Date: Fri, 7 Jul 2023 09:07:47 +0200 restore _KMEM switch case Link: https://lkml.kernel.org/r/ZKe5wxdbvPi5Cwd7@xxxxxxxxxxxxxx Signed-off-by: Michal Hocko <mhocko@xxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Muchun Song <muchun.song@xxxxxxxxx> Cc: Roman Gushchin <roman.gushchin@xxxxxxxxx> Cc: Shakeel Butt <shakeelb@xxxxxxxxxx> Cc: Tejun Heo <tj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memcontrol.c | 3 +++ 1 file changed, 3 insertions(+) --- a/mm/memcontrol.c~memcg-drop-kmemlimit_in_bytes-fix +++ a/mm/memcontrol.c @@ -3708,6 +3708,9 @@ static u64 mem_cgroup_read_u64(struct cg case _MEMSWAP: counter = &memcg->memsw; break; + case _KMEM: + counter = &memcg->kmem; + break; case _TCP: counter = &memcg->tcpmem; break; _ Patches currently in -mm which might be from mhocko@xxxxxxxx are memcg-drop-kmemlimit_in_bytes.patch memcg-drop-kmemlimit_in_bytes-fix.patch