blob: cc0ad7191acdfa421fcc28dccd3867de08109d67 [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;
Balbir Singh8697d332008-02-07 00:13:59 -080025struct page;
26struct mm_struct;
Pavel Emelianov78fb7462008-02-07 00:13:51 -080027
28#ifdef CONFIG_CGROUP_MEM_CONT
29
30extern void mm_init_cgroup(struct mm_struct *mm, struct task_struct *p);
31extern void mm_free_cgroup(struct mm_struct *mm);
32extern void page_assign_page_cgroup(struct page *page,
33 struct page_cgroup *pc);
34extern struct page_cgroup *page_get_page_cgroup(struct page *page);
Balbir Singhe1a1cd52008-02-07 00:14:02 -080035extern int mem_cgroup_charge(struct page *page, struct mm_struct *mm,
36 gfp_t gfp_mask);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080037extern void mem_cgroup_uncharge(struct page_cgroup *pc);
Balbir Singh66e17072008-02-07 00:13:56 -080038extern void mem_cgroup_move_lists(struct page_cgroup *pc, bool active);
39extern unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
40 struct list_head *dst,
41 unsigned long *scanned, int order,
42 int mode, struct zone *z,
43 struct mem_cgroup *mem_cont,
44 int active);
Pavel Emelianovc7ba5c92008-02-07 00:13:58 -080045extern void mem_cgroup_out_of_memory(struct mem_cgroup *mem, gfp_t gfp_mask);
Balbir Singhe1a1cd52008-02-07 00:14:02 -080046extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
47 gfp_t gfp_mask);
Balbir Singhbed71612008-02-07 00:14:01 -080048extern struct mem_cgroup *mm_cgroup(struct mm_struct *mm);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080049
50static inline void mem_cgroup_uncharge_page(struct page *page)
51{
52 mem_cgroup_uncharge(page_get_page_cgroup(page));
53}
Pavel Emelianov78fb7462008-02-07 00:13:51 -080054
55#else /* CONFIG_CGROUP_MEM_CONT */
56static inline void mm_init_cgroup(struct mm_struct *mm,
57 struct task_struct *p)
58{
59}
60
61static inline void mm_free_cgroup(struct mm_struct *mm)
62{
63}
64
65static inline void page_assign_page_cgroup(struct page *page,
66 struct page_cgroup *pc)
67{
68}
69
70static inline struct page_cgroup *page_get_page_cgroup(struct page *page)
71{
72 return NULL;
73}
74
Balbir Singhe1a1cd52008-02-07 00:14:02 -080075static inline int mem_cgroup_charge(struct page *page, struct mm_struct *mm,
76 gfp_t gfp_mask)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080077{
78 return 0;
79}
80
81static inline void mem_cgroup_uncharge(struct page_cgroup *pc)
82{
83}
84
85static inline void mem_cgroup_uncharge_page(struct page *page)
86{
87}
88
Balbir Singh66e17072008-02-07 00:13:56 -080089static inline void mem_cgroup_move_lists(struct page_cgroup *pc,
90 bool active)
91{
92}
93
Balbir Singh8697d332008-02-07 00:13:59 -080094static inline int mem_cgroup_cache_charge(struct page *page,
Balbir Singhe1a1cd52008-02-07 00:14:02 -080095 struct mm_struct *mm,
96 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -080097{
98 return 0;
99}
100
Balbir Singhbed71612008-02-07 00:14:01 -0800101static inline struct mem_cgroup *mm_cgroup(struct mm_struct *mm)
102{
103 return NULL;
104}
105
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800106#endif /* CONFIG_CGROUP_MEM_CONT */
107
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800108#endif /* _LINUX_MEMCONTROL_H */
109