• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_CGROUP_SCHEDTUNE)
19 SUBSYS(schedtune)
20 #endif
21 
22 #if IS_ENABLED(CONFIG_BLK_CGROUP)
23 SUBSYS(blkio)
24 #endif
25 
26 #if IS_ENABLED(CONFIG_MEMCG)
27 SUBSYS(memory)
28 #endif
29 
30 #if IS_ENABLED(CONFIG_CGROUP_DEVICE)
31 SUBSYS(devices)
32 #endif
33 
34 #if IS_ENABLED(CONFIG_CGROUP_FREEZER)
35 SUBSYS(freezer)
36 #endif
37 
38 #if IS_ENABLED(CONFIG_CGROUP_NET_CLASSID)
39 SUBSYS(net_cls)
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 /*
55  * The following subsystems are not supported on the default hierarchy.
56  */
57 #if IS_ENABLED(CONFIG_CGROUP_DEBUG)
58 SUBSYS(debug)
59 #endif
60 /*
61  * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
62  */
63