blob: 27e9e75f4eab558677bf23b5e355859631f7495b [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 */
69static void __mem_cgroup_stat_add_safe(struct mem_cgroup_stat *stat,
70 enum mem_cgroup_stat_index idx, int val)
71{
72 int cpu = smp_processor_id();
73 stat->cpustat[cpu].count[idx] += val;
74}
75
76static s64 mem_cgroup_read_stat(struct mem_cgroup_stat *stat,
77 enum mem_cgroup_stat_index idx)
78{
79 int cpu;
80 s64 ret = 0;
81 for_each_possible_cpu(cpu)
82 ret += stat->cpustat[cpu].count[idx];
83 return ret;
84}
85
86/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080087 * per-zone information in memory controller.
88 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080089struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -080090 /*
91 * spin_lock to protect the per cgroup LRU
92 */
93 spinlock_t lru_lock;
Christoph Lameterb69408e2008-10-18 20:26:14 -070094 struct list_head lists[NR_LRU_LISTS];
95 unsigned long count[NR_LRU_LISTS];
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080096};
97/* Macro for accessing counter */
98#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
99
100struct mem_cgroup_per_node {
101 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
102};
103
104struct mem_cgroup_lru_info {
105 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
106};
107
108/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800109 * The memory controller data structure. The memory controller controls both
110 * page cache and RSS per cgroup. We would eventually like to provide
111 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
112 * to help the administrator determine what knobs to tune.
113 *
114 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800115 * we hit the water mark. May be even add a low water mark, such that
116 * no reclaim occurs from a cgroup at it's low water mark, this is
117 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800118 */
119struct mem_cgroup {
120 struct cgroup_subsys_state css;
121 /*
122 * the counter to account for memory usage
123 */
124 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800125 /*
126 * Per cgroup active and inactive list, similar to the
127 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800128 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800129 struct mem_cgroup_lru_info info;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800130
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800131 int prev_priority; /* for recording reclaim priority */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800132 /*
133 * statistics.
134 */
135 struct mem_cgroup_stat stat;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800136};
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800137static struct mem_cgroup init_mem_cgroup;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800138
139/*
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800140 * We use the lower bit of the page->page_cgroup pointer as a bit spin
Hugh Dickins9442ec92008-03-04 14:29:07 -0800141 * lock. We need to ensure that page->page_cgroup is at least two
142 * byte aligned (based on comments from Nick Piggin). But since
143 * bit_spin_lock doesn't actually set that lock bit in a non-debug
144 * uniprocessor kernel, we should avoid setting it here too.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800145 */
146#define PAGE_CGROUP_LOCK_BIT 0x0
Hugh Dickins9442ec92008-03-04 14:29:07 -0800147#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
148#define PAGE_CGROUP_LOCK (1 << PAGE_CGROUP_LOCK_BIT)
149#else
150#define PAGE_CGROUP_LOCK 0x0
151#endif
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800152
153/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800154 * A page_cgroup page is associated with every page descriptor. The
155 * page_cgroup helps us identify information about the cgroup
156 */
157struct page_cgroup {
158 struct list_head lru; /* per cgroup LRU list */
159 struct page *page;
160 struct mem_cgroup *mem_cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800161 int flags;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800162};
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800163#define PAGE_CGROUP_FLAG_CACHE (0x1) /* charged as cache */
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800164#define PAGE_CGROUP_FLAG_ACTIVE (0x2) /* page is active in this cgroup */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700165#define PAGE_CGROUP_FLAG_FILE (0x4) /* page is file system backed */
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 Hiroyukid52aa412008-02-07 00:14:24 -0800192
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800193 VM_BUG_ON(!irqs_disabled());
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800194 if (flags & PAGE_CGROUP_FLAG_CACHE)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800195 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_CACHE, val);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800196 else
197 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_RSS, val);
Balaji Rao55e462b2008-05-01 04:35:12 -0700198
199 if (charge)
200 __mem_cgroup_stat_add_safe(stat,
201 MEM_CGROUP_STAT_PGPGIN_COUNT, 1);
202 else
203 __mem_cgroup_stat_add_safe(stat,
204 MEM_CGROUP_STAT_PGPGOUT_COUNT, 1);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800205}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800206
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800207static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800208mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
209{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800210 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
211}
212
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800213static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800214page_cgroup_zoneinfo(struct page_cgroup *pc)
215{
216 struct mem_cgroup *mem = pc->mem_cgroup;
217 int nid = page_cgroup_nid(pc);
218 int zid = page_cgroup_zid(pc);
219
220 return mem_cgroup_zoneinfo(mem, nid, zid);
221}
222
223static unsigned long mem_cgroup_get_all_zonestat(struct mem_cgroup *mem,
Christoph Lameterb69408e2008-10-18 20:26:14 -0700224 enum lru_list idx)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800225{
226 int nid, zid;
227 struct mem_cgroup_per_zone *mz;
228 u64 total = 0;
229
230 for_each_online_node(nid)
231 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
232 mz = mem_cgroup_zoneinfo(mem, nid, zid);
233 total += MEM_CGROUP_ZSTAT(mz, idx);
234 }
235 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800236}
237
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800238static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800239{
240 return container_of(cgroup_subsys_state(cont,
241 mem_cgroup_subsys_id), struct mem_cgroup,
242 css);
243}
244
Balbir Singhcf475ad2008-04-29 01:00:16 -0700245struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800246{
Balbir Singh31a78f22008-09-28 23:09:31 +0100247 /*
248 * mm_update_next_owner() may clear mm->owner to NULL
249 * if it races with swapoff, page migration, etc.
250 * So this can be called with p == NULL.
251 */
252 if (unlikely(!p))
253 return NULL;
254
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800255 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
256 struct mem_cgroup, css);
257}
258
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800259static inline int page_cgroup_locked(struct page *page)
260{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800261 return bit_spin_is_locked(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800262}
263
Hugh Dickins9442ec92008-03-04 14:29:07 -0800264static void page_assign_page_cgroup(struct page *page, struct page_cgroup *pc)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800265{
Hugh Dickins9442ec92008-03-04 14:29:07 -0800266 VM_BUG_ON(!page_cgroup_locked(page));
267 page->page_cgroup = ((unsigned long)pc | PAGE_CGROUP_LOCK);
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800268}
269
270struct page_cgroup *page_get_page_cgroup(struct page *page)
271{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800272 return (struct page_cgroup *) (page->page_cgroup & ~PAGE_CGROUP_LOCK);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800273}
274
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800275static void lock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800276{
277 bit_spin_lock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800278}
279
Hugh Dickins2680eed2008-03-04 14:29:13 -0800280static int try_lock_page_cgroup(struct page *page)
281{
282 return bit_spin_trylock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
283}
284
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800285static void unlock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800286{
287 bit_spin_unlock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
288}
289
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700290static void __mem_cgroup_remove_list(struct mem_cgroup_per_zone *mz,
291 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800292{
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700293 int lru = LRU_BASE;
294
295 if (pc->flags & PAGE_CGROUP_FLAG_ACTIVE)
296 lru += LRU_ACTIVE;
297 if (pc->flags & PAGE_CGROUP_FLAG_FILE)
298 lru += LRU_FILE;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800299
Christoph Lameterb69408e2008-10-18 20:26:14 -0700300 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800301
302 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, false);
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700303 list_del(&pc->lru);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800304}
305
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700306static void __mem_cgroup_add_list(struct mem_cgroup_per_zone *mz,
307 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800308{
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700309 int lru = LRU_BASE;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800310
Christoph Lameterb69408e2008-10-18 20:26:14 -0700311 if (pc->flags & PAGE_CGROUP_FLAG_ACTIVE)
312 lru += LRU_ACTIVE;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700313 if (pc->flags & PAGE_CGROUP_FLAG_FILE)
314 lru += LRU_FILE;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700315
316 MEM_CGROUP_ZSTAT(mz, lru) += 1;
317 list_add(&pc->lru, &mz->lists[lru]);
318
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800319 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, true);
320}
321
Balbir Singh8697d332008-02-07 00:13:59 -0800322static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800323{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800324 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700325 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
326 int file = pc->flags & PAGE_CGROUP_FLAG_FILE;
327 int lru = LRU_FILE * !!file + !!from;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800328
Christoph Lameterb69408e2008-10-18 20:26:14 -0700329 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
330
331 if (active)
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800332 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700333 else
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800334 pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700335
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700336 lru = LRU_FILE * !!file + !!active;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700337 MEM_CGROUP_ZSTAT(mz, lru) += 1;
338 list_move(&pc->lru, &mz->lists[lru]);
Balbir Singh66e17072008-02-07 00:13:56 -0800339}
340
David Rientjes4c4a2212008-02-07 00:14:06 -0800341int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
342{
343 int ret;
344
345 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800346 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800347 task_unlock(task);
348 return ret;
349}
350
Balbir Singh66e17072008-02-07 00:13:56 -0800351/*
352 * This routine assumes that the appropriate zone's lru lock is already held
353 */
Hugh Dickins427d5412008-03-04 14:29:03 -0800354void mem_cgroup_move_lists(struct page *page, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800355{
Hugh Dickins427d5412008-03-04 14:29:03 -0800356 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800357 struct mem_cgroup_per_zone *mz;
358 unsigned long flags;
359
Li Zefancede86a2008-07-25 01:47:18 -0700360 if (mem_cgroup_subsys.disabled)
361 return;
362
Hugh Dickins2680eed2008-03-04 14:29:13 -0800363 /*
364 * We cannot lock_page_cgroup while holding zone's lru_lock,
365 * because other holders of lock_page_cgroup can be interrupted
366 * with an attempt to rotate_reclaimable_page. But we cannot
367 * safely get to page_cgroup without it, so just try_lock it:
368 * mem_cgroup_isolate_pages allows for page left on wrong list.
369 */
370 if (!try_lock_page_cgroup(page))
Balbir Singh66e17072008-02-07 00:13:56 -0800371 return;
372
Hugh Dickins2680eed2008-03-04 14:29:13 -0800373 pc = page_get_page_cgroup(page);
374 if (pc) {
Hugh Dickins2680eed2008-03-04 14:29:13 -0800375 mz = page_cgroup_zoneinfo(pc);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800376 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800377 __mem_cgroup_move_lists(pc, active);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800378 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800379 }
380 unlock_page_cgroup(page);
Balbir Singh66e17072008-02-07 00:13:56 -0800381}
382
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800383/*
384 * Calculate mapped_ratio under memory controller. This will be used in
385 * vmscan.c for deteremining we have to reclaim mapped pages.
386 */
387int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
388{
389 long total, rss;
390
391 /*
392 * usage is recorded in bytes. But, here, we assume the number of
393 * physical pages can be represented by "long" on any arch.
394 */
395 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
396 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
397 return (int)((rss * 100L) / total);
398}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800399
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800400/*
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800401 * prev_priority control...this will be used in memory reclaim path.
402 */
403int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
404{
405 return mem->prev_priority;
406}
407
408void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
409{
410 if (priority < mem->prev_priority)
411 mem->prev_priority = priority;
412}
413
414void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
415{
416 mem->prev_priority = priority;
417}
418
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800419/*
420 * Calculate # of pages to be scanned in this priority/zone.
421 * See also vmscan.c
422 *
423 * priority starts from "DEF_PRIORITY" and decremented in each loop.
424 * (see include/linux/mmzone.h)
425 */
426
Christoph Lameterb69408e2008-10-18 20:26:14 -0700427long mem_cgroup_calc_reclaim(struct mem_cgroup *mem, struct zone *zone,
428 int priority, enum lru_list lru)
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800429{
Christoph Lameterb69408e2008-10-18 20:26:14 -0700430 long nr_pages;
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800431 int nid = zone->zone_pgdat->node_id;
432 int zid = zone_idx(zone);
433 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
434
Christoph Lameterb69408e2008-10-18 20:26:14 -0700435 nr_pages = MEM_CGROUP_ZSTAT(mz, lru);
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800436
Christoph Lameterb69408e2008-10-18 20:26:14 -0700437 return (nr_pages >> priority);
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800438}
439
Balbir Singh66e17072008-02-07 00:13:56 -0800440unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
441 struct list_head *dst,
442 unsigned long *scanned, int order,
443 int mode, struct zone *z,
444 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700445 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -0800446{
447 unsigned long nr_taken = 0;
448 struct page *page;
449 unsigned long scan;
450 LIST_HEAD(pc_list);
451 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800452 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800453 int nid = z->zone_pgdat->node_id;
454 int zid = zone_idx(z);
455 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700456 int lru = LRU_FILE * !!file + !!active;
Balbir Singh66e17072008-02-07 00:13:56 -0800457
Balbir Singhcf475ad2008-04-29 01:00:16 -0700458 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800459 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700460 src = &mz->lists[lru];
Balbir Singh66e17072008-02-07 00:13:56 -0800461
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800462 spin_lock(&mz->lru_lock);
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800463 scan = 0;
464 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800465 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800466 break;
Balbir Singh66e17072008-02-07 00:13:56 -0800467 page = pc->page;
Balbir Singh66e17072008-02-07 00:13:56 -0800468
Hugh Dickins436c65412008-02-07 00:14:12 -0800469 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800470 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800471
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700472 /*
473 * TODO: play better with lumpy reclaim, grabbing anything.
474 */
Balbir Singh66e17072008-02-07 00:13:56 -0800475 if (PageActive(page) && !active) {
476 __mem_cgroup_move_lists(pc, true);
Balbir Singh66e17072008-02-07 00:13:56 -0800477 continue;
478 }
479 if (!PageActive(page) && active) {
480 __mem_cgroup_move_lists(pc, false);
Balbir Singh66e17072008-02-07 00:13:56 -0800481 continue;
482 }
483
Hugh Dickins436c65412008-02-07 00:14:12 -0800484 scan++;
485 list_move(&pc->lru, &pc_list);
Balbir Singh66e17072008-02-07 00:13:56 -0800486
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700487 if (__isolate_lru_page(page, mode, file) == 0) {
Balbir Singh66e17072008-02-07 00:13:56 -0800488 list_move(&page->lru, dst);
489 nr_taken++;
490 }
491 }
492
493 list_splice(&pc_list, src);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800494 spin_unlock(&mz->lru_lock);
Balbir Singh66e17072008-02-07 00:13:56 -0800495
496 *scanned = scan;
497 return nr_taken;
498}
499
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800500/*
501 * Charge the memory controller for page usage.
502 * Return
503 * 0 if the charge was successful
504 * < 0 if the cgroup is over its limit
505 */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800506static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700507 gfp_t gfp_mask, enum charge_type ctype,
508 struct mem_cgroup *memcg)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800509{
510 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800511 struct page_cgroup *pc;
Balbir Singh66e17072008-02-07 00:13:56 -0800512 unsigned long flags;
513 unsigned long nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800514 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800515
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700516 pc = kmem_cache_alloc(page_cgroup_cache, gfp_mask);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700517 if (unlikely(pc == NULL))
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800518 goto err;
519
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800520 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800521 * We always charge the cgroup the mm_struct belongs to.
522 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800523 * thread group leader migrates. It's possible that mm is not
524 * set, if so charge the init_mm (happens for pagecache usage).
525 */
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700526 if (likely(!memcg)) {
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700527 rcu_read_lock();
528 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
Balbir Singh31a78f22008-09-28 23:09:31 +0100529 if (unlikely(!mem)) {
530 rcu_read_unlock();
531 kmem_cache_free(page_cgroup_cache, pc);
532 return 0;
533 }
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700534 /*
535 * For every charge from the cgroup, increment reference count
536 */
537 css_get(&mem->css);
538 rcu_read_unlock();
539 } else {
540 mem = memcg;
541 css_get(&memcg->css);
542 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800543
Balbir Singh0eea1032008-02-07 00:13:57 -0800544 while (res_counter_charge(&mem->res, PAGE_SIZE)) {
Hugh Dickins3be91272008-02-07 00:14:19 -0800545 if (!(gfp_mask & __GFP_WAIT))
546 goto out;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800547
548 if (try_to_free_mem_cgroup_pages(mem, gfp_mask))
Balbir Singh66e17072008-02-07 00:13:56 -0800549 continue;
550
551 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800552 * try_to_free_mem_cgroup_pages() might not give us a full
553 * picture of reclaim. Some pages are reclaimed and might be
554 * moved to swap cache or just unmapped from the cgroup.
555 * Check the limit again to see if the reclaim reduced the
556 * current usage of the cgroup before giving up
557 */
Balbir Singh66e17072008-02-07 00:13:56 -0800558 if (res_counter_check_under_limit(&mem->res))
559 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800560
561 if (!nr_retries--) {
562 mem_cgroup_out_of_memory(mem, gfp_mask);
563 goto out;
Balbir Singh66e17072008-02-07 00:13:56 -0800564 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800565 }
566
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800567 pc->mem_cgroup = mem;
568 pc->page = page;
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700569 /*
570 * If a page is accounted as a page cache, insert to inactive list.
571 * If anon, insert to active list.
572 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700573 if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE) {
Balbir Singh4a56d022008-04-29 01:00:23 -0700574 pc->flags = PAGE_CGROUP_FLAG_CACHE;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700575 if (page_is_file_cache(page))
576 pc->flags |= PAGE_CGROUP_FLAG_FILE;
577 else
578 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
579 } else if (ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700580 pc->flags = PAGE_CGROUP_FLAG_ACTIVE;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700581 else /* MEM_CGROUP_CHARGE_TYPE_SHMEM */
582 pc->flags = PAGE_CGROUP_FLAG_CACHE | PAGE_CGROUP_FLAG_ACTIVE;
Hugh Dickins3be91272008-02-07 00:14:19 -0800583
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800584 lock_page_cgroup(page);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700585 if (unlikely(page_get_page_cgroup(page))) {
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800586 unlock_page_cgroup(page);
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800587 res_counter_uncharge(&mem->res, PAGE_SIZE);
588 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700589 kmem_cache_free(page_cgroup_cache, pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -0700590 goto done;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800591 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800592 page_assign_page_cgroup(page, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800593
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800594 mz = page_cgroup_zoneinfo(pc);
595 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700596 __mem_cgroup_add_list(mz, pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800597 spin_unlock_irqrestore(&mz->lru_lock, flags);
Balbir Singh66e17072008-02-07 00:13:56 -0800598
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800599 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800600done:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800601 return 0;
Hugh Dickins3be91272008-02-07 00:14:19 -0800602out:
603 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700604 kmem_cache_free(page_cgroup_cache, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800605err:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800606 return -ENOMEM;
607}
608
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800609int mem_cgroup_charge(struct page *page, struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800610{
Li Zefancede86a2008-07-25 01:47:18 -0700611 if (mem_cgroup_subsys.disabled)
612 return 0;
613
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700614 /*
615 * If already mapped, we don't have to account.
616 * If page cache, page->mapping has address_space.
617 * But page->mapping may have out-of-use anon_vma pointer,
618 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
619 * is NULL.
620 */
621 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
622 return 0;
623 if (unlikely(!mm))
624 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800625 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700626 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800627}
628
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800629int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
630 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -0800631{
Li Zefancede86a2008-07-25 01:47:18 -0700632 if (mem_cgroup_subsys.disabled)
633 return 0;
634
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -0700635 /*
636 * Corner case handling. This is called from add_to_page_cache()
637 * in usual. But some FS (shmem) precharges this page before calling it
638 * and call add_to_page_cache() with GFP_NOWAIT.
639 *
640 * For GFP_NOWAIT case, the page may be pre-charged before calling
641 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
642 * charge twice. (It works but has to pay a bit larger cost.)
643 */
644 if (!(gfp_mask & __GFP_WAIT)) {
645 struct page_cgroup *pc;
646
647 lock_page_cgroup(page);
648 pc = page_get_page_cgroup(page);
649 if (pc) {
650 VM_BUG_ON(pc->page != page);
651 VM_BUG_ON(!pc->mem_cgroup);
652 unlock_page_cgroup(page);
653 return 0;
654 }
655 unlock_page_cgroup(page);
656 }
657
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700658 if (unlikely(!mm))
Balbir Singh8697d332008-02-07 00:13:59 -0800659 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -0700660
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800661 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700662 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
663}
664
Balbir Singh8697d332008-02-07 00:13:59 -0800665/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700666 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800667 */
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700668static void
669__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800670{
Hugh Dickins82895462008-03-04 14:29:08 -0800671 struct page_cgroup *pc;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800672 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800673 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800674 unsigned long flags;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800675
Balbir Singh40779602008-04-04 14:29:59 -0700676 if (mem_cgroup_subsys.disabled)
677 return;
678
Balbir Singh8697d332008-02-07 00:13:59 -0800679 /*
Balbir Singh3c541e12008-02-07 00:14:41 -0800680 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -0800681 */
Hugh Dickins82895462008-03-04 14:29:08 -0800682 lock_page_cgroup(page);
683 pc = page_get_page_cgroup(page);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700684 if (unlikely(!pc))
Hugh Dickins82895462008-03-04 14:29:08 -0800685 goto unlock;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800686
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800687 VM_BUG_ON(pc->page != page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800688
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700689 if ((ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
690 && ((pc->flags & PAGE_CGROUP_FLAG_CACHE)
691 || page_mapped(page)))
692 goto unlock;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800693
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700694 mz = page_cgroup_zoneinfo(pc);
695 spin_lock_irqsave(&mz->lru_lock, flags);
696 __mem_cgroup_remove_list(mz, pc);
697 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800698
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700699 page_assign_page_cgroup(page, NULL);
700 unlock_page_cgroup(page);
Hugh Dickins6d48ff82008-03-04 14:29:12 -0800701
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700702 mem = pc->mem_cgroup;
703 res_counter_uncharge(&mem->res, PAGE_SIZE);
704 css_put(&mem->css);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800705
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700706 kmem_cache_free(page_cgroup_cache, pc);
707 return;
Hugh Dickins82895462008-03-04 14:29:08 -0800708unlock:
Balbir Singh3c541e12008-02-07 00:14:41 -0800709 unlock_page_cgroup(page);
710}
711
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700712void mem_cgroup_uncharge_page(struct page *page)
713{
714 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
715}
716
717void mem_cgroup_uncharge_cache_page(struct page *page)
718{
719 VM_BUG_ON(page_mapped(page));
720 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
721}
722
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800723/*
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700724 * Before starting migration, account against new page.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800725 */
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700726int mem_cgroup_prepare_migration(struct page *page, struct page *newpage)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800727{
728 struct page_cgroup *pc;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700729 struct mem_cgroup *mem = NULL;
730 enum charge_type ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
731 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800732
Balbir Singh40779602008-04-04 14:29:59 -0700733 if (mem_cgroup_subsys.disabled)
734 return 0;
735
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800736 lock_page_cgroup(page);
737 pc = page_get_page_cgroup(page);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700738 if (pc) {
739 mem = pc->mem_cgroup;
740 css_get(&mem->css);
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700741 if (pc->flags & PAGE_CGROUP_FLAG_CACHE) {
742 if (page_is_file_cache(page))
743 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
744 else
745 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
746 }
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800747 }
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800748 unlock_page_cgroup(page);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700749 if (mem) {
750 ret = mem_cgroup_charge_common(newpage, NULL, GFP_KERNEL,
751 ctype, mem);
752 css_put(&mem->css);
753 }
754 return ret;
755}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800756
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700757/* remove redundant charge if migration failed*/
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700758void mem_cgroup_end_migration(struct page *newpage)
759{
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700760 /*
761 * At success, page->mapping is not NULL.
762 * special rollback care is necessary when
763 * 1. at migration failure. (newpage->mapping is cleared in this case)
764 * 2. the newpage was moved but not remapped again because the task
765 * exits and the newpage is obsolete. In this case, the new page
766 * may be a swapcache. So, we just call mem_cgroup_uncharge_page()
767 * always for avoiding mess. The page_cgroup will be removed if
768 * unnecessary. File cache pages is still on radix-tree. Don't
769 * care it.
770 */
771 if (!newpage->mapping)
772 __mem_cgroup_uncharge_common(newpage,
773 MEM_CGROUP_CHARGE_TYPE_FORCE);
774 else if (PageAnon(newpage))
775 mem_cgroup_uncharge_page(newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800776}
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800777
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800778/*
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700779 * A call to try to shrink memory usage under specified resource controller.
780 * This is typically used for page reclaiming for shmem for reducing side
781 * effect of page allocation from shmem, which is used by some mem_cgroup.
782 */
783int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask)
784{
785 struct mem_cgroup *mem;
786 int progress = 0;
787 int retry = MEM_CGROUP_RECLAIM_RETRIES;
788
Li Zefancede86a2008-07-25 01:47:18 -0700789 if (mem_cgroup_subsys.disabled)
790 return 0;
Hugh Dickins9623e072008-08-12 15:08:41 -0700791 if (!mm)
792 return 0;
Li Zefancede86a2008-07-25 01:47:18 -0700793
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700794 rcu_read_lock();
795 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
Balbir Singh31a78f22008-09-28 23:09:31 +0100796 if (unlikely(!mem)) {
797 rcu_read_unlock();
798 return 0;
799 }
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700800 css_get(&mem->css);
801 rcu_read_unlock();
802
803 do {
804 progress = try_to_free_mem_cgroup_pages(mem, gfp_mask);
Daisuke Nishimuraa10cebf2008-09-22 13:57:52 -0700805 progress += res_counter_check_under_limit(&mem->res);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700806 } while (!progress && --retry);
807
808 css_put(&mem->css);
809 if (!retry)
810 return -ENOMEM;
811 return 0;
812}
813
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -0700814int mem_cgroup_resize_limit(struct mem_cgroup *memcg, unsigned long long val)
815{
816
817 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
818 int progress;
819 int ret = 0;
820
821 while (res_counter_set_limit(&memcg->res, val)) {
822 if (signal_pending(current)) {
823 ret = -EINTR;
824 break;
825 }
826 if (!retry_count) {
827 ret = -EBUSY;
828 break;
829 }
830 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL);
831 if (!progress)
832 retry_count--;
833 }
834 return ret;
835}
836
837
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700838/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800839 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800840 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
841 */
842#define FORCE_UNCHARGE_BATCH (128)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800843static void mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800844 struct mem_cgroup_per_zone *mz,
Christoph Lameterb69408e2008-10-18 20:26:14 -0700845 enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800846{
847 struct page_cgroup *pc;
848 struct page *page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800849 int count = FORCE_UNCHARGE_BATCH;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800850 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800851 struct list_head *list;
852
Christoph Lameterb69408e2008-10-18 20:26:14 -0700853 list = &mz->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800854
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800855 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800856 while (!list_empty(list)) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800857 pc = list_entry(list->prev, struct page_cgroup, lru);
858 page = pc->page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800859 get_page(page);
860 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700861 /*
862 * Check if this page is on LRU. !LRU page can be found
863 * if it's under page migration.
864 */
865 if (PageLRU(page)) {
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700866 __mem_cgroup_uncharge_common(page,
867 MEM_CGROUP_CHARGE_TYPE_FORCE);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700868 put_page(page);
869 if (--count <= 0) {
870 count = FORCE_UNCHARGE_BATCH;
871 cond_resched();
872 }
873 } else
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800874 cond_resched();
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800875 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800876 }
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800877 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800878}
879
880/*
881 * make mem_cgroup's charge to be 0 if there is no task.
882 * This enables deleting this mem_cgroup.
883 */
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800884static int mem_cgroup_force_empty(struct mem_cgroup *mem)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800885{
886 int ret = -EBUSY;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800887 int node, zid;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800888
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800889 css_get(&mem->css);
890 /*
891 * page reclaim code (kswapd etc..) will move pages between
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800892 * active_list <-> inactive_list while we don't take a lock.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800893 * So, we have to do loop here until all lists are empty.
894 */
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800895 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800896 if (atomic_read(&mem->css.cgroup->count) > 0)
897 goto out;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800898 for_each_node_state(node, N_POSSIBLE)
899 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
900 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700901 enum lru_list l;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800902 mz = mem_cgroup_zoneinfo(mem, node, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700903 for_each_lru(l)
904 mem_cgroup_force_empty_list(mem, mz, l);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800905 }
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800906 }
907 ret = 0;
908out:
909 css_put(&mem->css);
910 return ret;
911}
912
Paul Menage2c3daa72008-04-29 00:59:58 -0700913static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800914{
Paul Menage2c3daa72008-04-29 00:59:58 -0700915 return res_counter_read_u64(&mem_cgroup_from_cont(cont)->res,
916 cft->private);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800917}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -0700918/*
919 * The user of this function is...
920 * RES_LIMIT.
921 */
Paul Menage856c13a2008-07-25 01:47:04 -0700922static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
923 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800924{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -0700925 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
926 unsigned long long val;
927 int ret;
928
929 switch (cft->private) {
930 case RES_LIMIT:
931 /* This function does all necessary parse...reuse it */
932 ret = res_counter_memparse_write_strategy(buffer, &val);
933 if (!ret)
934 ret = mem_cgroup_resize_limit(memcg, val);
935 break;
936 default:
937 ret = -EINVAL; /* should be BUG() ? */
938 break;
939 }
940 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800941}
942
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700943static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700944{
945 struct mem_cgroup *mem;
946
947 mem = mem_cgroup_from_cont(cont);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700948 switch (event) {
949 case RES_MAX_USAGE:
950 res_counter_reset_max(&mem->res);
951 break;
952 case RES_FAILCNT:
953 res_counter_reset_failcnt(&mem->res);
954 break;
955 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700956 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700957}
958
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700959static int mem_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800960{
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700961 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800962}
963
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800964static const struct mem_cgroup_stat_desc {
965 const char *msg;
966 u64 unit;
967} mem_cgroup_stat_desc[] = {
968 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
969 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
Balaji Rao55e462b2008-05-01 04:35:12 -0700970 [MEM_CGROUP_STAT_PGPGIN_COUNT] = {"pgpgin", 1, },
971 [MEM_CGROUP_STAT_PGPGOUT_COUNT] = {"pgpgout", 1, },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800972};
973
Paul Menagec64745c2008-04-29 01:00:02 -0700974static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
975 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800976{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800977 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
978 struct mem_cgroup_stat *stat = &mem_cont->stat;
979 int i;
980
981 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
982 s64 val;
983
984 val = mem_cgroup_read_stat(stat, i);
985 val *= mem_cgroup_stat_desc[i].unit;
Paul Menagec64745c2008-04-29 01:00:02 -0700986 cb->fill(cb, mem_cgroup_stat_desc[i].msg, val);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800987 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800988 /* showing # of active pages */
989 {
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700990 unsigned long active_anon, inactive_anon;
991 unsigned long active_file, inactive_file;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800992
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700993 inactive_anon = mem_cgroup_get_all_zonestat(mem_cont,
994 LRU_INACTIVE_ANON);
995 active_anon = mem_cgroup_get_all_zonestat(mem_cont,
996 LRU_ACTIVE_ANON);
997 inactive_file = mem_cgroup_get_all_zonestat(mem_cont,
998 LRU_INACTIVE_FILE);
999 active_file = mem_cgroup_get_all_zonestat(mem_cont,
1000 LRU_ACTIVE_FILE);
1001 cb->fill(cb, "active_anon", (active_anon) * PAGE_SIZE);
1002 cb->fill(cb, "inactive_anon", (inactive_anon) * PAGE_SIZE);
1003 cb->fill(cb, "active_file", (active_file) * PAGE_SIZE);
1004 cb->fill(cb, "inactive_file", (inactive_file) * PAGE_SIZE);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001005 }
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001006 return 0;
1007}
1008
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001009static struct cftype mem_cgroup_files[] = {
1010 {
Balbir Singh0eea1032008-02-07 00:13:57 -08001011 .name = "usage_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001012 .private = RES_USAGE,
Paul Menage2c3daa72008-04-29 00:59:58 -07001013 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001014 },
1015 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001016 .name = "max_usage_in_bytes",
1017 .private = RES_MAX_USAGE,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001018 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001019 .read_u64 = mem_cgroup_read,
1020 },
1021 {
Balbir Singh0eea1032008-02-07 00:13:57 -08001022 .name = "limit_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001023 .private = RES_LIMIT,
Paul Menage856c13a2008-07-25 01:47:04 -07001024 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07001025 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001026 },
1027 {
1028 .name = "failcnt",
1029 .private = RES_FAILCNT,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001030 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07001031 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001032 },
Balbir Singh8697d332008-02-07 00:13:59 -08001033 {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001034 .name = "force_empty",
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07001035 .trigger = mem_force_empty_write,
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001036 },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001037 {
1038 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07001039 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001040 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001041};
1042
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001043static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
1044{
1045 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001046 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001047 enum lru_list l;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07001048 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001049 /*
1050 * This routine is called against possible nodes.
1051 * But it's BUG to call kmalloc() against offline node.
1052 *
1053 * TODO: this routine can waste much memory for nodes which will
1054 * never be onlined. It's better to use memory hotplug callback
1055 * function.
1056 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07001057 if (!node_state(node, N_NORMAL_MEMORY))
1058 tmp = -1;
1059 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001060 if (!pn)
1061 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001062
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001063 mem->info.nodeinfo[node] = pn;
1064 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001065
1066 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
1067 mz = &pn->zoneinfo[zone];
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001068 spin_lock_init(&mz->lru_lock);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001069 for_each_lru(l)
1070 INIT_LIST_HEAD(&mz->lists[l]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001071 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001072 return 0;
1073}
1074
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001075static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
1076{
1077 kfree(mem->info.nodeinfo[node]);
1078}
1079
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001080static struct mem_cgroup *mem_cgroup_alloc(void)
1081{
1082 struct mem_cgroup *mem;
1083
1084 if (sizeof(*mem) < PAGE_SIZE)
1085 mem = kmalloc(sizeof(*mem), GFP_KERNEL);
1086 else
1087 mem = vmalloc(sizeof(*mem));
1088
1089 if (mem)
1090 memset(mem, 0, sizeof(*mem));
1091 return mem;
1092}
1093
1094static void mem_cgroup_free(struct mem_cgroup *mem)
1095{
1096 if (sizeof(*mem) < PAGE_SIZE)
1097 kfree(mem);
1098 else
1099 vfree(mem);
1100}
1101
1102
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001103static struct cgroup_subsys_state *
1104mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
1105{
1106 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001107 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001108
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001109 if (unlikely((cont->parent) == NULL)) {
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001110 mem = &init_mem_cgroup;
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001111 page_cgroup_cache = KMEM_CACHE(page_cgroup, SLAB_PANIC);
1112 } else {
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001113 mem = mem_cgroup_alloc();
1114 if (!mem)
1115 return ERR_PTR(-ENOMEM);
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001116 }
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001117
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001118 res_counter_init(&mem->res);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001119
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001120 for_each_node_state(node, N_POSSIBLE)
1121 if (alloc_mem_cgroup_per_zone_info(mem, node))
1122 goto free_out;
1123
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001124 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001125free_out:
1126 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001127 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001128 if (cont->parent != NULL)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001129 mem_cgroup_free(mem);
Li Zefan2dda81c2008-02-23 15:24:14 -08001130 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001131}
1132
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001133static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
1134 struct cgroup *cont)
1135{
1136 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1137 mem_cgroup_force_empty(mem);
1138}
1139
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001140static void mem_cgroup_destroy(struct cgroup_subsys *ss,
1141 struct cgroup *cont)
1142{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001143 int node;
1144 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1145
1146 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001147 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001148
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001149 mem_cgroup_free(mem_cgroup_from_cont(cont));
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001150}
1151
1152static int mem_cgroup_populate(struct cgroup_subsys *ss,
1153 struct cgroup *cont)
1154{
1155 return cgroup_add_files(cont, ss, mem_cgroup_files,
1156 ARRAY_SIZE(mem_cgroup_files));
1157}
1158
Balbir Singh67e465a2008-02-07 00:13:54 -08001159static void mem_cgroup_move_task(struct cgroup_subsys *ss,
1160 struct cgroup *cont,
1161 struct cgroup *old_cont,
1162 struct task_struct *p)
1163{
1164 struct mm_struct *mm;
1165 struct mem_cgroup *mem, *old_mem;
1166
1167 mm = get_task_mm(p);
1168 if (mm == NULL)
1169 return;
1170
1171 mem = mem_cgroup_from_cont(cont);
1172 old_mem = mem_cgroup_from_cont(old_cont);
1173
Balbir Singh67e465a2008-02-07 00:13:54 -08001174 /*
1175 * Only thread group leaders are allowed to migrate, the mm_struct is
1176 * in effect owned by the leader
1177 */
Pavel Emelyanov52ea27e2008-03-19 17:00:45 -07001178 if (!thread_group_leader(p))
Balbir Singh67e465a2008-02-07 00:13:54 -08001179 goto out;
1180
Balbir Singh67e465a2008-02-07 00:13:54 -08001181out:
1182 mmput(mm);
Balbir Singh67e465a2008-02-07 00:13:54 -08001183}
1184
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001185struct cgroup_subsys mem_cgroup_subsys = {
1186 .name = "memory",
1187 .subsys_id = mem_cgroup_subsys_id,
1188 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001189 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001190 .destroy = mem_cgroup_destroy,
1191 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08001192 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001193 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001194};