aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/memcontrol.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/memcontrol.h')
-rw-r--r--include/linux/memcontrol.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h
index 3f121b27677a..7d1f119c796e 100644
--- a/include/linux/memcontrol.h
+++ b/include/linux/memcontrol.h
@@ -3,6 +3,9 @@
3 * Copyright IBM Corporation, 2007 3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com> 4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 * 5 *
6 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
6 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by 10 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation; either version 2 of the License, or
@@ -17,5 +20,38 @@
17#ifndef _LINUX_MEMCONTROL_H 20#ifndef _LINUX_MEMCONTROL_H
18#define _LINUX_MEMCONTROL_H 21#define _LINUX_MEMCONTROL_H
19 22
23struct mem_cgroup;
24struct page_cgroup;
25
26#ifdef CONFIG_CGROUP_MEM_CONT
27
28extern void mm_init_cgroup(struct mm_struct *mm, struct task_struct *p);
29extern void mm_free_cgroup(struct mm_struct *mm);
30extern void page_assign_page_cgroup(struct page *page,
31 struct page_cgroup *pc);
32extern struct page_cgroup *page_get_page_cgroup(struct page *page);
33
34#else /* CONFIG_CGROUP_MEM_CONT */
35static inline void mm_init_cgroup(struct mm_struct *mm,
36 struct task_struct *p)
37{
38}
39
40static inline void mm_free_cgroup(struct mm_struct *mm)
41{
42}
43
44static inline void page_assign_page_cgroup(struct page *page,
45 struct page_cgroup *pc)
46{
47}
48
49static inline struct page_cgroup *page_get_page_cgroup(struct page *page)
50{
51 return NULL;
52}
53
54#endif /* CONFIG_CGROUP_MEM_CONT */
55
20#endif /* _LINUX_MEMCONTROL_H */ 56#endif /* _LINUX_MEMCONTROL_H */
21 57