]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/memcontrol.h
Memory controller: add per cgroup LRU and reclaim
[net-next-2.6.git] / include / linux / memcontrol.h
CommitLineData
8cdea7c0
BS
1/* memcontrol.h - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
78fb7466
PE
6 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
8cdea7c0
BS
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
20#ifndef _LINUX_MEMCONTROL_H
21#define _LINUX_MEMCONTROL_H
22
78fb7466
PE
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);
8a9f3ccd
BS
33extern int mem_cgroup_charge(struct page *page, struct mm_struct *mm);
34extern void mem_cgroup_uncharge(struct page_cgroup *pc);
66e1707b
BS
35extern 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);
8a9f3ccd
BS
42
43static inline void mem_cgroup_uncharge_page(struct page *page)
44{
45 mem_cgroup_uncharge(page_get_page_cgroup(page));
46}
78fb7466
PE
47
48#else /* CONFIG_CGROUP_MEM_CONT */
49static inline void mm_init_cgroup(struct mm_struct *mm,
50 struct task_struct *p)
51{
52}
53
54static inline void mm_free_cgroup(struct mm_struct *mm)
55{
56}
57
58static inline void page_assign_page_cgroup(struct page *page,
59 struct page_cgroup *pc)
60{
61}
62
63static inline struct page_cgroup *page_get_page_cgroup(struct page *page)
64{
65 return NULL;
66}
67
8a9f3ccd
BS
68static inline int mem_cgroup_charge(struct page *page, struct mm_struct *mm)
69{
70 return 0;
71}
72
73static inline void mem_cgroup_uncharge(struct page_cgroup *pc)
74{
75}
76
77static inline void mem_cgroup_uncharge_page(struct page *page)
78{
79}
80
66e1707b
BS
81static inline void mem_cgroup_move_lists(struct page_cgroup *pc,
82 bool active)
83{
84}
85
78fb7466
PE
86#endif /* CONFIG_CGROUP_MEM_CONT */
87
8cdea7c0
BS
88#endif /* _LINUX_MEMCONTROL_H */
89