linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] mm/memcontrol: do not tweak node in mem_cgroup_init()
@ 2023-06-15  7:32 Haifeng Xu
  2023-06-15  8:14 ` Michal Hocko
  0 siblings, 1 reply; 6+ messages in thread
From: Haifeng Xu @ 2023-06-15  7:32 UTC (permalink / raw)
  To: mhocko
  Cc: roman.gushchin, hannes, shakeelb, akpm, cgroups, linux-mm,
	linux-kernel, Haifeng Xu

mem_cgroup_init() request for allocations from each possible node, and
it's used to be a problem because NODE_DATA is not allocated for offline
node. Things have already changed since commit 09f49dca570a9 ("mm: handle
uninitialized numa nodes gracefully"), so it's unnecessary to check for
!node_online nodes here.

Signed-off-by: Haifeng Xu <haifeng.xu@shopee.com>
---
 mm/memcontrol.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 4b27e245a055..c73c5fb33f65 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -7421,8 +7421,7 @@ static int __init mem_cgroup_init(void)
 	for_each_node(node) {
 		struct mem_cgroup_tree_per_node *rtpn;
 
-		rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL,
-				    node_online(node) ? node : NUMA_NO_NODE);
+		rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, node);
 
 		rtpn->rb_root = RB_ROOT;
 		rtpn->rb_rightmost = NULL;
-- 
2.25.1



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-06-19 13:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-15  7:32 [PATCH 1/2] mm/memcontrol: do not tweak node in mem_cgroup_init() Haifeng Xu
2023-06-15  8:14 ` Michal Hocko
2023-06-16  8:28   ` Haifeng Xu
2023-06-16  8:42     ` Michal Hocko
2023-06-19 13:04       ` [PATCH v2] " Haifeng Xu
2023-06-19 13:12         ` Michal Hocko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox