xref: /linux-6.15/include/linux/cgroup_subsys.h (revision dec102aa)
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_DEBUG)
11 SUBSYS(debug)
12 #endif
13 
14 #if IS_ENABLED(CONFIG_CGROUP_SCHED)
15 SUBSYS(cpu)
16 #endif
17 
18 #if IS_ENABLED(CONFIG_CGROUP_CPUACCT)
19 SUBSYS(cpuacct)
20 #endif
21 
22 #if IS_ENABLED(CONFIG_MEMCG)
23 SUBSYS(memory)
24 #endif
25 
26 #if IS_ENABLED(CONFIG_CGROUP_DEVICE)
27 SUBSYS(devices)
28 #endif
29 
30 #if IS_ENABLED(CONFIG_CGROUP_FREEZER)
31 SUBSYS(freezer)
32 #endif
33 
34 #if IS_ENABLED(CONFIG_CGROUP_NET_CLASSID)
35 SUBSYS(net_cls)
36 #endif
37 
38 #if IS_ENABLED(CONFIG_BLK_CGROUP)
39 SUBSYS(blkio)
40 #endif
41 
42 #if IS_ENABLED(CONFIG_CGROUP_PERF)
43 SUBSYS(perf_event)
44 #endif
45 
46 #if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
47 SUBSYS(net_prio)
48 #endif
49 
50 #if IS_ENABLED(CONFIG_CGROUP_HUGETLB)
51 SUBSYS(hugetlb)
52 #endif
53 /*
54  * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
55  */
56