memcontrol.h 4.1 KB
Newer Older
B
Balbir Singh 已提交
1 2 3 4 5
/* memcontrol.h - Memory Controller
 *
 * Copyright IBM Corporation, 2007
 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
 *
6 7 8
 * Copyright 2007 OpenVZ SWsoft Inc
 * Author: Pavel Emelianov <xemul@openvz.org>
 *
B
Balbir Singh 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef _LINUX_MEMCONTROL_H
#define _LINUX_MEMCONTROL_H

23 24
struct mem_cgroup;
struct page_cgroup;
25 26
struct page;
struct mm_struct;
27

28
#ifdef CONFIG_CGROUP_MEM_RES_CTLR
29

30 31
extern int mem_cgroup_charge(struct page *page, struct mm_struct *mm,
				gfp_t gfp_mask);
H
Hugh Dickins 已提交
32 33
extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
					gfp_t gfp_mask);
L
Lee Schermerhorn 已提交
34
extern void mem_cgroup_move_lists(struct page *page, enum lru_list lru);
35
extern void mem_cgroup_uncharge_page(struct page *page);
36
extern void mem_cgroup_uncharge_cache_page(struct page *page);
37 38
extern int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask);

39 40 41 42 43
extern unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
					struct list_head *dst,
					unsigned long *scanned, int order,
					int mode, struct zone *z,
					struct mem_cgroup *mem_cont,
44
					int active, int file);
45
extern void mem_cgroup_out_of_memory(struct mem_cgroup *mem, gfp_t gfp_mask);
46
int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem);
47

48 49
extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);

50
#define mm_match_cgroup(mm, cgroup)	\
51
	((cgroup) == mem_cgroup_from_task((mm)->owner))
52

53 54
extern int
mem_cgroup_prepare_migration(struct page *page, struct page *newpage);
55 56
extern void mem_cgroup_end_migration(struct page *page);

57 58 59 60
/*
 * For memory reclaim.
 */
extern int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem);
61 62
extern long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem);

63 64 65 66 67
extern int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem);
extern void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem,
							int priority);
extern void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem,
							int priority);
68

69 70
extern long mem_cgroup_calc_reclaim(struct mem_cgroup *mem, struct zone *zone,
					int priority, enum lru_list lru);
71

72

73
#else /* CONFIG_CGROUP_MEM_RES_CTLR */
H
Hugh Dickins 已提交
74 75
static inline int mem_cgroup_charge(struct page *page,
					struct mm_struct *mm, gfp_t gfp_mask)
76 77 78 79
{
	return 0;
}

H
Hugh Dickins 已提交
80 81
static inline int mem_cgroup_cache_charge(struct page *page,
					struct mm_struct *mm, gfp_t gfp_mask)
82
{
H
Hugh Dickins 已提交
83
	return 0;
84 85 86 87 88 89
}

static inline void mem_cgroup_uncharge_page(struct page *page)
{
}

90 91 92 93
static inline void mem_cgroup_uncharge_cache_page(struct page *page)
{
}

94 95 96 97 98
static inline int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask)
{
	return 0;
}

99
static inline void mem_cgroup_move_lists(struct page *page, bool active)
100 101 102
{
}

103
static inline int mm_match_cgroup(struct mm_struct *mm, struct mem_cgroup *mem)
104
{
105
	return 1;
106 107
}

108 109 110 111 112 113
static inline int task_in_mem_cgroup(struct task_struct *task,
				     const struct mem_cgroup *mem)
{
	return 1;
}

114 115
static inline int
mem_cgroup_prepare_migration(struct page *page, struct page *newpage)
116 117 118 119 120 121 122 123
{
	return 0;
}

static inline void mem_cgroup_end_migration(struct page *page)
{
}

124 125 126 127
static inline int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
{
	return 0;
}
128 129 130 131 132 133

static inline int mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem)
{
	return 0;
}

134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
static inline int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
{
	return 0;
}

static inline void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem,
						int priority)
{
}

static inline void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem,
						int priority)
{
}

149 150 151
static inline long mem_cgroup_calc_reclaim(struct mem_cgroup *mem,
					struct zone *zone, int priority,
					enum lru_list lru)
152 153 154
{
	return 0;
}
155 156
#endif /* CONFIG_CGROUP_MEM_CONT */

B
Balbir Singh 已提交
157 158
#endif /* _LINUX_MEMCONTROL_H */