[20/26] cgroup/misc: allow users of misc cgroup to read specific cgroup usage
Commit Message
Add a function to return the current usage of the specified cgroup.
The SGX driver will need this information to decide whether to
reclaim EPC pages from a cgroup.
Signed-off-by: Kristen Carlson Accardi <kristen@linux.intel.com>
---
include/linux/misc_cgroup.h | 6 ++++++
kernel/cgroup/misc.c | 19 +++++++++++++++++++
2 files changed, 25 insertions(+)
Comments
On Fri, Nov 11, 2022 at 10:35:25AM -0800, Kristen Carlson Accardi wrote:
> Add a function to return the current usage of the specified cgroup.
> The SGX driver will need this information to decide whether to
> reclaim EPC pages from a cgroup.
This looks fine to me. It'd probably a good idea to keep all the interface
function names consistent with this.
Thanks.
@@ -61,6 +61,7 @@ struct misc_cg {
struct misc_cg *root_misc(void);
struct misc_cg *parent_misc(struct misc_cg *cg);
+unsigned long misc_cg_read(enum misc_res_type type, struct misc_cg *cg);
unsigned long misc_cg_res_total_usage(enum misc_res_type type);
int misc_cg_set_capacity(enum misc_res_type type, unsigned long capacity);
int misc_cg_try_charge(enum misc_res_type type, struct misc_cg *cg,
@@ -118,6 +119,11 @@ static inline struct misc_cg *parent_misc(struct misc_cg *cg)
return NULL;
}
+static inline unsigned long misc_cg_read(enum misc_res_type type, struct misc_cg *cg)
+{
+ return 0;
+}
+
static inline unsigned long misc_cg_res_total_usage(enum misc_res_type type)
{
return 0;
@@ -213,6 +213,25 @@ void misc_cg_uncharge(enum misc_res_type type, struct misc_cg *cg,
}
EXPORT_SYMBOL_GPL(misc_cg_uncharge);
+/**
+ * misc_cg_read() - Return the current usage of the misc cgroup res.
+ * @type: Type of the misc res.
+ * @cg: Misc cgroup whose usage will be read
+ *
+ * Context: Any context.
+ * Return:
+ * The current total usage of the specified misc cgroup.
+ * If an invalid misc_res_type is given, zero will be returned.
+ */
+unsigned long misc_cg_read(enum misc_res_type type, struct misc_cg *cg)
+{
+ if (!(valid_type(type) && cg))
+ return 0;
+
+ return atomic_long_read(&cg->res[type].usage);
+}
+EXPORT_SYMBOL_GPL(misc_cg_read);
+
/**
* misc_cg_max_show() - Show the misc cgroup max limit.
* @sf: Interface file