From: Kamalesh Babulal Date: Tue, 18 Jul 2023 09:08:34 +0000 (+0530) Subject: cgroup/misc: update struct members descriptions X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=62157e11d9a4ca7210bb2b0e8fa0557a6ada7fad;p=users%2Fjedix%2Flinux-maple.git cgroup/misc: update struct members descriptions Update the miscellaneous controller's structure member's description of struct misc_res and struct misc_cg. Signed-off-by: Kamalesh Babulal Signed-off-by: Tejun Heo --- diff --git a/include/linux/misc_cgroup.h b/include/linux/misc_cgroup.h index c238207d16156..6555c0f571586 100644 --- a/include/linux/misc_cgroup.h +++ b/include/linux/misc_cgroup.h @@ -31,7 +31,7 @@ struct misc_cg; * struct misc_res: Per cgroup per misc type resource * @max: Maximum limit on the resource. * @usage: Current usage of the resource. - * @failed: True if charged failed for the resource in a cgroup. + * @events: Number of times, the resource limit exceeded. */ struct misc_res { unsigned long max; @@ -42,6 +42,7 @@ struct misc_res { /** * struct misc_cg - Miscellaneous controller's cgroup structure. * @css: cgroup subsys state object. + * @events_file: Handle for the misc resources events file. * @res: Array of misc resources usage in the cgroup. */ struct misc_cg {