From: Peter Zijlstra <peterz@infradead.org>
To: "Chen, Yu C" <yu.c.chen@intel.com>
Cc: Tim Chen <tim.c.chen@linux.intel.com>,
Ingo Molnar <mingo@redhat.com>,
Juri Lelli <juri.lelli@redhat.com>,
Dietmar Eggemann <dietmar.eggemann@arm.com>,
Ben Segall <bsegall@google.com>, Mel Gorman <mgorman@suse.de>,
Valentin Schneider <vschneid@redhat.com>,
Tim Chen <tim.c.chen@intel.com>,
Vincent Guittot <vincent.guittot@linaro.org>,
Libo Chen <libo.chen@oracle.com>,
Abel Wu <wuyun.abel@bytedance.com>,
Len Brown <len.brown@intel.com>,
linux-kernel@vger.kernel.org,
K Prateek Nayak <kprateek.nayak@amd.com>,
"Gautham R . Shenoy" <gautham.shenoy@amd.com>,
Zhao Liu <zhao1.liu@intel.com>,
Vinicius Costa Gomes <vinicius.gomes@intel.com>,
Chen Yu <yu.chen.surf@foxmail.com>
Subject: Re: [PATCH 2/2] sched: Fix sched domain build error for GNR-X, CWF-X in SNC-3 mode
Date: Mon, 25 Aug 2025 09:56:42 +0200 [thread overview]
Message-ID: <20250825075642.GQ3245006@noisy.programming.kicks-ass.net> (raw)
In-Reply-To: <c03c0137-931f-4dc9-b2c6-d01d4eb60010@intel.com>
On Mon, Aug 25, 2025 at 01:08:39PM +0800, Chen, Yu C wrote:
> On 8/23/2025 4:14 AM, Tim Chen wrote:
> > It is possible for Granite Rapids X (GNR) and Clearwater Forest X
> > (CWF) to have up to 3 dies per package. When sub-numa cluster (SNC-3)
> > is enabled, each die will become a separate NUMA node in the package
> > with different distances between dies within the same package.
> >
> > For example, on GNR-X, we see the following numa distances for a 2 socket
> > system with 3 dies per socket:
> >
> > package 1 package2
> > ----------------
> > | |
> > --------- ---------
> > | 0 | | 3 |
> > --------- ---------
> > | |
> > --------- ---------
> > | 1 | | 4 |
> > --------- ---------
> > | |
> > --------- ---------
> > | 2 | | 5 |
> > --------- ---------
> > | |
> > ----------------
> >
> > node distances:
> > node 0 1 2 3 4 5
> > 0: 10 15 17 21 28 26
> > 1: 15 10 15 23 26 23
> > 2: 17 15 10 26 23 21
> > 3: 21 28 26 10 15 17
> > 4: 23 26 23 15 10 15
> > 5: 26 23 21 17 15 10
> >
> > diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
> > index 33e166f6ab12..c425e84c88b5 100644
> > --- a/arch/x86/kernel/smpboot.c
> > +++ b/arch/x86/kernel/smpboot.c
> > @@ -515,6 +515,34 @@ static void __init build_sched_topology(void)
> > set_sched_topology(topology);
> > }
> > +int sched_node_distance(int from, int to)
> > +{
> > + int d = node_distance(from, to);
> > +
> > + if (!x86_has_numa_in_package)
> > + return d;
> > +
> > + switch (boot_cpu_data.x86_vfm) {
> > + case INTEL_GRANITERAPIDS_X:
> > + case INTEL_ATOM_DARKMONT_X:
> > + if (d < REMOTE_DISTANCE)
> > + return d;
> > +
> > + /*
> > + * Trim finer distance tuning for nodes in remote package
> > + * for the purpose of building sched domains.
> > + * Put NUMA nodes in each remote package in a single sched group.
> > + * Simplify NUMA domains and avoid extra NUMA levels including different
> > + * NUMA nodes in remote packages.
> > + *
> > + * GNR-x and CWF-X has GLUELESS-MESH topology with SNC
> > + * turned on.
> > + */
> > + d = (d / 10) * 10;
>
> Does the '10' here mean that, the distance of the hierarchy socket
> is 10 from SLIT table? For example, from a socket0 point of view,
> the distance of socket1 to socket0 is within [20, 29), the distance
> of socket2 to socket0 is [30,39), and so on. If this is the case,
> maybe add a comment above for future reference.
This is all because of the ACPI SLIT distance definitions I suppose, 10
for local and 20 for remote (which IMO is actively wrong, since it
mandates distances that are not relative performance).
Additionally, the table above magically has all the remote distances in
the range of [20,29] and so the strip 1s thing works.
The problem of course is that the SLIT table is fully under control of
the BIOS and random BIOS monkey could cause this to not be so making the
above code not work as intended. Eg. if the remote distances ends up
being in the range of [20,35] or whatever, then it all goes sideways.
( There is a history of manupulating the SLIT table to influence
scheduler behaviour of OS of choice :-/ )
Similarly, when doing a 4 node system, it is possible a 2 hop distances
doesn't align nicely with the 10s and we're up a creek again.
This is all very fragile. A much better way would be to allocate a new
SLIT table, identify the (local) clusters and replace all remote
instances with an average.
Eg. since (21+28+26+23+26+23+26+23+21)/9 ~ 24, you end up with:
node 0 1 2 3 4 5
0: 10 15 17 24 24 24
1: 15 10 15 24 24 24
2: 17 15 10 24 24 24
3: 24 24 24 10 15 17
4: 24 24 24 15 10 15
5: 24 24 24 17 15 10
next prev parent reply other threads:[~2025-08-25 7:56 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-22 20:14 [PATCH 0/2] Fix NUMA sched domain build errors for GNR-X and CWF-X Tim Chen
2025-08-22 20:14 ` [PATCH 1/2] sched: topology: Fix topology validation error Tim Chen
2025-08-25 3:18 ` K Prateek Nayak
2025-08-25 7:58 ` Peter Zijlstra
2025-08-25 9:23 ` Peter Zijlstra
2025-08-25 7:25 ` Peter Zijlstra
2025-08-25 21:09 ` Tim Chen
2025-08-22 20:14 ` [PATCH 2/2] sched: Fix sched domain build error for GNR-X, CWF-X in SNC-3 mode Tim Chen
2025-08-25 5:08 ` Chen, Yu C
2025-08-25 7:56 ` Peter Zijlstra [this message]
2025-08-25 21:36 ` Tim Chen
2025-08-25 20:05 ` Tim Chen
2025-08-25 4:18 ` [PATCH 0/2] Fix NUMA sched domain build errors for GNR-X and CWF-X K Prateek Nayak
2025-08-25 21:38 ` Tim Chen
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=20250825075642.GQ3245006@noisy.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=bsegall@google.com \
--cc=dietmar.eggemann@arm.com \
--cc=gautham.shenoy@amd.com \
--cc=juri.lelli@redhat.com \
--cc=kprateek.nayak@amd.com \
--cc=len.brown@intel.com \
--cc=libo.chen@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mgorman@suse.de \
--cc=mingo@redhat.com \
--cc=tim.c.chen@intel.com \
--cc=tim.c.chen@linux.intel.com \
--cc=vincent.guittot@linaro.org \
--cc=vinicius.gomes@intel.com \
--cc=vschneid@redhat.com \
--cc=wuyun.abel@bytedance.com \
--cc=yu.c.chen@intel.com \
--cc=yu.chen.surf@foxmail.com \
--cc=zhao1.liu@intel.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®