On Tue, May 10, 2022 at 11:44 AM Tejun Heo <tj@xxxxxxxxxx> wrote: > > Hello, > > On Tue, May 10, 2022 at 12:17:59AM +0000, Yosry Ahmed wrote: > > @@ -706,6 +707,9 @@ struct cgroup_subsys { > > * specifies the mask of subsystems that this one depends on. > > */ > > unsigned int depends_on; > > + > > + /* used to store bpf programs.*/ > > + struct cgroup_subsys_bpf bpf; > > }; > > Care to elaborate on rationales around associating this with a specific > cgroup_subsys rather than letting it walk cgroups and access whatever csses > as needed? I don't think it's a wrong approach or anything but I can think > of plenty of things that would be interesting without being associated with > a specific subsystem - even all the cpu usage statistics are built to in the > cgroup core and given how e.g. systemd uses cgroup to organize the > applications in the system whether resource control is active or not, there > are a lot of info one can gather about those without being associated with a > specific subsystem. Hi Tejun, Thanks so much for taking the time to look into this! The rationale behind associating this work with cgroup_subsys is that usually the stats are associated with a resource (e.g. memory, cpu, etc). For example, if the memory controller is only enabled for a subtree in a big hierarchy, it would be more efficient to only run BPF rstat programs for those cgroups, not the entire hierarchy. It provides a way to control what part of the hierarchy you want to collect stats for. This is also semantically similar to the css_rstat_flush() callback. However, I do see your point about the benefits of collecting stats that are not associated with any controller. I think there are multiple options here, and I would love to hear what you prefer: 1. In addition to subsystems, support an "all" or "cgroup" attach point that loads BPF rstat flush programs that will run for all cgroups. 2. Simplify the interface so that all BPF rstat flush programs run for all cgroups, and add the subsystem association later if a need arises. 3. Instead of attaching BPF programs to a subsystem, attach them to a cgroup. This gives more flexibility, but also makes lifetime handling of programs more complicated and error-prone. I can also see most use cases (including ours) attaching programs to the root cgroup anyway. In this case, we waste space by storing pointers to the same program in every cgroup, and have unnecessary complexity in the code. Let me know what you think! > > Thanks. > > -- > tejun