memcontrol.h 4.6 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
#define page_reset_bad_cgroup(page)	((page)->page_cgroup = 0)

32
extern struct page_cgroup *page_get_page_cgroup(struct page *page);
33 34
extern int mem_cgroup_charge(struct page *page, struct mm_struct *mm,
				gfp_t gfp_mask);
H
Hugh Dickins 已提交
35 36
extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
					gfp_t gfp_mask);
37
extern void mem_cgroup_uncharge_page(struct page *page);
38
extern void mem_cgroup_uncharge_cache_page(struct page *page);
39
extern void mem_cgroup_move_lists(struct page *page, bool active);
40 41
extern int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask);

42 43 44 45 46 47
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,
					int active);
48
extern void mem_cgroup_out_of_memory(struct mem_cgroup *mem, gfp_t gfp_mask);
49
int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem);
50

51 52
extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);

53
#define mm_match_cgroup(mm, cgroup)	\
54
	((cgroup) == mem_cgroup_from_task((mm)->owner))
55

56 57
extern int
mem_cgroup_prepare_migration(struct page *page, struct page *newpage);
58 59
extern void mem_cgroup_end_migration(struct page *page);

60 61 62 63
/*
 * For memory reclaim.
 */
extern int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem);
64 65
extern long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem);

66 67 68 69 70
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);
71

72 73 74 75
extern long mem_cgroup_calc_reclaim_active(struct mem_cgroup *mem,
				struct zone *zone, int priority);
extern long mem_cgroup_calc_reclaim_inactive(struct mem_cgroup *mem,
				struct zone *zone, int priority);
76

77
#else /* CONFIG_CGROUP_MEM_RES_CTLR */
78
static inline void page_reset_bad_cgroup(struct page *page)
79 80 81 82 83 84 85 86
{
}

static inline struct page_cgroup *page_get_page_cgroup(struct page *page)
{
	return NULL;
}

H
Hugh Dickins 已提交
87 88
static inline int mem_cgroup_charge(struct page *page,
					struct mm_struct *mm, gfp_t gfp_mask)
89 90 91 92
{
	return 0;
}

H
Hugh Dickins 已提交
93 94
static inline int mem_cgroup_cache_charge(struct page *page,
					struct mm_struct *mm, gfp_t gfp_mask)
95
{
H
Hugh Dickins 已提交
96
	return 0;
97 98 99 100 101 102
}

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

103 104 105 106
static inline void mem_cgroup_uncharge_cache_page(struct page *page)
{
}

107 108 109 110 111
static inline int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask)
{
	return 0;
}

112
static inline void mem_cgroup_move_lists(struct page *page, bool active)
113 114 115
{
}

116
static inline int mm_match_cgroup(struct mm_struct *mm, struct mem_cgroup *mem)
117
{
118
	return 1;
119 120
}

121 122 123 124 125 126
static inline int task_in_mem_cgroup(struct task_struct *task,
				     const struct mem_cgroup *mem)
{
	return 1;
}

127 128
static inline int
mem_cgroup_prepare_migration(struct page *page, struct page *newpage)
129 130 131 132 133 134 135 136
{
	return 0;
}

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

137 138 139 140
static inline int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
{
	return 0;
}
141 142 143 144 145 146

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

147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
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)
{
}

162 163 164 165 166 167 168 169 170 171 172
static inline long mem_cgroup_calc_reclaim_active(struct mem_cgroup *mem,
					struct zone *zone, int priority)
{
	return 0;
}

static inline long mem_cgroup_calc_reclaim_inactive(struct mem_cgroup *mem,
					struct zone *zone, int priority)
{
	return 0;
}
173 174
#endif /* CONFIG_CGROUP_MEM_CONT */

B
Balbir Singh 已提交
175 176
#endif /* _LINUX_MEMCONTROL_H */