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 schemata field to IntelRdt (#1230)
* config-linux: add schemata field to IntelRdt
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]>
* Add linux.intelRdt.schemata to features.md
Signed-off-by: Markus Lehtonen <[email protected]>
---------
Signed-off-by: Markus Lehtonen <[email protected]>
Copy file name to clipboardExpand all lines: config-linux.md
+21-9Lines changed: 21 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -747,6 +747,7 @@ The following parameters can be specified for the container:
747
747
The value SHOULD start with `L3:` and SHOULD NOT contain newlines.
748
748
***`memBwSchema`***(string, OPTIONAL)* - specifies the schema of memory bandwidth per L3 cache id.
749
749
The value MUST start with `MB:` and MUST NOT contain newlines.
750
+
***`schemata`***(array of strings, OPTIONAL)* - specifies the schemata to be written to the `schemata` file in resctrlfs. Each element represents one line in the `schemata` file. The value MUST NOT contain newlines.
750
751
751
752
The following rules on parameters MUST be applied:
752
753
@@ -756,15 +757,17 @@ The following rules on parameters MUST be applied:
756
757
757
758
* If either `l3CacheSchema` or `memBwSchema` is set, runtimes MUST write the value to the `schemata` file in the that sub-directory discussed in `closID`.
758
759
759
-
* If neither `l3CacheSchema` nor `memBwSchema` is set, runtimes MUST NOT write to `schemata` files in any `resctrl` pseudo-filesystems.
760
+
* 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.
761
+
762
+
* If none of `l3CacheSchema`, `memBwSchema` or `schemata` is set, runtimes MUST NOT write to `schemata` files in any `resctrl` pseudo-filesystems.
760
763
761
764
* If `closID` is not set, runtimes MUST use the container ID from [`start`](runtime.md#start) and create the `<container-id>` directory.
762
765
763
-
* If `closID` is set, `l3CacheSchema` and/or `memBwSchema` is set
766
+
* If `closID` is set, `l3CacheSchema` and/or `memBwSchema`and/or `schemata`is set
764
767
* if `closID` directory in a mounted `resctrl` pseudo-filesystem doesn't exist, the runtimes MUST create it.
765
768
* 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.
766
769
767
-
* 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.
770
+
* 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.
768
771
769
772
***`enableCMT`***(boolean, OPTIONAL)* - specifies if Intel RDT CMT should be enabled:
770
773
* CMT (Cache Monitoring Technology) supports monitoring of the last-level cache (LLC) occupancy
@@ -776,18 +779,27 @@ The following rules on parameters MUST be applied:
776
779
777
780
### Example
778
781
779
-
Consider a two-socket machine with two L3 caches where the default CBM is 0x7ff and the max CBM length is 11 bits,
780
-
and minimum memory bandwidth of 10% with a memory bandwidth granularity of 10%.
782
+
Consider a two-socket machine with:
783
+
784
+
- two L3 caches where the default CBM is 0x7ff (11 bits)
785
+
- eight L2 caches where the default CBM is 0xFF (8 bits)
786
+
- minimum memory bandwidth of 10% with a memory bandwidth granularity of 10%
787
+
788
+
Tasks inside the container:
781
789
782
-
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,
783
-
and may use a maximum memory bandwidth of 20% on socket 0 and 70% on socket 1.
790
+
- have access to the "upper" 7/11 of L3 cache on socket 0 and the "lower" 5/11 L3 cache on socket 1
791
+
- have access to the "lower" 4/8 of L2 cache on socket 0 (socket 1 is left out from this example)
792
+
- may use a maximum memory bandwidth of 20% on socket 0 and 70% on socket 1.
0 commit comments