diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
commit | 57f0f512b273f60d52568b8c6b77e17f5636edc0 (patch) | |
tree | 5e910f0e82173f4ef4f51111366a3f1299037a7b /include/linux/cgroup_subsys.h |
Initial import
Diffstat (limited to 'include/linux/cgroup_subsys.h')
-rw-r--r-- | include/linux/cgroup_subsys.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/include/linux/cgroup_subsys.h b/include/linux/cgroup_subsys.h new file mode 100644 index 000000000..267d681a4 --- /dev/null +++ b/include/linux/cgroup_subsys.h @@ -0,0 +1,62 @@ +/* + * List of cgroup subsystems. + * + * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS. + */ +#if IS_ENABLED(CONFIG_CPUSETS) +SUBSYS(cpuset) +#endif + +#if IS_ENABLED(CONFIG_CGROUP_SCHED) +SUBSYS(cpu) +#endif + +#if IS_ENABLED(CONFIG_CGROUP_CPUACCT) +SUBSYS(cpuacct) +#endif + +#if IS_ENABLED(CONFIG_BLK_CGROUP) +SUBSYS(blkio) +#endif + +#if IS_ENABLED(CONFIG_MEMCG) +SUBSYS(memory) +#endif + +#if IS_ENABLED(CONFIG_CGROUP_DEVICE) +SUBSYS(devices) +#endif + +#if IS_ENABLED(CONFIG_CGROUP_FREEZER) +SUBSYS(freezer) +#endif + +#if IS_ENABLED(CONFIG_CGROUP_NET_CLASSID) +SUBSYS(net_cls) +#endif + +#if IS_ENABLED(CONFIG_CGROUP_BFQIO) +SUBSYS(bfqio) +#endif + +#if IS_ENABLED(CONFIG_CGROUP_PERF) +SUBSYS(perf_event) +#endif + +#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO) +SUBSYS(net_prio) +#endif + +#if IS_ENABLED(CONFIG_CGROUP_HUGETLB) +SUBSYS(hugetlb) +#endif + +/* + * The following subsystems are not supported on the default hierarchy. + */ +#if IS_ENABLED(CONFIG_CGROUP_DEBUG) +SUBSYS(debug) +#endif +/* + * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS. + */ |