File: /Users/paulross/dev/linux/linux-3.13/include/linux/cgroup_subsys.h

Green shading in the line number column means the source is part of the translation unit, red means it is conditionally excluded. Highlighted line numbers link to the translation unit page. Highlighted macros link to the macro page.

       1: /*
       2:  * List of cgroup subsystems.
       3:  *
       4:  * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
       5:  */
       6: #if IS_SUBSYS_ENABLED(CONFIG_CPUSETS)
       7: SUBSYS(cpuset)
       8: #endif
       9: 
      10: #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEBUG)
      11: SUBSYS(debug)
      12: #endif
      13: 
      14: #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_SCHED)
      15: SUBSYS(cpu_cgroup)
      16: #endif
      17: 
      18: #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_CPUACCT)
      19: SUBSYS(cpuacct)
      20: #endif
      21: 
      22: #if IS_SUBSYS_ENABLED(CONFIG_MEMCG)
      23: SUBSYS(mem_cgroup)
      24: #endif
      25: 
      26: #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEVICE)
      27: SUBSYS(devices)
      28: #endif
      29: 
      30: #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_FREEZER)
      31: SUBSYS(freezer)
      32: #endif
      33: 
      34: #if IS_SUBSYS_ENABLED(CONFIG_NET_CLS_CGROUP)
      35: SUBSYS(net_cls)
      36: #endif
      37: 
      38: #if IS_SUBSYS_ENABLED(CONFIG_BLK_CGROUP)
      39: SUBSYS(blkio)
      40: #endif
      41: 
      42: #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_PERF)
      43: SUBSYS(perf)
      44: #endif
      45: 
      46: #if IS_SUBSYS_ENABLED(CONFIG_NETPRIO_CGROUP)
      47: SUBSYS(net_prio)
      48: #endif
      49: 
      50: #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_HUGETLB)
      51: SUBSYS(hugetlb)
      52: #endif
      53: /*
      54:  * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
      55:  */
      56: