Re: [LSF/MM/BPF TOPIC] [RFC PATCH 0/4] mm/mempolicy: introduce socket-aware weighted interleave
From: Dan Williams
Date: Thu Mar 26 2026 - 16:14:28 EST
Rakie Kim wrote:
[..]
> Hello Jonathan,
>
> Your insight is incredibly accurate. To clarify the situation, here is
> the actual configuration of my system:
>
> NODE Type PXD
> node0 local memory 0x00
> node1 local memory 0x01
> node2 cxl memory 0x0A
> node3 cxl memory 0x0B
>
> Physically, the node2 CXL is attached to node0 (Socket 0), and the
> node3 CXL is attached to node1 (Socket 1). However, extracting the
> HMAT.dsl reveals the following:
>
> - local memory
> [028h] Flags: 0001 (Processor Proximity Domain Valid = 1)
> Attached Initiator Proximity Domain: 0x00
> Memory Proximity Domain: 0x00
> [050h] Flags: 0001 (Processor Proximity Domain Valid = 1)
> Attached Initiator Proximity Domain: 0x01
> Memory Proximity Domain: 0x01
>
> - cxl memory
> [078h] Flags: 0000 (Processor Proximity Domain Valid = 0)
> Attached Initiator Proximity Domain: 0x00
> Memory Proximity Domain: 0x0A
> [0A0h] Flags: 0000 (Processor Proximity Domain Valid = 0)
> Attached Initiator Proximity Domain: 0x00
> Memory Proximity Domain: 0x0B
This looks good.
Unless the CPU is directly attached to the memory controller then there
is no attached initiator. For example, if you wanted to run an x86
memory controller configuration instruction like PCONFIG you would issue
an IPI to the CPU attached to the target memory controller. There is no
such connection for a CPU to do the same for a CXL proximity domain.
> As you correctly suspected, the flags for the CXL memory are 0000,
> meaning the Processor Proximity Domain is marked as invalid. But when
> checking the sysfs initiator configurations, it shows a different story:
>
> Node access0 Initiator access1 Initiator
> node0 node0 node0
> node1 node1 node1
> node2 node1 node1
> node3 node1 node1
2 comments. HMAT is not a physical topology layout table. The
fallback determination of "best" initiator when "Attached Initiator PXM"
is not set is just a heuristic. That heuristic probably has not been
touched since the initial HMAT support went upstream.
> Although the Attached Initiator is set to 0 in HMAT with an invalid
> flag, sysfs strangely registers node1 as the initiator for both CXL
> nodes. Because both HMAT and sysfs are exposing abnormal values, it was
> impossible for me to determine the true socket connections for CXL
> using this data.
Yeah, this sounds more like a kernel bug report than a firmware bug
report at this point.
> > > Even though the distance map shows node2 is physically closer to
> > > Socket 0 and node3 to Socket 1, the HMAT incorrectly defines the
> > > routing path strictly through Socket 1. Because the HMAT alone made it
> > > difficult to determine the exact physical socket connections on these
> > > systems, I ended up using the current CXL driver-based approach.
> >
> > Are the HMAT latencies and bandwidths all there? Or are some missing
> > and you have to use SLIT (which generally is garbage for historical
> > reasons of tuning SLIT to particular OS behaviour).
> >
>
> The HMAT latencies and bandwidths are present, but the values seem
> broken. Here is the latency table:
>
> Init->Target | node0 | node1 | node2 | node3
> node0 | 0x38B | 0x89F | 0x9C4 | 0x3AFC
> node1 | 0x89F | 0x38B | 0x3AFC| 0x4268
>
> I used the identical type of DRAM and CXL memory for both sockets.
> However, looking at the table, the local CXL access latency from
> node0->node2 (0x9C4) and node1->node3 (0x4268) shows a massive,
> unjustified difference. This asymmetry proves that the table is
> currently unreliable.
...or it is telling the truth. Would need more data.
> > > I wonder if others have experienced similar broken HMAT cases with CXL.
> > > If HMAT information becomes more reliable in the future, we could
> > > build a much more efficient structure.
> >
> > Given it's being lightly used I suspect there will be many bugs :(
> > I hope we can assume they will get fixed however!
> >
> > ...
> >
>
> The most critical issue caused by this broken initiator setting is that
> topology analysis tools like `hwloc` are completely misled. Currently,
> `hwloc` displays both CXL nodes as being attached to Socket 1.
>
> I observed this exact same issue on both Sierra Forest and Granite
> Rapids systems. I believe this broken topology exposure is a severe
> problem that must be addressed, though I am not entirely sure what the
> best fix would be yet. I would love to hear your thoughts on this.
Before determining that these numbers are wrong you would need to redo
the calculation from CDAT data to see if you get a different answer.
The driver currently does this calculation as part of determining a QoS
class. It would be reasonable to also use that same calculation to double
check the BIOS firmware numbers for CXL proximity domains established at
boot.
> > > The complex topology cases you presented, such as multi-NUMA per socket,
> > > shared CXL switches, and IO expanders, are very important points.
> > > I clearly understand that the simple package-level grouping does not fully
> > > reflect the 1:1 relationship in these future hardware architectures.
> > >
> > > I have also thought about the shared CXL switch scenario you mentioned,
> > > and I know the current design falls short in addressing it properly.
> > > While the current implementation starts with a simple socket-local
> > > restriction, I plan to evolve it into a more flexible node aggregation
> > > model to properly reflect all the diverse topologies you suggested.
> >
> > If we can ensure it fails cleanly when it finds a topology that it can't
> > cope with (and I guess falls back to current) then I'm fine with a partial
> > solution that evolves.
> >
>
> I completely agree with ensuring a clean failure. To stabilize this
> partial solution, I am currently considering a few options for the
> next version:
>
> 1. Enable this feature only when a strict 1:1 topology is detected.
> 2. Provide a sysfs allowing users to enable/disable it.
> 3. Allow users to manually override/configure the topology via sysfs.
> 4. Implement dynamic fallback behaviors depending on the detected
> topology shape (needs further thought).
The advice is always start as simple as possible but no simpler.
It may be the case that Linux indeed finds that platform firmware comes
to a different result than expected. When that happens the CXL subsystem
can probably emit the mismatch details, or otherwise validate the HMAT.
As for actual physical topology layout determination, that is out of
scope for HMAT, but the CXL CDAT calculations do consider PCI link
details.
> By the way, when I first posted this RFC, I accidentally missed adding
> lsf-pc@xxxxxxxxxxxxxxxxxxxxxxxxxx to the CC list. I am considering
> re-posting it to ensure it reaches the lsf-pc.
They are on the Cc: now, I expect that is sufficient.