cgroup/rstat: check updated_next only for root

After commit dc26532aed ("cgroup: rstat: punt root-level optimization to
individual controllers"), each rstat on updated_children list has its
->updated_next not NULL.

This means we can remove the check on ->updated_next, if we make sure
the subtree from @root is on list, which could be done by checking
updated_next for root.

tj: Coding style fixes.

Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
Reviewed-by: Michal Koutný <mkoutny@suse.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
Wei Yang 2021-12-25 00:09:32 +00:00 коммит произвёл Tejun Heo
Родитель 0da41f7348
Коммит f5f60d235e
1 изменённых файлов: 21 добавлений и 22 удалений

Просмотреть файл

@ -88,6 +88,7 @@ static struct cgroup *cgroup_rstat_cpu_pop_updated(struct cgroup *pos,
struct cgroup *root, int cpu) struct cgroup *root, int cpu)
{ {
struct cgroup_rstat_cpu *rstatc; struct cgroup_rstat_cpu *rstatc;
struct cgroup *parent;
if (pos == root) if (pos == root)
return NULL; return NULL;
@ -96,10 +97,14 @@ static struct cgroup *cgroup_rstat_cpu_pop_updated(struct cgroup *pos,
* We're gonna walk down to the first leaf and visit/remove it. We * We're gonna walk down to the first leaf and visit/remove it. We
* can pick whatever unvisited node as the starting point. * can pick whatever unvisited node as the starting point.
*/ */
if (!pos) if (!pos) {
pos = root; pos = root;
else /* return NULL if this subtree is not on-list */
if (!cgroup_rstat_cpu(pos, cpu)->updated_next)
return NULL;
} else {
pos = cgroup_parent(pos); pos = cgroup_parent(pos);
}
/* walk down to the first leaf */ /* walk down to the first leaf */
while (true) { while (true) {
@ -115,9 +120,7 @@ static struct cgroup *cgroup_rstat_cpu_pop_updated(struct cgroup *pos,
* However, due to the way we traverse, @pos will be the first * However, due to the way we traverse, @pos will be the first
* child in most cases. The only exception is @root. * child in most cases. The only exception is @root.
*/ */
if (rstatc->updated_next) { parent = cgroup_parent(pos);
struct cgroup *parent = cgroup_parent(pos);
if (parent) { if (parent) {
struct cgroup_rstat_cpu *prstatc; struct cgroup_rstat_cpu *prstatc;
struct cgroup **nextp; struct cgroup **nextp;
@ -138,10 +141,6 @@ static struct cgroup *cgroup_rstat_cpu_pop_updated(struct cgroup *pos,
return pos; return pos;
} }
/* only happens for @root */
return NULL;
}
/* see cgroup_rstat_flush() */ /* see cgroup_rstat_flush() */
static void cgroup_rstat_flush_locked(struct cgroup *cgrp, bool may_sleep) static void cgroup_rstat_flush_locked(struct cgroup *cgrp, bool may_sleep)
__releases(&cgroup_rstat_lock) __acquires(&cgroup_rstat_lock) __releases(&cgroup_rstat_lock) __acquires(&cgroup_rstat_lock)