Commit 1a171608 authored by Tony Luck's avatar Tony Luck Committed by Borislav Petkov (AMD)

x86/resctrl: Add node-scope to the options for feature scope

Currently supported resctrl features are all domain scoped the same as the
scope of the L2 or L3 caches.

Add RESCTRL_L3_NODE as a new option for features that are scoped at the
same granularity as NUMA nodes. This is needed for Intel's Sub-NUMA
Cluster (SNC) feature where monitoring features are divided between
nodes that share an L3 cache.
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
Signed-off-by: default avatarBorislav Petkov (AMD) <bp@alien8.de>
Reviewed-by: default avatarReinette Chatre <reinette.chatre@intel.com>
Tested-by: default avatarBabu Moger <babu.moger@amd.com>
Link: https://lore.kernel.org/r/20240628215619.76401-6-tony.luck@intel.com
parent cae2bcb6
...@@ -510,6 +510,8 @@ static int get_domain_id_from_scope(int cpu, enum resctrl_scope scope) ...@@ -510,6 +510,8 @@ static int get_domain_id_from_scope(int cpu, enum resctrl_scope scope)
case RESCTRL_L2_CACHE: case RESCTRL_L2_CACHE:
case RESCTRL_L3_CACHE: case RESCTRL_L3_CACHE:
return get_cpu_cacheinfo_id(cpu, scope); return get_cpu_cacheinfo_id(cpu, scope);
case RESCTRL_L3_NODE:
return cpu_to_node(cpu);
default: default:
break; break;
} }
......
...@@ -176,6 +176,7 @@ struct resctrl_schema; ...@@ -176,6 +176,7 @@ struct resctrl_schema;
enum resctrl_scope { enum resctrl_scope {
RESCTRL_L2_CACHE = 2, RESCTRL_L2_CACHE = 2,
RESCTRL_L3_CACHE = 3, RESCTRL_L3_CACHE = 3,
RESCTRL_L3_NODE,
}; };
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment