cgroup_subsys.h 1000 字节
Newer Older
1 2 3 4
/*
 * List of cgroup subsystems.
 *
 * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
5
 */
6
#if IS_SUBSYS_ENABLED(CONFIG_CPUSETS)
7 8 9
SUBSYS(cpuset)
#endif

10
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEBUG)
11 12 13
SUBSYS(debug)
#endif

14
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_SCHED)
15 16 17
SUBSYS(cpu_cgroup)
#endif

18
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_CPUACCT)
19 20 21
SUBSYS(cpuacct)
#endif

22
#if IS_SUBSYS_ENABLED(CONFIG_MEMCG)
B
Balbir Singh 已提交
23 24 25
SUBSYS(mem_cgroup)
#endif

26
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEVICE)
27 28 29
SUBSYS(devices)
#endif

30
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_FREEZER)
31 32 33
SUBSYS(freezer)
#endif

34
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_NET_CLASSID)
T
Thomas Graf 已提交
35 36 37
SUBSYS(net_cls)
#endif

38
#if IS_SUBSYS_ENABLED(CONFIG_BLK_CGROUP)
39 40 41
SUBSYS(blkio)
#endif

42
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_PERF)
S
Stephane Eranian 已提交
43 44 45
SUBSYS(perf)
#endif

46
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_NET_PRIO)
47 48 49
SUBSYS(net_prio)
#endif

50
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_HUGETLB)
51 52
SUBSYS(hugetlb)
#endif
53 54 55
/*
 * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
 */