Linux cgroups development
 help / color / mirror / Atom feed
From: Guopeng Zhang <zhangguopeng@kylinos.cn>
To: "Sun Shaojie" <sunshaojie@kylinos.cn>,
	"Waiman Long" <longman@redhat.com>,
	"Chen Ridong" <chenridong@huaweicloud.com>,
	"Tejun Heo" <tj@kernel.org>,
	"Johannes Weiner" <hannes@cmpxchg.org>,
	"Michal Koutný" <mkoutny@suse.com>
Cc: cgroups@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] cgroup/cpuset: Use effective_xcpus in partcmd_update add/del mask calculation
Date: Fri, 22 May 2026 16:41:09 +0800	[thread overview]
Message-ID: <a1a89205-4e4b-4bb9-86fe-e106997ab1d5@kylinos.cn> (raw)
In-Reply-To: <20260522075357.127075-1-sunshaojie@kylinos.cn>



在 2026/5/22 15:53, Sun Shaojie 写道:
> When sibling CPU exclusion occurs, a partition's user_xcpus may contain
> CPUs that were never actually granted to it. These CPUs are present in
> user_xcpus(cs) but not in cs->effective_xcpus.
> 
> The partcmd_update path in update_parent_effective_cpumask() uses
> user_xcpus(cs) (via the local variable xcpus) to compute the addmask
> (CPUs to return to parent) and delmask (CPUs to request from parent).
> This is incorrect:
> 
>  1) When newmask removes a CPU that was previously excluded by a
>     sibling, addmask incorrectly includes that CPU and tries to return
>     it to the parent even though the partition never actually owned it,
>     causing CPU overlap with sibling partitions and triggering warnings
>     in generate_sched_domains().
> 
>  2) When newmask adds a previously excluded CPU that is now available,
>     delmask fails to request it from the parent because user_xcpus(cs)
>     already includes it.
> 
> Fix this by using cs->effective_xcpus instead of user_xcpus(cs) in all
> partcmd_update paths that calculate addmask or delmask, including the
> PERR_NOCPUS error handling paths.
> 
> Reproducers:
> 
>   Example 1 - Removing a sibling-excluded CPU incorrectly returns it:
> 
>     # cd /sys/fs/cgroup
>     # echo "0-1" > a1/cpuset.cpus
>     # echo "root" > a1/cpuset.cpus.partition
>     # echo "0-2" > b1/cpuset.cpus
>     # echo "root" > b1/cpuset.cpus.partition
>     # echo "2" > b1/cpuset.cpus
>     # cat cpuset.cpus.effective
>     # Actual: 0-1,3    Expected: 3
> 
>   Example 2 - Expanding to a previously excluded CPU fails to request it:
> 
>     # cd /sys/fs/cgroup
>     # echo "0-1" > a1/cpuset.cpus
>     # echo "root" > a1/cpuset.cpus.partition
>     # echo "0-2" > b1/cpuset.cpus
>     # echo "root" > b1/cpuset.cpus.partition
>     # echo "member" > a1/cpuset.cpus.partition
>     # echo "1-2" > b1/cpuset.cpus
>     # cat cpuset.cpus.effective
>     # Actual: 0-1,3    Expected: 0,3
> 
> Fixes: 2a3602030d80 ("cgroup/cpuset: Don't invalidate sibling partitions on cpuset.cpus conflict")
> Signed-off-by: Sun Shaojie <sunshaojie@kylinos.cn>
> ---
>  kernel/cgroup/cpuset.c | 9 +++++----
>  1 file changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/kernel/cgroup/cpuset.c b/kernel/cgroup/cpuset.c
> index 1335e437098e..5a5fa2481467 100644
> --- a/kernel/cgroup/cpuset.c
> +++ b/kernel/cgroup/cpuset.c
> @@ -1821,11 +1821,11 @@ static int update_parent_effective_cpumask(struct cpuset *cs, int cmd,
>  			deleting = cpumask_and(tmp->delmask,
>  					newmask, parent->effective_xcpus);
>  		} else {
> -			cpumask_andnot(tmp->addmask, xcpus, newmask);
> +			cpumask_andnot(tmp->addmask, cs->effective_xcpus, newmask);
>  			adding = cpumask_and(tmp->addmask, tmp->addmask,
>  					     parent->effective_xcpus);
>  
> -			cpumask_andnot(tmp->delmask, newmask, xcpus);
> +			cpumask_andnot(tmp->delmask, newmask, cs->effective_xcpus);
>  			deleting = cpumask_and(tmp->delmask, tmp->delmask,
>  					       parent->effective_xcpus);
>  		}
> @@ -1864,7 +1864,7 @@ static int update_parent_effective_cpumask(struct cpuset *cs, int cmd,
>  			part_error = PERR_NOCPUS;
>  			deleting = false;
>  			adding = cpumask_and(tmp->addmask,
> -					     xcpus, parent->effective_xcpus);
> +					     cs->effective_xcpus, parent->effective_xcpus);
>  		}
>  	} else {
>  		/*
> @@ -1886,7 +1886,8 @@ static int update_parent_effective_cpumask(struct cpuset *cs, int cmd,
>  			part_error = PERR_NOCPUS;
>  			if (is_partition_valid(cs))
>  				adding = cpumask_and(tmp->addmask,
> -						xcpus, parent->effective_xcpus);
> +						     cs->effective_xcpus,
> +						     parent->effective_xcpus);
>  		} else if (is_partition_invalid(cs) && !cpumask_empty(xcpus) &&
>  			   cpumask_subset(xcpus, parent->effective_xcpus)) {
>  			struct cgroup_subsys_state *css;
Hi, Shaojie

The code change looks reasonable to me, but I think the comment above
the partcmd_update calculation should be updated as well.

Maybe it can be updated like this:

		 * Compute add/delete mask to/from effective_cpus
		 *
		 * For valid partition:
-		 *   addmask = exclusive_cpus & ~newmask
+		 *   addmask = cs->effective_xcpus & ~newmask
		 *			      & parent->effective_xcpus
-		 *   delmask = newmask & ~exclusive_cpus
+		 *   delmask = newmask & ~cs->effective_xcpus
		 *		       & parent->effective_xcpus
		 *
		 * For invalid partition:

Does this look reasonable to you?

Tested-by: Guopeng Zhang <zhangguopeng@kylinos.cn>

Thanks.

  reply	other threads:[~2026-05-22  8:41 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-22  7:53 [PATCH] cgroup/cpuset: Use effective_xcpus in partcmd_update add/del mask calculation Sun Shaojie
2026-05-22  8:41 ` Guopeng Zhang [this message]
2026-05-26 19:09   ` Waiman Long

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=a1a89205-4e4b-4bb9-86fe-e106997ab1d5@kylinos.cn \
    --to=zhangguopeng@kylinos.cn \
    --cc=cgroups@vger.kernel.org \
    --cc=chenridong@huaweicloud.com \
    --cc=hannes@cmpxchg.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=longman@redhat.com \
    --cc=mkoutny@suse.com \
    --cc=sunshaojie@kylinos.cn \
    --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