memcontrol.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. struct mem_cgroup;
  22. struct page_cgroup;
  23. #ifdef CONFIG_CGROUP_MEM_CONT
  24. extern void mm_init_cgroup(struct mm_struct *mm, struct task_struct *p);
  25. extern void mm_free_cgroup(struct mm_struct *mm);
  26. extern void page_assign_page_cgroup(struct page *page,
  27. struct page_cgroup *pc);
  28. extern struct page_cgroup *page_get_page_cgroup(struct page *page);
  29. #else /* CONFIG_CGROUP_MEM_CONT */
  30. static inline void mm_init_cgroup(struct mm_struct *mm,
  31. struct task_struct *p)
  32. {
  33. }
  34. static inline void mm_free_cgroup(struct mm_struct *mm)
  35. {
  36. }
  37. static inline void page_assign_page_cgroup(struct page *page,
  38. struct page_cgroup *pc)
  39. {
  40. }
  41. static inline struct page_cgroup *page_get_page_cgroup(struct page *page)
  42. {
  43. return NULL;
  44. }
  45. #endif /* CONFIG_CGROUP_MEM_CONT */
  46. #endif /* _LINUX_MEMCONTROL_H */