From: Tejun Heo <tj@kernel.org>
To: Yi Tao <escape@linux.alibaba.com>
Cc: hannes@cmpxchg.org, mkoutny@suse.com, cgroups@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 1/1] cgroup: replace global percpu_rwsem with per threadgroup resem when writing to cgroup.procs
Date: Mon, 8 Sep 2025 06:05:53 -1000 [thread overview]
Message-ID: <aL7-4XQxeFKtFWlq@slm.duckdns.org> (raw)
In-Reply-To: <c202b463e176ef128c806e0040107ea16a101143.1757326641.git.escape@linux.alibaba.com>
Hello,
On Mon, Sep 08, 2025 at 06:20:27PM +0800, Yi Tao wrote:
...
> The static usage pattern of creating a cgroup, enabling controllers,
> and then seeding it with CLONE_INTO_CGROUP doesn't require write
> locking cgroup_threadgroup_rwsem and thus doesn't benefit from this
> patch.
Please bring this to the top, note that this is the default mode of
operation and the mechanism being introduced is thus an optional one.
> @@ -88,7 +88,8 @@ enum {
> /*
> * Reduce latencies on dynamic cgroup modifications such as task
> * migrations and controller on/offs by disabling percpu operation on
> - * cgroup_threadgroup_rwsem. This makes hot path operations such as
> + * cgroup_threadgroup_rwsem and taking per threadgroup rwsem when
> + * writing to cgroup.procs. This makes hot path operations such as
> * forks and exits into the slow path and more expensive.
This comment is pointed to from all other places. Please expand on why
per-threadgroup rwsem is beneficial for what use cases.
> * The static usage pattern of creating a cgroup, enabling controllers,
> @@ -828,16 +829,21 @@ struct cgroup_of_peak {
> struct list_head list;
> };
>
> +extern int take_per_threadgroup_rwsem;
I think it needs cgroup in its name. Maybe something like
cgroup_enable_per_threadgroup_rwsem?
> diff --git a/kernel/cgroup/cgroup.c b/kernel/cgroup/cgroup.c
> index 312c6a8b55bb..8650ec394d0c 100644
> --- a/kernel/cgroup/cgroup.c
> +++ b/kernel/cgroup/cgroup.c
> @@ -1298,18 +1298,29 @@ struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
> return root_cgrp->root;
> }
>
> +int take_per_threadgroup_rwsem;
Please put it where other global variables are and also note what it does
and that writes protected by cgroup_mutex and write-lock of
cgroup_threadgroup_rwsem and thus reads are protected by either.
> void cgroup_favor_dynmods(struct cgroup_root *root, bool favor)
> {
> bool favoring = root->flags & CGRP_ROOT_FAVOR_DYNMODS;
>
> - /* see the comment above CGRP_ROOT_FAVOR_DYNMODS definition */
> + /*
> + * see the comment above CGRP_ROOT_FAVOR_DYNMODS definition.
> + * favordynmods can flip while task is between
> + * cgroup_threadgroup_change_begin and cgroup_threadgroup_change_end,
> + * so down_write global cgroup_threadgroup_rwsem to synchronize them.
Maybe: take_per_threadgroup_rwsem must not be flipped while threads are
between cgroup_threadgroup_change_begin and cgroup_threadgroup_change_end.
down_write global group_threadgroup_rwsem to exclude them.
But does this actually work? It works for turning it on. I don't think it'd
work for turning it off, right? Maybe make it enable only and trigger a
warning message when people try to turn it off?
> + */
> + percpu_down_write(&cgroup_threadgroup_rwsem);
> if (favor && !favoring) {
> + take_per_threadgroup_rwsem++;
Given that favoring is gating the switch, this can be a bool, right?
> rcu_sync_enter(&cgroup_threadgroup_rwsem.rss);
> root->flags |= CGRP_ROOT_FAVOR_DYNMODS;
> } else if (!favor && favoring) {
> + take_per_threadgroup_rwsem--;
And here, you can trigger a warning that per_threadgroup opreation can't be
disabled once enabled instead of actually turning it off.
Another alternative would be using a task flag to track whether %current is
holding per_threadgroup_rwsem and then using that to decide whether to
unlock. Maybe that's cleaner but I don't think it really matters here.
..
> + * When favordynmods is enabled, take per threadgroup rwsem to reduce latencies
> + * on dynamic cgroup modifications. see the comment above
> + * CGRP_ROOT_FAVOR_DYNMODS definition.
This is more about scalability, right? Maybe just say overhead?
> @@ -2976,24 +3003,13 @@ struct task_struct *cgroup_procs_write_start(char *buf, bool threadgroup,
> if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
> return ERR_PTR(-EINVAL);
>
> - /*
> - * If we migrate a single thread, we don't care about threadgroup
> - * stability. If the thread is `current`, it won't exit(2) under our
> - * hands or change PID through exec(2). We exclude
> - * cgroup_update_dfl_csses and other cgroup_{proc,thread}s_write
> - * callers by cgroup_mutex.
> - * Therefore, we can skip the global lock.
> - */
> - lockdep_assert_held(&cgroup_mutex);
> - *threadgroup_locked = pid || threadgroup;
> - cgroup_attach_lock(*threadgroup_locked);
> -
> +retry_find_task:
> rcu_read_lock();
> if (pid) {
> tsk = find_task_by_vpid(pid);
> if (!tsk) {
> tsk = ERR_PTR(-ESRCH);
> - goto out_unlock_threadgroup;
> + goto out_unlock_rcu;
> }
> } else {
> tsk = current;
> @@ -3010,15 +3026,42 @@ struct task_struct *cgroup_procs_write_start(char *buf, bool threadgroup,
> */
> if (tsk->no_cgroup_migration || (tsk->flags & PF_NO_SETAFFINITY)) {
> tsk = ERR_PTR(-EINVAL);
> - goto out_unlock_threadgroup;
> + goto out_unlock_rcu;
> }
> -
> get_task_struct(tsk);
> - goto out_unlock_rcu;
>
> -out_unlock_threadgroup:
> - cgroup_attach_unlock(*threadgroup_locked);
> - *threadgroup_locked = false;
> + rcu_read_unlock();
> +
> + /*
> + * If we migrate a single thread, we don't care about threadgroup
> + * stability. If the thread is `current`, it won't exit(2) under our
> + * hands or change PID through exec(2). We exclude
> + * cgroup_update_dfl_csses and other cgroup_{proc,thread}s_write
> + * callers by cgroup_mutex.
> + * Therefore, we can skip the global lock.
> + */
> + lockdep_assert_held(&cgroup_mutex);
> + *threadgroup_locked = pid || threadgroup;
> +
> + cgroup_attach_lock(*threadgroup_locked, tsk);
> +
> + if (threadgroup) {
> + if (!thread_group_leader(tsk)) {
> + /*
> + * a race with de_thread from another thread's exec()
> + * may strip us of our leadership, if this happens,
> + * there is no choice but to throw this task away and
> + * try again; this is
> + * "double-double-toil-and-trouble-check locking".
> + */
> + cgroup_attach_unlock(*threadgroup_locked, tsk);
> + put_task_struct(tsk);
> + goto retry_find_task;
This is subtle. Can you please separate this out to a spearate patch?
Thanks.
--
tejun
next prev parent reply other threads:[~2025-09-08 16:05 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-03 11:11 [PATCH] cgroup: replace global percpu_rwsem with signal_struct->group_rwsem when writing cgroup.procs/threads Yi Tao
2025-09-03 13:14 ` Waiman Long
2025-09-04 1:35 ` Chen Ridong
2025-09-04 4:59 ` escape
2025-09-04 5:02 ` escape
2025-09-03 16:53 ` Tejun Heo
2025-09-03 20:03 ` Michal Koutný
2025-09-03 20:45 ` Tejun Heo
2025-09-04 1:40 ` Chen Ridong
2025-09-04 6:43 ` escape
2025-09-04 6:52 ` Tejun Heo
2025-09-04 3:15 ` escape
2025-09-04 6:38 ` escape
2025-09-04 7:28 ` Tejun Heo
2025-09-04 8:10 ` escape
2025-09-04 11:39 ` [PATCH v2 0/1] " Yi Tao
2025-09-04 11:39 ` [PATCH v2 1/1] " Yi Tao
2025-09-04 16:31 ` Tejun Heo
2025-09-05 2:16 ` escape
2025-09-05 2:27 ` Tejun Heo
2025-09-05 3:44 ` escape
2025-09-05 3:48 ` Tejun Heo
2025-09-05 4:30 ` escape
2025-09-05 2:02 ` Chen Ridong
2025-09-05 13:17 ` kernel test robot
2025-09-08 10:20 ` [PATCH v3 0/1] cgroup: replace global percpu_rwsem with per threadgroup resem when writing to cgroup.procs Yi Tao
2025-09-08 10:20 ` [PATCH v3 1/1] " Yi Tao
2025-09-08 16:05 ` Tejun Heo [this message]
2025-09-08 19:39 ` Waiman Long
2025-09-09 7:55 ` [PATCH v4 0/3] " Yi Tao
2025-09-09 7:55 ` [PATCH v4 1/3] " Yi Tao
2025-09-09 7:55 ` [PATCH v4 2/3] cgroup: retry find task if threadgroup leader changed Yi Tao
2025-09-09 16:59 ` Tejun Heo
2025-09-09 7:55 ` [PATCH v4 3/3] cgroup: refactor the cgroup_attach_lock code to make it clearer Yi Tao
2025-09-09 17:00 ` Tejun Heo
2025-09-10 6:59 ` [PATCH v5 0/3] cgroup: replace global percpu_rwsem with per threadgroup resem when writing to cgroup.procs Yi Tao
2025-09-10 6:59 ` [PATCH v5 1/3] cgroup: refactor the cgroup_attach_lock code to make it clearer Yi Tao
2025-09-10 17:26 ` Tejun Heo
2025-09-10 6:59 ` [PATCH v5 2/3] cgroup: relocate cgroup_attach_lock within cgroup_procs_write_start Yi Tao
2025-09-10 17:31 ` Tejun Heo
2025-09-11 3:22 ` Waiman Long
2025-09-10 6:59 ` [PATCH v5 3/3] cgroup: replace global percpu_rwsem with per threadgroup resem when writing to cgroup.procs Yi Tao
2025-09-10 17:47 ` Tejun Heo
2025-09-11 1:52 ` Yi Tao
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=aL7-4XQxeFKtFWlq@slm.duckdns.org \
--to=tj@kernel.org \
--cc=cgroups@vger.kernel.org \
--cc=escape@linux.alibaba.com \
--cc=hannes@cmpxchg.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mkoutny@suse.com \
/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
all inboxes | Powered by JetHome®