blob: 9bbbf524ba8fec538152be167091a15d1954fad2 [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.h - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -08009 * 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
20#ifndef _LINUX_MEMCONTROL_H
21#define _LINUX_MEMCONTROL_H
22
Pavel Emelianov78fb7462008-02-07 00:13:51 -080023struct 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);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080033extern int mem_cgroup_charge(struct page *page, struct mm_struct *mm);
34extern void mem_cgroup_uncharge(struct page_cgroup *pc);
Balbir Singh66e17072008-02-07 00:13:56 -080035extern void mem_cgroup_move_lists(struct page_cgroup *pc, bool active);
36extern unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
37 struct list_head *dst,
38 unsigned long *scanned, int order,
39 int mode, struct zone *z,
40 struct mem_cgroup *mem_cont,
41 int active);
Pavel Emelianovc7ba5c92008-02-07 00:13:58 -080042extern void mem_cgroup_out_of_memory(struct mem_cgroup *mem, gfp_t gfp_mask);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080043
44static inline void mem_cgroup_uncharge_page(struct page *page)
45{
46 mem_cgroup_uncharge(page_get_page_cgroup(page));
47}
Pavel Emelianov78fb7462008-02-07 00:13:51 -080048
49#else /* CONFIG_CGROUP_MEM_CONT */
50static inline void mm_init_cgroup(struct mm_struct *mm,
51 struct task_struct *p)
52{
53}
54
55static inline void mm_free_cgroup(struct mm_struct *mm)
56{
57}
58
59static inline void page_assign_page_cgroup(struct page *page,
60 struct page_cgroup *pc)
61{
62}
63
64static inline struct page_cgroup *page_get_page_cgroup(struct page *page)
65{
66 return NULL;
67}
68
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080069static inline int mem_cgroup_charge(struct page *page, struct mm_struct *mm)
70{
71 return 0;
72}
73
74static inline void mem_cgroup_uncharge(struct page_cgroup *pc)
75{
76}
77
78static inline void mem_cgroup_uncharge_page(struct page *page)
79{
80}
81
Balbir Singh66e17072008-02-07 00:13:56 -080082static inline void mem_cgroup_move_lists(struct page_cgroup *pc,
83 bool active)
84{
85}
86
Pavel Emelianov78fb7462008-02-07 00:13:51 -080087#endif /* CONFIG_CGROUP_MEM_CONT */
88
Balbir Singh8cdea7c2008-02-07 00:13:50 -080089#endif /* _LINUX_MEMCONTROL_H */
90