cgroup_subsys.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* Add subsystem definitions of the form SUBSYS(<name>) in this
  2. * file. Surround each one by a line of comment markers so that
  3. * patches don't collide
  4. */
  5. /* */
  6. /* */
  7. #if IS_SUBSYS_ENABLED(CONFIG_CPUSETS)
  8. SUBSYS(cpuset)
  9. #endif
  10. /* */
  11. #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEBUG)
  12. SUBSYS(debug)
  13. #endif
  14. /* */
  15. #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_SCHED)
  16. SUBSYS(cpu_cgroup)
  17. #endif
  18. /* */
  19. #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_CPUACCT)
  20. SUBSYS(cpuacct)
  21. #endif
  22. /* */
  23. #if IS_SUBSYS_ENABLED(CONFIG_MEMCG)
  24. SUBSYS(mem_cgroup)
  25. #endif
  26. /* */
  27. #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEVICE)
  28. SUBSYS(devices)
  29. #endif
  30. /* */
  31. #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_FREEZER)
  32. SUBSYS(freezer)
  33. #endif
  34. /* */
  35. #if IS_SUBSYS_ENABLED(CONFIG_NET_CLS_CGROUP)
  36. SUBSYS(net_cls)
  37. #endif
  38. /* */
  39. #if IS_SUBSYS_ENABLED(CONFIG_BLK_CGROUP)
  40. SUBSYS(blkio)
  41. #endif
  42. /* */
  43. #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_PERF)
  44. SUBSYS(perf)
  45. #endif
  46. /* */
  47. #if IS_SUBSYS_ENABLED(CONFIG_NETPRIO_CGROUP)
  48. SUBSYS(net_prio)
  49. #endif
  50. /* */
  51. #if IS_SUBSYS_ENABLED(CONFIG_CGROUP_HUGETLB)
  52. SUBSYS(hugetlb)
  53. #endif
  54. /* */
  55. #ifdef CONFIG_CGROUP_BCACHE
  56. SUBSYS(bcache)
  57. #endif
  58. /* */