]> Git Repo - linux.git/commit
x86/resctrl: Enable shared RMID mode on Sub-NUMA Cluster (SNC) systems
authorTony Luck <[email protected]>
Tue, 2 Jul 2024 17:38:20 +0000 (10:38 -0700)
committerBorislav Petkov (AMD) <[email protected]>
Tue, 2 Jul 2024 17:57:51 +0000 (19:57 +0200)
commit21b362cc762aabb3e8496d33d7b4538154c95a0b
tree39783598c8d4e42a4a3ea699a35dfff30655040e
parent9fbb303ec949a376f3cbdf6a2b66ad2212c24ebc
x86/resctrl: Enable shared RMID mode on Sub-NUMA Cluster (SNC) systems

Hardware has two RMID configuration options for SNC systems. The default
mode divides RMID counters between SNC nodes. E.g. with 200 RMIDs and
two SNC nodes per L3 cache RMIDs 0..99 are used on node 0, and 100..199
on node 1. This isn't compatible with Linux resctrl usage. On this
example system a process using RMID 5 would only update monitor counters
while running on SNC node 0.

The other mode is "RMID Sharing Mode". This is enabled by clearing bit
0 of the RMID_SNC_CONFIG (0xCA0) model specific register. In this mode
the number of logical RMIDs is the number of physical RMIDs (from CPUID
leaf 0xF) divided by the number of SNC nodes per L3 cache instance. A
process can use the same RMID across different SNC nodes.

See the "Intel Resource Director Technology Architecture Specification"
for additional details.

When SNC is enabled, update the MSR when a monitor domain is marked
online. Technically this is overkill. It only needs to be done once
per L3 cache instance rather than per SNC domain. But there is no harm
in doing it more than once, and this is not in a critical path.

Signed-off-by: Tony Luck <[email protected]>
Signed-off-by: Borislav Petkov (AMD) <[email protected]>
Reviewed-by: Reinette Chatre <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
arch/x86/include/asm/msr-index.h
arch/x86/kernel/cpu/resctrl/core.c
arch/x86/kernel/cpu/resctrl/internal.h
arch/x86/kernel/cpu/resctrl/monitor.c
This page took 0.060627 seconds and 4 git commands to generate.