[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <a3de98387abad28592e6ab591f3ff6107fe01dc1.1755893468.git.tim.c.chen@linux.intel.com>
Date: Fri, 22 Aug 2025 13:14:14 -0700
From: Tim Chen <tim.c.chen@...ux.intel.com>
To: Peter Zijlstra <peterz@...radead.org>,
Ingo Molnar <mingo@...hat.com>
Cc: Vinicius Costa Gomes <vinicius.gomes@...el.com>,
Juri Lelli <juri.lelli@...hat.com>,
Dietmar Eggemann <dietmar.eggemann@....com>,
Ben Segall <bsegall@...gle.com>,
Mel Gorman <mgorman@...e.de>,
Valentin Schneider <vschneid@...hat.com>,
Tim Chen <tim.c.chen@...el.com>,
Vincent Guittot <vincent.guittot@...aro.org>,
Libo Chen <libo.chen@...cle.com>,
Abel Wu <wuyun.abel@...edance.com>,
Len Brown <len.brown@...el.com>,
linux-kernel@...r.kernel.org,
Chen Yu <yu.c.chen@...el.com>,
K Prateek Nayak <kprateek.nayak@....com>,
"Gautham R . Shenoy" <gautham.shenoy@....com>,
Zhao Liu <zhao1.liu@...el.com>,
Tim Chen <tim.c.chen@...ux.intel.com>
Subject: [PATCH 1/2] sched: topology: Fix topology validation error
From: Vinicius Costa Gomes <vinicius.gomes@...el.com>
As sd_numa_mask() (the function behind tl->mask() for the NUMA levels
of the topology) depends on the value of sched_domains_curr_level,
it's possible to be iterating over a level while, sd_numa_mask()
thinks we are in another, causing the topology validation to fail (for
valid cases).
Set sched_domains_curr_level to the current topology level while
iterating.
Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@...el.com>
Signed-off-by: Tim Chen <tim.c.chen@...ux.intel.com>
---
kernel/sched/topology.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/kernel/sched/topology.c b/kernel/sched/topology.c
index 977e133bb8a4..9a7ac67e3d63 100644
--- a/kernel/sched/topology.c
+++ b/kernel/sched/topology.c
@@ -2394,6 +2394,14 @@ static bool topology_span_sane(const struct cpumask *cpu_map)
for_each_sd_topology(tl) {
int tl_common_flags = 0;
+#ifdef CONFIG_NUMA
+ /*
+ * sd_numa_mask() (one of the possible values of
+ * tl->mask()) depends on the current level to work
+ * correctly.
+ */
+ sched_domains_curr_level = tl->numa_level;
+#endif
if (tl->sd_flags)
tl_common_flags = (*tl->sd_flags)();
--
2.32.0
Powered by blists - more mailing lists