k3s/vendor/github.com/opencontainers/runc/libcontainer/configs/intelrdt.go

14 lines
518 B
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
package configs
type IntelRdt struct {
// The schema for L3 cache id and capacity bitmask (CBM)
// Format: "L3:<cache_id0>=<cbm0>;<cache_id1>=<cbm1>;..."
L3CacheSchema string `json:"l3_cache_schema,omitempty"`
2019-09-27 21:51:53 +00:00
// The schema of memory bandwidth per L3 cache id
2019-01-12 04:58:27 +00:00
// Format: "MB:<cache_id0>=bandwidth0;<cache_id1>=bandwidth1;..."
2019-09-27 21:51:53 +00:00
// The unit of memory bandwidth is specified in "percentages" by
// default, and in "MBps" if MBA Software Controller is enabled.
2019-01-12 04:58:27 +00:00
MemBwSchema string `json:"memBwSchema,omitempty"`
}