1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Miscellaneous cgroup controller.
5 * Copyright 2020 Google LLC
6 * Author: Vipin Sharma <vipinsh@google.com>
8 #ifndef _MISC_CGROUP_H_
9 #define _MISC_CGROUP_H_
12 * Types of misc cgroup entries supported by the host.
15 #ifdef CONFIG_KVM_AMD_SEV
16 /* AMD SEV ASIDs resource */
18 /* AMD SEV-ES ASIDs resource */
26 #ifdef CONFIG_CGROUP_MISC
28 #include <linux/cgroup.h>
31 * struct misc_res: Per cgroup per misc type resource
32 * @max: Maximum limit on the resource.
33 * @usage: Current usage of the resource.
34 * @events: Number of times, the resource limit exceeded.
43 * struct misc_cg - Miscellaneous controller's cgroup structure.
44 * @css: cgroup subsys state object.
45 * @events_file: Handle for the misc resources events file.
46 * @res: Array of misc resources usage in the cgroup.
49 struct cgroup_subsys_state css;
52 struct cgroup_file events_file;
54 struct misc_res res[MISC_CG_RES_TYPES];
57 u64 misc_cg_res_total_usage(enum misc_res_type type);
58 int misc_cg_set_capacity(enum misc_res_type type, u64 capacity);
59 int misc_cg_try_charge(enum misc_res_type type, struct misc_cg *cg, u64 amount);
60 void misc_cg_uncharge(enum misc_res_type type, struct misc_cg *cg, u64 amount);
63 * css_misc() - Get misc cgroup from the css.
64 * @css: cgroup subsys state object.
66 * Context: Any context.
68 * * %NULL - If @css is null.
69 * * struct misc_cg* - misc cgroup pointer of the passed css.
71 static inline struct misc_cg *css_misc(struct cgroup_subsys_state *css)
73 return css ? container_of(css, struct misc_cg, css) : NULL;
77 * get_current_misc_cg() - Find and get the misc cgroup of the current task.
79 * Returned cgroup has its ref count increased by 1. Caller must call
80 * put_misc_cg() to return the reference.
82 * Return: Misc cgroup to which the current task belongs to.
84 static inline struct misc_cg *get_current_misc_cg(void)
86 return css_misc(task_get_css(current, misc_cgrp_id));
90 * put_misc_cg() - Put the misc cgroup and reduce its ref count.
91 * @cg - cgroup to put.
93 static inline void put_misc_cg(struct misc_cg *cg)
99 #else /* !CONFIG_CGROUP_MISC */
101 static inline u64 misc_cg_res_total_usage(enum misc_res_type type)
106 static inline int misc_cg_set_capacity(enum misc_res_type type, u64 capacity)
111 static inline int misc_cg_try_charge(enum misc_res_type type,
118 static inline void misc_cg_uncharge(enum misc_res_type type,
124 static inline struct misc_cg *get_current_misc_cg(void)
129 static inline void put_misc_cg(struct misc_cg *cg)
133 #endif /* CONFIG_CGROUP_MISC */
134 #endif /* _MISC_CGROUP_H_ */