1 package configs 2 3 type IntelRdt struct { 4 // The identity for RDT Class of Service 5 ClosID string `json:"closID,omitempty"` 6 7 // The schema for L3 cache id and capacity bitmask (CBM) 8 // Format: "L3:<cache_id0>=<cbm0>;<cache_id1>=<cbm1>;..." 9 L3CacheSchema string `json:"l3_cache_schema,omitempty"` 10 11 // The schema of memory bandwidth per L3 cache id 12 // Format: "MB:<cache_id0>=bandwidth0;<cache_id1>=bandwidth1;..." 13 // The unit of memory bandwidth is specified in "percentages" by 14 // default, and in "MBps" if MBA Software Controller is enabled. 15 MemBwSchema string `json:"memBwSchema,omitempty"` 16 } 17