pub struct LinuxIntelRdt { /* private fields */ }
Expand description
LinuxIntelRdt has container runtime resource constraints for Intel RDT CAT and MBA features and flags enabling Intel RDT CMT and MBM features. Intel RDT features are available in Linux 4.14 and newer kernel versions.
Implementations§
Source§impl LinuxIntelRdt
impl LinuxIntelRdt
Sourcepub fn l3_cache_schema(&self) -> &Option<String>
pub fn l3_cache_schema(&self) -> &Option<String>
The schema for L3 cache id and capacity bitmask (CBM). Format: “L3:<cache_id0>=<cbm0>;<cache_id1>=<cbm1>;…”
Sourcepub fn mem_bw_schema(&self) -> &Option<String>
pub fn mem_bw_schema(&self) -> &Option<String>
The schema of memory bandwidth per L3 cache id. Format: “MB:<cache_id0>=bandwidth0;<cache_id1>=bandwidth1;…” The unit of memory bandwidth is specified in “percentages” by default, and in “MBps” if MBA Software Controller is enabled.
Sourcepub fn enable_cmt(&self) -> &Option<bool>
pub fn enable_cmt(&self) -> &Option<bool>
EnableCMT is the flag to indicate if the Intel RDT CMT is enabled. CMT (Cache Monitoring Technology) supports monitoring of the last-level cache (LLC) occupancy for the container.
Sourcepub fn enable_mbm(&self) -> &Option<bool>
pub fn enable_mbm(&self) -> &Option<bool>
EnableMBM is the flag to indicate if the Intel RDT MBM is enabled. MBM (Memory Bandwidth Monitoring) supports monitoring of total and local memory bandwidth for the container.
Source§impl LinuxIntelRdt
impl LinuxIntelRdt
Sourcepub fn clos_id_mut(&mut self) -> &mut Option<String>
pub fn clos_id_mut(&mut self) -> &mut Option<String>
The identity for RDT Class of Service.
Sourcepub fn l3_cache_schema_mut(&mut self) -> &mut Option<String>
pub fn l3_cache_schema_mut(&mut self) -> &mut Option<String>
The schema for L3 cache id and capacity bitmask (CBM). Format: “L3:<cache_id0>=<cbm0>;<cache_id1>=<cbm1>;…”
Sourcepub fn mem_bw_schema_mut(&mut self) -> &mut Option<String>
pub fn mem_bw_schema_mut(&mut self) -> &mut Option<String>
The schema of memory bandwidth per L3 cache id. Format: “MB:<cache_id0>=bandwidth0;<cache_id1>=bandwidth1;…” The unit of memory bandwidth is specified in “percentages” by default, and in “MBps” if MBA Software Controller is enabled.
Sourcepub fn enable_cmt_mut(&mut self) -> &mut Option<bool>
pub fn enable_cmt_mut(&mut self) -> &mut Option<bool>
EnableCMT is the flag to indicate if the Intel RDT CMT is enabled. CMT (Cache Monitoring Technology) supports monitoring of the last-level cache (LLC) occupancy for the container.
Sourcepub fn enable_mbm_mut(&mut self) -> &mut Option<bool>
pub fn enable_mbm_mut(&mut self) -> &mut Option<bool>
EnableMBM is the flag to indicate if the Intel RDT MBM is enabled. MBM (Memory Bandwidth Monitoring) supports monitoring of total and local memory bandwidth for the container.
Source§impl LinuxIntelRdt
impl LinuxIntelRdt
Sourcepub fn set_clos_id(&mut self, val: Option<String>) -> &mut Self
pub fn set_clos_id(&mut self, val: Option<String>) -> &mut Self
The identity for RDT Class of Service.
Sourcepub fn set_l3_cache_schema(&mut self, val: Option<String>) -> &mut Self
pub fn set_l3_cache_schema(&mut self, val: Option<String>) -> &mut Self
The schema for L3 cache id and capacity bitmask (CBM). Format: “L3:<cache_id0>=<cbm0>;<cache_id1>=<cbm1>;…”
Sourcepub fn set_mem_bw_schema(&mut self, val: Option<String>) -> &mut Self
pub fn set_mem_bw_schema(&mut self, val: Option<String>) -> &mut Self
The schema of memory bandwidth per L3 cache id. Format: “MB:<cache_id0>=bandwidth0;<cache_id1>=bandwidth1;…” The unit of memory bandwidth is specified in “percentages” by default, and in “MBps” if MBA Software Controller is enabled.
Sourcepub fn set_enable_cmt(&mut self, val: Option<bool>) -> &mut Self
pub fn set_enable_cmt(&mut self, val: Option<bool>) -> &mut Self
EnableCMT is the flag to indicate if the Intel RDT CMT is enabled. CMT (Cache Monitoring Technology) supports monitoring of the last-level cache (LLC) occupancy for the container.
Sourcepub fn set_enable_mbm(&mut self, val: Option<bool>) -> &mut Self
pub fn set_enable_mbm(&mut self, val: Option<bool>) -> &mut Self
EnableMBM is the flag to indicate if the Intel RDT MBM is enabled. MBM (Memory Bandwidth Monitoring) supports monitoring of total and local memory bandwidth for the container.
Trait Implementations§
Source§impl Clone for LinuxIntelRdt
impl Clone for LinuxIntelRdt
Source§fn clone(&self) -> LinuxIntelRdt
fn clone(&self) -> LinuxIntelRdt
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more