xref: /openbmc/linux/include/linux/cgroup_subsys.h (revision 3932b9ca)
1 /*
2  * List of cgroup subsystems.
3  *
4  * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
5  */
6 #if IS_ENABLED(CONFIG_CPUSETS)
7 SUBSYS(cpuset)
8 #endif
9 
10 #if IS_ENABLED(CONFIG_CGROUP_SCHED)
11 SUBSYS(cpu)
12 #endif
13 
14 #if IS_ENABLED(CONFIG_CGROUP_CPUACCT)
15 SUBSYS(cpuacct)
16 #endif
17 
18 #if IS_ENABLED(CONFIG_MEMCG)
19 SUBSYS(memory)
20 #endif
21 
22 #if IS_ENABLED(CONFIG_CGROUP_DEVICE)
23 SUBSYS(devices)
24 #endif
25 
26 #if IS_ENABLED(CONFIG_CGROUP_FREEZER)
27 SUBSYS(freezer)
28 #endif
29 
30 #if IS_ENABLED(CONFIG_CGROUP_NET_CLASSID)
31 SUBSYS(net_cls)
32 #endif
33 
34 #if IS_ENABLED(CONFIG_BLK_CGROUP)
35 SUBSYS(blkio)
36 #endif
37 
38 #if IS_ENABLED(CONFIG_CGROUP_PERF)
39 SUBSYS(perf_event)
40 #endif
41 
42 #if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
43 SUBSYS(net_prio)
44 #endif
45 
46 #if IS_ENABLED(CONFIG_CGROUP_HUGETLB)
47 SUBSYS(hugetlb)
48 #endif
49 
50 /*
51  * The following subsystems are not supported on the default hierarchy.
52  */
53 #if IS_ENABLED(CONFIG_CGROUP_DEBUG)
54 SUBSYS(debug)
55 #endif
56 /*
57  * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
58  */
59