]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level
authorVitalii Bursov <vitaly@bursov.com>
Tue, 30 Apr 2024 15:05:23 +0000 (18:05 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Jun 2024 11:32:15 +0000 (13:32 +0200)
[ Upstream commit a1fd0b9d751f840df23ef0e75b691fc00cfd4743 ]

Change relax_domain_level checks so that it would be possible
to include or exclude all domains from newidle balancing.

This matches the behavior described in the documentation:

  -1   no request. use system default or follow request of others.
   0   no search.
   1   search siblings (hyperthreads in a core).

"2" enables levels 0 and 1, level_max excludes the last (level_max)
level, and level_max+1 includes all levels.

Fixes: 1d3504fcf560 ("sched, cpuset: customize sched domains, core")
Signed-off-by: Vitalii Bursov <vitaly@bursov.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Tested-by: Dietmar Eggemann <dietmar.eggemann@arm.com>
Reviewed-by: Vincent Guittot <vincent.guittot@linaro.org>
Reviewed-by: Valentin Schneider <vschneid@redhat.com>
Link: https://lore.kernel.org/r/bd6de28e80073c79466ec6401cdeae78f0d4423d.1714488502.git.vitaly@bursov.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
kernel/cgroup/cpuset.c
kernel/sched/topology.c

index 195f9cccab20b43a1ae3ea749242ac80e97e05c9..9f2a93c829a912956a32eda75f314eae331718ce 100644 (file)
@@ -1901,7 +1901,7 @@ bool current_cpuset_is_being_rebound(void)
 static int update_relax_domain_level(struct cpuset *cs, s64 val)
 {
 #ifdef CONFIG_SMP
-       if (val < -1 || val >= sched_domain_level_max)
+       if (val < -1 || val > sched_domain_level_max + 1)
                return -EINVAL;
 #endif
 
index ff2c6d3ba6c793d761c5497e8215ed88d2b1d5d5..6eb0996ef859f88b31352290627383b290cff65d 100644 (file)
@@ -1217,7 +1217,7 @@ static void set_domain_attribute(struct sched_domain *sd,
        } else
                request = attr->relax_domain_level;
 
-       if (sd->level > request) {
+       if (sd->level >= request) {
                /* Turn off idle balance on this domain: */
                sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
        }