You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
config-linux: Add Intel RDT CMT and MBM Linux support
Add support for Intel Resource Director Technology (RDT) /
Cache Monitoring Technology (CMT) and Memory Bandwidth Monitoring (MBM).
Example:
"linux": {
"intelRdt": {
"enableCMT": true,
"enableMBM": true
}
}
This is the prerequisite of this runc proposal:
opencontainers/runc#2519
For more information about Intel RDT CMT and MBM, please refer to:
opencontainers/runc#2519
Signed-off-by: Paweł Szulik <[email protected]>
Copy file name to clipboardExpand all lines: config-linux.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -549,6 +549,13 @@ The following parameters can be specified for the container:
549
549
550
550
* If `closID` is set, and neither of `l3CacheSchema` and `memBwSchema` are set, runtime MUST check if corresponding pre-configured directory `closID` is present in mounted `resctrl`. If such pre-configured directory `closID` exists, runtime MUST assign container to this `closID` and [generate an error](runtime.md#errors) if directory does not exist.
551
551
552
+
***`enableCMT`***(boolean, OPTIONAL)* - specifies if Intel RDT CMT should be enabled:
553
+
* CMT (Cache Monitoring Technology) supports monitoring of the last-level cache (LLC) occupancy
554
+
for the container.
555
+
556
+
***`enableMBM`***(boolean, OPTIONAL)* - specifies if Intel RDT MBM should be enabled:
557
+
* MBM (Memory Bandwidth Monitoring) supports monitoring of total and local memory bandwidth
0 commit comments