From: Chen Ridong <chenridong@huawei.com>
To: <tj@kernel.org>, <lizefan.x@bytedance.com>, <hannes@cmpxchg.org>,
<longman@redhat.com>, <adityakali@google.com>,
<sergeh@kernel.org>, <mkoutny@suse.com>, <guro@fb.com>
Cc: <cgroups@vger.kernel.org>
Subject: [PATHC v3 -next 3/3] cgroup/freezer: Reduce redundant propagation for cgroup_propagate_frozen
Date: Sun, 15 Sep 2024 07:13:07 +0000 [thread overview]
Message-ID: <20240915071307.1976026-4-chenridong@huawei.com> (raw)
In-Reply-To: <20240915071307.1976026-1-chenridong@huawei.com>
When a cgroup is frozen/unfrozen, it will always propagate bottom up.
However it is unnecessary to propagate to the top every time. This patch
aims to reduce redundant propagation for cgroup_propagate_frozen.
For example, subtree like:
a
|
b
/ | \
c d e
If c is frozen, and d and e are not frozen now, it doesn't have to
propagate to a; Only when c, d and e are all frozen, b and a could be set
to frozen. Therefore, if nr_frozen_descendants is not equal to
nr_descendants, just stop propagate. If a descendant is frozen, the
parent's nr_frozen_descendants add child->nr_descendants + 1. This can
reduce redundant propagation.
Additionally, cgroup_propagate_frozen is not only used to update the
ancestor state but also to update itself. This approach can make the code
clearer and significantly simplify cgroup_update_frozen.
Signed-off-by: Chen Ridong <chenridong@huawei.com>
---
include/linux/cgroup-defs.h | 4 +++-
kernel/cgroup/freezer.c | 29 +++++++++++++++++------------
2 files changed, 20 insertions(+), 13 deletions(-)
diff --git a/include/linux/cgroup-defs.h b/include/linux/cgroup-defs.h
index dd1ecab99eeb..41e4e5a7ae55 100644
--- a/include/linux/cgroup-defs.h
+++ b/include/linux/cgroup-defs.h
@@ -401,7 +401,9 @@ struct cgroup_freezer_state {
/* Fields below are protected by css_set_lock */
- /* Number of frozen descendant cgroups */
+ /* Aggregating frozen descendant cgroups, only when all
+ * descendants of a child are frozen will the count increase.
+ */
int nr_frozen_descendants;
/*
diff --git a/kernel/cgroup/freezer.c b/kernel/cgroup/freezer.c
index bf1690a167dd..4ee33198d6fb 100644
--- a/kernel/cgroup/freezer.c
+++ b/kernel/cgroup/freezer.c
@@ -35,27 +35,34 @@ static bool cgroup_update_frozen_flag(struct cgroup *cgrp, bool frozen)
*/
static void cgroup_propagate_frozen(struct cgroup *cgrp, bool frozen)
{
- int desc = 1;
-
+ int deta;
+ struct cgroup *parent;
/*
* If the new state is frozen, some freezing ancestor cgroups may change
* their state too, depending on if all their descendants are frozen.
*
* Otherwise, all ancestor cgroups are forced into the non-frozen state.
*/
- while ((cgrp = cgroup_parent(cgrp))) {
+ for (; cgrp; cgrp = cgroup_parent(cgrp)) {
if (frozen) {
- cgrp->freezer.nr_frozen_descendants += desc;
+ /* If freezer is not set, or cgrp has descendants
+ * that are not frozen, cgrp can't be frozen
+ */
if (!test_bit(CGRP_FREEZE, &cgrp->flags) ||
(cgrp->freezer.nr_frozen_descendants !=
- cgrp->nr_descendants))
- continue;
+ cgrp->nr_descendants))
+ break;
+ deta = cgrp->freezer.nr_frozen_descendants + 1;
} else {
- cgrp->freezer.nr_frozen_descendants -= desc;
+ deta = -(cgrp->freezer.nr_frozen_descendants + 1);
}
- if (cgroup_update_frozen_flag(cgrp, frozen))
- desc++;
+ /* No change, stop propagate */
+ if (!cgroup_update_frozen_flag(cgrp, frozen))
+ break;
+
+ parent = cgroup_parent(cgrp);
+ parent->freezer.nr_frozen_descendants += deta;
}
}
@@ -75,9 +82,7 @@ void cgroup_update_frozen(struct cgroup *cgrp)
frozen = test_bit(CGRP_FREEZE, &cgrp->flags) &&
cgrp->freezer.nr_frozen_tasks == __cgroup_task_count(cgrp);
- /* If flags is updated, update the state of ancestor cgroups. */
- if (cgroup_update_frozen_flag(cgrp, frozen))
- cgroup_propagate_frozen(cgrp, frozen);
+ cgroup_propagate_frozen(cgrp, frozen);
}
/*
--
2.34.1
next prev parent reply other threads:[~2024-09-15 7:21 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-15 7:13 [PATHC v3 -next 0/3] Some optimizations about freezer Chen Ridong
2024-09-15 7:13 ` [PATHC v3 -next 1/3] cgroup/freezer: Reduce redundant traversal for cgroup_freeze Chen Ridong
2024-09-25 17:29 ` Michal Koutný
2024-09-15 7:13 ` [PATHC v3 -next 2/3] cgroup/freezer: Add cgroup CGRP_FROZEN flag update helper Chen Ridong
2024-09-25 17:29 ` Michal Koutný
2024-09-15 7:13 ` Chen Ridong [this message]
2024-09-25 17:46 ` [PATHC v3 -next 3/3] cgroup/freezer: Reduce redundant propagation for cgroup_propagate_frozen Michal Koutný
2024-09-27 9:46 ` Chen Ridong
2024-10-08 12:16 ` Chen Ridong
2024-09-23 3:37 ` [PATHC v3 -next 0/3] Some optimizations about freezer chenridong
2024-09-23 15:36 ` Tejun Heo
2024-09-24 3:49 ` Chen Ridong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240915071307.1976026-4-chenridong@huawei.com \
--to=chenridong@huawei.com \
--cc=adityakali@google.com \
--cc=cgroups@vger.kernel.org \
--cc=guro@fb.com \
--cc=hannes@cmpxchg.org \
--cc=lizefan.x@bytedance.com \
--cc=longman@redhat.com \
--cc=mkoutny@suse.com \
--cc=sergeh@kernel.org \
--cc=tj@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox