diff options
Diffstat (limited to 'include/linux/cgroup_subsys.h')
-rw-r--r-- | include/linux/cgroup_subsys.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/include/linux/cgroup_subsys.h b/include/linux/cgroup_subsys.h index 7b99d717411d..768fe44e19f0 100644 --- a/include/linux/cgroup_subsys.h +++ b/include/linux/cgroup_subsys.h | |||
@@ -3,51 +3,51 @@ | |||
3 | * | 3 | * |
4 | * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS. | 4 | * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS. |
5 | */ | 5 | */ |
6 | #if IS_SUBSYS_ENABLED(CONFIG_CPUSETS) | 6 | #if IS_ENABLED(CONFIG_CPUSETS) |
7 | SUBSYS(cpuset) | 7 | SUBSYS(cpuset) |
8 | #endif | 8 | #endif |
9 | 9 | ||
10 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEBUG) | 10 | #if IS_ENABLED(CONFIG_CGROUP_DEBUG) |
11 | SUBSYS(debug) | 11 | SUBSYS(debug) |
12 | #endif | 12 | #endif |
13 | 13 | ||
14 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_SCHED) | 14 | #if IS_ENABLED(CONFIG_CGROUP_SCHED) |
15 | SUBSYS(cpu_cgroup) | 15 | SUBSYS(cpu) |
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_CPUACCT) | 18 | #if IS_ENABLED(CONFIG_CGROUP_CPUACCT) |
19 | SUBSYS(cpuacct) | 19 | SUBSYS(cpuacct) |
20 | #endif | 20 | #endif |
21 | 21 | ||
22 | #if IS_SUBSYS_ENABLED(CONFIG_MEMCG) | 22 | #if IS_ENABLED(CONFIG_MEMCG) |
23 | SUBSYS(mem_cgroup) | 23 | SUBSYS(memory) |
24 | #endif | 24 | #endif |
25 | 25 | ||
26 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEVICE) | 26 | #if IS_ENABLED(CONFIG_CGROUP_DEVICE) |
27 | SUBSYS(devices) | 27 | SUBSYS(devices) |
28 | #endif | 28 | #endif |
29 | 29 | ||
30 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_FREEZER) | 30 | #if IS_ENABLED(CONFIG_CGROUP_FREEZER) |
31 | SUBSYS(freezer) | 31 | SUBSYS(freezer) |
32 | #endif | 32 | #endif |
33 | 33 | ||
34 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_NET_CLASSID) | 34 | #if IS_ENABLED(CONFIG_CGROUP_NET_CLASSID) |
35 | SUBSYS(net_cls) | 35 | SUBSYS(net_cls) |
36 | #endif | 36 | #endif |
37 | 37 | ||
38 | #if IS_SUBSYS_ENABLED(CONFIG_BLK_CGROUP) | 38 | #if IS_ENABLED(CONFIG_BLK_CGROUP) |
39 | SUBSYS(blkio) | 39 | SUBSYS(blkio) |
40 | #endif | 40 | #endif |
41 | 41 | ||
42 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_PERF) | 42 | #if IS_ENABLED(CONFIG_CGROUP_PERF) |
43 | SUBSYS(perf) | 43 | SUBSYS(perf_event) |
44 | #endif | 44 | #endif |
45 | 45 | ||
46 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_NET_PRIO) | 46 | #if IS_ENABLED(CONFIG_CGROUP_NET_PRIO) |
47 | SUBSYS(net_prio) | 47 | SUBSYS(net_prio) |
48 | #endif | 48 | #endif |
49 | 49 | ||
50 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_HUGETLB) | 50 | #if IS_ENABLED(CONFIG_CGROUP_HUGETLB) |
51 | SUBSYS(hugetlb) | 51 | SUBSYS(hugetlb) |
52 | #endif | 52 | #endif |
53 | /* | 53 | /* |