blob: 0df0336acee9ec10fef79f878c299f1aae33b143 [file] [log] [blame]
Tejun Heoadd0c592013-07-09 16:17:39 -07001/*
2 * List of cgroup subsystems.
3 *
4 * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005 */
Aleksa Sarai7e476822015-06-09 21:32:09 +10006
7/*
8 * This file *must* be included with SUBSYS() defined.
Aleksa Sarai7e476822015-06-09 21:32:09 +10009 */
10
Tejun Heo3ed80a62014-02-08 10:36:58 -050011#if IS_ENABLED(CONFIG_CPUSETS)
Paul Menage8793d852007-10-18 23:39:39 -070012SUBSYS(cpuset)
13#endif
14
Tejun Heo3ed80a62014-02-08 10:36:58 -050015#if IS_ENABLED(CONFIG_CGROUP_SCHED)
Tejun Heo073219e2014-02-08 10:36:58 -050016SUBSYS(cpu)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070017#endif
18
Tejun Heo3ed80a62014-02-08 10:36:58 -050019#if IS_ENABLED(CONFIG_CGROUP_CPUACCT)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010020SUBSYS(cpuacct)
21#endif
22
Tejun Heo24dab7a2015-01-06 12:02:46 -050023#if IS_ENABLED(CONFIG_BLK_CGROUP)
Tejun Heoc165b3e2015-08-18 14:55:29 -070024SUBSYS(io)
Tejun Heo24dab7a2015-01-06 12:02:46 -050025#endif
26
Tejun Heo3ed80a62014-02-08 10:36:58 -050027#if IS_ENABLED(CONFIG_MEMCG)
Tejun Heo073219e2014-02-08 10:36:58 -050028SUBSYS(memory)
Balbir Singh8cdea7c2008-02-07 00:13:50 -080029#endif
30
Tejun Heo3ed80a62014-02-08 10:36:58 -050031#if IS_ENABLED(CONFIG_CGROUP_DEVICE)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070032SUBSYS(devices)
33#endif
34
Tejun Heo3ed80a62014-02-08 10:36:58 -050035#if IS_ENABLED(CONFIG_CGROUP_FREEZER)
Matt Helsleydc52ddc2008-10-18 20:27:21 -070036SUBSYS(freezer)
37#endif
38
Tejun Heo3ed80a62014-02-08 10:36:58 -050039#if IS_ENABLED(CONFIG_CGROUP_NET_CLASSID)
Thomas Graff4009232008-11-07 22:56:00 -080040SUBSYS(net_cls)
41#endif
42
Tejun Heo3ed80a62014-02-08 10:36:58 -050043#if IS_ENABLED(CONFIG_CGROUP_PERF)
Tejun Heo073219e2014-02-08 10:36:58 -050044SUBSYS(perf_event)
Stephane Eraniane5d13672011-02-14 11:20:01 +020045#endif
46
Tejun Heo3ed80a62014-02-08 10:36:58 -050047#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +000048SUBSYS(net_prio)
49#endif
50
Tejun Heo3ed80a62014-02-08 10:36:58 -050051#if IS_ENABLED(CONFIG_CGROUP_HUGETLB)
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070052SUBSYS(hugetlb)
53#endif
Tejun Heo5533e012014-05-14 19:33:07 -040054
Aleksa Sarai49b786e2015-06-09 21:32:10 +100055#if IS_ENABLED(CONFIG_CGROUP_PIDS)
56SUBSYS(pids)
57#endif
58
Aleksa Sarai7e476822015-06-09 21:32:09 +100059/*
Tejun Heo5533e012014-05-14 19:33:07 -040060 * The following subsystems are not supported on the default hierarchy.
61 */
62#if IS_ENABLED(CONFIG_CGROUP_DEBUG)
63SUBSYS(debug)
64#endif
Aleksa Sarai7e476822015-06-09 21:32:09 +100065
Tejun Heoadd0c592013-07-09 16:17:39 -070066/*
67 * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
68 */