blob: 36896f3eb7f5e5c2e4c3803cc8125fe461a71669 [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>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080035
Balbir Singh8697d332008-02-07 00:13:59 -080036#include <asm/uaccess.h>
37
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070038struct cgroup_subsys mem_cgroup_subsys __read_mostly;
39static struct kmem_cache *page_cgroup_cache __read_mostly;
40#define MEM_CGROUP_RECLAIM_RETRIES 5
Balbir Singh8cdea7c2008-02-07 00:13:50 -080041
42/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080043 * Statistics for memory cgroup.
44 */
45enum mem_cgroup_stat_index {
46 /*
47 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
48 */
49 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
50 MEM_CGROUP_STAT_RSS, /* # of pages charged as rss */
Balaji Rao55e462b2008-05-01 04:35:12 -070051 MEM_CGROUP_STAT_PGPGIN_COUNT, /* # of pages paged in */
52 MEM_CGROUP_STAT_PGPGOUT_COUNT, /* # of pages paged out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080053
54 MEM_CGROUP_STAT_NSTATS,
55};
56
57struct mem_cgroup_stat_cpu {
58 s64 count[MEM_CGROUP_STAT_NSTATS];
59} ____cacheline_aligned_in_smp;
60
61struct mem_cgroup_stat {
62 struct mem_cgroup_stat_cpu cpustat[NR_CPUS];
63};
64
65/*
66 * For accounting under irq disable, no need for increment preempt count.
67 */
68static void __mem_cgroup_stat_add_safe(struct mem_cgroup_stat *stat,
69 enum mem_cgroup_stat_index idx, int val)
70{
71 int cpu = smp_processor_id();
72 stat->cpustat[cpu].count[idx] += val;
73}
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 */
88
89enum mem_cgroup_zstat_index {
90 MEM_CGROUP_ZSTAT_ACTIVE,
91 MEM_CGROUP_ZSTAT_INACTIVE,
92
93 NR_MEM_CGROUP_ZSTAT,
94};
95
96struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -080097 /*
98 * spin_lock to protect the per cgroup LRU
99 */
100 spinlock_t lru_lock;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800101 struct list_head active_list;
102 struct list_head inactive_list;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800103 unsigned long count[NR_MEM_CGROUP_ZSTAT];
104};
105/* Macro for accessing counter */
106#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
107
108struct mem_cgroup_per_node {
109 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
110};
111
112struct mem_cgroup_lru_info {
113 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
114};
115
116/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800117 * The memory controller data structure. The memory controller controls both
118 * page cache and RSS per cgroup. We would eventually like to provide
119 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
120 * to help the administrator determine what knobs to tune.
121 *
122 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800123 * we hit the water mark. May be even add a low water mark, such that
124 * no reclaim occurs from a cgroup at it's low water mark, this is
125 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800126 */
127struct mem_cgroup {
128 struct cgroup_subsys_state css;
129 /*
130 * the counter to account for memory usage
131 */
132 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800133 /*
134 * Per cgroup active and inactive list, similar to the
135 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800136 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800137 struct mem_cgroup_lru_info info;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800138
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800139 int prev_priority; /* for recording reclaim priority */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800140 /*
141 * statistics.
142 */
143 struct mem_cgroup_stat stat;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800144};
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800145static struct mem_cgroup init_mem_cgroup;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800146
147/*
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800148 * We use the lower bit of the page->page_cgroup pointer as a bit spin
Hugh Dickins9442ec92008-03-04 14:29:07 -0800149 * lock. We need to ensure that page->page_cgroup is at least two
150 * byte aligned (based on comments from Nick Piggin). But since
151 * bit_spin_lock doesn't actually set that lock bit in a non-debug
152 * uniprocessor kernel, we should avoid setting it here too.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800153 */
154#define PAGE_CGROUP_LOCK_BIT 0x0
Hugh Dickins9442ec92008-03-04 14:29:07 -0800155#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
156#define PAGE_CGROUP_LOCK (1 << PAGE_CGROUP_LOCK_BIT)
157#else
158#define PAGE_CGROUP_LOCK 0x0
159#endif
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800160
161/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800162 * A page_cgroup page is associated with every page descriptor. The
163 * page_cgroup helps us identify information about the cgroup
164 */
165struct page_cgroup {
166 struct list_head lru; /* per cgroup LRU list */
167 struct page *page;
168 struct mem_cgroup *mem_cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800169 int flags;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800170};
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800171#define PAGE_CGROUP_FLAG_CACHE (0x1) /* charged as cache */
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800172#define PAGE_CGROUP_FLAG_ACTIVE (0x2) /* page is active in this cgroup */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800173
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800174static int page_cgroup_nid(struct page_cgroup *pc)
KAMEZAWA Hiroyukic01495302008-02-07 00:14:30 -0800175{
176 return page_to_nid(pc->page);
177}
178
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800179static enum zone_type page_cgroup_zid(struct page_cgroup *pc)
KAMEZAWA Hiroyukic01495302008-02-07 00:14:30 -0800180{
181 return page_zonenum(pc->page);
182}
183
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800184enum charge_type {
185 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
186 MEM_CGROUP_CHARGE_TYPE_MAPPED,
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700187 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800188};
189
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800190/*
191 * Always modified under lru lock. Then, not necessary to preempt_disable()
192 */
193static void mem_cgroup_charge_statistics(struct mem_cgroup *mem, int flags,
194 bool charge)
195{
196 int val = (charge)? 1 : -1;
197 struct mem_cgroup_stat *stat = &mem->stat;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800198
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800199 VM_BUG_ON(!irqs_disabled());
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800200 if (flags & PAGE_CGROUP_FLAG_CACHE)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800201 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_CACHE, val);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800202 else
203 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_RSS, val);
Balaji Rao55e462b2008-05-01 04:35:12 -0700204
205 if (charge)
206 __mem_cgroup_stat_add_safe(stat,
207 MEM_CGROUP_STAT_PGPGIN_COUNT, 1);
208 else
209 __mem_cgroup_stat_add_safe(stat,
210 MEM_CGROUP_STAT_PGPGOUT_COUNT, 1);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800211}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800212
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800213static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800214mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
215{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800216 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
217}
218
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800219static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800220page_cgroup_zoneinfo(struct page_cgroup *pc)
221{
222 struct mem_cgroup *mem = pc->mem_cgroup;
223 int nid = page_cgroup_nid(pc);
224 int zid = page_cgroup_zid(pc);
225
226 return mem_cgroup_zoneinfo(mem, nid, zid);
227}
228
229static unsigned long mem_cgroup_get_all_zonestat(struct mem_cgroup *mem,
230 enum mem_cgroup_zstat_index idx)
231{
232 int nid, zid;
233 struct mem_cgroup_per_zone *mz;
234 u64 total = 0;
235
236 for_each_online_node(nid)
237 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
238 mz = mem_cgroup_zoneinfo(mem, nid, zid);
239 total += MEM_CGROUP_ZSTAT(mz, idx);
240 }
241 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800242}
243
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800244static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800245{
246 return container_of(cgroup_subsys_state(cont,
247 mem_cgroup_subsys_id), struct mem_cgroup,
248 css);
249}
250
Balbir Singhcf475ad2008-04-29 01:00:16 -0700251struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800252{
Balbir Singh31a78f22008-09-28 23:09:31 +0100253 /*
254 * mm_update_next_owner() may clear mm->owner to NULL
255 * if it races with swapoff, page migration, etc.
256 * So this can be called with p == NULL.
257 */
258 if (unlikely(!p))
259 return NULL;
260
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800261 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
262 struct mem_cgroup, css);
263}
264
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800265static inline int page_cgroup_locked(struct page *page)
266{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800267 return bit_spin_is_locked(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800268}
269
Hugh Dickins9442ec92008-03-04 14:29:07 -0800270static void page_assign_page_cgroup(struct page *page, struct page_cgroup *pc)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800271{
Hugh Dickins9442ec92008-03-04 14:29:07 -0800272 VM_BUG_ON(!page_cgroup_locked(page));
273 page->page_cgroup = ((unsigned long)pc | PAGE_CGROUP_LOCK);
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800274}
275
276struct page_cgroup *page_get_page_cgroup(struct page *page)
277{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800278 return (struct page_cgroup *) (page->page_cgroup & ~PAGE_CGROUP_LOCK);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800279}
280
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800281static void lock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800282{
283 bit_spin_lock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800284}
285
Hugh Dickins2680eed2008-03-04 14:29:13 -0800286static int try_lock_page_cgroup(struct page *page)
287{
288 return bit_spin_trylock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
289}
290
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800291static void unlock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800292{
293 bit_spin_unlock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
294}
295
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700296static void __mem_cgroup_remove_list(struct mem_cgroup_per_zone *mz,
297 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800298{
299 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800300
301 if (from)
302 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
303 else
304 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
305
306 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, false);
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700307 list_del(&pc->lru);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800308}
309
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700310static void __mem_cgroup_add_list(struct mem_cgroup_per_zone *mz,
311 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800312{
313 int to = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800314
315 if (!to) {
316 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800317 list_add(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800318 } else {
319 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800320 list_add(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800321 }
322 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, true);
323}
324
Balbir Singh8697d332008-02-07 00:13:59 -0800325static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800326{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800327 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
328 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
329
330 if (from)
331 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
332 else
333 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
334
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800335 if (active) {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800336 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800337 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800338 list_move(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800339 } else {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800340 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800341 pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800342 list_move(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800343 }
Balbir Singh66e17072008-02-07 00:13:56 -0800344}
345
David Rientjes4c4a2212008-02-07 00:14:06 -0800346int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
347{
348 int ret;
349
350 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800351 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800352 task_unlock(task);
353 return ret;
354}
355
Balbir Singh66e17072008-02-07 00:13:56 -0800356/*
357 * This routine assumes that the appropriate zone's lru lock is already held
358 */
Hugh Dickins427d5412008-03-04 14:29:03 -0800359void mem_cgroup_move_lists(struct page *page, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800360{
Hugh Dickins427d5412008-03-04 14:29:03 -0800361 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800362 struct mem_cgroup_per_zone *mz;
363 unsigned long flags;
364
Li Zefancede86a2008-07-25 01:47:18 -0700365 if (mem_cgroup_subsys.disabled)
366 return;
367
Hugh Dickins2680eed2008-03-04 14:29:13 -0800368 /*
369 * We cannot lock_page_cgroup while holding zone's lru_lock,
370 * because other holders of lock_page_cgroup can be interrupted
371 * with an attempt to rotate_reclaimable_page. But we cannot
372 * safely get to page_cgroup without it, so just try_lock it:
373 * mem_cgroup_isolate_pages allows for page left on wrong list.
374 */
375 if (!try_lock_page_cgroup(page))
Balbir Singh66e17072008-02-07 00:13:56 -0800376 return;
377
Hugh Dickins2680eed2008-03-04 14:29:13 -0800378 pc = page_get_page_cgroup(page);
379 if (pc) {
Hugh Dickins2680eed2008-03-04 14:29:13 -0800380 mz = page_cgroup_zoneinfo(pc);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800381 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800382 __mem_cgroup_move_lists(pc, active);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800383 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800384 }
385 unlock_page_cgroup(page);
Balbir Singh66e17072008-02-07 00:13:56 -0800386}
387
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800388/*
389 * Calculate mapped_ratio under memory controller. This will be used in
390 * vmscan.c for deteremining we have to reclaim mapped pages.
391 */
392int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
393{
394 long total, rss;
395
396 /*
397 * usage is recorded in bytes. But, here, we assume the number of
398 * physical pages can be represented by "long" on any arch.
399 */
400 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
401 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
402 return (int)((rss * 100L) / total);
403}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800404
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800405/*
406 * This function is called from vmscan.c. In page reclaiming loop. balance
407 * between active and inactive list is calculated. For memory controller
408 * page reclaiming, we should use using mem_cgroup's imbalance rather than
409 * zone's global lru imbalance.
410 */
411long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem)
412{
413 unsigned long active, inactive;
414 /* active and inactive are the number of pages. 'long' is ok.*/
415 active = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_ACTIVE);
416 inactive = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_INACTIVE);
417 return (long) (active / (inactive + 1));
418}
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800419
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800420/*
421 * prev_priority control...this will be used in memory reclaim path.
422 */
423int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
424{
425 return mem->prev_priority;
426}
427
428void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
429{
430 if (priority < mem->prev_priority)
431 mem->prev_priority = priority;
432}
433
434void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
435{
436 mem->prev_priority = priority;
437}
438
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800439/*
440 * Calculate # of pages to be scanned in this priority/zone.
441 * See also vmscan.c
442 *
443 * priority starts from "DEF_PRIORITY" and decremented in each loop.
444 * (see include/linux/mmzone.h)
445 */
446
447long mem_cgroup_calc_reclaim_active(struct mem_cgroup *mem,
448 struct zone *zone, int priority)
449{
450 long nr_active;
451 int nid = zone->zone_pgdat->node_id;
452 int zid = zone_idx(zone);
453 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
454
455 nr_active = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE);
456 return (nr_active >> priority);
457}
458
459long mem_cgroup_calc_reclaim_inactive(struct mem_cgroup *mem,
460 struct zone *zone, int priority)
461{
462 long nr_inactive;
463 int nid = zone->zone_pgdat->node_id;
464 int zid = zone_idx(zone);
465 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
466
467 nr_inactive = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE);
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800468 return (nr_inactive >> priority);
469}
470
Balbir Singh66e17072008-02-07 00:13:56 -0800471unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
472 struct list_head *dst,
473 unsigned long *scanned, int order,
474 int mode, struct zone *z,
475 struct mem_cgroup *mem_cont,
476 int active)
477{
478 unsigned long nr_taken = 0;
479 struct page *page;
480 unsigned long scan;
481 LIST_HEAD(pc_list);
482 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800483 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800484 int nid = z->zone_pgdat->node_id;
485 int zid = zone_idx(z);
486 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800487
Balbir Singhcf475ad2008-04-29 01:00:16 -0700488 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800489 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Balbir Singh66e17072008-02-07 00:13:56 -0800490 if (active)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800491 src = &mz->active_list;
Balbir Singh66e17072008-02-07 00:13:56 -0800492 else
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800493 src = &mz->inactive_list;
494
Balbir Singh66e17072008-02-07 00:13:56 -0800495
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800496 spin_lock(&mz->lru_lock);
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800497 scan = 0;
498 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800499 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800500 break;
Balbir Singh66e17072008-02-07 00:13:56 -0800501 page = pc->page;
Balbir Singh66e17072008-02-07 00:13:56 -0800502
Hugh Dickins436c65412008-02-07 00:14:12 -0800503 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800504 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800505
Balbir Singh66e17072008-02-07 00:13:56 -0800506 if (PageActive(page) && !active) {
507 __mem_cgroup_move_lists(pc, true);
Balbir Singh66e17072008-02-07 00:13:56 -0800508 continue;
509 }
510 if (!PageActive(page) && active) {
511 __mem_cgroup_move_lists(pc, false);
Balbir Singh66e17072008-02-07 00:13:56 -0800512 continue;
513 }
514
Hugh Dickins436c65412008-02-07 00:14:12 -0800515 scan++;
516 list_move(&pc->lru, &pc_list);
Balbir Singh66e17072008-02-07 00:13:56 -0800517
518 if (__isolate_lru_page(page, mode) == 0) {
519 list_move(&page->lru, dst);
520 nr_taken++;
521 }
522 }
523
524 list_splice(&pc_list, src);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800525 spin_unlock(&mz->lru_lock);
Balbir Singh66e17072008-02-07 00:13:56 -0800526
527 *scanned = scan;
528 return nr_taken;
529}
530
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800531/*
532 * Charge the memory controller for page usage.
533 * Return
534 * 0 if the charge was successful
535 * < 0 if the cgroup is over its limit
536 */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800537static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700538 gfp_t gfp_mask, enum charge_type ctype,
539 struct mem_cgroup *memcg)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800540{
541 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800542 struct page_cgroup *pc;
Balbir Singh66e17072008-02-07 00:13:56 -0800543 unsigned long flags;
544 unsigned long nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800545 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800546
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700547 pc = kmem_cache_alloc(page_cgroup_cache, gfp_mask);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700548 if (unlikely(pc == NULL))
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800549 goto err;
550
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800551 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800552 * We always charge the cgroup the mm_struct belongs to.
553 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800554 * thread group leader migrates. It's possible that mm is not
555 * set, if so charge the init_mm (happens for pagecache usage).
556 */
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700557 if (likely(!memcg)) {
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700558 rcu_read_lock();
559 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
Balbir Singh31a78f22008-09-28 23:09:31 +0100560 if (unlikely(!mem)) {
561 rcu_read_unlock();
562 kmem_cache_free(page_cgroup_cache, pc);
563 return 0;
564 }
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700565 /*
566 * For every charge from the cgroup, increment reference count
567 */
568 css_get(&mem->css);
569 rcu_read_unlock();
570 } else {
571 mem = memcg;
572 css_get(&memcg->css);
573 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800574
Balbir Singh0eea1032008-02-07 00:13:57 -0800575 while (res_counter_charge(&mem->res, PAGE_SIZE)) {
Hugh Dickins3be91272008-02-07 00:14:19 -0800576 if (!(gfp_mask & __GFP_WAIT))
577 goto out;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800578
579 if (try_to_free_mem_cgroup_pages(mem, gfp_mask))
Balbir Singh66e17072008-02-07 00:13:56 -0800580 continue;
581
582 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800583 * try_to_free_mem_cgroup_pages() might not give us a full
584 * picture of reclaim. Some pages are reclaimed and might be
585 * moved to swap cache or just unmapped from the cgroup.
586 * Check the limit again to see if the reclaim reduced the
587 * current usage of the cgroup before giving up
588 */
Balbir Singh66e17072008-02-07 00:13:56 -0800589 if (res_counter_check_under_limit(&mem->res))
590 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800591
592 if (!nr_retries--) {
593 mem_cgroup_out_of_memory(mem, gfp_mask);
594 goto out;
Balbir Singh66e17072008-02-07 00:13:56 -0800595 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800596 }
597
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800598 pc->mem_cgroup = mem;
599 pc->page = page;
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700600 /*
601 * If a page is accounted as a page cache, insert to inactive list.
602 * If anon, insert to active list.
603 */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800604 if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE)
Balbir Singh4a56d022008-04-29 01:00:23 -0700605 pc->flags = PAGE_CGROUP_FLAG_CACHE;
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700606 else
607 pc->flags = PAGE_CGROUP_FLAG_ACTIVE;
Hugh Dickins3be91272008-02-07 00:14:19 -0800608
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800609 lock_page_cgroup(page);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700610 if (unlikely(page_get_page_cgroup(page))) {
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800611 unlock_page_cgroup(page);
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800612 res_counter_uncharge(&mem->res, PAGE_SIZE);
613 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700614 kmem_cache_free(page_cgroup_cache, pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -0700615 goto done;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800616 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800617 page_assign_page_cgroup(page, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800618
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800619 mz = page_cgroup_zoneinfo(pc);
620 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700621 __mem_cgroup_add_list(mz, pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800622 spin_unlock_irqrestore(&mz->lru_lock, flags);
Balbir Singh66e17072008-02-07 00:13:56 -0800623
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800624 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800625done:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800626 return 0;
Hugh Dickins3be91272008-02-07 00:14:19 -0800627out:
628 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700629 kmem_cache_free(page_cgroup_cache, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800630err:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800631 return -ENOMEM;
632}
633
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800634int mem_cgroup_charge(struct page *page, struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800635{
Li Zefancede86a2008-07-25 01:47:18 -0700636 if (mem_cgroup_subsys.disabled)
637 return 0;
638
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700639 /*
640 * If already mapped, we don't have to account.
641 * If page cache, page->mapping has address_space.
642 * But page->mapping may have out-of-use anon_vma pointer,
643 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
644 * is NULL.
645 */
646 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
647 return 0;
648 if (unlikely(!mm))
649 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800650 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700651 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800652}
653
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800654int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
655 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -0800656{
Li Zefancede86a2008-07-25 01:47:18 -0700657 if (mem_cgroup_subsys.disabled)
658 return 0;
659
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -0700660 /*
661 * Corner case handling. This is called from add_to_page_cache()
662 * in usual. But some FS (shmem) precharges this page before calling it
663 * and call add_to_page_cache() with GFP_NOWAIT.
664 *
665 * For GFP_NOWAIT case, the page may be pre-charged before calling
666 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
667 * charge twice. (It works but has to pay a bit larger cost.)
668 */
669 if (!(gfp_mask & __GFP_WAIT)) {
670 struct page_cgroup *pc;
671
672 lock_page_cgroup(page);
673 pc = page_get_page_cgroup(page);
674 if (pc) {
675 VM_BUG_ON(pc->page != page);
676 VM_BUG_ON(!pc->mem_cgroup);
677 unlock_page_cgroup(page);
678 return 0;
679 }
680 unlock_page_cgroup(page);
681 }
682
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700683 if (unlikely(!mm))
Balbir Singh8697d332008-02-07 00:13:59 -0800684 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -0700685
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800686 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700687 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
688}
689
Balbir Singh8697d332008-02-07 00:13:59 -0800690/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700691 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800692 */
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700693static void
694__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800695{
Hugh Dickins82895462008-03-04 14:29:08 -0800696 struct page_cgroup *pc;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800697 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800698 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800699 unsigned long flags;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800700
Balbir Singh40779602008-04-04 14:29:59 -0700701 if (mem_cgroup_subsys.disabled)
702 return;
703
Balbir Singh8697d332008-02-07 00:13:59 -0800704 /*
Balbir Singh3c541e12008-02-07 00:14:41 -0800705 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -0800706 */
Hugh Dickins82895462008-03-04 14:29:08 -0800707 lock_page_cgroup(page);
708 pc = page_get_page_cgroup(page);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700709 if (unlikely(!pc))
Hugh Dickins82895462008-03-04 14:29:08 -0800710 goto unlock;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800711
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800712 VM_BUG_ON(pc->page != page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800713
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700714 if ((ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
715 && ((pc->flags & PAGE_CGROUP_FLAG_CACHE)
716 || page_mapped(page)))
717 goto unlock;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800718
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700719 mz = page_cgroup_zoneinfo(pc);
720 spin_lock_irqsave(&mz->lru_lock, flags);
721 __mem_cgroup_remove_list(mz, pc);
722 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800723
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700724 page_assign_page_cgroup(page, NULL);
725 unlock_page_cgroup(page);
Hugh Dickins6d48ff82008-03-04 14:29:12 -0800726
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700727 mem = pc->mem_cgroup;
728 res_counter_uncharge(&mem->res, PAGE_SIZE);
729 css_put(&mem->css);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800730
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700731 kmem_cache_free(page_cgroup_cache, pc);
732 return;
Hugh Dickins82895462008-03-04 14:29:08 -0800733unlock:
Balbir Singh3c541e12008-02-07 00:14:41 -0800734 unlock_page_cgroup(page);
735}
736
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700737void mem_cgroup_uncharge_page(struct page *page)
738{
739 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
740}
741
742void mem_cgroup_uncharge_cache_page(struct page *page)
743{
744 VM_BUG_ON(page_mapped(page));
745 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
746}
747
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800748/*
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700749 * Before starting migration, account against new page.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800750 */
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700751int mem_cgroup_prepare_migration(struct page *page, struct page *newpage)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800752{
753 struct page_cgroup *pc;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700754 struct mem_cgroup *mem = NULL;
755 enum charge_type ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
756 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800757
Balbir Singh40779602008-04-04 14:29:59 -0700758 if (mem_cgroup_subsys.disabled)
759 return 0;
760
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800761 lock_page_cgroup(page);
762 pc = page_get_page_cgroup(page);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700763 if (pc) {
764 mem = pc->mem_cgroup;
765 css_get(&mem->css);
766 if (pc->flags & PAGE_CGROUP_FLAG_CACHE)
767 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800768 }
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800769 unlock_page_cgroup(page);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700770 if (mem) {
771 ret = mem_cgroup_charge_common(newpage, NULL, GFP_KERNEL,
772 ctype, mem);
773 css_put(&mem->css);
774 }
775 return ret;
776}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800777
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700778/* remove redundant charge if migration failed*/
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700779void mem_cgroup_end_migration(struct page *newpage)
780{
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700781 /*
782 * At success, page->mapping is not NULL.
783 * special rollback care is necessary when
784 * 1. at migration failure. (newpage->mapping is cleared in this case)
785 * 2. the newpage was moved but not remapped again because the task
786 * exits and the newpage is obsolete. In this case, the new page
787 * may be a swapcache. So, we just call mem_cgroup_uncharge_page()
788 * always for avoiding mess. The page_cgroup will be removed if
789 * unnecessary. File cache pages is still on radix-tree. Don't
790 * care it.
791 */
792 if (!newpage->mapping)
793 __mem_cgroup_uncharge_common(newpage,
794 MEM_CGROUP_CHARGE_TYPE_FORCE);
795 else if (PageAnon(newpage))
796 mem_cgroup_uncharge_page(newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800797}
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800798
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800799/*
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700800 * A call to try to shrink memory usage under specified resource controller.
801 * This is typically used for page reclaiming for shmem for reducing side
802 * effect of page allocation from shmem, which is used by some mem_cgroup.
803 */
804int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask)
805{
806 struct mem_cgroup *mem;
807 int progress = 0;
808 int retry = MEM_CGROUP_RECLAIM_RETRIES;
809
Li Zefancede86a2008-07-25 01:47:18 -0700810 if (mem_cgroup_subsys.disabled)
811 return 0;
Hugh Dickins9623e072008-08-12 15:08:41 -0700812 if (!mm)
813 return 0;
Li Zefancede86a2008-07-25 01:47:18 -0700814
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700815 rcu_read_lock();
816 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
Balbir Singh31a78f22008-09-28 23:09:31 +0100817 if (unlikely(!mem)) {
818 rcu_read_unlock();
819 return 0;
820 }
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700821 css_get(&mem->css);
822 rcu_read_unlock();
823
824 do {
825 progress = try_to_free_mem_cgroup_pages(mem, gfp_mask);
Daisuke Nishimuraa10cebf2008-09-22 13:57:52 -0700826 progress += res_counter_check_under_limit(&mem->res);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700827 } while (!progress && --retry);
828
829 css_put(&mem->css);
830 if (!retry)
831 return -ENOMEM;
832 return 0;
833}
834
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -0700835int mem_cgroup_resize_limit(struct mem_cgroup *memcg, unsigned long long val)
836{
837
838 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
839 int progress;
840 int ret = 0;
841
842 while (res_counter_set_limit(&memcg->res, val)) {
843 if (signal_pending(current)) {
844 ret = -EINTR;
845 break;
846 }
847 if (!retry_count) {
848 ret = -EBUSY;
849 break;
850 }
851 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL);
852 if (!progress)
853 retry_count--;
854 }
855 return ret;
856}
857
858
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700859/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800860 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800861 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
862 */
863#define FORCE_UNCHARGE_BATCH (128)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800864static void mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800865 struct mem_cgroup_per_zone *mz,
866 int active)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800867{
868 struct page_cgroup *pc;
869 struct page *page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800870 int count = FORCE_UNCHARGE_BATCH;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800871 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800872 struct list_head *list;
873
874 if (active)
875 list = &mz->active_list;
876 else
877 list = &mz->inactive_list;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800878
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800879 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800880 while (!list_empty(list)) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800881 pc = list_entry(list->prev, struct page_cgroup, lru);
882 page = pc->page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800883 get_page(page);
884 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700885 /*
886 * Check if this page is on LRU. !LRU page can be found
887 * if it's under page migration.
888 */
889 if (PageLRU(page)) {
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700890 __mem_cgroup_uncharge_common(page,
891 MEM_CGROUP_CHARGE_TYPE_FORCE);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700892 put_page(page);
893 if (--count <= 0) {
894 count = FORCE_UNCHARGE_BATCH;
895 cond_resched();
896 }
897 } else
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800898 cond_resched();
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800899 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800900 }
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800901 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800902}
903
904/*
905 * make mem_cgroup's charge to be 0 if there is no task.
906 * This enables deleting this mem_cgroup.
907 */
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800908static int mem_cgroup_force_empty(struct mem_cgroup *mem)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800909{
910 int ret = -EBUSY;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800911 int node, zid;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800912
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800913 css_get(&mem->css);
914 /*
915 * page reclaim code (kswapd etc..) will move pages between
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800916 * active_list <-> inactive_list while we don't take a lock.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800917 * So, we have to do loop here until all lists are empty.
918 */
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800919 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800920 if (atomic_read(&mem->css.cgroup->count) > 0)
921 goto out;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800922 for_each_node_state(node, N_POSSIBLE)
923 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
924 struct mem_cgroup_per_zone *mz;
925 mz = mem_cgroup_zoneinfo(mem, node, zid);
926 /* drop all page_cgroup in active_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800927 mem_cgroup_force_empty_list(mem, mz, 1);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800928 /* drop all page_cgroup in inactive_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800929 mem_cgroup_force_empty_list(mem, mz, 0);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800930 }
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800931 }
932 ret = 0;
933out:
934 css_put(&mem->css);
935 return ret;
936}
937
Paul Menage2c3daa72008-04-29 00:59:58 -0700938static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800939{
Paul Menage2c3daa72008-04-29 00:59:58 -0700940 return res_counter_read_u64(&mem_cgroup_from_cont(cont)->res,
941 cft->private);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800942}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -0700943/*
944 * The user of this function is...
945 * RES_LIMIT.
946 */
Paul Menage856c13a2008-07-25 01:47:04 -0700947static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
948 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800949{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -0700950 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
951 unsigned long long val;
952 int ret;
953
954 switch (cft->private) {
955 case RES_LIMIT:
956 /* This function does all necessary parse...reuse it */
957 ret = res_counter_memparse_write_strategy(buffer, &val);
958 if (!ret)
959 ret = mem_cgroup_resize_limit(memcg, val);
960 break;
961 default:
962 ret = -EINVAL; /* should be BUG() ? */
963 break;
964 }
965 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800966}
967
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700968static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700969{
970 struct mem_cgroup *mem;
971
972 mem = mem_cgroup_from_cont(cont);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700973 switch (event) {
974 case RES_MAX_USAGE:
975 res_counter_reset_max(&mem->res);
976 break;
977 case RES_FAILCNT:
978 res_counter_reset_failcnt(&mem->res);
979 break;
980 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700981 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700982}
983
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700984static int mem_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800985{
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700986 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800987}
988
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800989static const struct mem_cgroup_stat_desc {
990 const char *msg;
991 u64 unit;
992} mem_cgroup_stat_desc[] = {
993 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
994 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
Balaji Rao55e462b2008-05-01 04:35:12 -0700995 [MEM_CGROUP_STAT_PGPGIN_COUNT] = {"pgpgin", 1, },
996 [MEM_CGROUP_STAT_PGPGOUT_COUNT] = {"pgpgout", 1, },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800997};
998
Paul Menagec64745c2008-04-29 01:00:02 -0700999static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
1000 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001001{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001002 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
1003 struct mem_cgroup_stat *stat = &mem_cont->stat;
1004 int i;
1005
1006 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
1007 s64 val;
1008
1009 val = mem_cgroup_read_stat(stat, i);
1010 val *= mem_cgroup_stat_desc[i].unit;
Paul Menagec64745c2008-04-29 01:00:02 -07001011 cb->fill(cb, mem_cgroup_stat_desc[i].msg, val);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001012 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001013 /* showing # of active pages */
1014 {
1015 unsigned long active, inactive;
1016
1017 inactive = mem_cgroup_get_all_zonestat(mem_cont,
1018 MEM_CGROUP_ZSTAT_INACTIVE);
1019 active = mem_cgroup_get_all_zonestat(mem_cont,
1020 MEM_CGROUP_ZSTAT_ACTIVE);
Paul Menagec64745c2008-04-29 01:00:02 -07001021 cb->fill(cb, "active", (active) * PAGE_SIZE);
1022 cb->fill(cb, "inactive", (inactive) * PAGE_SIZE);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001023 }
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001024 return 0;
1025}
1026
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001027static struct cftype mem_cgroup_files[] = {
1028 {
Balbir Singh0eea1032008-02-07 00:13:57 -08001029 .name = "usage_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001030 .private = RES_USAGE,
Paul Menage2c3daa72008-04-29 00:59:58 -07001031 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001032 },
1033 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001034 .name = "max_usage_in_bytes",
1035 .private = RES_MAX_USAGE,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001036 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001037 .read_u64 = mem_cgroup_read,
1038 },
1039 {
Balbir Singh0eea1032008-02-07 00:13:57 -08001040 .name = "limit_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001041 .private = RES_LIMIT,
Paul Menage856c13a2008-07-25 01:47:04 -07001042 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07001043 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001044 },
1045 {
1046 .name = "failcnt",
1047 .private = RES_FAILCNT,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001048 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07001049 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001050 },
Balbir Singh8697d332008-02-07 00:13:59 -08001051 {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001052 .name = "force_empty",
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07001053 .trigger = mem_force_empty_write,
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001054 },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001055 {
1056 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07001057 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001058 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001059};
1060
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001061static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
1062{
1063 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001064 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07001065 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001066 /*
1067 * This routine is called against possible nodes.
1068 * But it's BUG to call kmalloc() against offline node.
1069 *
1070 * TODO: this routine can waste much memory for nodes which will
1071 * never be onlined. It's better to use memory hotplug callback
1072 * function.
1073 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07001074 if (!node_state(node, N_NORMAL_MEMORY))
1075 tmp = -1;
1076 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001077 if (!pn)
1078 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001079
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001080 mem->info.nodeinfo[node] = pn;
1081 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001082
1083 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
1084 mz = &pn->zoneinfo[zone];
1085 INIT_LIST_HEAD(&mz->active_list);
1086 INIT_LIST_HEAD(&mz->inactive_list);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001087 spin_lock_init(&mz->lru_lock);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001088 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001089 return 0;
1090}
1091
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001092static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
1093{
1094 kfree(mem->info.nodeinfo[node]);
1095}
1096
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001097static struct mem_cgroup *mem_cgroup_alloc(void)
1098{
1099 struct mem_cgroup *mem;
1100
1101 if (sizeof(*mem) < PAGE_SIZE)
1102 mem = kmalloc(sizeof(*mem), GFP_KERNEL);
1103 else
1104 mem = vmalloc(sizeof(*mem));
1105
1106 if (mem)
1107 memset(mem, 0, sizeof(*mem));
1108 return mem;
1109}
1110
1111static void mem_cgroup_free(struct mem_cgroup *mem)
1112{
1113 if (sizeof(*mem) < PAGE_SIZE)
1114 kfree(mem);
1115 else
1116 vfree(mem);
1117}
1118
1119
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001120static struct cgroup_subsys_state *
1121mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
1122{
1123 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001124 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001125
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001126 if (unlikely((cont->parent) == NULL)) {
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001127 mem = &init_mem_cgroup;
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001128 page_cgroup_cache = KMEM_CACHE(page_cgroup, SLAB_PANIC);
1129 } else {
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001130 mem = mem_cgroup_alloc();
1131 if (!mem)
1132 return ERR_PTR(-ENOMEM);
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001133 }
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001134
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001135 res_counter_init(&mem->res);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001136
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001137 for_each_node_state(node, N_POSSIBLE)
1138 if (alloc_mem_cgroup_per_zone_info(mem, node))
1139 goto free_out;
1140
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001141 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001142free_out:
1143 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001144 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001145 if (cont->parent != NULL)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001146 mem_cgroup_free(mem);
Li Zefan2dda81c2008-02-23 15:24:14 -08001147 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001148}
1149
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001150static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
1151 struct cgroup *cont)
1152{
1153 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1154 mem_cgroup_force_empty(mem);
1155}
1156
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001157static void mem_cgroup_destroy(struct cgroup_subsys *ss,
1158 struct cgroup *cont)
1159{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001160 int node;
1161 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1162
1163 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001164 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001165
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001166 mem_cgroup_free(mem_cgroup_from_cont(cont));
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001167}
1168
1169static int mem_cgroup_populate(struct cgroup_subsys *ss,
1170 struct cgroup *cont)
1171{
1172 return cgroup_add_files(cont, ss, mem_cgroup_files,
1173 ARRAY_SIZE(mem_cgroup_files));
1174}
1175
Balbir Singh67e465a2008-02-07 00:13:54 -08001176static void mem_cgroup_move_task(struct cgroup_subsys *ss,
1177 struct cgroup *cont,
1178 struct cgroup *old_cont,
1179 struct task_struct *p)
1180{
1181 struct mm_struct *mm;
1182 struct mem_cgroup *mem, *old_mem;
1183
1184 mm = get_task_mm(p);
1185 if (mm == NULL)
1186 return;
1187
1188 mem = mem_cgroup_from_cont(cont);
1189 old_mem = mem_cgroup_from_cont(old_cont);
1190
Balbir Singh67e465a2008-02-07 00:13:54 -08001191 /*
1192 * Only thread group leaders are allowed to migrate, the mm_struct is
1193 * in effect owned by the leader
1194 */
Pavel Emelyanov52ea27e2008-03-19 17:00:45 -07001195 if (!thread_group_leader(p))
Balbir Singh67e465a2008-02-07 00:13:54 -08001196 goto out;
1197
Balbir Singh67e465a2008-02-07 00:13:54 -08001198out:
1199 mmput(mm);
Balbir Singh67e465a2008-02-07 00:13:54 -08001200}
1201
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001202struct cgroup_subsys mem_cgroup_subsys = {
1203 .name = "memory",
1204 .subsys_id = mem_cgroup_subsys_id,
1205 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001206 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001207 .destroy = mem_cgroup_destroy,
1208 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08001209 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001210 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001211};