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
Add a new "schemata" field to the Linux IntelRdt configuration. This
addresses the complexity of separate schema fields and resolves the
issue of supporting currently uncovered RDT features like L2 cache
allocation and CDP (Code and Data Prioritization).
The new field is for specifying the complete schemata (all schemas) to
be written to the schemata file in Linux resctrl fs. The aim is for
simple usage and runtime implementation (by not requiring any
parsing/filtering of data or otherwise re-implement parsing or
validation of the Linux resctrl interface) and also to support all RDT
features now and in the future (i.e. schemas like L2, L2CODE, L2DATA,
L3CODE and L3DATA and who knows L4 or something else in the future).
Behavior of existing fields is not changed but it is required that the
new schemata field is applied last.
Signed-off-by: Markus Lehtonen <[email protected]>
Copy file name to clipboardExpand all lines: config-linux.md
+18-10
Original file line number
Diff line number
Diff line change
@@ -645,6 +645,7 @@ The following parameters can be specified for the container:
645
645
The value SHOULD start with `L3:` and SHOULD NOT contain newlines.
646
646
***`memBwSchema`***(string, OPTIONAL)* - specifies the schema of memory bandwidth per L3 cache id.
647
647
The value MUST start with `MB:` and MUST NOT contain newlines.
648
+
***`schemata`***(string, OPTIONAL)* - specifies the schemata to be written to the `schemata` file in resctrlfs.
648
649
649
650
The following rules on parameters MUST be applied:
650
651
@@ -654,15 +655,17 @@ The following rules on parameters MUST be applied:
654
655
655
656
* If either `l3CacheSchema` or `memBwSchema` is set, runtimes MUST write the value to the `schemata` file in the that sub-directory discussed in `closID`.
656
657
657
-
* If neither `l3CacheSchema` nor `memBwSchema` is set, runtimes MUST NOT write to `schemata` files in any `resctrl` pseudo-filesystems.
658
+
* If `schemata` field is set, runtimes MUST write the value to the `schemata` file in the that sub-directory discussed in `closID`. If also l3CacheSchema` or `memBwSchema` is set the value of `schemata` field must be written last, after the values from `l3CacheSchema` and `memBwSchema` has been written.
659
+
660
+
* If none of `l3CacheSchema`, `memBwSchema` or `schemata` is set, runtimes MUST NOT write to `schemata` files in any `resctrl` pseudo-filesystems.
658
661
659
662
* If `closID` is not set, runtimes MUST use the container ID from [`start`](runtime.md#start) and create the `<container-id>` directory.
660
663
661
-
* If `closID` is set, `l3CacheSchema` and/or `memBwSchema` is set
664
+
* If `closID` is set, `l3CacheSchema` and/or `memBwSchema`and/or `schemata`is set
662
665
* if `closID` directory in a mounted `resctrl` pseudo-filesystem doesn't exist, the runtimes MUST create it.
663
-
* if `closID` directory in a mounted `resctrl` pseudo-filesystem exists, runtimes MUST compare `l3CacheSchema` and/or `memBwSchema` value with `schemata` file, and [generate an error](runtime.md#errors) if doesn't match.
666
+
* if `closID` directory in a mounted `resctrl` pseudo-filesystem exists, runtimes MUST compare `l3CacheSchema` and/or `memBwSchema`and/or `schemata`value with `schemata` file, and [generate an error](runtime.md#errors) if doesn't match.
664
667
665
-
* 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.
668
+
* If `closID` is set, and none of `l3CacheSchema`, `memBwSchema` or `schemata` 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.
666
669
667
670
***`enableCMT`***(boolean, OPTIONAL)* - specifies if Intel RDT CMT should be enabled:
668
671
* CMT (Cache Monitoring Technology) supports monitoring of the last-level cache (LLC) occupancy
@@ -674,18 +677,23 @@ The following rules on parameters MUST be applied:
674
677
675
678
### Example
676
679
677
-
Consider a two-socket machine with two L3 caches where the default CBM is 0x7ff and the max CBM length is 11 bits,
678
-
and minimum memory bandwidth of 10% with a memory bandwidth granularity of 10%.
680
+
Consider a two-socket machine with:
681
+
682
+
- two L3 caches where the default CBM is 0x7ff (11 bits)
683
+
- eight L2 caches where the default CBM is 0xFF (8 bits)
684
+
- minimum memory bandwidth of 10% with a memory bandwidth granularity of 10%
685
+
686
+
Tasks inside the container:
679
687
680
-
Tasks inside the container only have access to the "upper" 7/11 of L3 cache on socket 0 and the "lower" 5/11 L3 cache on socket 1,
681
-
and may use a maximum memory bandwidth of 20% on socket 0 and 70% on socket 1.
688
+
- have access to the "upper" 7/11 of L3 cache on socket 0 and the "lower" 5/11 L3 cache on socket 1
689
+
- have access to the "lower" 4/8 of L2 cache on socket 0 (socket 1 is left out from this example)
690
+
- may use a maximum memory bandwidth of 20% on socket 0 and 70% on socket 1.
0 commit comments