Hello Yosry et al. This is an interesting piece of work, I'll add some questions and comments. On Fri, May 20, 2022 at 01:21:28AM +0000, Yosry Ahmed <yosryahmed@xxxxxxxxxx> wrote: > This patch series allows for using bpf to collect hierarchical cgroup > stats efficiently by integrating with the rstat framework. The rstat > framework provides an efficient way to collect cgroup stats and > propagate them through the cgroup hierarchy. About the efficiency. Do you have any numbers or examples? IIUC the idea is to utilize the cgroup's rstat subgraph of full tree when flushing. I was looking at your selftest example and the measuring hooks call cgroup_rstat_updated() and they also allocate an entry bpf_map[cg_id]. The flush callback then looks up the cg_id for cgroups in the rstat subgraph. (I'm not familiar with bpf_map implementation or performance but I imagine, you're potentially one step away from erasing bpf_map[cg_id] in the flush callback.) It seems to me that you're building a parallel structure (inside bpf_map(s)) with similar purpose to the rstat subgraph. So I wonder whether there remains any benefit of coupling this with rstat? Also, I'd expect the custom-processed data are useful in the structured form (within bpf_maps) but then there's the cgroup iter thing that takes available data and "flattens" them into text files. I see this was discussed in subthreads already so it's not necessary to return to it. IIUC you somehow intend to provide the custom info via the text files. If that's true, I'd include that in the next cover message (the purpose of the iterator). > * The second patch adds cgroup_rstat_updated() and cgorup_rstat_flush() > kfuncs, to allow bpf stat collectors and readers to communicate with rstat. kfunc means that it can be just called from any BPF program? (I'm thinking of an unprivileged user who issues cgroup_rstat_updated() deep down in the hierarchy repeatedly just to "spam" the rstat subgraph (which slows down flushers above). Arguably, this can be done already e.g. by causing certain MM events, so I'd like to just clarify if this can be a new source of such arbitrary updates.) > * The third patch is actually v2 of a previously submitted patch [1] > by Hao Luo. We agreed that it fits better as a part of this series. It > introduces cgroup_iter programs that can dump stats for cgroups to > userspace. > v1 - > v2: > - Getting the cgroup's reference at the time at attaching, instead of > at the time when iterating. (Yonghong) (context [1]) I noticed you take the reference to cgroup, that's fine. But the demo program also accesses via RCU pointers (memory_subsys_enabled():cgroup->subsys). Again, my BPF ignorance here, does the iterator framework somehow take care of RCU locks? Thanks, Michal