The patch titled memcg: do not expose uninitialized mem_cgroup_per_node to world has been added to the -mm tree. Its filename is memcg-do-not-expose-uninitialized-mem_cgroup_per_node-to-world.patch 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/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: memcg: do not expose uninitialized mem_cgroup_per_node to world From: Igor Mammedov <imammedo@xxxxxxxxxx> Signed-off-by: Igor Mammedov <imammedo@xxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxx> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memcontrol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/memcontrol.c~memcg-do-not-expose-uninitialized-mem_cgroup_per_node-to-world mm/memcontrol.c --- a/mm/memcontrol.c~memcg-do-not-expose-uninitialized-mem_cgroup_per_node-to-world +++ a/mm/memcontrol.c @@ -4707,7 +4707,6 @@ static int alloc_mem_cgroup_per_zone_inf if (!pn) return 1; - mem->info.nodeinfo[node] = pn; for (zone = 0; zone < MAX_NR_ZONES; zone++) { mz = &pn->zoneinfo[zone]; for_each_lru(l) @@ -4716,6 +4715,7 @@ static int alloc_mem_cgroup_per_zone_inf mz->on_tree = false; mz->mem = mem; } + mem->info.nodeinfo[node] = pn; return 0; } _ Patches currently in -mm which might be from imammedo@xxxxxxxxxx are memcg-do-not-expose-uninitialized-mem_cgroup_per_node-to-world.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html