cgroup_subsys.h 990 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * List of cgroup subsystems.
  3. *
  4. * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
  5. */
  6. #if IS_ENABLED(CONFIG_CPUSETS)
  7. SUBSYS(cpuset)
  8. #endif
  9. #if IS_ENABLED(CONFIG_CGROUP_SCHED)
  10. SUBSYS(cpu)
  11. #endif
  12. #if IS_ENABLED(CONFIG_CGROUP_CPUACCT)
  13. SUBSYS(cpuacct)
  14. #endif
  15. #if IS_ENABLED(CONFIG_MEMCG)
  16. SUBSYS(memory)
  17. #endif
  18. #if IS_ENABLED(CONFIG_CGROUP_DEVICE)
  19. SUBSYS(devices)
  20. #endif
  21. #if IS_ENABLED(CONFIG_CGROUP_FREEZER)
  22. SUBSYS(freezer)
  23. #endif
  24. #if IS_ENABLED(CONFIG_CGROUP_NET_CLASSID)
  25. SUBSYS(net_cls)
  26. #endif
  27. #if IS_ENABLED(CONFIG_BLK_CGROUP)
  28. SUBSYS(blkio)
  29. #endif
  30. #if IS_ENABLED(CONFIG_CGROUP_PERF)
  31. SUBSYS(perf_event)
  32. #endif
  33. #if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
  34. SUBSYS(net_prio)
  35. #endif
  36. #if IS_ENABLED(CONFIG_CGROUP_HUGETLB)
  37. SUBSYS(hugetlb)
  38. #endif
  39. /*
  40. * The following subsystems are not supported on the default hierarchy.
  41. */
  42. #if IS_ENABLED(CONFIG_CGROUP_DEBUG)
  43. SUBSYS(debug)
  44. #endif
  45. /*
  46. * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
  47. */