blob: 10846b9656aa9df43487a419cec431e1f2430b81 [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.c - 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#include <linux/res_counter.h>
21#include <linux/memcontrol.h>
22#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080023#include <linux/mm.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080024#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080025#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080026#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080027#include <linux/bit_spinlock.h>
28#include <linux/rcupdate.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070029#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080030#include <linux/swap.h>
31#include <linux/spinlock.h>
32#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080033#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070034#include <linux/vmalloc.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070035#include <linux/mm_inline.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080036
Balbir Singh8697d332008-02-07 00:13:59 -080037#include <asm/uaccess.h>
38
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070039struct cgroup_subsys mem_cgroup_subsys __read_mostly;
40static struct kmem_cache *page_cgroup_cache __read_mostly;
41#define MEM_CGROUP_RECLAIM_RETRIES 5
Balbir Singh8cdea7c2008-02-07 00:13:50 -080042
43/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080044 * Statistics for memory cgroup.
45 */
46enum mem_cgroup_stat_index {
47 /*
48 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
49 */
50 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
51 MEM_CGROUP_STAT_RSS, /* # of pages charged as rss */
Balaji Rao55e462b2008-05-01 04:35:12 -070052 MEM_CGROUP_STAT_PGPGIN_COUNT, /* # of pages paged in */
53 MEM_CGROUP_STAT_PGPGOUT_COUNT, /* # of pages paged out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080054
55 MEM_CGROUP_STAT_NSTATS,
56};
57
58struct mem_cgroup_stat_cpu {
59 s64 count[MEM_CGROUP_STAT_NSTATS];
60} ____cacheline_aligned_in_smp;
61
62struct mem_cgroup_stat {
63 struct mem_cgroup_stat_cpu cpustat[NR_CPUS];
64};
65
66/*
67 * For accounting under irq disable, no need for increment preempt count.
68 */
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -070069static inline void __mem_cgroup_stat_add_safe(struct mem_cgroup_stat_cpu *stat,
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080070 enum mem_cgroup_stat_index idx, int val)
71{
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -070072 stat->count[idx] += val;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080073}
74
75static s64 mem_cgroup_read_stat(struct mem_cgroup_stat *stat,
76 enum mem_cgroup_stat_index idx)
77{
78 int cpu;
79 s64 ret = 0;
80 for_each_possible_cpu(cpu)
81 ret += stat->cpustat[cpu].count[idx];
82 return ret;
83}
84
85/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080086 * per-zone information in memory controller.
87 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080088struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -080089 /*
90 * spin_lock to protect the per cgroup LRU
91 */
92 spinlock_t lru_lock;
Christoph Lameterb69408e2008-10-18 20:26:14 -070093 struct list_head lists[NR_LRU_LISTS];
94 unsigned long count[NR_LRU_LISTS];
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080095};
96/* Macro for accessing counter */
97#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
98
99struct mem_cgroup_per_node {
100 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
101};
102
103struct mem_cgroup_lru_info {
104 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
105};
106
107/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800108 * The memory controller data structure. The memory controller controls both
109 * page cache and RSS per cgroup. We would eventually like to provide
110 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
111 * to help the administrator determine what knobs to tune.
112 *
113 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800114 * we hit the water mark. May be even add a low water mark, such that
115 * no reclaim occurs from a cgroup at it's low water mark, this is
116 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800117 */
118struct mem_cgroup {
119 struct cgroup_subsys_state css;
120 /*
121 * the counter to account for memory usage
122 */
123 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800124 /*
125 * Per cgroup active and inactive list, similar to the
126 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800127 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800128 struct mem_cgroup_lru_info info;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800129
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800130 int prev_priority; /* for recording reclaim priority */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800131 /*
132 * statistics.
133 */
134 struct mem_cgroup_stat stat;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800135};
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800136static struct mem_cgroup init_mem_cgroup;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800137
138/*
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800139 * We use the lower bit of the page->page_cgroup pointer as a bit spin
Hugh Dickins9442ec92008-03-04 14:29:07 -0800140 * lock. We need to ensure that page->page_cgroup is at least two
141 * byte aligned (based on comments from Nick Piggin). But since
142 * bit_spin_lock doesn't actually set that lock bit in a non-debug
143 * uniprocessor kernel, we should avoid setting it here too.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800144 */
145#define PAGE_CGROUP_LOCK_BIT 0x0
Hugh Dickins9442ec92008-03-04 14:29:07 -0800146#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
147#define PAGE_CGROUP_LOCK (1 << PAGE_CGROUP_LOCK_BIT)
148#else
149#define PAGE_CGROUP_LOCK 0x0
150#endif
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800151
152/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800153 * A page_cgroup page is associated with every page descriptor. The
154 * page_cgroup helps us identify information about the cgroup
155 */
156struct page_cgroup {
157 struct list_head lru; /* per cgroup LRU list */
158 struct page *page;
159 struct mem_cgroup *mem_cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800160 int flags;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800161};
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700162#define PAGE_CGROUP_FLAG_CACHE (0x1) /* charged as cache */
163#define PAGE_CGROUP_FLAG_ACTIVE (0x2) /* page is active in this cgroup */
164#define PAGE_CGROUP_FLAG_FILE (0x4) /* page is file system backed */
165#define PAGE_CGROUP_FLAG_UNEVICTABLE (0x8) /* page is unevictableable */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800166
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800167static int page_cgroup_nid(struct page_cgroup *pc)
KAMEZAWA Hiroyukic01495302008-02-07 00:14:30 -0800168{
169 return page_to_nid(pc->page);
170}
171
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800172static enum zone_type page_cgroup_zid(struct page_cgroup *pc)
KAMEZAWA Hiroyukic01495302008-02-07 00:14:30 -0800173{
174 return page_zonenum(pc->page);
175}
176
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800177enum charge_type {
178 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
179 MEM_CGROUP_CHARGE_TYPE_MAPPED,
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700180 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700181 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800182};
183
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800184/*
185 * Always modified under lru lock. Then, not necessary to preempt_disable()
186 */
187static void mem_cgroup_charge_statistics(struct mem_cgroup *mem, int flags,
188 bool charge)
189{
190 int val = (charge)? 1 : -1;
191 struct mem_cgroup_stat *stat = &mem->stat;
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700192 struct mem_cgroup_stat_cpu *cpustat;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800193
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800194 VM_BUG_ON(!irqs_disabled());
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700195
196 cpustat = &stat->cpustat[smp_processor_id()];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800197 if (flags & PAGE_CGROUP_FLAG_CACHE)
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700198 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_CACHE, val);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800199 else
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700200 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_RSS, val);
Balaji Rao55e462b2008-05-01 04:35:12 -0700201
202 if (charge)
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700203 __mem_cgroup_stat_add_safe(cpustat,
Balaji Rao55e462b2008-05-01 04:35:12 -0700204 MEM_CGROUP_STAT_PGPGIN_COUNT, 1);
205 else
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700206 __mem_cgroup_stat_add_safe(cpustat,
Balaji Rao55e462b2008-05-01 04:35:12 -0700207 MEM_CGROUP_STAT_PGPGOUT_COUNT, 1);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800208}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800209
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800210static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800211mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
212{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800213 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
214}
215
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800216static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800217page_cgroup_zoneinfo(struct page_cgroup *pc)
218{
219 struct mem_cgroup *mem = pc->mem_cgroup;
220 int nid = page_cgroup_nid(pc);
221 int zid = page_cgroup_zid(pc);
222
223 return mem_cgroup_zoneinfo(mem, nid, zid);
224}
225
226static unsigned long mem_cgroup_get_all_zonestat(struct mem_cgroup *mem,
Christoph Lameterb69408e2008-10-18 20:26:14 -0700227 enum lru_list idx)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800228{
229 int nid, zid;
230 struct mem_cgroup_per_zone *mz;
231 u64 total = 0;
232
233 for_each_online_node(nid)
234 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
235 mz = mem_cgroup_zoneinfo(mem, nid, zid);
236 total += MEM_CGROUP_ZSTAT(mz, idx);
237 }
238 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800239}
240
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800241static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800242{
243 return container_of(cgroup_subsys_state(cont,
244 mem_cgroup_subsys_id), struct mem_cgroup,
245 css);
246}
247
Balbir Singhcf475ad2008-04-29 01:00:16 -0700248struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800249{
Balbir Singh31a78f22008-09-28 23:09:31 +0100250 /*
251 * mm_update_next_owner() may clear mm->owner to NULL
252 * if it races with swapoff, page migration, etc.
253 * So this can be called with p == NULL.
254 */
255 if (unlikely(!p))
256 return NULL;
257
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800258 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
259 struct mem_cgroup, css);
260}
261
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800262static inline int page_cgroup_locked(struct page *page)
263{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800264 return bit_spin_is_locked(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800265}
266
Hugh Dickins9442ec92008-03-04 14:29:07 -0800267static void page_assign_page_cgroup(struct page *page, struct page_cgroup *pc)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800268{
Hugh Dickins9442ec92008-03-04 14:29:07 -0800269 VM_BUG_ON(!page_cgroup_locked(page));
270 page->page_cgroup = ((unsigned long)pc | PAGE_CGROUP_LOCK);
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800271}
272
273struct page_cgroup *page_get_page_cgroup(struct page *page)
274{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800275 return (struct page_cgroup *) (page->page_cgroup & ~PAGE_CGROUP_LOCK);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800276}
277
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800278static void lock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800279{
280 bit_spin_lock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800281}
282
Hugh Dickins2680eed2008-03-04 14:29:13 -0800283static int try_lock_page_cgroup(struct page *page)
284{
285 return bit_spin_trylock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
286}
287
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800288static void unlock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800289{
290 bit_spin_unlock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
291}
292
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700293static void __mem_cgroup_remove_list(struct mem_cgroup_per_zone *mz,
294 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800295{
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700296 int lru = LRU_BASE;
297
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700298 if (pc->flags & PAGE_CGROUP_FLAG_UNEVICTABLE)
299 lru = LRU_UNEVICTABLE;
300 else {
301 if (pc->flags & PAGE_CGROUP_FLAG_ACTIVE)
302 lru += LRU_ACTIVE;
303 if (pc->flags & PAGE_CGROUP_FLAG_FILE)
304 lru += LRU_FILE;
305 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800306
Christoph Lameterb69408e2008-10-18 20:26:14 -0700307 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800308
309 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, false);
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700310 list_del(&pc->lru);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800311}
312
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700313static void __mem_cgroup_add_list(struct mem_cgroup_per_zone *mz,
314 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800315{
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700316 int lru = LRU_BASE;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800317
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700318 if (pc->flags & PAGE_CGROUP_FLAG_UNEVICTABLE)
319 lru = LRU_UNEVICTABLE;
320 else {
321 if (pc->flags & PAGE_CGROUP_FLAG_ACTIVE)
322 lru += LRU_ACTIVE;
323 if (pc->flags & PAGE_CGROUP_FLAG_FILE)
324 lru += LRU_FILE;
325 }
Christoph Lameterb69408e2008-10-18 20:26:14 -0700326
327 MEM_CGROUP_ZSTAT(mz, lru) += 1;
328 list_add(&pc->lru, &mz->lists[lru]);
329
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800330 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, true);
331}
332
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700333static void __mem_cgroup_move_lists(struct page_cgroup *pc, enum lru_list lru)
Balbir Singh66e17072008-02-07 00:13:56 -0800334{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800335 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700336 int active = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
337 int file = pc->flags & PAGE_CGROUP_FLAG_FILE;
338 int unevictable = pc->flags & PAGE_CGROUP_FLAG_UNEVICTABLE;
339 enum lru_list from = unevictable ? LRU_UNEVICTABLE :
340 (LRU_FILE * !!file + !!active);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800341
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700342 if (lru == from)
343 return;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700344
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700345 MEM_CGROUP_ZSTAT(mz, from) -= 1;
346
347 if (is_unevictable_lru(lru)) {
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800348 pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700349 pc->flags |= PAGE_CGROUP_FLAG_UNEVICTABLE;
350 } else {
351 if (is_active_lru(lru))
352 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
353 else
354 pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE;
355 pc->flags &= ~PAGE_CGROUP_FLAG_UNEVICTABLE;
356 }
Christoph Lameterb69408e2008-10-18 20:26:14 -0700357
Christoph Lameterb69408e2008-10-18 20:26:14 -0700358 MEM_CGROUP_ZSTAT(mz, lru) += 1;
359 list_move(&pc->lru, &mz->lists[lru]);
Balbir Singh66e17072008-02-07 00:13:56 -0800360}
361
David Rientjes4c4a2212008-02-07 00:14:06 -0800362int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
363{
364 int ret;
365
366 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800367 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800368 task_unlock(task);
369 return ret;
370}
371
Balbir Singh66e17072008-02-07 00:13:56 -0800372/*
373 * This routine assumes that the appropriate zone's lru lock is already held
374 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700375void mem_cgroup_move_lists(struct page *page, enum lru_list lru)
Balbir Singh66e17072008-02-07 00:13:56 -0800376{
Hugh Dickins427d5412008-03-04 14:29:03 -0800377 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800378 struct mem_cgroup_per_zone *mz;
379 unsigned long flags;
380
Li Zefancede86a2008-07-25 01:47:18 -0700381 if (mem_cgroup_subsys.disabled)
382 return;
383
Hugh Dickins2680eed2008-03-04 14:29:13 -0800384 /*
385 * We cannot lock_page_cgroup while holding zone's lru_lock,
386 * because other holders of lock_page_cgroup can be interrupted
387 * with an attempt to rotate_reclaimable_page. But we cannot
388 * safely get to page_cgroup without it, so just try_lock it:
389 * mem_cgroup_isolate_pages allows for page left on wrong list.
390 */
391 if (!try_lock_page_cgroup(page))
Balbir Singh66e17072008-02-07 00:13:56 -0800392 return;
393
Hugh Dickins2680eed2008-03-04 14:29:13 -0800394 pc = page_get_page_cgroup(page);
395 if (pc) {
Hugh Dickins2680eed2008-03-04 14:29:13 -0800396 mz = page_cgroup_zoneinfo(pc);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800397 spin_lock_irqsave(&mz->lru_lock, flags);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700398 __mem_cgroup_move_lists(pc, lru);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800399 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800400 }
401 unlock_page_cgroup(page);
Balbir Singh66e17072008-02-07 00:13:56 -0800402}
403
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800404/*
405 * Calculate mapped_ratio under memory controller. This will be used in
406 * vmscan.c for deteremining we have to reclaim mapped pages.
407 */
408int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
409{
410 long total, rss;
411
412 /*
413 * usage is recorded in bytes. But, here, we assume the number of
414 * physical pages can be represented by "long" on any arch.
415 */
416 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
417 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
418 return (int)((rss * 100L) / total);
419}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800420
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800421/*
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800422 * prev_priority control...this will be used in memory reclaim path.
423 */
424int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
425{
426 return mem->prev_priority;
427}
428
429void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
430{
431 if (priority < mem->prev_priority)
432 mem->prev_priority = priority;
433}
434
435void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
436{
437 mem->prev_priority = priority;
438}
439
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800440/*
441 * Calculate # of pages to be scanned in this priority/zone.
442 * See also vmscan.c
443 *
444 * priority starts from "DEF_PRIORITY" and decremented in each loop.
445 * (see include/linux/mmzone.h)
446 */
447
Christoph Lameterb69408e2008-10-18 20:26:14 -0700448long mem_cgroup_calc_reclaim(struct mem_cgroup *mem, struct zone *zone,
449 int priority, enum lru_list lru)
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800450{
Christoph Lameterb69408e2008-10-18 20:26:14 -0700451 long nr_pages;
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800452 int nid = zone->zone_pgdat->node_id;
453 int zid = zone_idx(zone);
454 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
455
Christoph Lameterb69408e2008-10-18 20:26:14 -0700456 nr_pages = MEM_CGROUP_ZSTAT(mz, lru);
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800457
Christoph Lameterb69408e2008-10-18 20:26:14 -0700458 return (nr_pages >> priority);
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800459}
460
Balbir Singh66e17072008-02-07 00:13:56 -0800461unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
462 struct list_head *dst,
463 unsigned long *scanned, int order,
464 int mode, struct zone *z,
465 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700466 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -0800467{
468 unsigned long nr_taken = 0;
469 struct page *page;
470 unsigned long scan;
471 LIST_HEAD(pc_list);
472 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800473 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800474 int nid = z->zone_pgdat->node_id;
475 int zid = zone_idx(z);
476 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700477 int lru = LRU_FILE * !!file + !!active;
Balbir Singh66e17072008-02-07 00:13:56 -0800478
Balbir Singhcf475ad2008-04-29 01:00:16 -0700479 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800480 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700481 src = &mz->lists[lru];
Balbir Singh66e17072008-02-07 00:13:56 -0800482
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800483 spin_lock(&mz->lru_lock);
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800484 scan = 0;
485 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800486 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800487 break;
Balbir Singh66e17072008-02-07 00:13:56 -0800488 page = pc->page;
Balbir Singh66e17072008-02-07 00:13:56 -0800489
Hugh Dickins436c65412008-02-07 00:14:12 -0800490 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800491 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800492
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700493 /*
494 * TODO: play better with lumpy reclaim, grabbing anything.
495 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700496 if (PageUnevictable(page) ||
497 (PageActive(page) && !active) ||
498 (!PageActive(page) && active)) {
499 __mem_cgroup_move_lists(pc, page_lru(page));
Balbir Singh66e17072008-02-07 00:13:56 -0800500 continue;
501 }
502
Hugh Dickins436c65412008-02-07 00:14:12 -0800503 scan++;
504 list_move(&pc->lru, &pc_list);
Balbir Singh66e17072008-02-07 00:13:56 -0800505
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700506 if (__isolate_lru_page(page, mode, file) == 0) {
Balbir Singh66e17072008-02-07 00:13:56 -0800507 list_move(&page->lru, dst);
508 nr_taken++;
509 }
510 }
511
512 list_splice(&pc_list, src);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800513 spin_unlock(&mz->lru_lock);
Balbir Singh66e17072008-02-07 00:13:56 -0800514
515 *scanned = scan;
516 return nr_taken;
517}
518
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800519/*
520 * Charge the memory controller for page usage.
521 * Return
522 * 0 if the charge was successful
523 * < 0 if the cgroup is over its limit
524 */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800525static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700526 gfp_t gfp_mask, enum charge_type ctype,
527 struct mem_cgroup *memcg)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800528{
529 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800530 struct page_cgroup *pc;
Balbir Singh66e17072008-02-07 00:13:56 -0800531 unsigned long flags;
532 unsigned long nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800533 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800534
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700535 pc = kmem_cache_alloc(page_cgroup_cache, gfp_mask);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700536 if (unlikely(pc == NULL))
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800537 goto err;
538
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800539 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800540 * We always charge the cgroup the mm_struct belongs to.
541 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800542 * thread group leader migrates. It's possible that mm is not
543 * set, if so charge the init_mm (happens for pagecache usage).
544 */
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700545 if (likely(!memcg)) {
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700546 rcu_read_lock();
547 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
Balbir Singh31a78f22008-09-28 23:09:31 +0100548 if (unlikely(!mem)) {
549 rcu_read_unlock();
550 kmem_cache_free(page_cgroup_cache, pc);
551 return 0;
552 }
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700553 /*
554 * For every charge from the cgroup, increment reference count
555 */
556 css_get(&mem->css);
557 rcu_read_unlock();
558 } else {
559 mem = memcg;
560 css_get(&memcg->css);
561 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800562
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700563 while (unlikely(res_counter_charge(&mem->res, PAGE_SIZE))) {
Hugh Dickins3be91272008-02-07 00:14:19 -0800564 if (!(gfp_mask & __GFP_WAIT))
565 goto out;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800566
567 if (try_to_free_mem_cgroup_pages(mem, gfp_mask))
Balbir Singh66e17072008-02-07 00:13:56 -0800568 continue;
569
570 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800571 * try_to_free_mem_cgroup_pages() might not give us a full
572 * picture of reclaim. Some pages are reclaimed and might be
573 * moved to swap cache or just unmapped from the cgroup.
574 * Check the limit again to see if the reclaim reduced the
575 * current usage of the cgroup before giving up
576 */
Balbir Singh66e17072008-02-07 00:13:56 -0800577 if (res_counter_check_under_limit(&mem->res))
578 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800579
580 if (!nr_retries--) {
581 mem_cgroup_out_of_memory(mem, gfp_mask);
582 goto out;
Balbir Singh66e17072008-02-07 00:13:56 -0800583 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800584 }
585
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800586 pc->mem_cgroup = mem;
587 pc->page = page;
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700588 /*
589 * If a page is accounted as a page cache, insert to inactive list.
590 * If anon, insert to active list.
591 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700592 if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE) {
Balbir Singh4a56d022008-04-29 01:00:23 -0700593 pc->flags = PAGE_CGROUP_FLAG_CACHE;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700594 if (page_is_file_cache(page))
595 pc->flags |= PAGE_CGROUP_FLAG_FILE;
596 else
597 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
598 } else if (ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700599 pc->flags = PAGE_CGROUP_FLAG_ACTIVE;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700600 else /* MEM_CGROUP_CHARGE_TYPE_SHMEM */
601 pc->flags = PAGE_CGROUP_FLAG_CACHE | PAGE_CGROUP_FLAG_ACTIVE;
Hugh Dickins3be91272008-02-07 00:14:19 -0800602
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800603 lock_page_cgroup(page);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700604 if (unlikely(page_get_page_cgroup(page))) {
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800605 unlock_page_cgroup(page);
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800606 res_counter_uncharge(&mem->res, PAGE_SIZE);
607 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700608 kmem_cache_free(page_cgroup_cache, pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -0700609 goto done;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800610 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800611 page_assign_page_cgroup(page, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800612
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800613 mz = page_cgroup_zoneinfo(pc);
614 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700615 __mem_cgroup_add_list(mz, pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800616 spin_unlock_irqrestore(&mz->lru_lock, flags);
Balbir Singh66e17072008-02-07 00:13:56 -0800617
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800618 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800619done:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800620 return 0;
Hugh Dickins3be91272008-02-07 00:14:19 -0800621out:
622 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700623 kmem_cache_free(page_cgroup_cache, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800624err:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800625 return -ENOMEM;
626}
627
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800628int mem_cgroup_charge(struct page *page, struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800629{
Li Zefancede86a2008-07-25 01:47:18 -0700630 if (mem_cgroup_subsys.disabled)
631 return 0;
632
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700633 /*
634 * If already mapped, we don't have to account.
635 * If page cache, page->mapping has address_space.
636 * But page->mapping may have out-of-use anon_vma pointer,
637 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
638 * is NULL.
639 */
640 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
641 return 0;
642 if (unlikely(!mm))
643 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800644 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700645 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800646}
647
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800648int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
649 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -0800650{
Li Zefancede86a2008-07-25 01:47:18 -0700651 if (mem_cgroup_subsys.disabled)
652 return 0;
653
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -0700654 /*
655 * Corner case handling. This is called from add_to_page_cache()
656 * in usual. But some FS (shmem) precharges this page before calling it
657 * and call add_to_page_cache() with GFP_NOWAIT.
658 *
659 * For GFP_NOWAIT case, the page may be pre-charged before calling
660 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
661 * charge twice. (It works but has to pay a bit larger cost.)
662 */
663 if (!(gfp_mask & __GFP_WAIT)) {
664 struct page_cgroup *pc;
665
666 lock_page_cgroup(page);
667 pc = page_get_page_cgroup(page);
668 if (pc) {
669 VM_BUG_ON(pc->page != page);
670 VM_BUG_ON(!pc->mem_cgroup);
671 unlock_page_cgroup(page);
672 return 0;
673 }
674 unlock_page_cgroup(page);
675 }
676
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700677 if (unlikely(!mm))
Balbir Singh8697d332008-02-07 00:13:59 -0800678 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -0700679
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800680 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700681 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
682}
683
Balbir Singh8697d332008-02-07 00:13:59 -0800684/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700685 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800686 */
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700687static void
688__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800689{
Hugh Dickins82895462008-03-04 14:29:08 -0800690 struct page_cgroup *pc;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800691 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800692 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800693 unsigned long flags;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800694
Balbir Singh40779602008-04-04 14:29:59 -0700695 if (mem_cgroup_subsys.disabled)
696 return;
697
Balbir Singh8697d332008-02-07 00:13:59 -0800698 /*
Balbir Singh3c541e12008-02-07 00:14:41 -0800699 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -0800700 */
Hugh Dickins82895462008-03-04 14:29:08 -0800701 lock_page_cgroup(page);
702 pc = page_get_page_cgroup(page);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700703 if (unlikely(!pc))
Hugh Dickins82895462008-03-04 14:29:08 -0800704 goto unlock;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800705
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800706 VM_BUG_ON(pc->page != page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800707
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700708 if ((ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
709 && ((pc->flags & PAGE_CGROUP_FLAG_CACHE)
710 || page_mapped(page)))
711 goto unlock;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800712
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700713 mz = page_cgroup_zoneinfo(pc);
714 spin_lock_irqsave(&mz->lru_lock, flags);
715 __mem_cgroup_remove_list(mz, pc);
716 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800717
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700718 page_assign_page_cgroup(page, NULL);
719 unlock_page_cgroup(page);
Hugh Dickins6d48ff82008-03-04 14:29:12 -0800720
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700721 mem = pc->mem_cgroup;
722 res_counter_uncharge(&mem->res, PAGE_SIZE);
723 css_put(&mem->css);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800724
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700725 kmem_cache_free(page_cgroup_cache, pc);
726 return;
Hugh Dickins82895462008-03-04 14:29:08 -0800727unlock:
Balbir Singh3c541e12008-02-07 00:14:41 -0800728 unlock_page_cgroup(page);
729}
730
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700731void mem_cgroup_uncharge_page(struct page *page)
732{
733 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
734}
735
736void mem_cgroup_uncharge_cache_page(struct page *page)
737{
738 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -0700739 VM_BUG_ON(page->mapping);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700740 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
741}
742
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800743/*
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700744 * Before starting migration, account against new page.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800745 */
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700746int mem_cgroup_prepare_migration(struct page *page, struct page *newpage)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800747{
748 struct page_cgroup *pc;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700749 struct mem_cgroup *mem = NULL;
750 enum charge_type ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
751 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800752
Balbir Singh40779602008-04-04 14:29:59 -0700753 if (mem_cgroup_subsys.disabled)
754 return 0;
755
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800756 lock_page_cgroup(page);
757 pc = page_get_page_cgroup(page);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700758 if (pc) {
759 mem = pc->mem_cgroup;
760 css_get(&mem->css);
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700761 if (pc->flags & PAGE_CGROUP_FLAG_CACHE) {
762 if (page_is_file_cache(page))
763 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
764 else
765 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
766 }
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800767 }
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800768 unlock_page_cgroup(page);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700769 if (mem) {
770 ret = mem_cgroup_charge_common(newpage, NULL, GFP_KERNEL,
771 ctype, mem);
772 css_put(&mem->css);
773 }
774 return ret;
775}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800776
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700777/* remove redundant charge if migration failed*/
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700778void mem_cgroup_end_migration(struct page *newpage)
779{
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700780 /*
781 * At success, page->mapping is not NULL.
782 * special rollback care is necessary when
783 * 1. at migration failure. (newpage->mapping is cleared in this case)
784 * 2. the newpage was moved but not remapped again because the task
785 * exits and the newpage is obsolete. In this case, the new page
786 * may be a swapcache. So, we just call mem_cgroup_uncharge_page()
787 * always for avoiding mess. The page_cgroup will be removed if
788 * unnecessary. File cache pages is still on radix-tree. Don't
789 * care it.
790 */
791 if (!newpage->mapping)
792 __mem_cgroup_uncharge_common(newpage,
793 MEM_CGROUP_CHARGE_TYPE_FORCE);
794 else if (PageAnon(newpage))
795 mem_cgroup_uncharge_page(newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800796}
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800797
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800798/*
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700799 * A call to try to shrink memory usage under specified resource controller.
800 * This is typically used for page reclaiming for shmem for reducing side
801 * effect of page allocation from shmem, which is used by some mem_cgroup.
802 */
803int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask)
804{
805 struct mem_cgroup *mem;
806 int progress = 0;
807 int retry = MEM_CGROUP_RECLAIM_RETRIES;
808
Li Zefancede86a2008-07-25 01:47:18 -0700809 if (mem_cgroup_subsys.disabled)
810 return 0;
Hugh Dickins9623e072008-08-12 15:08:41 -0700811 if (!mm)
812 return 0;
Li Zefancede86a2008-07-25 01:47:18 -0700813
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700814 rcu_read_lock();
815 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
Balbir Singh31a78f22008-09-28 23:09:31 +0100816 if (unlikely(!mem)) {
817 rcu_read_unlock();
818 return 0;
819 }
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700820 css_get(&mem->css);
821 rcu_read_unlock();
822
823 do {
824 progress = try_to_free_mem_cgroup_pages(mem, gfp_mask);
Daisuke Nishimuraa10cebf2008-09-22 13:57:52 -0700825 progress += res_counter_check_under_limit(&mem->res);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700826 } while (!progress && --retry);
827
828 css_put(&mem->css);
829 if (!retry)
830 return -ENOMEM;
831 return 0;
832}
833
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -0700834int mem_cgroup_resize_limit(struct mem_cgroup *memcg, unsigned long long val)
835{
836
837 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
838 int progress;
839 int ret = 0;
840
841 while (res_counter_set_limit(&memcg->res, val)) {
842 if (signal_pending(current)) {
843 ret = -EINTR;
844 break;
845 }
846 if (!retry_count) {
847 ret = -EBUSY;
848 break;
849 }
850 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL);
851 if (!progress)
852 retry_count--;
853 }
854 return ret;
855}
856
857
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700858/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800859 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800860 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
861 */
862#define FORCE_UNCHARGE_BATCH (128)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800863static void mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800864 struct mem_cgroup_per_zone *mz,
Christoph Lameterb69408e2008-10-18 20:26:14 -0700865 enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800866{
867 struct page_cgroup *pc;
868 struct page *page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800869 int count = FORCE_UNCHARGE_BATCH;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800870 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800871 struct list_head *list;
872
Christoph Lameterb69408e2008-10-18 20:26:14 -0700873 list = &mz->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800874
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800875 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800876 while (!list_empty(list)) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800877 pc = list_entry(list->prev, struct page_cgroup, lru);
878 page = pc->page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800879 get_page(page);
880 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700881 /*
882 * Check if this page is on LRU. !LRU page can be found
883 * if it's under page migration.
884 */
885 if (PageLRU(page)) {
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700886 __mem_cgroup_uncharge_common(page,
887 MEM_CGROUP_CHARGE_TYPE_FORCE);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700888 put_page(page);
889 if (--count <= 0) {
890 count = FORCE_UNCHARGE_BATCH;
891 cond_resched();
892 }
893 } else
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800894 cond_resched();
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800895 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800896 }
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800897 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800898}
899
900/*
901 * make mem_cgroup's charge to be 0 if there is no task.
902 * This enables deleting this mem_cgroup.
903 */
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800904static int mem_cgroup_force_empty(struct mem_cgroup *mem)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800905{
906 int ret = -EBUSY;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800907 int node, zid;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800908
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800909 css_get(&mem->css);
910 /*
911 * page reclaim code (kswapd etc..) will move pages between
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800912 * active_list <-> inactive_list while we don't take a lock.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800913 * So, we have to do loop here until all lists are empty.
914 */
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800915 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800916 if (atomic_read(&mem->css.cgroup->count) > 0)
917 goto out;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800918 for_each_node_state(node, N_POSSIBLE)
919 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
920 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700921 enum lru_list l;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800922 mz = mem_cgroup_zoneinfo(mem, node, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700923 for_each_lru(l)
924 mem_cgroup_force_empty_list(mem, mz, l);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800925 }
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800926 }
927 ret = 0;
928out:
929 css_put(&mem->css);
930 return ret;
931}
932
Paul Menage2c3daa72008-04-29 00:59:58 -0700933static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800934{
Paul Menage2c3daa72008-04-29 00:59:58 -0700935 return res_counter_read_u64(&mem_cgroup_from_cont(cont)->res,
936 cft->private);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800937}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -0700938/*
939 * The user of this function is...
940 * RES_LIMIT.
941 */
Paul Menage856c13a2008-07-25 01:47:04 -0700942static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
943 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800944{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -0700945 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
946 unsigned long long val;
947 int ret;
948
949 switch (cft->private) {
950 case RES_LIMIT:
951 /* This function does all necessary parse...reuse it */
952 ret = res_counter_memparse_write_strategy(buffer, &val);
953 if (!ret)
954 ret = mem_cgroup_resize_limit(memcg, val);
955 break;
956 default:
957 ret = -EINVAL; /* should be BUG() ? */
958 break;
959 }
960 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800961}
962
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700963static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700964{
965 struct mem_cgroup *mem;
966
967 mem = mem_cgroup_from_cont(cont);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700968 switch (event) {
969 case RES_MAX_USAGE:
970 res_counter_reset_max(&mem->res);
971 break;
972 case RES_FAILCNT:
973 res_counter_reset_failcnt(&mem->res);
974 break;
975 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700976 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700977}
978
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700979static int mem_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800980{
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700981 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800982}
983
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800984static const struct mem_cgroup_stat_desc {
985 const char *msg;
986 u64 unit;
987} mem_cgroup_stat_desc[] = {
988 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
989 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
Balaji Rao55e462b2008-05-01 04:35:12 -0700990 [MEM_CGROUP_STAT_PGPGIN_COUNT] = {"pgpgin", 1, },
991 [MEM_CGROUP_STAT_PGPGOUT_COUNT] = {"pgpgout", 1, },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800992};
993
Paul Menagec64745c2008-04-29 01:00:02 -0700994static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
995 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800996{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800997 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
998 struct mem_cgroup_stat *stat = &mem_cont->stat;
999 int i;
1000
1001 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
1002 s64 val;
1003
1004 val = mem_cgroup_read_stat(stat, i);
1005 val *= mem_cgroup_stat_desc[i].unit;
Paul Menagec64745c2008-04-29 01:00:02 -07001006 cb->fill(cb, mem_cgroup_stat_desc[i].msg, val);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001007 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001008 /* showing # of active pages */
1009 {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001010 unsigned long active_anon, inactive_anon;
1011 unsigned long active_file, inactive_file;
Lee Schermerhorn7b854122008-10-18 20:26:40 -07001012 unsigned long unevictable;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001013
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001014 inactive_anon = mem_cgroup_get_all_zonestat(mem_cont,
1015 LRU_INACTIVE_ANON);
1016 active_anon = mem_cgroup_get_all_zonestat(mem_cont,
1017 LRU_ACTIVE_ANON);
1018 inactive_file = mem_cgroup_get_all_zonestat(mem_cont,
1019 LRU_INACTIVE_FILE);
1020 active_file = mem_cgroup_get_all_zonestat(mem_cont,
1021 LRU_ACTIVE_FILE);
Lee Schermerhorn7b854122008-10-18 20:26:40 -07001022 unevictable = mem_cgroup_get_all_zonestat(mem_cont,
1023 LRU_UNEVICTABLE);
1024
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001025 cb->fill(cb, "active_anon", (active_anon) * PAGE_SIZE);
1026 cb->fill(cb, "inactive_anon", (inactive_anon) * PAGE_SIZE);
1027 cb->fill(cb, "active_file", (active_file) * PAGE_SIZE);
1028 cb->fill(cb, "inactive_file", (inactive_file) * PAGE_SIZE);
Lee Schermerhorn7b854122008-10-18 20:26:40 -07001029 cb->fill(cb, "unevictable", unevictable * PAGE_SIZE);
1030
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001031 }
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001032 return 0;
1033}
1034
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001035static struct cftype mem_cgroup_files[] = {
1036 {
Balbir Singh0eea1032008-02-07 00:13:57 -08001037 .name = "usage_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001038 .private = RES_USAGE,
Paul Menage2c3daa72008-04-29 00:59:58 -07001039 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001040 },
1041 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001042 .name = "max_usage_in_bytes",
1043 .private = RES_MAX_USAGE,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001044 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001045 .read_u64 = mem_cgroup_read,
1046 },
1047 {
Balbir Singh0eea1032008-02-07 00:13:57 -08001048 .name = "limit_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001049 .private = RES_LIMIT,
Paul Menage856c13a2008-07-25 01:47:04 -07001050 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07001051 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001052 },
1053 {
1054 .name = "failcnt",
1055 .private = RES_FAILCNT,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001056 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07001057 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001058 },
Balbir Singh8697d332008-02-07 00:13:59 -08001059 {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001060 .name = "force_empty",
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07001061 .trigger = mem_force_empty_write,
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001062 },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001063 {
1064 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07001065 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001066 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001067};
1068
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001069static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
1070{
1071 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001072 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001073 enum lru_list l;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07001074 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001075 /*
1076 * This routine is called against possible nodes.
1077 * But it's BUG to call kmalloc() against offline node.
1078 *
1079 * TODO: this routine can waste much memory for nodes which will
1080 * never be onlined. It's better to use memory hotplug callback
1081 * function.
1082 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07001083 if (!node_state(node, N_NORMAL_MEMORY))
1084 tmp = -1;
1085 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001086 if (!pn)
1087 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001088
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001089 mem->info.nodeinfo[node] = pn;
1090 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001091
1092 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
1093 mz = &pn->zoneinfo[zone];
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001094 spin_lock_init(&mz->lru_lock);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001095 for_each_lru(l)
1096 INIT_LIST_HEAD(&mz->lists[l]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001097 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001098 return 0;
1099}
1100
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001101static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
1102{
1103 kfree(mem->info.nodeinfo[node]);
1104}
1105
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001106static struct mem_cgroup *mem_cgroup_alloc(void)
1107{
1108 struct mem_cgroup *mem;
1109
1110 if (sizeof(*mem) < PAGE_SIZE)
1111 mem = kmalloc(sizeof(*mem), GFP_KERNEL);
1112 else
1113 mem = vmalloc(sizeof(*mem));
1114
1115 if (mem)
1116 memset(mem, 0, sizeof(*mem));
1117 return mem;
1118}
1119
1120static void mem_cgroup_free(struct mem_cgroup *mem)
1121{
1122 if (sizeof(*mem) < PAGE_SIZE)
1123 kfree(mem);
1124 else
1125 vfree(mem);
1126}
1127
1128
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001129static struct cgroup_subsys_state *
1130mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
1131{
1132 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001133 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001134
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001135 if (unlikely((cont->parent) == NULL)) {
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001136 mem = &init_mem_cgroup;
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001137 page_cgroup_cache = KMEM_CACHE(page_cgroup, SLAB_PANIC);
1138 } else {
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001139 mem = mem_cgroup_alloc();
1140 if (!mem)
1141 return ERR_PTR(-ENOMEM);
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001142 }
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001143
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001144 res_counter_init(&mem->res);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001145
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001146 for_each_node_state(node, N_POSSIBLE)
1147 if (alloc_mem_cgroup_per_zone_info(mem, node))
1148 goto free_out;
1149
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001150 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001151free_out:
1152 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001153 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001154 if (cont->parent != NULL)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001155 mem_cgroup_free(mem);
Li Zefan2dda81c2008-02-23 15:24:14 -08001156 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001157}
1158
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001159static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
1160 struct cgroup *cont)
1161{
1162 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1163 mem_cgroup_force_empty(mem);
1164}
1165
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001166static void mem_cgroup_destroy(struct cgroup_subsys *ss,
1167 struct cgroup *cont)
1168{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001169 int node;
1170 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1171
1172 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001173 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001174
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001175 mem_cgroup_free(mem_cgroup_from_cont(cont));
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001176}
1177
1178static int mem_cgroup_populate(struct cgroup_subsys *ss,
1179 struct cgroup *cont)
1180{
1181 return cgroup_add_files(cont, ss, mem_cgroup_files,
1182 ARRAY_SIZE(mem_cgroup_files));
1183}
1184
Balbir Singh67e465a2008-02-07 00:13:54 -08001185static void mem_cgroup_move_task(struct cgroup_subsys *ss,
1186 struct cgroup *cont,
1187 struct cgroup *old_cont,
1188 struct task_struct *p)
1189{
1190 struct mm_struct *mm;
1191 struct mem_cgroup *mem, *old_mem;
1192
1193 mm = get_task_mm(p);
1194 if (mm == NULL)
1195 return;
1196
1197 mem = mem_cgroup_from_cont(cont);
1198 old_mem = mem_cgroup_from_cont(old_cont);
1199
Balbir Singh67e465a2008-02-07 00:13:54 -08001200 /*
1201 * Only thread group leaders are allowed to migrate, the mm_struct is
1202 * in effect owned by the leader
1203 */
Pavel Emelyanov52ea27e2008-03-19 17:00:45 -07001204 if (!thread_group_leader(p))
Balbir Singh67e465a2008-02-07 00:13:54 -08001205 goto out;
1206
Balbir Singh67e465a2008-02-07 00:13:54 -08001207out:
1208 mmput(mm);
Balbir Singh67e465a2008-02-07 00:13:54 -08001209}
1210
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001211struct cgroup_subsys mem_cgroup_subsys = {
1212 .name = "memory",
1213 .subsys_id = mem_cgroup_subsys_id,
1214 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001215 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001216 .destroy = mem_cgroup_destroy,
1217 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08001218 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001219 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001220};