mirror of
https://github.com/kata-containers/cgroups-rs.git
synced 2026-08-05 02:13:23 +00:00
memory: Use default memory stats instead of panic.
When containers are terminated, cgroup v2 memory metrics under /sys/fs/cgroup may disappear. Previously, kata-agent assumed these metrics always exist, leading to panics as reported in kata-containers#138. This commit returns default value (0) when memory metric files are missing. This behaviour aligns with cgroup v1, which also defaults to 0 memory metric files are missing: - Memory.limit_in_bytes which maps to m.max https://github.com/kata-containers/cgroups-rs/blob/main/src/memory.rs#L635 - Memory.soft_limit_in_bytes which maps to m.low https://github.com/kata-containers/cgroups-rs/blob/main/src/memory.rs#L661 - MemSwap.fail_cnt: https://github.com/kata-containers/cgroups-rs/blob/main/src/memory.rs#L631 Signed-off-by: Ruini Xue <ruini.xue@gmail.com> Signed-off-by: Alex Man <alexman@stripe.com> Signed-off-by: Fabiano Fidêncio <fidencio@northflank.com>
This commit is contained in:
committed by
Fabiano Fidêncio
parent
b3c57840ee
commit
eadbf53140
@@ -573,18 +573,33 @@ impl MemController {
|
||||
|
||||
// for v2
|
||||
pub fn get_mem(&self) -> Result<SetMemory> {
|
||||
let mut m: SetMemory = Default::default();
|
||||
self.get_max_value("memory.high")
|
||||
.map(|x| m.high = Some(x))?;
|
||||
self.get_max_value("memory.low").map(|x| m.low = Some(x))?;
|
||||
self.get_max_value("memory.max").map(|x| m.max = Some(x))?;
|
||||
self.get_max_value("memory.min").map(|x| m.min = Some(x))?;
|
||||
let m = SetMemory {
|
||||
high: self
|
||||
.get_max_value("memory.high")
|
||||
.map_or(Some(MaxValue::default()), Some),
|
||||
low: self
|
||||
.get_max_value("memory.low")
|
||||
.map_or(Some(MaxValue::Value(0)), Some),
|
||||
max: self
|
||||
.get_max_value("memory.max")
|
||||
.map_or(Some(MaxValue::default()), Some),
|
||||
min: self
|
||||
.get_max_value("memory.min")
|
||||
.map_or(Some(MaxValue::Value(0)), Some),
|
||||
};
|
||||
|
||||
Ok(m)
|
||||
}
|
||||
|
||||
fn memory_stat_v2(&self) -> Memory {
|
||||
let set = self.get_mem().unwrap();
|
||||
// NOTE: get_mem() always returns T, but let's
|
||||
// still do `unwrap_or` for safety.
|
||||
let set = self.get_mem().unwrap_or(SetMemory {
|
||||
low: Some(MaxValue::Value(0)),
|
||||
high: Some(MaxValue::default()),
|
||||
max: Some(MaxValue::default()),
|
||||
min: Some(MaxValue::Value(0)),
|
||||
});
|
||||
|
||||
Memory {
|
||||
fail_cnt: 0,
|
||||
|
||||
Reference in New Issue
Block a user