* [folded-merged] memcg-rename-mem_cgroup_ino-to-mem_cgroup_id-fix-fix.patch removed from -mm tree
@ 2026-01-27 3:55 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2026-01-27 3:55 UTC (permalink / raw)
To: mm-commits, sj, shakeel.butt, akpm, akpm
The quilt patch titled
Subject: memcg-mem_cgroup_get_from_ino-returns-null-on-error-fix
has been removed from the -mm tree. Its filename was
memcg-rename-mem_cgroup_ino-to-mem_cgroup_id-fix-fix.patch
This patch was dropped because it was folded into memcg-rename-mem_cgroup_ino-to-mem_cgroup_id.patch
------------------------------------------------------
From: Andrew Morton <akpm@linux-foundation.org>
Subject: memcg-mem_cgroup_get_from_ino-returns-null-on-error-fix
Date: Mon Jan 12 03:36:40 PM PST 2026
build fix
mm/memcontrol.c: In function 'mem_cgroup_get_from_id':
mm/memcontrol.c:3624:35: error: 'ino' undeclared (first use in this function); did you mean 'int'?
3624 | cgrp = cgroup_get_from_id(ino);
| ^~~
| int
Cc: SeongJae Park <sj@kernel.org>
Cc: Shakeel Butt <shakeel.butt@linux.dev>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/memcontrol.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/mm/memcontrol.c~memcg-rename-mem_cgroup_ino-to-mem_cgroup_id-fix-fix
+++ a/mm/memcontrol.c
@@ -3621,7 +3621,7 @@ struct mem_cgroup *mem_cgroup_get_from_i
struct cgroup_subsys_state *css;
struct mem_cgroup *memcg = NULL;
- cgrp = cgroup_get_from_id(ino);
+ cgrp = cgroup_get_from_id(id);
if (IS_ERR(cgrp))
return NULL;
_
Patches currently in -mm which might be from akpm@linux-foundation.org are
memcg-rename-mem_cgroup_ino-to-mem_cgroup_id.patch
mm-add-wq_percpu-to-alloc_workqueue-users-fix.patch
mm-add-wq_percpu-to-alloc_workqueue-users-fix-fix.patch
sparc-mm-export-symbols-for-lazy_mmu_mode-kunit-tests-fix.patch
mm-relocate-the-page-table-ceiling-and-floor-definitions-fix.patch
mm-vma-document-possible-vma-vm_refcnt-values-and-reference-comment-fix.patch
mm-vma-introduce-helper-struct-thread-through-exclusive-lock-fns-fix.patch
mm-update-shmem__file_-functions-to-use-vma_flags_t-fix.patch
mm-pagewalk-use-min-to-simplify-the-code-fix.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-01-27 3:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-27 3:55 [folded-merged] memcg-rename-mem_cgroup_ino-to-mem_cgroup_id-fix-fix.patch removed from -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.