On Thu, Jun 06, 2024 at 05:22:29PM +0200, Michal Koutný wrote: > Some applications use memory cgroup limits to scale their own memory > needs. Reading of the immediate membership cgroup's memory.max is not > sufficient because of possible ancestral limits. The application could > traverse upwards to figure out the tightest limit but this would not > work in cgroup namespace where the view of cgroup hierarchy is > incomplete and the limit may apply from outer world. > Additionally, applications should respond to limit changes. If the goal is to detect how much memory would it be possible to allocate, I'm not sure that knowing all memory.max limits upper in the hierarchy really buys anything without knowing actual usages and a potential for memory reclaim across the entire tree. E.g.: A (max = 100G) | \ B C C's effective max will come out as 100G, but if B.anon_usage = 100G and there is no swap, the actual number is 0. But if it's more about exploring the "invisible" part of the cgroup tree configuration, it makes sense to me. Not sure about the naming, maybe something like memory.tree.max or memory.parent.max or even memory.hierarchical.max is a better fit. Thanks!