blob: 04ded27f62266d4d2a690fb56cef37e431979a1b [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{
253 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
254 struct mem_cgroup, css);
255}
256
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800257static inline int page_cgroup_locked(struct page *page)
258{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800259 return bit_spin_is_locked(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800260}
261
Hugh Dickins9442ec92008-03-04 14:29:07 -0800262static void page_assign_page_cgroup(struct page *page, struct page_cgroup *pc)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800263{
Hugh Dickins9442ec92008-03-04 14:29:07 -0800264 VM_BUG_ON(!page_cgroup_locked(page));
265 page->page_cgroup = ((unsigned long)pc | PAGE_CGROUP_LOCK);
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800266}
267
268struct page_cgroup *page_get_page_cgroup(struct page *page)
269{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800270 return (struct page_cgroup *) (page->page_cgroup & ~PAGE_CGROUP_LOCK);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800271}
272
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800273static void lock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800274{
275 bit_spin_lock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800276}
277
Hugh Dickins2680eed2008-03-04 14:29:13 -0800278static int try_lock_page_cgroup(struct page *page)
279{
280 return bit_spin_trylock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
281}
282
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800283static void unlock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800284{
285 bit_spin_unlock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
286}
287
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700288static void __mem_cgroup_remove_list(struct mem_cgroup_per_zone *mz,
289 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800290{
291 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800292
293 if (from)
294 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
295 else
296 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
297
298 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, false);
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700299 list_del(&pc->lru);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800300}
301
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700302static void __mem_cgroup_add_list(struct mem_cgroup_per_zone *mz,
303 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800304{
305 int to = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800306
307 if (!to) {
308 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800309 list_add(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800310 } else {
311 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800312 list_add(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800313 }
314 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, true);
315}
316
Balbir Singh8697d332008-02-07 00:13:59 -0800317static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800318{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800319 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
320 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
321
322 if (from)
323 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
324 else
325 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
326
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800327 if (active) {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800328 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800329 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800330 list_move(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800331 } else {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800332 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800333 pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800334 list_move(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800335 }
Balbir Singh66e17072008-02-07 00:13:56 -0800336}
337
David Rientjes4c4a2212008-02-07 00:14:06 -0800338int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
339{
340 int ret;
341
342 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800343 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800344 task_unlock(task);
345 return ret;
346}
347
Balbir Singh66e17072008-02-07 00:13:56 -0800348/*
349 * This routine assumes that the appropriate zone's lru lock is already held
350 */
Hugh Dickins427d5412008-03-04 14:29:03 -0800351void mem_cgroup_move_lists(struct page *page, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800352{
Hugh Dickins427d5412008-03-04 14:29:03 -0800353 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800354 struct mem_cgroup_per_zone *mz;
355 unsigned long flags;
356
Hugh Dickins2680eed2008-03-04 14:29:13 -0800357 /*
358 * We cannot lock_page_cgroup while holding zone's lru_lock,
359 * because other holders of lock_page_cgroup can be interrupted
360 * with an attempt to rotate_reclaimable_page. But we cannot
361 * safely get to page_cgroup without it, so just try_lock it:
362 * mem_cgroup_isolate_pages allows for page left on wrong list.
363 */
364 if (!try_lock_page_cgroup(page))
Balbir Singh66e17072008-02-07 00:13:56 -0800365 return;
366
Hugh Dickins2680eed2008-03-04 14:29:13 -0800367 pc = page_get_page_cgroup(page);
368 if (pc) {
Hugh Dickins2680eed2008-03-04 14:29:13 -0800369 mz = page_cgroup_zoneinfo(pc);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800370 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800371 __mem_cgroup_move_lists(pc, active);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800372 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800373 }
374 unlock_page_cgroup(page);
Balbir Singh66e17072008-02-07 00:13:56 -0800375}
376
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800377/*
378 * Calculate mapped_ratio under memory controller. This will be used in
379 * vmscan.c for deteremining we have to reclaim mapped pages.
380 */
381int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
382{
383 long total, rss;
384
385 /*
386 * usage is recorded in bytes. But, here, we assume the number of
387 * physical pages can be represented by "long" on any arch.
388 */
389 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
390 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
391 return (int)((rss * 100L) / total);
392}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800393
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800394/*
395 * This function is called from vmscan.c. In page reclaiming loop. balance
396 * between active and inactive list is calculated. For memory controller
397 * page reclaiming, we should use using mem_cgroup's imbalance rather than
398 * zone's global lru imbalance.
399 */
400long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem)
401{
402 unsigned long active, inactive;
403 /* active and inactive are the number of pages. 'long' is ok.*/
404 active = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_ACTIVE);
405 inactive = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_INACTIVE);
406 return (long) (active / (inactive + 1));
407}
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800408
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800409/*
410 * prev_priority control...this will be used in memory reclaim path.
411 */
412int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
413{
414 return mem->prev_priority;
415}
416
417void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
418{
419 if (priority < mem->prev_priority)
420 mem->prev_priority = priority;
421}
422
423void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
424{
425 mem->prev_priority = priority;
426}
427
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800428/*
429 * Calculate # of pages to be scanned in this priority/zone.
430 * See also vmscan.c
431 *
432 * priority starts from "DEF_PRIORITY" and decremented in each loop.
433 * (see include/linux/mmzone.h)
434 */
435
436long mem_cgroup_calc_reclaim_active(struct mem_cgroup *mem,
437 struct zone *zone, int priority)
438{
439 long nr_active;
440 int nid = zone->zone_pgdat->node_id;
441 int zid = zone_idx(zone);
442 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
443
444 nr_active = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE);
445 return (nr_active >> priority);
446}
447
448long mem_cgroup_calc_reclaim_inactive(struct mem_cgroup *mem,
449 struct zone *zone, int priority)
450{
451 long nr_inactive;
452 int nid = zone->zone_pgdat->node_id;
453 int zid = zone_idx(zone);
454 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
455
456 nr_inactive = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE);
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800457 return (nr_inactive >> priority);
458}
459
Balbir Singh66e17072008-02-07 00:13:56 -0800460unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
461 struct list_head *dst,
462 unsigned long *scanned, int order,
463 int mode, struct zone *z,
464 struct mem_cgroup *mem_cont,
465 int active)
466{
467 unsigned long nr_taken = 0;
468 struct page *page;
469 unsigned long scan;
470 LIST_HEAD(pc_list);
471 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800472 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800473 int nid = z->zone_pgdat->node_id;
474 int zid = zone_idx(z);
475 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800476
Balbir Singhcf475ad2008-04-29 01:00:16 -0700477 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800478 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Balbir Singh66e17072008-02-07 00:13:56 -0800479 if (active)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800480 src = &mz->active_list;
Balbir Singh66e17072008-02-07 00:13:56 -0800481 else
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800482 src = &mz->inactive_list;
483
Balbir Singh66e17072008-02-07 00:13:56 -0800484
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800485 spin_lock(&mz->lru_lock);
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800486 scan = 0;
487 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800488 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800489 break;
Balbir Singh66e17072008-02-07 00:13:56 -0800490 page = pc->page;
Balbir Singh66e17072008-02-07 00:13:56 -0800491
Hugh Dickins436c65412008-02-07 00:14:12 -0800492 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800493 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800494
Balbir Singh66e17072008-02-07 00:13:56 -0800495 if (PageActive(page) && !active) {
496 __mem_cgroup_move_lists(pc, true);
Balbir Singh66e17072008-02-07 00:13:56 -0800497 continue;
498 }
499 if (!PageActive(page) && active) {
500 __mem_cgroup_move_lists(pc, false);
Balbir Singh66e17072008-02-07 00:13:56 -0800501 continue;
502 }
503
Hugh Dickins436c65412008-02-07 00:14:12 -0800504 scan++;
505 list_move(&pc->lru, &pc_list);
Balbir Singh66e17072008-02-07 00:13:56 -0800506
507 if (__isolate_lru_page(page, mode) == 0) {
508 list_move(&page->lru, dst);
509 nr_taken++;
510 }
511 }
512
513 list_splice(&pc_list, src);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800514 spin_unlock(&mz->lru_lock);
Balbir Singh66e17072008-02-07 00:13:56 -0800515
516 *scanned = scan;
517 return nr_taken;
518}
519
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800520/*
521 * Charge the memory controller for page usage.
522 * Return
523 * 0 if the charge was successful
524 * < 0 if the cgroup is over its limit
525 */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800526static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700527 gfp_t gfp_mask, enum charge_type ctype,
528 struct mem_cgroup *memcg)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800529{
530 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800531 struct page_cgroup *pc;
Balbir Singh66e17072008-02-07 00:13:56 -0800532 unsigned long flags;
533 unsigned long nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800534 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800535
Balbir Singh40779602008-04-04 14:29:59 -0700536 if (mem_cgroup_subsys.disabled)
537 return 0;
538
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800539 /*
540 * Should page_cgroup's go to their own slab?
541 * One could optimize the performance of the charging routine
542 * by saving a bit in the page_flags and using it as a lock
543 * to see if the cgroup page already has a page_cgroup associated
544 * with it
545 */
Balbir Singh66e17072008-02-07 00:13:56 -0800546retry:
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800547 lock_page_cgroup(page);
548 pc = page_get_page_cgroup(page);
549 /*
550 * The page_cgroup exists and
551 * the page has already been accounted.
552 */
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700553 if (unlikely(pc)) {
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800554 VM_BUG_ON(pc->page != page);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700555 VM_BUG_ON(!pc->mem_cgroup);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800556 unlock_page_cgroup(page);
557 goto done;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800558 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800559 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800560
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700561 pc = kmem_cache_alloc(page_cgroup_cache, gfp_mask);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700562 if (unlikely(pc == NULL))
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800563 goto err;
564
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800565 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800566 * We always charge the cgroup the mm_struct belongs to.
567 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800568 * thread group leader migrates. It's possible that mm is not
569 * set, if so charge the init_mm (happens for pagecache usage).
570 */
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700571 if (likely(!memcg)) {
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700572 rcu_read_lock();
573 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
574 /*
575 * For every charge from the cgroup, increment reference count
576 */
577 css_get(&mem->css);
578 rcu_read_unlock();
579 } else {
580 mem = memcg;
581 css_get(&memcg->css);
582 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800583
Balbir Singh0eea1032008-02-07 00:13:57 -0800584 while (res_counter_charge(&mem->res, PAGE_SIZE)) {
Hugh Dickins3be91272008-02-07 00:14:19 -0800585 if (!(gfp_mask & __GFP_WAIT))
586 goto out;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800587
588 if (try_to_free_mem_cgroup_pages(mem, gfp_mask))
Balbir Singh66e17072008-02-07 00:13:56 -0800589 continue;
590
591 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800592 * try_to_free_mem_cgroup_pages() might not give us a full
593 * picture of reclaim. Some pages are reclaimed and might be
594 * moved to swap cache or just unmapped from the cgroup.
595 * Check the limit again to see if the reclaim reduced the
596 * current usage of the cgroup before giving up
597 */
Balbir Singh66e17072008-02-07 00:13:56 -0800598 if (res_counter_check_under_limit(&mem->res))
599 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800600
601 if (!nr_retries--) {
602 mem_cgroup_out_of_memory(mem, gfp_mask);
603 goto out;
Balbir Singh66e17072008-02-07 00:13:56 -0800604 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800605 }
606
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800607 pc->mem_cgroup = mem;
608 pc->page = page;
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700609 /*
610 * If a page is accounted as a page cache, insert to inactive list.
611 * If anon, insert to active list.
612 */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800613 if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE)
Balbir Singh4a56d022008-04-29 01:00:23 -0700614 pc->flags = PAGE_CGROUP_FLAG_CACHE;
KAMEZAWA Hiroyuki508b7be2008-07-25 01:47:09 -0700615 else
616 pc->flags = PAGE_CGROUP_FLAG_ACTIVE;
Hugh Dickins3be91272008-02-07 00:14:19 -0800617
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800618 lock_page_cgroup(page);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700619 if (unlikely(page_get_page_cgroup(page))) {
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800620 unlock_page_cgroup(page);
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800621 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800622 * Another charge has been added to this page already.
623 * We take lock_page_cgroup(page) again and read
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800624 * page->cgroup, increment refcnt.... just retry is OK.
625 */
626 res_counter_uncharge(&mem->res, PAGE_SIZE);
627 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700628 kmem_cache_free(page_cgroup_cache, pc);
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800629 goto retry;
630 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800631 page_assign_page_cgroup(page, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800632
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800633 mz = page_cgroup_zoneinfo(pc);
634 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700635 __mem_cgroup_add_list(mz, pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800636 spin_unlock_irqrestore(&mz->lru_lock, flags);
Balbir Singh66e17072008-02-07 00:13:56 -0800637
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800638 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800639done:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800640 return 0;
Hugh Dickins3be91272008-02-07 00:14:19 -0800641out:
642 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700643 kmem_cache_free(page_cgroup_cache, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800644err:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800645 return -ENOMEM;
646}
647
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800648int mem_cgroup_charge(struct page *page, struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800649{
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700650 /*
651 * If already mapped, we don't have to account.
652 * If page cache, page->mapping has address_space.
653 * But page->mapping may have out-of-use anon_vma pointer,
654 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
655 * is NULL.
656 */
657 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
658 return 0;
659 if (unlikely(!mm))
660 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800661 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700662 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800663}
664
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800665int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
666 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -0800667{
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700668 if (unlikely(!mm))
Balbir Singh8697d332008-02-07 00:13:59 -0800669 mm = &init_mm;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800670 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700671 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
672}
673
Balbir Singh8697d332008-02-07 00:13:59 -0800674/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700675 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800676 */
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700677static void
678__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800679{
Hugh Dickins82895462008-03-04 14:29:08 -0800680 struct page_cgroup *pc;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800681 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800682 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800683 unsigned long flags;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800684
Balbir Singh40779602008-04-04 14:29:59 -0700685 if (mem_cgroup_subsys.disabled)
686 return;
687
Balbir Singh8697d332008-02-07 00:13:59 -0800688 /*
Balbir Singh3c541e12008-02-07 00:14:41 -0800689 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -0800690 */
Hugh Dickins82895462008-03-04 14:29:08 -0800691 lock_page_cgroup(page);
692 pc = page_get_page_cgroup(page);
KAMEZAWA Hiroyukib76734e2008-07-25 01:47:16 -0700693 if (unlikely(!pc))
Hugh Dickins82895462008-03-04 14:29:08 -0800694 goto unlock;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800695
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800696 VM_BUG_ON(pc->page != page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800697
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700698 if ((ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
699 && ((pc->flags & PAGE_CGROUP_FLAG_CACHE)
700 || page_mapped(page)))
701 goto unlock;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800702
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700703 mz = page_cgroup_zoneinfo(pc);
704 spin_lock_irqsave(&mz->lru_lock, flags);
705 __mem_cgroup_remove_list(mz, pc);
706 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800707
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700708 page_assign_page_cgroup(page, NULL);
709 unlock_page_cgroup(page);
Hugh Dickins6d48ff82008-03-04 14:29:12 -0800710
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700711 mem = pc->mem_cgroup;
712 res_counter_uncharge(&mem->res, PAGE_SIZE);
713 css_put(&mem->css);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800714
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700715 kmem_cache_free(page_cgroup_cache, pc);
716 return;
Hugh Dickins82895462008-03-04 14:29:08 -0800717unlock:
Balbir Singh3c541e12008-02-07 00:14:41 -0800718 unlock_page_cgroup(page);
719}
720
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700721void mem_cgroup_uncharge_page(struct page *page)
722{
723 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
724}
725
726void mem_cgroup_uncharge_cache_page(struct page *page)
727{
728 VM_BUG_ON(page_mapped(page));
729 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
730}
731
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800732/*
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700733 * Before starting migration, account against new page.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800734 */
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700735int mem_cgroup_prepare_migration(struct page *page, struct page *newpage)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800736{
737 struct page_cgroup *pc;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700738 struct mem_cgroup *mem = NULL;
739 enum charge_type ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
740 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800741
Balbir Singh40779602008-04-04 14:29:59 -0700742 if (mem_cgroup_subsys.disabled)
743 return 0;
744
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800745 lock_page_cgroup(page);
746 pc = page_get_page_cgroup(page);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700747 if (pc) {
748 mem = pc->mem_cgroup;
749 css_get(&mem->css);
750 if (pc->flags & PAGE_CGROUP_FLAG_CACHE)
751 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800752 }
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800753 unlock_page_cgroup(page);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700754 if (mem) {
755 ret = mem_cgroup_charge_common(newpage, NULL, GFP_KERNEL,
756 ctype, mem);
757 css_put(&mem->css);
758 }
759 return ret;
760}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800761
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700762/* remove redundant charge if migration failed*/
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700763void mem_cgroup_end_migration(struct page *newpage)
764{
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700765 /*
766 * At success, page->mapping is not NULL.
767 * special rollback care is necessary when
768 * 1. at migration failure. (newpage->mapping is cleared in this case)
769 * 2. the newpage was moved but not remapped again because the task
770 * exits and the newpage is obsolete. In this case, the new page
771 * may be a swapcache. So, we just call mem_cgroup_uncharge_page()
772 * always for avoiding mess. The page_cgroup will be removed if
773 * unnecessary. File cache pages is still on radix-tree. Don't
774 * care it.
775 */
776 if (!newpage->mapping)
777 __mem_cgroup_uncharge_common(newpage,
778 MEM_CGROUP_CHARGE_TYPE_FORCE);
779 else if (PageAnon(newpage))
780 mem_cgroup_uncharge_page(newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800781}
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800782
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800783/*
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -0700784 * A call to try to shrink memory usage under specified resource controller.
785 * This is typically used for page reclaiming for shmem for reducing side
786 * effect of page allocation from shmem, which is used by some mem_cgroup.
787 */
788int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask)
789{
790 struct mem_cgroup *mem;
791 int progress = 0;
792 int retry = MEM_CGROUP_RECLAIM_RETRIES;
793
794 rcu_read_lock();
795 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
796 css_get(&mem->css);
797 rcu_read_unlock();
798
799 do {
800 progress = try_to_free_mem_cgroup_pages(mem, gfp_mask);
801 } while (!progress && --retry);
802
803 css_put(&mem->css);
804 if (!retry)
805 return -ENOMEM;
806 return 0;
807}
808
809/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800810 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800811 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
812 */
813#define FORCE_UNCHARGE_BATCH (128)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800814static void mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800815 struct mem_cgroup_per_zone *mz,
816 int active)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800817{
818 struct page_cgroup *pc;
819 struct page *page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800820 int count = FORCE_UNCHARGE_BATCH;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800821 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800822 struct list_head *list;
823
824 if (active)
825 list = &mz->active_list;
826 else
827 list = &mz->inactive_list;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800828
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800829 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800830 while (!list_empty(list)) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800831 pc = list_entry(list->prev, struct page_cgroup, lru);
832 page = pc->page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800833 get_page(page);
834 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700835 /*
836 * Check if this page is on LRU. !LRU page can be found
837 * if it's under page migration.
838 */
839 if (PageLRU(page)) {
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700840 __mem_cgroup_uncharge_common(page,
841 MEM_CGROUP_CHARGE_TYPE_FORCE);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700842 put_page(page);
843 if (--count <= 0) {
844 count = FORCE_UNCHARGE_BATCH;
845 cond_resched();
846 }
847 } else
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800848 cond_resched();
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800849 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800850 }
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800851 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800852}
853
854/*
855 * make mem_cgroup's charge to be 0 if there is no task.
856 * This enables deleting this mem_cgroup.
857 */
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800858static int mem_cgroup_force_empty(struct mem_cgroup *mem)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800859{
860 int ret = -EBUSY;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800861 int node, zid;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800862
Balbir Singh40779602008-04-04 14:29:59 -0700863 if (mem_cgroup_subsys.disabled)
864 return 0;
865
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800866 css_get(&mem->css);
867 /*
868 * page reclaim code (kswapd etc..) will move pages between
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800869 * active_list <-> inactive_list while we don't take a lock.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800870 * So, we have to do loop here until all lists are empty.
871 */
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800872 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800873 if (atomic_read(&mem->css.cgroup->count) > 0)
874 goto out;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800875 for_each_node_state(node, N_POSSIBLE)
876 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
877 struct mem_cgroup_per_zone *mz;
878 mz = mem_cgroup_zoneinfo(mem, node, zid);
879 /* drop all page_cgroup in active_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800880 mem_cgroup_force_empty_list(mem, mz, 1);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800881 /* drop all page_cgroup in inactive_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800882 mem_cgroup_force_empty_list(mem, mz, 0);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800883 }
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800884 }
885 ret = 0;
886out:
887 css_put(&mem->css);
888 return ret;
889}
890
Paul Menage2c3daa72008-04-29 00:59:58 -0700891static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800892{
Paul Menage2c3daa72008-04-29 00:59:58 -0700893 return res_counter_read_u64(&mem_cgroup_from_cont(cont)->res,
894 cft->private);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800895}
896
Paul Menage856c13a2008-07-25 01:47:04 -0700897static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
898 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800899{
900 return res_counter_write(&mem_cgroup_from_cont(cont)->res,
Paul Menage856c13a2008-07-25 01:47:04 -0700901 cft->private, buffer,
902 res_counter_memparse_write_strategy);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800903}
904
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700905static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700906{
907 struct mem_cgroup *mem;
908
909 mem = mem_cgroup_from_cont(cont);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700910 switch (event) {
911 case RES_MAX_USAGE:
912 res_counter_reset_max(&mem->res);
913 break;
914 case RES_FAILCNT:
915 res_counter_reset_failcnt(&mem->res);
916 break;
917 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700918 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700919}
920
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700921static int mem_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800922{
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700923 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800924}
925
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800926static const struct mem_cgroup_stat_desc {
927 const char *msg;
928 u64 unit;
929} mem_cgroup_stat_desc[] = {
930 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
931 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
Balaji Rao55e462b2008-05-01 04:35:12 -0700932 [MEM_CGROUP_STAT_PGPGIN_COUNT] = {"pgpgin", 1, },
933 [MEM_CGROUP_STAT_PGPGOUT_COUNT] = {"pgpgout", 1, },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800934};
935
Paul Menagec64745c2008-04-29 01:00:02 -0700936static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
937 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800938{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800939 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
940 struct mem_cgroup_stat *stat = &mem_cont->stat;
941 int i;
942
943 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
944 s64 val;
945
946 val = mem_cgroup_read_stat(stat, i);
947 val *= mem_cgroup_stat_desc[i].unit;
Paul Menagec64745c2008-04-29 01:00:02 -0700948 cb->fill(cb, mem_cgroup_stat_desc[i].msg, val);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800949 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800950 /* showing # of active pages */
951 {
952 unsigned long active, inactive;
953
954 inactive = mem_cgroup_get_all_zonestat(mem_cont,
955 MEM_CGROUP_ZSTAT_INACTIVE);
956 active = mem_cgroup_get_all_zonestat(mem_cont,
957 MEM_CGROUP_ZSTAT_ACTIVE);
Paul Menagec64745c2008-04-29 01:00:02 -0700958 cb->fill(cb, "active", (active) * PAGE_SIZE);
959 cb->fill(cb, "inactive", (inactive) * PAGE_SIZE);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800960 }
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800961 return 0;
962}
963
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800964static struct cftype mem_cgroup_files[] = {
965 {
Balbir Singh0eea1032008-02-07 00:13:57 -0800966 .name = "usage_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800967 .private = RES_USAGE,
Paul Menage2c3daa72008-04-29 00:59:58 -0700968 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800969 },
970 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700971 .name = "max_usage_in_bytes",
972 .private = RES_MAX_USAGE,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700973 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700974 .read_u64 = mem_cgroup_read,
975 },
976 {
Balbir Singh0eea1032008-02-07 00:13:57 -0800977 .name = "limit_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800978 .private = RES_LIMIT,
Paul Menage856c13a2008-07-25 01:47:04 -0700979 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -0700980 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800981 },
982 {
983 .name = "failcnt",
984 .private = RES_FAILCNT,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700985 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -0700986 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800987 },
Balbir Singh8697d332008-02-07 00:13:59 -0800988 {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800989 .name = "force_empty",
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700990 .trigger = mem_force_empty_write,
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800991 },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800992 {
993 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -0700994 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800995 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800996};
997
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800998static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
999{
1000 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001001 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07001002 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001003 /*
1004 * This routine is called against possible nodes.
1005 * But it's BUG to call kmalloc() against offline node.
1006 *
1007 * TODO: this routine can waste much memory for nodes which will
1008 * never be onlined. It's better to use memory hotplug callback
1009 * function.
1010 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07001011 if (!node_state(node, N_NORMAL_MEMORY))
1012 tmp = -1;
1013 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001014 if (!pn)
1015 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001016
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001017 mem->info.nodeinfo[node] = pn;
1018 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001019
1020 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
1021 mz = &pn->zoneinfo[zone];
1022 INIT_LIST_HEAD(&mz->active_list);
1023 INIT_LIST_HEAD(&mz->inactive_list);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001024 spin_lock_init(&mz->lru_lock);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001025 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001026 return 0;
1027}
1028
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001029static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
1030{
1031 kfree(mem->info.nodeinfo[node]);
1032}
1033
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001034static struct mem_cgroup *mem_cgroup_alloc(void)
1035{
1036 struct mem_cgroup *mem;
1037
1038 if (sizeof(*mem) < PAGE_SIZE)
1039 mem = kmalloc(sizeof(*mem), GFP_KERNEL);
1040 else
1041 mem = vmalloc(sizeof(*mem));
1042
1043 if (mem)
1044 memset(mem, 0, sizeof(*mem));
1045 return mem;
1046}
1047
1048static void mem_cgroup_free(struct mem_cgroup *mem)
1049{
1050 if (sizeof(*mem) < PAGE_SIZE)
1051 kfree(mem);
1052 else
1053 vfree(mem);
1054}
1055
1056
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001057static struct cgroup_subsys_state *
1058mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
1059{
1060 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001061 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001062
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001063 if (unlikely((cont->parent) == NULL)) {
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001064 mem = &init_mem_cgroup;
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001065 page_cgroup_cache = KMEM_CACHE(page_cgroup, SLAB_PANIC);
1066 } else {
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001067 mem = mem_cgroup_alloc();
1068 if (!mem)
1069 return ERR_PTR(-ENOMEM);
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001070 }
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001071
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001072 res_counter_init(&mem->res);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001073
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001074 for_each_node_state(node, N_POSSIBLE)
1075 if (alloc_mem_cgroup_per_zone_info(mem, node))
1076 goto free_out;
1077
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001078 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001079free_out:
1080 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001081 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001082 if (cont->parent != NULL)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001083 mem_cgroup_free(mem);
Li Zefan2dda81c2008-02-23 15:24:14 -08001084 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001085}
1086
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001087static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
1088 struct cgroup *cont)
1089{
1090 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1091 mem_cgroup_force_empty(mem);
1092}
1093
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001094static void mem_cgroup_destroy(struct cgroup_subsys *ss,
1095 struct cgroup *cont)
1096{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001097 int node;
1098 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1099
1100 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001101 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001102
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001103 mem_cgroup_free(mem_cgroup_from_cont(cont));
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001104}
1105
1106static int mem_cgroup_populate(struct cgroup_subsys *ss,
1107 struct cgroup *cont)
1108{
Balbir Singh40779602008-04-04 14:29:59 -07001109 if (mem_cgroup_subsys.disabled)
1110 return 0;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001111 return cgroup_add_files(cont, ss, mem_cgroup_files,
1112 ARRAY_SIZE(mem_cgroup_files));
1113}
1114
Balbir Singh67e465a2008-02-07 00:13:54 -08001115static void mem_cgroup_move_task(struct cgroup_subsys *ss,
1116 struct cgroup *cont,
1117 struct cgroup *old_cont,
1118 struct task_struct *p)
1119{
1120 struct mm_struct *mm;
1121 struct mem_cgroup *mem, *old_mem;
1122
Balbir Singh40779602008-04-04 14:29:59 -07001123 if (mem_cgroup_subsys.disabled)
1124 return;
1125
Balbir Singh67e465a2008-02-07 00:13:54 -08001126 mm = get_task_mm(p);
1127 if (mm == NULL)
1128 return;
1129
1130 mem = mem_cgroup_from_cont(cont);
1131 old_mem = mem_cgroup_from_cont(old_cont);
1132
1133 if (mem == old_mem)
1134 goto out;
1135
1136 /*
1137 * Only thread group leaders are allowed to migrate, the mm_struct is
1138 * in effect owned by the leader
1139 */
Pavel Emelyanov52ea27e2008-03-19 17:00:45 -07001140 if (!thread_group_leader(p))
Balbir Singh67e465a2008-02-07 00:13:54 -08001141 goto out;
1142
Balbir Singh67e465a2008-02-07 00:13:54 -08001143out:
1144 mmput(mm);
Balbir Singh67e465a2008-02-07 00:13:54 -08001145}
1146
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001147struct cgroup_subsys mem_cgroup_subsys = {
1148 .name = "memory",
1149 .subsys_id = mem_cgroup_subsys_id,
1150 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001151 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001152 .destroy = mem_cgroup_destroy,
1153 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08001154 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001155 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001156};