From: Will Deacon <will-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
To: Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: Waiman Long <longman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
Zefan Li <lizefan.x-EC8Uxl6Npydl57MIdRCFDg@public.gmane.org>,
Johannes Weiner <hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>,
Peter Zijlstra <peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
kernel-team-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org
Subject: Re: [PATCH] cgroup/cpuset: Don't filter offline CPUs in cpuset_cpus_allowed() for top cpuset tasks
Date: Sat, 4 Feb 2023 13:32:02 +0000 [thread overview]
Message-ID: <20230204133201.GA7765@willie-the-truck> (raw)
In-Reply-To: <Y9116OLfP6GoZ0ez-NiLfg/pYEd1N0TnZuCh8vA@public.gmane.org>
On Fri, Feb 03, 2023 at 11:00:24AM -1000, Tejun Heo wrote:
> On Fri, Feb 03, 2023 at 11:40:40AM -0500, Waiman Long wrote:
> > Since commit 8f9ea86fdf99 ("sched: Always preserve the user
> > requested cpumask"), relax_compatible_cpus_allowed_ptr() is calling
> > __sched_setaffinity() unconditionally. This helps to expose a bug in
> > the current cpuset hotplug code where the cpumasks of the tasks in
> > the top cpuset are not updated at all when some CPUs become online or
> > offline. It is likely caused by the fact that some of the tasks in the
> > top cpuset, like percpu kthreads, cannot have their cpu affinity changed.
> >
> > One way to reproduce this as suggested by Peter is:
> > - boot machine
> > - offline all CPUs except one
> > - taskset -p ffffffff $$
> > - online all CPUs
> >
> > Fix this by allowing cpuset_cpus_allowed() to return a wider mask that
> > includes offline CPUs for those tasks that are in the top cpuset. For
> > tasks not in the top cpuset, the old rule applies and only online CPUs
> > will be returned in the mask since hotplug events will update their
> > cpumasks accordingly.
> >
> > Fixes: 8f9ea86fdf99 ("sched: Always preserve the user requested cpumask")
> > Reported-by: Will Deacon <will-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
> > Originally-from: Peter Zijlstra (Intel) <peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
> > Signed-off-by: Waiman Long <longman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
>
> So, this is the replacement for the first patch[1] Will posted, right?
>
> > void cpuset_cpus_allowed(struct task_struct *tsk, struct cpumask *pmask)
> > {
> > unsigned long flags;
> > + struct cpuset *cs;
> >
> > spin_lock_irqsave(&callback_lock, flags);
> > - guarantee_online_cpus(tsk, pmask);
> > + rcu_read_lock();
> > +
> > + cs = task_cs(tsk);
> > + if (cs != &top_cpuset)
> > + guarantee_online_cpus(tsk, pmask);
> > + /*
> > + * TODO: Tasks in the top cpuset won't get update to their cpumasks
> > + * when a hotplug online/offline event happens. So we include all
> > + * offline cpus in the allowed cpu list.
> > + */
> > + if ((cs == &top_cpuset) || cpumask_empty(pmask)) {
> > + const struct cpumask *possible_mask = task_cpu_possible_mask(tsk);
> > +
> > + /*
> > + * We first exclude cpus allocated to partitions. If there is no
> > + * allowable online cpu left, we fall back to all possible cpus.
> > + */
> > + cpumask_andnot(pmask, possible_mask, top_cpuset.subparts_cpus);
>
> and the differences are that
>
> * It's only applied to the root cgroup.
>
> * Cpus taken up by partitions are excluded.
>
> Is my understanding correct?
>
> > + if (!cpumask_intersects(pmask, cpu_online_mask))
> > + cpumask_copy(pmask, possible_mask);
> > + }
> > +
> > + rcu_read_unlock();
> > spin_unlock_irqrestore(&callback_lock, flags);
>
> So, I suppose you're suggesting applying this patch instead of the one Will
> Deacon posted[1] and we need Will's second patch[2] on top, right?
>
> [1] http://lkml.kernel.org/r/20230131221719.3176-3-will-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
> [2] http://lkml.kernel.org/r/20230131221719.3176-3-will-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
FWIW, although I tend to share Peter's sentiments in this thread, I took
this (+ my second patch) for a spin and my tests are giving the same
results when compared with Peter's patch.
Tested-by: Will Deacon <will-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Will
next prev parent reply other threads:[~2023-02-04 13:32 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-03 16:40 [PATCH] cgroup/cpuset: Don't filter offline CPUs in cpuset_cpus_allowed() for top cpuset tasks Waiman Long
[not found] ` <20230203164040.213437-1-longman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2023-02-03 21:00 ` Tejun Heo
2023-02-03 22:26 ` Waiman Long
[not found] ` <Y9116OLfP6GoZ0ez-NiLfg/pYEd1N0TnZuCh8vA@public.gmane.org>
2023-02-04 13:32 ` Will Deacon [this message]
2023-02-04 10:01 ` Peter Zijlstra
[not found] ` <Y94s8mzrE9VyUJLa-Nxj+rRp3nVydTX5a5knrm8zTDFooKrT+cvkQGrU6aU0@public.gmane.org>
2023-02-05 5:00 ` Waiman Long
[not found] ` <f356b916-1c10-1565-73fb-34027c6c510a-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2023-02-06 11:05 ` Will Deacon
2023-02-06 20:17 ` Tejun Heo
[not found] ` <Y+FgQXvnzSF1OrmO-NiLfg/pYEd1N0TnZuCh8vA@public.gmane.org>
2023-02-07 11:32 ` Will Deacon
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=20230204133201.GA7765@willie-the-truck \
--to=will-dgejt+ai2ygdnm+yrofe0a@public.gmane.org \
--cc=cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org \
--cc=kernel-team-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=lizefan.x-EC8Uxl6Npydl57MIdRCFDg@public.gmane.org \
--cc=longman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org \
--cc=tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.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