memcontrol.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /* memcontrol.h - Memory Controller
  2. *
  3. * Copyright IBM Corporation, 2007
  4. * Author Balbir Singh <balbir@linux.vnet.ibm.com>
  5. *
  6. * Copyright 2007 OpenVZ SWsoft Inc
  7. * Author: Pavel Emelianov <xemul@openvz.org>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. */
  19. #ifndef _LINUX_MEMCONTROL_H
  20. #define _LINUX_MEMCONTROL_H
  21. #include <linux/rcupdate.h>
  22. #include <linux/mm.h>
  23. struct mem_cgroup;
  24. struct page_cgroup;
  25. struct page;
  26. struct mm_struct;
  27. #ifdef CONFIG_CGROUP_MEM_CONT
  28. extern void mm_init_cgroup(struct mm_struct *mm, struct task_struct *p);
  29. extern void mm_free_cgroup(struct mm_struct *mm);
  30. extern void page_assign_page_cgroup(struct page *page,
  31. struct page_cgroup *pc);
  32. extern struct page_cgroup *page_get_page_cgroup(struct page *page);
  33. extern int mem_cgroup_charge(struct page *page, struct mm_struct *mm,
  34. gfp_t gfp_mask);
  35. extern void mem_cgroup_uncharge(struct page_cgroup *pc);
  36. extern void mem_cgroup_move_lists(struct page_cgroup *pc, bool active);
  37. extern unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
  38. struct list_head *dst,
  39. unsigned long *scanned, int order,
  40. int mode, struct zone *z,
  41. struct mem_cgroup *mem_cont,
  42. int active);
  43. extern void mem_cgroup_out_of_memory(struct mem_cgroup *mem, gfp_t gfp_mask);
  44. extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
  45. gfp_t gfp_mask);
  46. int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem);
  47. static inline struct mem_cgroup *mm_cgroup(const struct mm_struct *mm)
  48. {
  49. return rcu_dereference(mm->mem_cgroup);
  50. }
  51. static inline void mem_cgroup_uncharge_page(struct page *page)
  52. {
  53. mem_cgroup_uncharge(page_get_page_cgroup(page));
  54. }
  55. #else /* CONFIG_CGROUP_MEM_CONT */
  56. static inline void mm_init_cgroup(struct mm_struct *mm,
  57. struct task_struct *p)
  58. {
  59. }
  60. static inline void mm_free_cgroup(struct mm_struct *mm)
  61. {
  62. }
  63. static inline void page_assign_page_cgroup(struct page *page,
  64. struct page_cgroup *pc)
  65. {
  66. }
  67. static inline struct page_cgroup *page_get_page_cgroup(struct page *page)
  68. {
  69. return NULL;
  70. }
  71. static inline int mem_cgroup_charge(struct page *page, struct mm_struct *mm,
  72. gfp_t gfp_mask)
  73. {
  74. return 0;
  75. }
  76. static inline void mem_cgroup_uncharge(struct page_cgroup *pc)
  77. {
  78. }
  79. static inline void mem_cgroup_uncharge_page(struct page *page)
  80. {
  81. }
  82. static inline void mem_cgroup_move_lists(struct page_cgroup *pc,
  83. bool active)
  84. {
  85. }
  86. static inline int mem_cgroup_cache_charge(struct page *page,
  87. struct mm_struct *mm,
  88. gfp_t gfp_mask)
  89. {
  90. return 0;
  91. }
  92. static inline struct mem_cgroup *mm_cgroup(const struct mm_struct *mm)
  93. {
  94. return NULL;
  95. }
  96. static inline int task_in_mem_cgroup(struct task_struct *task,
  97. const struct mem_cgroup *mem)
  98. {
  99. return 1;
  100. }
  101. #endif /* CONFIG_CGROUP_MEM_CONT */
  102. #endif /* _LINUX_MEMCONTROL_H */