Commit aa50b501 authored by Kinsey Ho's avatar Kinsey Ho Committed by Andrew Morton

mm: clean up mem_cgroup_iter()

A clean up to make variable names more clear and to improve code
readability.

No functional change.

Link: https://lkml.kernel.org/r/20240905003058.1859929-6-kinseyho@google.comSigned-off-by: default avatarKinsey Ho <kinseyho@google.com>
Reviewed-by: default avatarT.J. Mercier <tjmercier@google.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Michal Koutný <mkoutny@suse.com>
Cc: Muchun Song <muchun.song@linux.dev>
Cc: Roman Gushchin <roman.gushchin@linux.dev>
Cc: Shakeel Butt <shakeel.butt@linux.dev>
Cc: Tejun Heo <tj@kernel.org>
Cc: Yosry Ahmed <yosryahmed@google.com>
Cc: Zefan Li <lizefan.x@bytedance.com>
Cc: Hugh Dickins <hughd@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent ec0db74b
...@@ -987,8 +987,8 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root, ...@@ -987,8 +987,8 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
{ {
struct mem_cgroup_reclaim_iter *iter; struct mem_cgroup_reclaim_iter *iter;
struct cgroup_subsys_state *css; struct cgroup_subsys_state *css;
struct mem_cgroup *memcg; struct mem_cgroup *pos;
struct mem_cgroup *pos = NULL; struct mem_cgroup *next;
if (mem_cgroup_disabled()) if (mem_cgroup_disabled())
return NULL; return NULL;
...@@ -998,14 +998,13 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root, ...@@ -998,14 +998,13 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
rcu_read_lock(); rcu_read_lock();
restart: restart:
memcg = NULL; next = NULL;
if (reclaim) { if (reclaim) {
int gen; int gen;
struct mem_cgroup_per_node *mz; int nid = reclaim->pgdat->node_id;
mz = root->nodeinfo[reclaim->pgdat->node_id]; iter = &root->nodeinfo[nid]->iter;
iter = &mz->iter;
gen = atomic_read(&iter->generation); gen = atomic_read(&iter->generation);
/* /*
...@@ -1018,29 +1017,22 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root, ...@@ -1018,29 +1017,22 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
goto out_unlock; goto out_unlock;
pos = READ_ONCE(iter->position); pos = READ_ONCE(iter->position);
} else if (prev) { } else
pos = prev; pos = prev;
}
css = pos ? &pos->css : NULL; css = pos ? &pos->css : NULL;
for (;;) { while ((css = css_next_descendant_pre(css, &root->css))) {
css = css_next_descendant_pre(css, &root->css);
if (!css) {
break;
}
/* /*
* Verify the css and acquire a reference. The root * Verify the css and acquire a reference. The root
* is provided by the caller, so we know it's alive * is provided by the caller, so we know it's alive
* and kicking, and don't take an extra reference. * and kicking, and don't take an extra reference.
*/ */
if (css == &root->css || css_tryget(css)) { if (css == &root->css || css_tryget(css))
break; break;
}
} }
memcg = mem_cgroup_from_css(css); next = mem_cgroup_from_css(css);
if (reclaim) { if (reclaim) {
/* /*
...@@ -1048,13 +1040,13 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root, ...@@ -1048,13 +1040,13 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
* thread, so check that the value hasn't changed since we read * thread, so check that the value hasn't changed since we read
* it to avoid reclaiming from the same cgroup twice. * it to avoid reclaiming from the same cgroup twice.
*/ */
if (cmpxchg(&iter->position, pos, memcg) != pos) { if (cmpxchg(&iter->position, pos, next) != pos) {
if (css && css != &root->css) if (css && css != &root->css)
css_put(css); css_put(css);
goto restart; goto restart;
} }
if (!memcg) { if (!next) {
atomic_inc(&iter->generation); atomic_inc(&iter->generation);
/* /*
...@@ -1073,7 +1065,7 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root, ...@@ -1073,7 +1065,7 @@ struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
if (prev && prev != root) if (prev && prev != root)
css_put(&prev->css); css_put(&prev->css);
return memcg; return next;
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment