cregit-Linux how code gets into the kernel

Release 4.7 include/linux/cgroup_subsys.h

Directory: include/linux
/*
 * List of cgroup subsystems.
 *
 * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
 */

/*
 * This file *must* be included with SUBSYS() defined.
 */

#if IS_ENABLED(CONFIG_CPUSETS)
SUBSYS(cpuset)
#endif

#if IS_ENABLED(CONFIG_CGROUP_SCHED)
SUBSYS(cpu)
#endif

#if IS_ENABLED(CONFIG_CGROUP_CPUACCT)
SUBSYS(cpuacct)
#endif

#if IS_ENABLED(CONFIG_BLK_CGROUP)
SUBSYS(io)
#endif

#if IS_ENABLED(CONFIG_MEMCG)
SUBSYS(memory)
#endif

#if IS_ENABLED(CONFIG_CGROUP_DEVICE)
SUBSYS(devices)
#endif

#if IS_ENABLED(CONFIG_CGROUP_FREEZER)
SUBSYS(freezer)
#endif

#if IS_ENABLED(CONFIG_CGROUP_NET_CLASSID)
SUBSYS(net_cls)
#endif

#if IS_ENABLED(CONFIG_CGROUP_PERF)
SUBSYS(perf_event)
#endif

#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
SUBSYS(net_prio)
#endif

#if IS_ENABLED(CONFIG_CGROUP_HUGETLB)
SUBSYS(hugetlb)
#endif

#if IS_ENABLED(CONFIG_CGROUP_PIDS)
SUBSYS(pids)
#endif

/*
 * The following subsystems are not supported on the default hierarchy.
 */
#if IS_ENABLED(CONFIG_CGROUP_DEBUG)
SUBSYS(debug)
#endif

/*
 * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
 */

Overall Contributors

PersonTokensPropCommitsCommitProp
daniel wagnerdaniel wagner4427.50%14.55%
tejun heotejun heo3823.75%627.27%
aleksa saraialeksa sarai127.50%14.55%
srivatsa vaddagirisrivatsa vaddagiri127.50%29.09%
aneesh kumaraneesh kumar74.38%14.55%
paul menagepaul menage74.38%14.55%
stephane eranianstephane eranian63.75%14.55%
neil hormanneil horman63.75%14.55%
vivek goyalvivek goyal53.12%14.55%
thomas grafthomas graf53.12%14.55%
serge hallynserge hallyn53.12%14.55%
matt helsleymatt helsley53.12%14.55%
balbir singhbalbir singh53.12%14.55%
peter zijlstrapeter zijlstra10.62%14.55%
daniel borkmanndaniel borkmann10.62%14.55%
oleg nesterovoleg nesterov10.62%14.55%
Total160100.00%22100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}