Tejun Heo | add0c59 | 2013-07-09 16:17:39 -0700 | [diff] [blame] | 1 | /* |
2 | * List of cgroup subsystems. | ||||
3 | * | ||||
4 | * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS. | ||||
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 5 | */ |
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 6 | #if IS_SUBSYS_ENABLED(CONFIG_CPUSETS) |
Paul Menage | 8793d85 | 2007-10-18 23:39:39 -0700 | [diff] [blame] | 7 | SUBSYS(cpuset) |
8 | #endif | ||||
9 | |||||
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 10 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEBUG) |
Paul Menage | 006cb99 | 2007-10-18 23:39:43 -0700 | [diff] [blame] | 11 | SUBSYS(debug) |
12 | #endif | ||||
13 | |||||
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 14 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_SCHED) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 15 | SUBSYS(cpu_cgroup) |
16 | #endif | ||||
17 | |||||
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 18 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_CPUACCT) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 19 | SUBSYS(cpuacct) |
20 | #endif | ||||
21 | |||||
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 22 | #if IS_SUBSYS_ENABLED(CONFIG_MEMCG) |
Balbir Singh | 8cdea7c | 2008-02-07 00:13:50 -0800 | [diff] [blame] | 23 | SUBSYS(mem_cgroup) |
24 | #endif | ||||
25 | |||||
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 26 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEVICE) |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 27 | SUBSYS(devices) |
28 | #endif | ||||
29 | |||||
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 30 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_FREEZER) |
Matt Helsley | dc52ddc | 2008-10-18 20:27:21 -0700 | [diff] [blame] | 31 | SUBSYS(freezer) |
32 | #endif | ||||
33 | |||||
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 34 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_NET_CLASSID) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 35 | SUBSYS(net_cls) |
36 | #endif | ||||
37 | |||||
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 38 | #if IS_SUBSYS_ENABLED(CONFIG_BLK_CGROUP) |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 39 | SUBSYS(blkio) |
40 | #endif | ||||
41 | |||||
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 42 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_PERF) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 43 | SUBSYS(perf) |
44 | #endif | ||||
45 | |||||
Daniel Borkmann | 86f8515 | 2013-12-29 17:27:11 +0100 | [diff] [blame] | 46 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_NET_PRIO) |
Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 47 | SUBSYS(net_prio) |
48 | #endif | ||||
49 | |||||
Daniel Wagner | 5fc0b02 | 2012-09-12 16:12:05 +0200 | [diff] [blame] | 50 | #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_HUGETLB) |
Aneesh Kumar K.V | 2bc64a2 | 2012-07-31 16:42:12 -0700 | [diff] [blame] | 51 | SUBSYS(hugetlb) |
52 | #endif | ||||
Tejun Heo | add0c59 | 2013-07-09 16:17:39 -0700 | [diff] [blame] | 53 | /* |
54 | * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS. | ||||
55 | */ |