blob: b0757660663f47e570208abd18182c44c4e47798 [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 Hiroyukid13d1442009-01-07 18:07:56 -080024#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080025#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080026#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080027#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080028#include <linux/bit_spinlock.h>
29#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070030#include <linux/limits.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080031#include <linux/mutex.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070032#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080033#include <linux/swap.h>
34#include <linux/spinlock.h>
35#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080036#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070037#include <linux/vmalloc.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070038#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070039#include <linux/page_cgroup.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080040#include "internal.h"
Balbir Singh8cdea7c2008-02-07 00:13:50 -080041
Balbir Singh8697d332008-02-07 00:13:59 -080042#include <asm/uaccess.h>
43
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070044struct cgroup_subsys mem_cgroup_subsys __read_mostly;
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070045#define MEM_CGROUP_RECLAIM_RETRIES 5
Balbir Singh4b3bde42009-09-23 15:56:32 -070046struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080047
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080048#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070049/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080050int do_swap_account __read_mostly;
51static int really_do_swap_account __initdata = 1; /* for remember boot option*/
52#else
53#define do_swap_account (0)
54#endif
55
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -080056static DEFINE_MUTEX(memcg_tasklist); /* can be hold under cgroup_mutex */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080057
Balbir Singh8cdea7c2008-02-07 00:13:50 -080058/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080059 * Statistics for memory cgroup.
60 */
61enum mem_cgroup_stat_index {
62 /*
63 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
64 */
65 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
Balbir Singhd69b0422009-06-17 16:26:34 -070066 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
67 MEM_CGROUP_STAT_MAPPED_FILE, /* # of pages charged as file rss */
Balaji Rao55e462b2008-05-01 04:35:12 -070068 MEM_CGROUP_STAT_PGPGIN_COUNT, /* # of pages paged in */
69 MEM_CGROUP_STAT_PGPGOUT_COUNT, /* # of pages paged out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080070
71 MEM_CGROUP_STAT_NSTATS,
72};
73
74struct mem_cgroup_stat_cpu {
75 s64 count[MEM_CGROUP_STAT_NSTATS];
76} ____cacheline_aligned_in_smp;
77
78struct mem_cgroup_stat {
Jan Blunckc8dad2b2009-01-07 18:07:53 -080079 struct mem_cgroup_stat_cpu cpustat[0];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080080};
81
82/*
83 * For accounting under irq disable, no need for increment preempt count.
84 */
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -070085static inline void __mem_cgroup_stat_add_safe(struct mem_cgroup_stat_cpu *stat,
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080086 enum mem_cgroup_stat_index idx, int val)
87{
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -070088 stat->count[idx] += val;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080089}
90
91static s64 mem_cgroup_read_stat(struct mem_cgroup_stat *stat,
92 enum mem_cgroup_stat_index idx)
93{
94 int cpu;
95 s64 ret = 0;
96 for_each_possible_cpu(cpu)
97 ret += stat->cpustat[cpu].count[idx];
98 return ret;
99}
100
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700101static s64 mem_cgroup_local_usage(struct mem_cgroup_stat *stat)
102{
103 s64 ret;
104
105 ret = mem_cgroup_read_stat(stat, MEM_CGROUP_STAT_CACHE);
106 ret += mem_cgroup_read_stat(stat, MEM_CGROUP_STAT_RSS);
107 return ret;
108}
109
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800110/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800111 * per-zone information in memory controller.
112 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800113struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800114 /*
115 * spin_lock to protect the per cgroup LRU
116 */
Christoph Lameterb69408e2008-10-18 20:26:14 -0700117 struct list_head lists[NR_LRU_LISTS];
118 unsigned long count[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800119
120 struct zone_reclaim_stat reclaim_stat;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800121};
122/* Macro for accessing counter */
123#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
124
125struct mem_cgroup_per_node {
126 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
127};
128
129struct mem_cgroup_lru_info {
130 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
131};
132
133/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800134 * The memory controller data structure. The memory controller controls both
135 * page cache and RSS per cgroup. We would eventually like to provide
136 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
137 * to help the administrator determine what knobs to tune.
138 *
139 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800140 * we hit the water mark. May be even add a low water mark, such that
141 * no reclaim occurs from a cgroup at it's low water mark, this is
142 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800143 */
144struct mem_cgroup {
145 struct cgroup_subsys_state css;
146 /*
147 * the counter to account for memory usage
148 */
149 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800150 /*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800151 * the counter to account for mem+swap usage.
152 */
153 struct res_counter memsw;
154 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800155 * Per cgroup active and inactive list, similar to the
156 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800157 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800158 struct mem_cgroup_lru_info info;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800159
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800160 /*
161 protect against reclaim related member.
162 */
163 spinlock_t reclaim_param_lock;
164
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800165 int prev_priority; /* for recording reclaim priority */
Balbir Singh6d61ef42009-01-07 18:08:06 -0800166
167 /*
168 * While reclaiming in a hiearchy, we cache the last child we
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700169 * reclaimed from.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800170 */
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700171 int last_scanned_child;
Balbir Singh18f59ea2009-01-07 18:08:07 -0800172 /*
173 * Should the accounting and control be hierarchical, per subtree?
174 */
175 bool use_hierarchy;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800176 unsigned long last_oom_jiffies;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800177 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800178
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800179 unsigned int swappiness;
180
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700181 /* set when res.limit == memsw.limit */
182 bool memsw_is_minimum;
183
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800184 /*
Jan Blunckc8dad2b2009-01-07 18:07:53 -0800185 * statistics. This must be placed at the end of memcg.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800186 */
187 struct mem_cgroup_stat stat;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800188};
189
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800190enum charge_type {
191 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
192 MEM_CGROUP_CHARGE_TYPE_MAPPED,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700193 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700194 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800195 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700196 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700197 NR_CHARGE_TYPE,
198};
199
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700200/* only for here (for easy reading.) */
201#define PCGF_CACHE (1UL << PCG_CACHE)
202#define PCGF_USED (1UL << PCG_USED)
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700203#define PCGF_LOCK (1UL << PCG_LOCK)
Balbir Singh4b3bde42009-09-23 15:56:32 -0700204/* Not used, but added here for completeness */
205#define PCGF_ACCT (1UL << PCG_ACCT)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800206
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800207/* for encoding cft->private value on file */
208#define _MEM (0)
209#define _MEMSWAP (1)
210#define MEMFILE_PRIVATE(x, val) (((x) << 16) | (val))
211#define MEMFILE_TYPE(val) (((val) >> 16) & 0xffff)
212#define MEMFILE_ATTR(val) ((val) & 0xffff)
213
214static void mem_cgroup_get(struct mem_cgroup *mem);
215static void mem_cgroup_put(struct mem_cgroup *mem);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -0800216static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800217
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700218static void mem_cgroup_charge_statistics(struct mem_cgroup *mem,
219 struct page_cgroup *pc,
220 bool charge)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800221{
222 int val = (charge)? 1 : -1;
223 struct mem_cgroup_stat *stat = &mem->stat;
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700224 struct mem_cgroup_stat_cpu *cpustat;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800225 int cpu = get_cpu();
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800226
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800227 cpustat = &stat->cpustat[cpu];
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700228 if (PageCgroupCache(pc))
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700229 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_CACHE, val);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800230 else
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700231 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_RSS, val);
Balaji Rao55e462b2008-05-01 04:35:12 -0700232
233 if (charge)
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700234 __mem_cgroup_stat_add_safe(cpustat,
Balaji Rao55e462b2008-05-01 04:35:12 -0700235 MEM_CGROUP_STAT_PGPGIN_COUNT, 1);
236 else
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700237 __mem_cgroup_stat_add_safe(cpustat,
Balaji Rao55e462b2008-05-01 04:35:12 -0700238 MEM_CGROUP_STAT_PGPGOUT_COUNT, 1);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800239 put_cpu();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800240}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800241
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800242static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800243mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
244{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800245 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
246}
247
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800248static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800249page_cgroup_zoneinfo(struct page_cgroup *pc)
250{
251 struct mem_cgroup *mem = pc->mem_cgroup;
252 int nid = page_cgroup_nid(pc);
253 int zid = page_cgroup_zid(pc);
254
KOSAKI Motohiro54992762009-01-07 18:08:18 -0800255 if (!mem)
256 return NULL;
257
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800258 return mem_cgroup_zoneinfo(mem, nid, zid);
259}
260
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700261static unsigned long mem_cgroup_get_local_zonestat(struct mem_cgroup *mem,
Christoph Lameterb69408e2008-10-18 20:26:14 -0700262 enum lru_list idx)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800263{
264 int nid, zid;
265 struct mem_cgroup_per_zone *mz;
266 u64 total = 0;
267
268 for_each_online_node(nid)
269 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
270 mz = mem_cgroup_zoneinfo(mem, nid, zid);
271 total += MEM_CGROUP_ZSTAT(mz, idx);
272 }
273 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800274}
275
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800276static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800277{
278 return container_of(cgroup_subsys_state(cont,
279 mem_cgroup_subsys_id), struct mem_cgroup,
280 css);
281}
282
Balbir Singhcf475ad2008-04-29 01:00:16 -0700283struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800284{
Balbir Singh31a78f22008-09-28 23:09:31 +0100285 /*
286 * mm_update_next_owner() may clear mm->owner to NULL
287 * if it races with swapoff, page migration, etc.
288 * So this can be called with p == NULL.
289 */
290 if (unlikely(!p))
291 return NULL;
292
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800293 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
294 struct mem_cgroup, css);
295}
296
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800297static struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
298{
299 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700300
301 if (!mm)
302 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800303 /*
304 * Because we have no locks, mm->owner's may be being moved to other
305 * cgroup. We use css_tryget() here even if this looks
306 * pessimistic (rather than adding locks here).
307 */
308 rcu_read_lock();
309 do {
310 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
311 if (unlikely(!mem))
312 break;
313 } while (!css_tryget(&mem->css));
314 rcu_read_unlock();
315 return mem;
316}
317
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700318/*
319 * Call callback function against all cgroup under hierarchy tree.
320 */
321static int mem_cgroup_walk_tree(struct mem_cgroup *root, void *data,
322 int (*func)(struct mem_cgroup *, void *))
323{
324 int found, ret, nextid;
325 struct cgroup_subsys_state *css;
326 struct mem_cgroup *mem;
327
328 if (!root->use_hierarchy)
329 return (*func)(root, data);
330
331 nextid = 1;
332 do {
333 ret = 0;
334 mem = NULL;
335
336 rcu_read_lock();
337 css = css_get_next(&mem_cgroup_subsys, nextid, &root->css,
338 &found);
339 if (css && css_tryget(css))
340 mem = container_of(css, struct mem_cgroup, css);
341 rcu_read_unlock();
342
343 if (mem) {
344 ret = (*func)(mem, data);
345 css_put(&mem->css);
346 }
347 nextid = found + 1;
348 } while (!ret && css);
349
350 return ret;
351}
352
Balbir Singh4b3bde42009-09-23 15:56:32 -0700353static inline bool mem_cgroup_is_root(struct mem_cgroup *mem)
354{
355 return (mem == root_mem_cgroup);
356}
357
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800358/*
359 * Following LRU functions are allowed to be used without PCG_LOCK.
360 * Operations are called by routine of global LRU independently from memcg.
361 * What we have to take care of here is validness of pc->mem_cgroup.
362 *
363 * Changes to pc->mem_cgroup happens when
364 * 1. charge
365 * 2. moving account
366 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
367 * It is added to LRU before charge.
368 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
369 * When moving account, the page is not on LRU. It's isolated.
370 */
371
372void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800373{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800374 struct page_cgroup *pc;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800375 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700376
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800377 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800378 return;
379 pc = lookup_page_cgroup(page);
380 /* can happen while we handle swapcache. */
Balbir Singh4b3bde42009-09-23 15:56:32 -0700381 if (!TestClearPageCgroupAcctLRU(pc))
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800382 return;
Balbir Singh4b3bde42009-09-23 15:56:32 -0700383 VM_BUG_ON(!pc->mem_cgroup);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800384 /*
385 * We don't check PCG_USED bit. It's cleared when the "page" is finally
386 * removed from global LRU.
387 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800388 mz = page_cgroup_zoneinfo(pc);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700389 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
Balbir Singh4b3bde42009-09-23 15:56:32 -0700390 if (mem_cgroup_is_root(pc->mem_cgroup))
391 return;
392 VM_BUG_ON(list_empty(&pc->lru));
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800393 list_del_init(&pc->lru);
394 return;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800395}
396
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800397void mem_cgroup_del_lru(struct page *page)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800398{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800399 mem_cgroup_del_lru_list(page, page_lru(page));
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800400}
401
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800402void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru)
Balbir Singh66e17072008-02-07 00:13:56 -0800403{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800404 struct mem_cgroup_per_zone *mz;
405 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800406
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800407 if (mem_cgroup_disabled())
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700408 return;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700409
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800410 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -0800411 /*
412 * Used bit is set without atomic ops but after smp_wmb().
413 * For making pc->mem_cgroup visible, insert smp_rmb() here.
414 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800415 smp_rmb();
Balbir Singh4b3bde42009-09-23 15:56:32 -0700416 /* unused or root page is not rotated. */
417 if (!PageCgroupUsed(pc) || mem_cgroup_is_root(pc->mem_cgroup))
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800418 return;
419 mz = page_cgroup_zoneinfo(pc);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700420 list_move(&pc->lru, &mz->lists[lru]);
Balbir Singh66e17072008-02-07 00:13:56 -0800421}
422
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800423void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru)
424{
425 struct page_cgroup *pc;
426 struct mem_cgroup_per_zone *mz;
427
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800428 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800429 return;
430 pc = lookup_page_cgroup(page);
Balbir Singh4b3bde42009-09-23 15:56:32 -0700431 VM_BUG_ON(PageCgroupAcctLRU(pc));
Daisuke Nishimurabd112db2009-01-15 13:51:11 -0800432 /*
433 * Used bit is set without atomic ops but after smp_wmb().
434 * For making pc->mem_cgroup visible, insert smp_rmb() here.
435 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800436 smp_rmb();
437 if (!PageCgroupUsed(pc))
438 return;
439
440 mz = page_cgroup_zoneinfo(pc);
441 MEM_CGROUP_ZSTAT(mz, lru) += 1;
Balbir Singh4b3bde42009-09-23 15:56:32 -0700442 SetPageCgroupAcctLRU(pc);
443 if (mem_cgroup_is_root(pc->mem_cgroup))
444 return;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800445 list_add(&pc->lru, &mz->lists[lru]);
446}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800447
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800448/*
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800449 * At handling SwapCache, pc->mem_cgroup may be changed while it's linked to
450 * lru because the page may.be reused after it's fully uncharged (because of
451 * SwapCache behavior).To handle that, unlink page_cgroup from LRU when charge
452 * it again. This function is only used to charge SwapCache. It's done under
453 * lock_page and expected that zone->lru_lock is never held.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800454 */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800455static void mem_cgroup_lru_del_before_commit_swapcache(struct page *page)
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800456{
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800457 unsigned long flags;
458 struct zone *zone = page_zone(page);
459 struct page_cgroup *pc = lookup_page_cgroup(page);
460
461 spin_lock_irqsave(&zone->lru_lock, flags);
462 /*
463 * Forget old LRU when this page_cgroup is *not* used. This Used bit
464 * is guarded by lock_page() because the page is SwapCache.
465 */
466 if (!PageCgroupUsed(pc))
467 mem_cgroup_del_lru_list(page, page_lru(page));
468 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800469}
470
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800471static void mem_cgroup_lru_add_after_commit_swapcache(struct page *page)
472{
473 unsigned long flags;
474 struct zone *zone = page_zone(page);
475 struct page_cgroup *pc = lookup_page_cgroup(page);
476
477 spin_lock_irqsave(&zone->lru_lock, flags);
478 /* link when the page is linked to LRU but page_cgroup isn't */
Balbir Singh4b3bde42009-09-23 15:56:32 -0700479 if (PageLRU(page) && !PageCgroupAcctLRU(pc))
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800480 mem_cgroup_add_lru_list(page, page_lru(page));
481 spin_unlock_irqrestore(&zone->lru_lock, flags);
482}
483
484
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800485void mem_cgroup_move_lists(struct page *page,
486 enum lru_list from, enum lru_list to)
487{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800488 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800489 return;
490 mem_cgroup_del_lru_list(page, from);
491 mem_cgroup_add_lru_list(page, to);
492}
493
David Rientjes4c4a2212008-02-07 00:14:06 -0800494int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
495{
496 int ret;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700497 struct mem_cgroup *curr = NULL;
David Rientjes4c4a2212008-02-07 00:14:06 -0800498
499 task_lock(task);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700500 rcu_read_lock();
501 curr = try_get_mem_cgroup_from_mm(task->mm);
502 rcu_read_unlock();
David Rientjes4c4a2212008-02-07 00:14:06 -0800503 task_unlock(task);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700504 if (!curr)
505 return 0;
506 if (curr->use_hierarchy)
507 ret = css_is_ancestor(&curr->css, &mem->css);
508 else
509 ret = (curr == mem);
510 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -0800511 return ret;
512}
513
Balbir Singh66e17072008-02-07 00:13:56 -0800514/*
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800515 * prev_priority control...this will be used in memory reclaim path.
516 */
517int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
518{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800519 int prev_priority;
520
521 spin_lock(&mem->reclaim_param_lock);
522 prev_priority = mem->prev_priority;
523 spin_unlock(&mem->reclaim_param_lock);
524
525 return prev_priority;
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800526}
527
528void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
529{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800530 spin_lock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800531 if (priority < mem->prev_priority)
532 mem->prev_priority = priority;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800533 spin_unlock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800534}
535
536void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
537{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800538 spin_lock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800539 mem->prev_priority = priority;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800540 spin_unlock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800541}
542
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800543static int calc_inactive_ratio(struct mem_cgroup *memcg, unsigned long *present_pages)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800544{
545 unsigned long active;
546 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800547 unsigned long gb;
548 unsigned long inactive_ratio;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800549
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700550 inactive = mem_cgroup_get_local_zonestat(memcg, LRU_INACTIVE_ANON);
551 active = mem_cgroup_get_local_zonestat(memcg, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800552
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800553 gb = (inactive + active) >> (30 - PAGE_SHIFT);
554 if (gb)
555 inactive_ratio = int_sqrt(10 * gb);
556 else
557 inactive_ratio = 1;
558
559 if (present_pages) {
560 present_pages[0] = inactive;
561 present_pages[1] = active;
562 }
563
564 return inactive_ratio;
565}
566
567int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg)
568{
569 unsigned long active;
570 unsigned long inactive;
571 unsigned long present_pages[2];
572 unsigned long inactive_ratio;
573
574 inactive_ratio = calc_inactive_ratio(memcg, present_pages);
575
576 inactive = present_pages[0];
577 active = present_pages[1];
578
579 if (inactive * inactive_ratio < active)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800580 return 1;
581
582 return 0;
583}
584
Rik van Riel56e49d22009-06-16 15:32:28 -0700585int mem_cgroup_inactive_file_is_low(struct mem_cgroup *memcg)
586{
587 unsigned long active;
588 unsigned long inactive;
589
590 inactive = mem_cgroup_get_local_zonestat(memcg, LRU_INACTIVE_FILE);
591 active = mem_cgroup_get_local_zonestat(memcg, LRU_ACTIVE_FILE);
592
593 return (active > inactive);
594}
595
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800596unsigned long mem_cgroup_zone_nr_pages(struct mem_cgroup *memcg,
597 struct zone *zone,
598 enum lru_list lru)
599{
600 int nid = zone->zone_pgdat->node_id;
601 int zid = zone_idx(zone);
602 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
603
604 return MEM_CGROUP_ZSTAT(mz, lru);
605}
606
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800607struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg,
608 struct zone *zone)
609{
610 int nid = zone->zone_pgdat->node_id;
611 int zid = zone_idx(zone);
612 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
613
614 return &mz->reclaim_stat;
615}
616
617struct zone_reclaim_stat *
618mem_cgroup_get_reclaim_stat_from_page(struct page *page)
619{
620 struct page_cgroup *pc;
621 struct mem_cgroup_per_zone *mz;
622
623 if (mem_cgroup_disabled())
624 return NULL;
625
626 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -0800627 /*
628 * Used bit is set without atomic ops but after smp_wmb().
629 * For making pc->mem_cgroup visible, insert smp_rmb() here.
630 */
631 smp_rmb();
632 if (!PageCgroupUsed(pc))
633 return NULL;
634
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800635 mz = page_cgroup_zoneinfo(pc);
636 if (!mz)
637 return NULL;
638
639 return &mz->reclaim_stat;
640}
641
Balbir Singh66e17072008-02-07 00:13:56 -0800642unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
643 struct list_head *dst,
644 unsigned long *scanned, int order,
645 int mode, struct zone *z,
646 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700647 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -0800648{
649 unsigned long nr_taken = 0;
650 struct page *page;
651 unsigned long scan;
652 LIST_HEAD(pc_list);
653 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800654 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800655 int nid = z->zone_pgdat->node_id;
656 int zid = zone_idx(z);
657 struct mem_cgroup_per_zone *mz;
Johannes Weinerb7c46d12009-09-21 17:02:56 -0700658 int lru = LRU_FILE * file + active;
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700659 int ret;
Balbir Singh66e17072008-02-07 00:13:56 -0800660
Balbir Singhcf475ad2008-04-29 01:00:16 -0700661 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800662 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700663 src = &mz->lists[lru];
Balbir Singh66e17072008-02-07 00:13:56 -0800664
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800665 scan = 0;
666 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800667 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800668 break;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800669
670 page = pc->page;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700671 if (unlikely(!PageCgroupUsed(pc)))
672 continue;
Hugh Dickins436c65412008-02-07 00:14:12 -0800673 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800674 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800675
Hugh Dickins436c65412008-02-07 00:14:12 -0800676 scan++;
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700677 ret = __isolate_lru_page(page, mode, file);
678 switch (ret) {
679 case 0:
Balbir Singh66e17072008-02-07 00:13:56 -0800680 list_move(&page->lru, dst);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700681 mem_cgroup_del_lru(page);
Balbir Singh66e17072008-02-07 00:13:56 -0800682 nr_taken++;
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700683 break;
684 case -EBUSY:
685 /* we don't affect global LRU but rotate in our LRU */
686 mem_cgroup_rotate_lru_list(page, page_lru(page));
687 break;
688 default:
689 break;
Balbir Singh66e17072008-02-07 00:13:56 -0800690 }
691 }
692
Balbir Singh66e17072008-02-07 00:13:56 -0800693 *scanned = scan;
694 return nr_taken;
695}
696
Balbir Singh6d61ef42009-01-07 18:08:06 -0800697#define mem_cgroup_from_res_counter(counter, member) \
698 container_of(counter, struct mem_cgroup, member)
699
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800700static bool mem_cgroup_check_under_limit(struct mem_cgroup *mem)
701{
702 if (do_swap_account) {
703 if (res_counter_check_under_limit(&mem->res) &&
704 res_counter_check_under_limit(&mem->memsw))
705 return true;
706 } else
707 if (res_counter_check_under_limit(&mem->res))
708 return true;
709 return false;
710}
711
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800712static unsigned int get_swappiness(struct mem_cgroup *memcg)
713{
714 struct cgroup *cgrp = memcg->css.cgroup;
715 unsigned int swappiness;
716
717 /* root ? */
718 if (cgrp->parent == NULL)
719 return vm_swappiness;
720
721 spin_lock(&memcg->reclaim_param_lock);
722 swappiness = memcg->swappiness;
723 spin_unlock(&memcg->reclaim_param_lock);
724
725 return swappiness;
726}
727
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700728static int mem_cgroup_count_children_cb(struct mem_cgroup *mem, void *data)
729{
730 int *val = data;
731 (*val)++;
732 return 0;
733}
Balbir Singhe2224322009-04-02 16:57:39 -0700734
735/**
736 * mem_cgroup_print_mem_info: Called from OOM with tasklist_lock held in read mode.
737 * @memcg: The memory cgroup that went over limit
738 * @p: Task that is going to be killed
739 *
740 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
741 * enabled
742 */
743void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
744{
745 struct cgroup *task_cgrp;
746 struct cgroup *mem_cgrp;
747 /*
748 * Need a buffer in BSS, can't rely on allocations. The code relies
749 * on the assumption that OOM is serialized for memory controller.
750 * If this assumption is broken, revisit this code.
751 */
752 static char memcg_name[PATH_MAX];
753 int ret;
754
755 if (!memcg)
756 return;
757
758
759 rcu_read_lock();
760
761 mem_cgrp = memcg->css.cgroup;
762 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
763
764 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
765 if (ret < 0) {
766 /*
767 * Unfortunately, we are unable to convert to a useful name
768 * But we'll still print out the usage information
769 */
770 rcu_read_unlock();
771 goto done;
772 }
773 rcu_read_unlock();
774
775 printk(KERN_INFO "Task in %s killed", memcg_name);
776
777 rcu_read_lock();
778 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
779 if (ret < 0) {
780 rcu_read_unlock();
781 goto done;
782 }
783 rcu_read_unlock();
784
785 /*
786 * Continues from above, so we don't need an KERN_ level
787 */
788 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
789done:
790
791 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
792 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
793 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
794 res_counter_read_u64(&memcg->res, RES_FAILCNT));
795 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
796 "failcnt %llu\n",
797 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
798 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
799 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
800}
801
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700802/*
803 * This function returns the number of memcg under hierarchy tree. Returns
804 * 1(self count) if no children.
805 */
806static int mem_cgroup_count_children(struct mem_cgroup *mem)
807{
808 int num = 0;
809 mem_cgroup_walk_tree(mem, &num, mem_cgroup_count_children_cb);
810 return num;
811}
812
Balbir Singh6d61ef42009-01-07 18:08:06 -0800813/*
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700814 * Visit the first child (need not be the first child as per the ordering
815 * of the cgroup list, since we track last_scanned_child) of @mem and use
816 * that to reclaim free pages from.
817 */
818static struct mem_cgroup *
819mem_cgroup_select_victim(struct mem_cgroup *root_mem)
820{
821 struct mem_cgroup *ret = NULL;
822 struct cgroup_subsys_state *css;
823 int nextid, found;
824
825 if (!root_mem->use_hierarchy) {
826 css_get(&root_mem->css);
827 ret = root_mem;
828 }
829
830 while (!ret) {
831 rcu_read_lock();
832 nextid = root_mem->last_scanned_child + 1;
833 css = css_get_next(&mem_cgroup_subsys, nextid, &root_mem->css,
834 &found);
835 if (css && css_tryget(css))
836 ret = container_of(css, struct mem_cgroup, css);
837
838 rcu_read_unlock();
839 /* Updates scanning parameter */
840 spin_lock(&root_mem->reclaim_param_lock);
841 if (!css) {
842 /* this means start scan from ID:1 */
843 root_mem->last_scanned_child = 0;
844 } else
845 root_mem->last_scanned_child = found;
846 spin_unlock(&root_mem->reclaim_param_lock);
847 }
848
849 return ret;
850}
851
852/*
853 * Scan the hierarchy if needed to reclaim memory. We remember the last child
854 * we reclaimed from, so that we don't end up penalizing one child extensively
855 * based on its position in the children list.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800856 *
857 * root_mem is the original ancestor that we've been reclaim from.
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700858 *
859 * We give up and return to the caller when we visit root_mem twice.
860 * (other groups can be removed while we're walking....)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700861 *
862 * If shrink==true, for avoiding to free too much, this returns immedieately.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800863 */
864static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_mem,
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700865 gfp_t gfp_mask, bool noswap, bool shrink)
Balbir Singh6d61ef42009-01-07 18:08:06 -0800866{
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700867 struct mem_cgroup *victim;
868 int ret, total = 0;
869 int loop = 0;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800870
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700871 /* If memsw_is_minimum==1, swap-out is of-no-use. */
872 if (root_mem->memsw_is_minimum)
873 noswap = true;
874
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700875 while (loop < 2) {
876 victim = mem_cgroup_select_victim(root_mem);
877 if (victim == root_mem)
878 loop++;
879 if (!mem_cgroup_local_usage(&victim->stat)) {
880 /* this cgroup's local usage == 0 */
881 css_put(&victim->css);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800882 continue;
883 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700884 /* we use swappiness of local cgroup */
885 ret = try_to_free_mem_cgroup_pages(victim, gfp_mask, noswap,
886 get_swappiness(victim));
887 css_put(&victim->css);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700888 /*
889 * At shrinking usage, we can't check we should stop here or
890 * reclaim more. It's depends on callers. last_scanned_child
891 * will work enough for keeping fairness under tree.
892 */
893 if (shrink)
894 return ret;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700895 total += ret;
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800896 if (mem_cgroup_check_under_limit(root_mem))
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700897 return 1 + total;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800898 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700899 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800900}
901
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800902bool mem_cgroup_oom_called(struct task_struct *task)
903{
904 bool ret = false;
905 struct mem_cgroup *mem;
906 struct mm_struct *mm;
907
908 rcu_read_lock();
909 mm = task->mm;
910 if (!mm)
911 mm = &init_mm;
912 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
913 if (mem && time_before(jiffies, mem->last_oom_jiffies + HZ/10))
914 ret = true;
915 rcu_read_unlock();
916 return ret;
917}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700918
919static int record_last_oom_cb(struct mem_cgroup *mem, void *data)
920{
921 mem->last_oom_jiffies = jiffies;
922 return 0;
923}
924
925static void record_last_oom(struct mem_cgroup *mem)
926{
927 mem_cgroup_walk_tree(mem, NULL, record_last_oom_cb);
928}
929
Balbir Singhd69b0422009-06-17 16:26:34 -0700930/*
931 * Currently used to update mapped file statistics, but the routine can be
932 * generalized to update other statistics as well.
933 */
934void mem_cgroup_update_mapped_file_stat(struct page *page, int val)
935{
936 struct mem_cgroup *mem;
937 struct mem_cgroup_stat *stat;
938 struct mem_cgroup_stat_cpu *cpustat;
939 int cpu;
940 struct page_cgroup *pc;
941
942 if (!page_is_file_cache(page))
943 return;
944
945 pc = lookup_page_cgroup(page);
946 if (unlikely(!pc))
947 return;
948
949 lock_page_cgroup(pc);
950 mem = pc->mem_cgroup;
951 if (!mem)
952 goto done;
953
954 if (!PageCgroupUsed(pc))
955 goto done;
956
957 /*
958 * Preemption is already disabled, we don't need get_cpu()
959 */
960 cpu = smp_processor_id();
961 stat = &mem->stat;
962 cpustat = &stat->cpustat[cpu];
963
964 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_MAPPED_FILE, val);
965done:
966 unlock_page_cgroup(pc);
967}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700968
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800969/*
970 * Unlike exported interface, "oom" parameter is added. if oom==true,
971 * oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800972 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800973static int __mem_cgroup_try_charge(struct mm_struct *mm,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800974 gfp_t gfp_mask, struct mem_cgroup **memcg,
975 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800976{
Balbir Singh6d61ef42009-01-07 18:08:06 -0800977 struct mem_cgroup *mem, *mem_over_limit;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800978 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800979 struct res_counter *fail_res;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800980
981 if (unlikely(test_thread_flag(TIF_MEMDIE))) {
982 /* Don't account this! */
983 *memcg = NULL;
984 return 0;
985 }
986
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800987 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800988 * We always charge the cgroup the mm_struct belongs to.
989 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800990 * thread group leader migrates. It's possible that mm is not
991 * set, if so charge the init_mm (happens for pagecache usage).
992 */
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800993 mem = *memcg;
994 if (likely(!mem)) {
995 mem = try_get_mem_cgroup_from_mm(mm);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800996 *memcg = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700997 } else {
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800998 css_get(&mem->css);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700999 }
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001000 if (unlikely(!mem))
1001 return 0;
1002
Nikanth Karthikesan46f7e602009-05-28 14:34:41 -07001003 VM_BUG_ON(css_is_removed(&mem->css));
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001004
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001005 while (1) {
1006 int ret;
1007 bool noswap = false;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001008
Balbir Singh28dbc4b2009-01-07 18:08:05 -08001009 ret = res_counter_charge(&mem->res, PAGE_SIZE, &fail_res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001010 if (likely(!ret)) {
1011 if (!do_swap_account)
1012 break;
Balbir Singh28dbc4b2009-01-07 18:08:05 -08001013 ret = res_counter_charge(&mem->memsw, PAGE_SIZE,
1014 &fail_res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001015 if (likely(!ret))
1016 break;
1017 /* mem+swap counter fails */
1018 res_counter_uncharge(&mem->res, PAGE_SIZE);
1019 noswap = true;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001020 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
1021 memsw);
1022 } else
1023 /* mem counter fails */
1024 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
1025 res);
1026
Hugh Dickins3be91272008-02-07 00:14:19 -08001027 if (!(gfp_mask & __GFP_WAIT))
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001028 goto nomem;
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001029
Balbir Singh6d61ef42009-01-07 18:08:06 -08001030 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, gfp_mask,
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001031 noswap, false);
Daisuke Nishimura4d1c6272009-01-15 13:51:14 -08001032 if (ret)
1033 continue;
Balbir Singh66e17072008-02-07 00:13:56 -08001034
1035 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001036 * try_to_free_mem_cgroup_pages() might not give us a full
1037 * picture of reclaim. Some pages are reclaimed and might be
1038 * moved to swap cache or just unmapped from the cgroup.
1039 * Check the limit again to see if the reclaim reduced the
1040 * current usage of the cgroup before giving up
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001041 *
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001042 */
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -08001043 if (mem_cgroup_check_under_limit(mem_over_limit))
1044 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -08001045
1046 if (!nr_retries--) {
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001047 if (oom) {
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08001048 mutex_lock(&memcg_tasklist);
KAMEZAWA Hiroyuki88700752009-01-07 18:08:09 -08001049 mem_cgroup_out_of_memory(mem_over_limit, gfp_mask);
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08001050 mutex_unlock(&memcg_tasklist);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001051 record_last_oom(mem_over_limit);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001052 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001053 goto nomem;
Balbir Singh66e17072008-02-07 00:13:56 -08001054 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001055 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001056 return 0;
1057nomem:
1058 css_put(&mem->css);
1059 return -ENOMEM;
1060}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001061
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001062
1063/*
1064 * A helper function to get mem_cgroup from ID. must be called under
1065 * rcu_read_lock(). The caller must check css_is_removed() or some if
1066 * it's concern. (dropping refcnt from swap can be called against removed
1067 * memcg.)
1068 */
1069static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
1070{
1071 struct cgroup_subsys_state *css;
1072
1073 /* ID 0 is unused ID */
1074 if (!id)
1075 return NULL;
1076 css = css_lookup(&mem_cgroup_subsys, id);
1077 if (!css)
1078 return NULL;
1079 return container_of(css, struct mem_cgroup, css);
1080}
1081
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001082static struct mem_cgroup *try_get_mem_cgroup_from_swapcache(struct page *page)
1083{
1084 struct mem_cgroup *mem;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07001085 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001086 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001087 swp_entry_t ent;
1088
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07001089 VM_BUG_ON(!PageLocked(page));
1090
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001091 if (!PageSwapCache(page))
1092 return NULL;
1093
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07001094 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07001095 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001096 if (PageCgroupUsed(pc)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07001097 mem = pc->mem_cgroup;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001098 if (mem && !css_tryget(&mem->css))
1099 mem = NULL;
1100 } else {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07001101 ent.val = page_private(page);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001102 id = lookup_swap_cgroup(ent);
1103 rcu_read_lock();
1104 mem = mem_cgroup_lookup(id);
1105 if (mem && !css_tryget(&mem->css))
1106 mem = NULL;
1107 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07001108 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07001109 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001110 return mem;
1111}
1112
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001113/*
Daisuke Nishimuraa5e924f2009-01-07 18:08:28 -08001114 * commit a charge got by __mem_cgroup_try_charge() and makes page_cgroup to be
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001115 * USED state. If already USED, uncharge and return.
1116 */
1117
1118static void __mem_cgroup_commit_charge(struct mem_cgroup *mem,
1119 struct page_cgroup *pc,
1120 enum charge_type ctype)
1121{
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001122 /* try_charge() can return NULL to *memcg, taking care of it. */
1123 if (!mem)
1124 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001125
1126 lock_page_cgroup(pc);
1127 if (unlikely(PageCgroupUsed(pc))) {
1128 unlock_page_cgroup(pc);
1129 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001130 if (do_swap_account)
1131 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001132 css_put(&mem->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001133 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001134 }
Balbir Singh4b3bde42009-09-23 15:56:32 -07001135
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001136 pc->mem_cgroup = mem;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001137 smp_wmb();
Balbir Singh4b3bde42009-09-23 15:56:32 -07001138 switch (ctype) {
1139 case MEM_CGROUP_CHARGE_TYPE_CACHE:
1140 case MEM_CGROUP_CHARGE_TYPE_SHMEM:
1141 SetPageCgroupCache(pc);
1142 SetPageCgroupUsed(pc);
1143 break;
1144 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
1145 ClearPageCgroupCache(pc);
1146 SetPageCgroupUsed(pc);
1147 break;
1148 default:
1149 break;
1150 }
Hugh Dickins3be91272008-02-07 00:14:19 -08001151
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001152 mem_cgroup_charge_statistics(mem, pc, true);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001153
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001154 unlock_page_cgroup(pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001155}
1156
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001157/**
1158 * mem_cgroup_move_account - move account of the page
1159 * @pc: page_cgroup of the page.
1160 * @from: mem_cgroup which the page is moved from.
1161 * @to: mem_cgroup which the page is moved to. @from != @to.
1162 *
1163 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001164 * - page is not on LRU (isolate_page() is useful.)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001165 *
1166 * returns 0 at success,
1167 * returns -EBUSY when lock is busy or "pc" is unstable.
1168 *
1169 * This function does "uncharge" from old cgroup but doesn't do "charge" to
1170 * new cgroup. It should be done by a caller.
1171 */
1172
1173static int mem_cgroup_move_account(struct page_cgroup *pc,
1174 struct mem_cgroup *from, struct mem_cgroup *to)
1175{
1176 struct mem_cgroup_per_zone *from_mz, *to_mz;
1177 int nid, zid;
1178 int ret = -EBUSY;
Balbir Singhd69b0422009-06-17 16:26:34 -07001179 struct page *page;
1180 int cpu;
1181 struct mem_cgroup_stat *stat;
1182 struct mem_cgroup_stat_cpu *cpustat;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001183
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001184 VM_BUG_ON(from == to);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001185 VM_BUG_ON(PageLRU(pc->page));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001186
1187 nid = page_cgroup_nid(pc);
1188 zid = page_cgroup_zid(pc);
1189 from_mz = mem_cgroup_zoneinfo(from, nid, zid);
1190 to_mz = mem_cgroup_zoneinfo(to, nid, zid);
1191
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001192 if (!trylock_page_cgroup(pc))
1193 return ret;
1194
1195 if (!PageCgroupUsed(pc))
1196 goto out;
1197
1198 if (pc->mem_cgroup != from)
1199 goto out;
1200
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001201 res_counter_uncharge(&from->res, PAGE_SIZE);
1202 mem_cgroup_charge_statistics(from, pc, false);
Balbir Singhd69b0422009-06-17 16:26:34 -07001203
1204 page = pc->page;
1205 if (page_is_file_cache(page) && page_mapped(page)) {
1206 cpu = smp_processor_id();
1207 /* Update mapped_file data for mem_cgroup "from" */
1208 stat = &from->stat;
1209 cpustat = &stat->cpustat[cpu];
1210 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_MAPPED_FILE,
1211 -1);
1212
1213 /* Update mapped_file data for mem_cgroup "to" */
1214 stat = &to->stat;
1215 cpustat = &stat->cpustat[cpu];
1216 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_MAPPED_FILE,
1217 1);
1218 }
1219
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001220 if (do_swap_account)
1221 res_counter_uncharge(&from->memsw, PAGE_SIZE);
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001222 css_put(&from->css);
1223
1224 css_get(&to->css);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001225 pc->mem_cgroup = to;
1226 mem_cgroup_charge_statistics(to, pc, true);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001227 ret = 0;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001228out:
1229 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001230 /*
1231 * We charges against "to" which may not have any tasks. Then, "to"
1232 * can be under rmdir(). But in current implementation, caller of
1233 * this function is just force_empty() and it's garanteed that
1234 * "to" is never removed. So, we don't check rmdir status here.
1235 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001236 return ret;
1237}
1238
1239/*
1240 * move charges to its parent.
1241 */
1242
1243static int mem_cgroup_move_parent(struct page_cgroup *pc,
1244 struct mem_cgroup *child,
1245 gfp_t gfp_mask)
1246{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001247 struct page *page = pc->page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001248 struct cgroup *cg = child->css.cgroup;
1249 struct cgroup *pcg = cg->parent;
1250 struct mem_cgroup *parent;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001251 int ret;
1252
1253 /* Is ROOT ? */
1254 if (!pcg)
1255 return -EINVAL;
1256
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001257
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001258 parent = mem_cgroup_from_cont(pcg);
1259
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001260
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001261 ret = __mem_cgroup_try_charge(NULL, gfp_mask, &parent, false);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001262 if (ret || !parent)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001263 return ret;
1264
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001265 if (!get_page_unless_zero(page)) {
1266 ret = -EBUSY;
1267 goto uncharge;
1268 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001269
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001270 ret = isolate_lru_page(page);
1271
1272 if (ret)
1273 goto cancel;
1274
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001275 ret = mem_cgroup_move_account(pc, child, parent);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001276
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001277 putback_lru_page(page);
1278 if (!ret) {
1279 put_page(page);
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001280 /* drop extra refcnt by try_charge() */
1281 css_put(&parent->css);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001282 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001283 }
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001284
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001285cancel:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001286 put_page(page);
1287uncharge:
1288 /* drop extra refcnt by try_charge() */
1289 css_put(&parent->css);
1290 /* uncharge if move fails */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001291 res_counter_uncharge(&parent->res, PAGE_SIZE);
1292 if (do_swap_account)
1293 res_counter_uncharge(&parent->memsw, PAGE_SIZE);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001294 return ret;
1295}
1296
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001297/*
1298 * Charge the memory controller for page usage.
1299 * Return
1300 * 0 if the charge was successful
1301 * < 0 if the cgroup is over its limit
1302 */
1303static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
1304 gfp_t gfp_mask, enum charge_type ctype,
1305 struct mem_cgroup *memcg)
1306{
1307 struct mem_cgroup *mem;
1308 struct page_cgroup *pc;
1309 int ret;
1310
1311 pc = lookup_page_cgroup(page);
1312 /* can happen at boot */
1313 if (unlikely(!pc))
1314 return 0;
1315 prefetchw(pc);
1316
1317 mem = memcg;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001318 ret = __mem_cgroup_try_charge(mm, gfp_mask, &mem, true);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001319 if (ret || !mem)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001320 return ret;
1321
1322 __mem_cgroup_commit_charge(mem, pc, ctype);
1323 return 0;
1324}
1325
1326int mem_cgroup_newpage_charge(struct page *page,
1327 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001328{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001329 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001330 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001331 if (PageCompound(page))
1332 return 0;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001333 /*
1334 * If already mapped, we don't have to account.
1335 * If page cache, page->mapping has address_space.
1336 * But page->mapping may have out-of-use anon_vma pointer,
1337 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
1338 * is NULL.
1339 */
1340 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
1341 return 0;
1342 if (unlikely(!mm))
1343 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001344 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001345 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001346}
1347
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07001348static void
1349__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
1350 enum charge_type ctype);
1351
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001352int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
1353 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -08001354{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001355 struct mem_cgroup *mem = NULL;
1356 int ret;
1357
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001358 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001359 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001360 if (PageCompound(page))
1361 return 0;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001362 /*
1363 * Corner case handling. This is called from add_to_page_cache()
1364 * in usual. But some FS (shmem) precharges this page before calling it
1365 * and call add_to_page_cache() with GFP_NOWAIT.
1366 *
1367 * For GFP_NOWAIT case, the page may be pre-charged before calling
1368 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
1369 * charge twice. (It works but has to pay a bit larger cost.)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001370 * And when the page is SwapCache, it should take swap information
1371 * into account. This is under lock_page() now.
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001372 */
1373 if (!(gfp_mask & __GFP_WAIT)) {
1374 struct page_cgroup *pc;
1375
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001376
1377 pc = lookup_page_cgroup(page);
1378 if (!pc)
1379 return 0;
1380 lock_page_cgroup(pc);
1381 if (PageCgroupUsed(pc)) {
1382 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001383 return 0;
1384 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001385 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001386 }
1387
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001388 if (unlikely(!mm && !mem))
Balbir Singh8697d332008-02-07 00:13:59 -08001389 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001390
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -07001391 if (page_is_file_cache(page))
1392 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001393 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001394
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07001395 /* shmem */
1396 if (PageSwapCache(page)) {
1397 ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &mem);
1398 if (!ret)
1399 __mem_cgroup_commit_charge_swapin(page, mem,
1400 MEM_CGROUP_CHARGE_TYPE_SHMEM);
1401 } else
1402 ret = mem_cgroup_charge_common(page, mm, gfp_mask,
1403 MEM_CGROUP_CHARGE_TYPE_SHMEM, mem);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001404
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001405 return ret;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001406}
1407
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001408/*
1409 * While swap-in, try_charge -> commit or cancel, the page is locked.
1410 * And when try_charge() successfully returns, one refcnt to memcg without
1411 * struct page_cgroup is aquired. This refcnt will be cumsumed by
1412 * "commit()" or removed by "cancel()"
1413 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001414int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
1415 struct page *page,
1416 gfp_t mask, struct mem_cgroup **ptr)
1417{
1418 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001419 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001420
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001421 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001422 return 0;
1423
1424 if (!do_swap_account)
1425 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001426 /*
1427 * A racing thread's fault, or swapoff, may have already updated
1428 * the pte, and even removed page from swap cache: return success
1429 * to go on to do_swap_page()'s pte_same() test, which should fail.
1430 */
1431 if (!PageSwapCache(page))
1432 return 0;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001433 mem = try_get_mem_cgroup_from_swapcache(page);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001434 if (!mem)
1435 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001436 *ptr = mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001437 ret = __mem_cgroup_try_charge(NULL, mask, ptr, true);
1438 /* drop extra refcnt from tryget */
1439 css_put(&mem->css);
1440 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001441charge_cur_mm:
1442 if (unlikely(!mm))
1443 mm = &init_mm;
1444 return __mem_cgroup_try_charge(mm, mask, ptr, true);
1445}
1446
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07001447static void
1448__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
1449 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001450{
1451 struct page_cgroup *pc;
1452
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001453 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001454 return;
1455 if (!ptr)
1456 return;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001457 cgroup_exclude_rmdir(&ptr->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001458 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001459 mem_cgroup_lru_del_before_commit_swapcache(page);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07001460 __mem_cgroup_commit_charge(ptr, pc, ctype);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001461 mem_cgroup_lru_add_after_commit_swapcache(page);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001462 /*
1463 * Now swap is on-memory. This means this page may be
1464 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001465 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
1466 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
1467 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001468 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001469 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001470 swp_entry_t ent = {.val = page_private(page)};
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001471 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001472 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001473
1474 id = swap_cgroup_record(ent, 0);
1475 rcu_read_lock();
1476 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001477 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001478 /*
1479 * This recorded memcg can be obsolete one. So, avoid
1480 * calling css_tryget
1481 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001482 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1483 mem_cgroup_put(memcg);
1484 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001485 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001486 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001487 /*
1488 * At swapin, we may charge account against cgroup which has no tasks.
1489 * So, rmdir()->pre_destroy() can be called while we do this charge.
1490 * In that case, we need to call pre_destroy() again. check it here.
1491 */
1492 cgroup_release_and_wakeup_rmdir(&ptr->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001493}
1494
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07001495void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
1496{
1497 __mem_cgroup_commit_charge_swapin(page, ptr,
1498 MEM_CGROUP_CHARGE_TYPE_MAPPED);
1499}
1500
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001501void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *mem)
1502{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001503 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001504 return;
1505 if (!mem)
1506 return;
1507 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001508 if (do_swap_account)
1509 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001510 css_put(&mem->css);
1511}
1512
1513
Balbir Singh8697d332008-02-07 00:13:59 -08001514/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001515 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001516 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001517static struct mem_cgroup *
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001518__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001519{
Hugh Dickins82895462008-03-04 14:29:08 -08001520 struct page_cgroup *pc;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001521 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001522 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001523
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001524 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001525 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07001526
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001527 if (PageSwapCache(page))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001528 return NULL;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001529
Balbir Singh8697d332008-02-07 00:13:59 -08001530 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08001531 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08001532 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001533 pc = lookup_page_cgroup(page);
1534 if (unlikely(!pc || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001535 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001536
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001537 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001538
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001539 mem = pc->mem_cgroup;
1540
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001541 if (!PageCgroupUsed(pc))
1542 goto unlock_out;
1543
1544 switch (ctype) {
1545 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07001546 case MEM_CGROUP_CHARGE_TYPE_DROP:
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001547 if (page_mapped(page))
1548 goto unlock_out;
1549 break;
1550 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
1551 if (!PageAnon(page)) { /* Shared memory */
1552 if (page->mapping && !page_is_file_cache(page))
1553 goto unlock_out;
1554 } else if (page_mapped(page)) /* Anon */
1555 goto unlock_out;
1556 break;
1557 default:
1558 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001559 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001560
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001561 res_counter_uncharge(&mem->res, PAGE_SIZE);
1562 if (do_swap_account && (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT))
1563 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001564 mem_cgroup_charge_statistics(mem, pc, false);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001565
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001566 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001567 /*
1568 * pc->mem_cgroup is not cleared here. It will be accessed when it's
1569 * freed from LRU. This is safe because uncharged page is expected not
1570 * to be reused (freed soon). Exception is SwapCache, it's handled by
1571 * special functions.
1572 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001573
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001574 mz = page_cgroup_zoneinfo(pc);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001575 unlock_page_cgroup(pc);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001576
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001577 /* at swapout, this memcg will be accessed to record to swap */
1578 if (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
1579 css_put(&mem->css);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001580
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001581 return mem;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001582
1583unlock_out:
1584 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001585 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08001586}
1587
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001588void mem_cgroup_uncharge_page(struct page *page)
1589{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001590 /* early check. */
1591 if (page_mapped(page))
1592 return;
1593 if (page->mapping && !PageAnon(page))
1594 return;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001595 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
1596}
1597
1598void mem_cgroup_uncharge_cache_page(struct page *page)
1599{
1600 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07001601 VM_BUG_ON(page->mapping);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001602 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
1603}
1604
Daisuke Nishimurae767e052009-05-28 14:34:28 -07001605#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001606/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07001607 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001608 * memcg information is recorded to swap_cgroup of "ent"
1609 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07001610void
1611mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001612{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001613 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07001614 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001615
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07001616 if (!swapout) /* this was a swap cache but the swap is unused ! */
1617 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
1618
1619 memcg = __mem_cgroup_uncharge_common(page, ctype);
1620
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001621 /* record memcg information */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07001622 if (do_swap_account && swapout && memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001623 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001624 mem_cgroup_get(memcg);
1625 }
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07001626 if (swapout && memcg)
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001627 css_put(&memcg->css);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001628}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07001629#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001630
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001631#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
1632/*
1633 * called from swap_entry_free(). remove record in swap_cgroup and
1634 * uncharge "memsw" account.
1635 */
1636void mem_cgroup_uncharge_swap(swp_entry_t ent)
1637{
1638 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001639 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001640
1641 if (!do_swap_account)
1642 return;
1643
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001644 id = swap_cgroup_record(ent, 0);
1645 rcu_read_lock();
1646 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001647 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001648 /*
1649 * We uncharge this because swap is freed.
1650 * This memcg can be obsolete one. We avoid calling css_tryget
1651 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001652 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1653 mem_cgroup_put(memcg);
1654 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07001655 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001656}
1657#endif
1658
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001659/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001660 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
1661 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001662 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001663int mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001664{
1665 struct page_cgroup *pc;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001666 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001667 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001668
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001669 if (mem_cgroup_disabled())
Balbir Singh40779602008-04-04 14:29:59 -07001670 return 0;
1671
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001672 pc = lookup_page_cgroup(page);
1673 lock_page_cgroup(pc);
1674 if (PageCgroupUsed(pc)) {
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001675 mem = pc->mem_cgroup;
1676 css_get(&mem->css);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001677 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001678 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001679
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001680 if (mem) {
Daisuke Nishimura3bb4edf2009-01-07 18:08:28 -08001681 ret = __mem_cgroup_try_charge(NULL, GFP_KERNEL, &mem, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001682 css_put(&mem->css);
1683 }
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001684 *ptr = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001685 return ret;
1686}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001687
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001688/* remove redundant charge if migration failed*/
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001689void mem_cgroup_end_migration(struct mem_cgroup *mem,
1690 struct page *oldpage, struct page *newpage)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001691{
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001692 struct page *target, *unused;
1693 struct page_cgroup *pc;
1694 enum charge_type ctype;
1695
1696 if (!mem)
1697 return;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001698 cgroup_exclude_rmdir(&mem->css);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001699 /* at migration success, oldpage->mapping is NULL. */
1700 if (oldpage->mapping) {
1701 target = oldpage;
1702 unused = NULL;
1703 } else {
1704 target = newpage;
1705 unused = oldpage;
1706 }
1707
1708 if (PageAnon(target))
1709 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
1710 else if (page_is_file_cache(target))
1711 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
1712 else
1713 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
1714
1715 /* unused page is not on radix-tree now. */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001716 if (unused)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001717 __mem_cgroup_uncharge_common(unused, ctype);
1718
1719 pc = lookup_page_cgroup(target);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001720 /*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001721 * __mem_cgroup_commit_charge() check PCG_USED bit of page_cgroup.
1722 * So, double-counting is effectively avoided.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001723 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001724 __mem_cgroup_commit_charge(mem, pc, ctype);
1725
1726 /*
1727 * Both of oldpage and newpage are still under lock_page().
1728 * Then, we don't have to care about race in radix-tree.
1729 * But we have to be careful that this page is unmapped or not.
1730 *
1731 * There is a case for !page_mapped(). At the start of
1732 * migration, oldpage was mapped. But now, it's zapped.
1733 * But we know *target* page is not freed/reused under us.
1734 * mem_cgroup_uncharge_page() does all necessary checks.
1735 */
1736 if (ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
1737 mem_cgroup_uncharge_page(target);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001738 /*
1739 * At migration, we may charge account against cgroup which has no tasks
1740 * So, rmdir()->pre_destroy() can be called while we do this charge.
1741 * In that case, we need to call pre_destroy() again. check it here.
1742 */
1743 cgroup_release_and_wakeup_rmdir(&mem->css);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001744}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001745
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001746/*
Daisuke Nishimuraae3abae2009-04-30 15:08:19 -07001747 * A call to try to shrink memory usage on charge failure at shmem's swapin.
1748 * Calling hierarchical_reclaim is not enough because we should update
1749 * last_oom_jiffies to prevent pagefault_out_of_memory from invoking global OOM.
1750 * Moreover considering hierarchy, we should reclaim from the mem_over_limit,
1751 * not from the memcg which this page would be charged to.
1752 * try_charge_swapin does all of these works properly.
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001753 */
Daisuke Nishimuraae3abae2009-04-30 15:08:19 -07001754int mem_cgroup_shmem_charge_fallback(struct page *page,
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001755 struct mm_struct *mm,
1756 gfp_t gfp_mask)
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001757{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001758 struct mem_cgroup *mem = NULL;
Daisuke Nishimuraae3abae2009-04-30 15:08:19 -07001759 int ret;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001760
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001761 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001762 return 0;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001763
Daisuke Nishimuraae3abae2009-04-30 15:08:19 -07001764 ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &mem);
1765 if (!ret)
1766 mem_cgroup_cancel_charge_swapin(mem); /* it does !mem check */
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001767
Daisuke Nishimuraae3abae2009-04-30 15:08:19 -07001768 return ret;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001769}
1770
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001771static DEFINE_MUTEX(set_limit_mutex);
1772
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08001773static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001774 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001775{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001776 int retry_count;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001777 int progress;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001778 u64 memswlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001779 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001780 int children = mem_cgroup_count_children(memcg);
1781 u64 curusage, oldusage;
1782
1783 /*
1784 * For keeping hierarchical_reclaim simple, how long we should retry
1785 * is depends on callers. We set our retry-count to be function
1786 * of # of children which we should visit in this loop.
1787 */
1788 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
1789
1790 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001791
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001792 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001793 if (signal_pending(current)) {
1794 ret = -EINTR;
1795 break;
1796 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001797 /*
1798 * Rather than hide all in some function, I do this in
1799 * open coded manner. You see what this really does.
1800 * We have to guarantee mem->res.limit < mem->memsw.limit.
1801 */
1802 mutex_lock(&set_limit_mutex);
1803 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1804 if (memswlimit < val) {
1805 ret = -EINVAL;
1806 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001807 break;
1808 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001809 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07001810 if (!ret) {
1811 if (memswlimit == val)
1812 memcg->memsw_is_minimum = true;
1813 else
1814 memcg->memsw_is_minimum = false;
1815 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001816 mutex_unlock(&set_limit_mutex);
1817
1818 if (!ret)
1819 break;
1820
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001821 progress = mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL,
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001822 false, true);
1823 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
1824 /* Usage is reduced ? */
1825 if (curusage >= oldusage)
1826 retry_count--;
1827 else
1828 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001829 }
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001830
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001831 return ret;
1832}
1833
Li Zefan338c8432009-06-17 16:27:15 -07001834static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
1835 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001836{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001837 int retry_count;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001838 u64 memlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001839 int children = mem_cgroup_count_children(memcg);
1840 int ret = -EBUSY;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001841
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001842 /* see mem_cgroup_resize_res_limit */
1843 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
1844 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001845 while (retry_count) {
1846 if (signal_pending(current)) {
1847 ret = -EINTR;
1848 break;
1849 }
1850 /*
1851 * Rather than hide all in some function, I do this in
1852 * open coded manner. You see what this really does.
1853 * We have to guarantee mem->res.limit < mem->memsw.limit.
1854 */
1855 mutex_lock(&set_limit_mutex);
1856 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1857 if (memlimit > val) {
1858 ret = -EINVAL;
1859 mutex_unlock(&set_limit_mutex);
1860 break;
1861 }
1862 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07001863 if (!ret) {
1864 if (memlimit == val)
1865 memcg->memsw_is_minimum = true;
1866 else
1867 memcg->memsw_is_minimum = false;
1868 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001869 mutex_unlock(&set_limit_mutex);
1870
1871 if (!ret)
1872 break;
1873
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001874 mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL, true, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001875 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001876 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001877 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001878 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001879 else
1880 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001881 }
1882 return ret;
1883}
1884
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001885/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001886 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001887 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
1888 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001889static int mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001890 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001891{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001892 struct zone *zone;
1893 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001894 struct page_cgroup *pc, *busy;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001895 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001896 struct list_head *list;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001897 int ret = 0;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001898
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001899 zone = &NODE_DATA(node)->node_zones[zid];
1900 mz = mem_cgroup_zoneinfo(mem, node, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001901 list = &mz->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001902
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001903 loop = MEM_CGROUP_ZSTAT(mz, lru);
1904 /* give some margin against EBUSY etc...*/
1905 loop += 256;
1906 busy = NULL;
1907 while (loop--) {
1908 ret = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001909 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001910 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001911 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001912 break;
1913 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001914 pc = list_entry(list->prev, struct page_cgroup, lru);
1915 if (busy == pc) {
1916 list_move(&pc->lru, list);
1917 busy = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001918 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001919 continue;
1920 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001921 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001922
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -08001923 ret = mem_cgroup_move_parent(pc, mem, GFP_KERNEL);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001924 if (ret == -ENOMEM)
1925 break;
1926
1927 if (ret == -EBUSY || ret == -EINVAL) {
1928 /* found lock contention or "pc" is obsolete. */
1929 busy = pc;
1930 cond_resched();
1931 } else
1932 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001933 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001934
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001935 if (!ret && !list_empty(list))
1936 return -EBUSY;
1937 return ret;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001938}
1939
1940/*
1941 * make mem_cgroup's charge to be 0 if there is no task.
1942 * This enables deleting this mem_cgroup.
1943 */
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001944static int mem_cgroup_force_empty(struct mem_cgroup *mem, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001945{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001946 int ret;
1947 int node, zid, shrink;
1948 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001949 struct cgroup *cgrp = mem->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001950
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001951 css_get(&mem->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001952
1953 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001954 /* should free all ? */
1955 if (free_all)
1956 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001957move_account:
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001958 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001959 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001960 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001961 goto out;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001962 ret = -EINTR;
1963 if (signal_pending(current))
1964 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001965 /* This is for making all *used* pages to be on LRU. */
1966 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001967 ret = 0;
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08001968 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001969 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001970 enum lru_list l;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001971 for_each_lru(l) {
1972 ret = mem_cgroup_force_empty_list(mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001973 node, zid, l);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001974 if (ret)
1975 break;
1976 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001977 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001978 if (ret)
1979 break;
1980 }
1981 /* it seems parent cgroup doesn't have enough mem */
1982 if (ret == -ENOMEM)
1983 goto try_to_free;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001984 cond_resched();
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001985 }
1986 ret = 0;
1987out:
1988 css_put(&mem->css);
1989 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001990
1991try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001992 /* returns EBUSY if there is a task or if we come here twice. */
1993 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001994 ret = -EBUSY;
1995 goto out;
1996 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001997 /* we call try-to-free pages for make this cgroup empty */
1998 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001999 /* try to free all pages in this cgroup */
2000 shrink = 1;
2001 while (nr_retries && mem->res.usage > 0) {
2002 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002003
2004 if (signal_pending(current)) {
2005 ret = -EINTR;
2006 goto out;
2007 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002008 progress = try_to_free_mem_cgroup_pages(mem, GFP_KERNEL,
2009 false, get_swappiness(mem));
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002010 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002011 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002012 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02002013 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002014 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002015
2016 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002017 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002018 /* try move_account...there may be some *locked* pages. */
2019 if (mem->res.usage)
2020 goto move_account;
2021 ret = 0;
2022 goto out;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08002023}
2024
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002025int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
2026{
2027 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
2028}
2029
2030
Balbir Singh18f59ea2009-01-07 18:08:07 -08002031static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
2032{
2033 return mem_cgroup_from_cont(cont)->use_hierarchy;
2034}
2035
2036static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
2037 u64 val)
2038{
2039 int retval = 0;
2040 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
2041 struct cgroup *parent = cont->parent;
2042 struct mem_cgroup *parent_mem = NULL;
2043
2044 if (parent)
2045 parent_mem = mem_cgroup_from_cont(parent);
2046
2047 cgroup_lock();
2048 /*
2049 * If parent's use_hiearchy is set, we can't make any modifications
2050 * in the child subtrees. If it is unset, then the change can
2051 * occur, provided the current cgroup has no children.
2052 *
2053 * For the root cgroup, parent_mem is NULL, we allow value to be
2054 * set if there are no children.
2055 */
2056 if ((!parent_mem || !parent_mem->use_hierarchy) &&
2057 (val == 1 || val == 0)) {
2058 if (list_empty(&cont->children))
2059 mem->use_hierarchy = val;
2060 else
2061 retval = -EBUSY;
2062 } else
2063 retval = -EINVAL;
2064 cgroup_unlock();
2065
2066 return retval;
2067}
2068
Paul Menage2c3daa72008-04-29 00:59:58 -07002069static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002070{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002071 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
2072 u64 val = 0;
2073 int type, name;
2074
2075 type = MEMFILE_TYPE(cft->private);
2076 name = MEMFILE_ATTR(cft->private);
2077 switch (type) {
2078 case _MEM:
2079 val = res_counter_read_u64(&mem->res, name);
2080 break;
2081 case _MEMSWAP:
Li Zefan338c8432009-06-17 16:27:15 -07002082 val = res_counter_read_u64(&mem->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002083 break;
2084 default:
2085 BUG();
2086 break;
2087 }
2088 return val;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002089}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002090/*
2091 * The user of this function is...
2092 * RES_LIMIT.
2093 */
Paul Menage856c13a2008-07-25 01:47:04 -07002094static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
2095 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002096{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002097 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002098 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002099 unsigned long long val;
2100 int ret;
2101
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002102 type = MEMFILE_TYPE(cft->private);
2103 name = MEMFILE_ATTR(cft->private);
2104 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002105 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07002106 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
2107 ret = -EINVAL;
2108 break;
2109 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002110 /* This function does all necessary parse...reuse it */
2111 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002112 if (ret)
2113 break;
2114 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002115 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002116 else
2117 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002118 break;
2119 default:
2120 ret = -EINVAL; /* should be BUG() ? */
2121 break;
2122 }
2123 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002124}
2125
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08002126static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
2127 unsigned long long *mem_limit, unsigned long long *memsw_limit)
2128{
2129 struct cgroup *cgroup;
2130 unsigned long long min_limit, min_memsw_limit, tmp;
2131
2132 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
2133 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
2134 cgroup = memcg->css.cgroup;
2135 if (!memcg->use_hierarchy)
2136 goto out;
2137
2138 while (cgroup->parent) {
2139 cgroup = cgroup->parent;
2140 memcg = mem_cgroup_from_cont(cgroup);
2141 if (!memcg->use_hierarchy)
2142 break;
2143 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
2144 min_limit = min(min_limit, tmp);
2145 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
2146 min_memsw_limit = min(min_memsw_limit, tmp);
2147 }
2148out:
2149 *mem_limit = min_limit;
2150 *memsw_limit = min_memsw_limit;
2151 return;
2152}
2153
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002154static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002155{
2156 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002157 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002158
2159 mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002160 type = MEMFILE_TYPE(event);
2161 name = MEMFILE_ATTR(event);
2162 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002163 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002164 if (type == _MEM)
2165 res_counter_reset_max(&mem->res);
2166 else
2167 res_counter_reset_max(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002168 break;
2169 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002170 if (type == _MEM)
2171 res_counter_reset_failcnt(&mem->res);
2172 else
2173 res_counter_reset_failcnt(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002174 break;
2175 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07002176 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002177}
2178
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002179
2180/* For read statistics */
2181enum {
2182 MCS_CACHE,
2183 MCS_RSS,
Balbir Singhd69b0422009-06-17 16:26:34 -07002184 MCS_MAPPED_FILE,
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002185 MCS_PGPGIN,
2186 MCS_PGPGOUT,
2187 MCS_INACTIVE_ANON,
2188 MCS_ACTIVE_ANON,
2189 MCS_INACTIVE_FILE,
2190 MCS_ACTIVE_FILE,
2191 MCS_UNEVICTABLE,
2192 NR_MCS_STAT,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002193};
2194
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002195struct mcs_total_stat {
2196 s64 stat[NR_MCS_STAT];
2197};
2198
2199struct {
2200 char *local_name;
2201 char *total_name;
2202} memcg_stat_strings[NR_MCS_STAT] = {
2203 {"cache", "total_cache"},
2204 {"rss", "total_rss"},
Balbir Singhd69b0422009-06-17 16:26:34 -07002205 {"mapped_file", "total_mapped_file"},
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002206 {"pgpgin", "total_pgpgin"},
2207 {"pgpgout", "total_pgpgout"},
2208 {"inactive_anon", "total_inactive_anon"},
2209 {"active_anon", "total_active_anon"},
2210 {"inactive_file", "total_inactive_file"},
2211 {"active_file", "total_active_file"},
2212 {"unevictable", "total_unevictable"}
2213};
2214
2215
2216static int mem_cgroup_get_local_stat(struct mem_cgroup *mem, void *data)
2217{
2218 struct mcs_total_stat *s = data;
2219 s64 val;
2220
2221 /* per cpu stat */
2222 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_CACHE);
2223 s->stat[MCS_CACHE] += val * PAGE_SIZE;
2224 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
2225 s->stat[MCS_RSS] += val * PAGE_SIZE;
Balbir Singhd69b0422009-06-17 16:26:34 -07002226 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_MAPPED_FILE);
2227 s->stat[MCS_MAPPED_FILE] += val * PAGE_SIZE;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002228 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_PGPGIN_COUNT);
2229 s->stat[MCS_PGPGIN] += val;
2230 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_PGPGOUT_COUNT);
2231 s->stat[MCS_PGPGOUT] += val;
2232
2233 /* per zone stat */
2234 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_ANON);
2235 s->stat[MCS_INACTIVE_ANON] += val * PAGE_SIZE;
2236 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_ANON);
2237 s->stat[MCS_ACTIVE_ANON] += val * PAGE_SIZE;
2238 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_FILE);
2239 s->stat[MCS_INACTIVE_FILE] += val * PAGE_SIZE;
2240 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_FILE);
2241 s->stat[MCS_ACTIVE_FILE] += val * PAGE_SIZE;
2242 val = mem_cgroup_get_local_zonestat(mem, LRU_UNEVICTABLE);
2243 s->stat[MCS_UNEVICTABLE] += val * PAGE_SIZE;
2244 return 0;
2245}
2246
2247static void
2248mem_cgroup_get_total_stat(struct mem_cgroup *mem, struct mcs_total_stat *s)
2249{
2250 mem_cgroup_walk_tree(mem, s, mem_cgroup_get_local_stat);
2251}
2252
Paul Menagec64745c2008-04-29 01:00:02 -07002253static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
2254 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002255{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002256 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002257 struct mcs_total_stat mystat;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002258 int i;
2259
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002260 memset(&mystat, 0, sizeof(mystat));
2261 mem_cgroup_get_local_stat(mem_cont, &mystat);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002262
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002263 for (i = 0; i < NR_MCS_STAT; i++)
2264 cb->fill(cb, memcg_stat_strings[i].local_name, mystat.stat[i]);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002265
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002266 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08002267 {
2268 unsigned long long limit, memsw_limit;
2269 memcg_get_hierarchical_limit(mem_cont, &limit, &memsw_limit);
2270 cb->fill(cb, "hierarchical_memory_limit", limit);
2271 if (do_swap_account)
2272 cb->fill(cb, "hierarchical_memsw_limit", memsw_limit);
2273 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08002274
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002275 memset(&mystat, 0, sizeof(mystat));
2276 mem_cgroup_get_total_stat(mem_cont, &mystat);
2277 for (i = 0; i < NR_MCS_STAT; i++)
2278 cb->fill(cb, memcg_stat_strings[i].total_name, mystat.stat[i]);
2279
2280
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08002281#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08002282 cb->fill(cb, "inactive_ratio", calc_inactive_ratio(mem_cont, NULL));
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08002283
2284 {
2285 int nid, zid;
2286 struct mem_cgroup_per_zone *mz;
2287 unsigned long recent_rotated[2] = {0, 0};
2288 unsigned long recent_scanned[2] = {0, 0};
2289
2290 for_each_online_node(nid)
2291 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
2292 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
2293
2294 recent_rotated[0] +=
2295 mz->reclaim_stat.recent_rotated[0];
2296 recent_rotated[1] +=
2297 mz->reclaim_stat.recent_rotated[1];
2298 recent_scanned[0] +=
2299 mz->reclaim_stat.recent_scanned[0];
2300 recent_scanned[1] +=
2301 mz->reclaim_stat.recent_scanned[1];
2302 }
2303 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
2304 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
2305 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
2306 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
2307 }
2308#endif
2309
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002310 return 0;
2311}
2312
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002313static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
2314{
2315 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2316
2317 return get_swappiness(memcg);
2318}
2319
2320static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
2321 u64 val)
2322{
2323 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2324 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08002325
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002326 if (val > 100)
2327 return -EINVAL;
2328
2329 if (cgrp->parent == NULL)
2330 return -EINVAL;
2331
2332 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08002333
2334 cgroup_lock();
2335
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002336 /* If under hierarchy, only empty-root can set this value */
2337 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08002338 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
2339 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002340 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08002341 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002342
2343 spin_lock(&memcg->reclaim_param_lock);
2344 memcg->swappiness = val;
2345 spin_unlock(&memcg->reclaim_param_lock);
2346
Li Zefan068b38c2009-01-15 13:51:26 -08002347 cgroup_unlock();
2348
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002349 return 0;
2350}
2351
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002352
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002353static struct cftype mem_cgroup_files[] = {
2354 {
Balbir Singh0eea1032008-02-07 00:13:57 -08002355 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002356 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Paul Menage2c3daa72008-04-29 00:59:58 -07002357 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002358 },
2359 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002360 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002361 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002362 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002363 .read_u64 = mem_cgroup_read,
2364 },
2365 {
Balbir Singh0eea1032008-02-07 00:13:57 -08002366 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002367 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07002368 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07002369 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002370 },
2371 {
2372 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002373 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002374 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07002375 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002376 },
Balbir Singh8697d332008-02-07 00:13:59 -08002377 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002378 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07002379 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002380 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002381 {
2382 .name = "force_empty",
2383 .trigger = mem_cgroup_force_empty_write,
2384 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08002385 {
2386 .name = "use_hierarchy",
2387 .write_u64 = mem_cgroup_hierarchy_write,
2388 .read_u64 = mem_cgroup_hierarchy_read,
2389 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002390 {
2391 .name = "swappiness",
2392 .read_u64 = mem_cgroup_swappiness_read,
2393 .write_u64 = mem_cgroup_swappiness_write,
2394 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002395};
2396
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002397#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2398static struct cftype memsw_cgroup_files[] = {
2399 {
2400 .name = "memsw.usage_in_bytes",
2401 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
2402 .read_u64 = mem_cgroup_read,
2403 },
2404 {
2405 .name = "memsw.max_usage_in_bytes",
2406 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
2407 .trigger = mem_cgroup_reset,
2408 .read_u64 = mem_cgroup_read,
2409 },
2410 {
2411 .name = "memsw.limit_in_bytes",
2412 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
2413 .write_string = mem_cgroup_write,
2414 .read_u64 = mem_cgroup_read,
2415 },
2416 {
2417 .name = "memsw.failcnt",
2418 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
2419 .trigger = mem_cgroup_reset,
2420 .read_u64 = mem_cgroup_read,
2421 },
2422};
2423
2424static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2425{
2426 if (!do_swap_account)
2427 return 0;
2428 return cgroup_add_files(cont, ss, memsw_cgroup_files,
2429 ARRAY_SIZE(memsw_cgroup_files));
2430};
2431#else
2432static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2433{
2434 return 0;
2435}
2436#endif
2437
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002438static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2439{
2440 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002441 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -07002442 enum lru_list l;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002443 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002444 /*
2445 * This routine is called against possible nodes.
2446 * But it's BUG to call kmalloc() against offline node.
2447 *
2448 * TODO: this routine can waste much memory for nodes which will
2449 * never be onlined. It's better to use memory hotplug callback
2450 * function.
2451 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002452 if (!node_state(node, N_NORMAL_MEMORY))
2453 tmp = -1;
2454 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002455 if (!pn)
2456 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002457
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002458 mem->info.nodeinfo[node] = pn;
2459 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002460
2461 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
2462 mz = &pn->zoneinfo[zone];
Christoph Lameterb69408e2008-10-18 20:26:14 -07002463 for_each_lru(l)
2464 INIT_LIST_HEAD(&mz->lists[l]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002465 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002466 return 0;
2467}
2468
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002469static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2470{
2471 kfree(mem->info.nodeinfo[node]);
2472}
2473
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002474static int mem_cgroup_size(void)
2475{
2476 int cpustat_size = nr_cpu_ids * sizeof(struct mem_cgroup_stat_cpu);
2477 return sizeof(struct mem_cgroup) + cpustat_size;
2478}
2479
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002480static struct mem_cgroup *mem_cgroup_alloc(void)
2481{
2482 struct mem_cgroup *mem;
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002483 int size = mem_cgroup_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002484
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002485 if (size < PAGE_SIZE)
2486 mem = kmalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002487 else
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002488 mem = vmalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002489
2490 if (mem)
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002491 memset(mem, 0, size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002492 return mem;
2493}
2494
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002495/*
2496 * At destroying mem_cgroup, references from swap_cgroup can remain.
2497 * (scanning all at force_empty is too costly...)
2498 *
2499 * Instead of clearing all references at force_empty, we remember
2500 * the number of reference from swap_cgroup and free mem_cgroup when
2501 * it goes down to 0.
2502 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002503 * Removal of cgroup itself succeeds regardless of refs from swap.
2504 */
2505
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002506static void __mem_cgroup_free(struct mem_cgroup *mem)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002507{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002508 int node;
2509
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002510 free_css_id(&mem_cgroup_subsys, &mem->css);
2511
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002512 for_each_node_state(node, N_POSSIBLE)
2513 free_mem_cgroup_per_zone_info(mem, node);
2514
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002515 if (mem_cgroup_size() < PAGE_SIZE)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002516 kfree(mem);
2517 else
2518 vfree(mem);
2519}
2520
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002521static void mem_cgroup_get(struct mem_cgroup *mem)
2522{
2523 atomic_inc(&mem->refcnt);
2524}
2525
2526static void mem_cgroup_put(struct mem_cgroup *mem)
2527{
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002528 if (atomic_dec_and_test(&mem->refcnt)) {
2529 struct mem_cgroup *parent = parent_mem_cgroup(mem);
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002530 __mem_cgroup_free(mem);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002531 if (parent)
2532 mem_cgroup_put(parent);
2533 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002534}
2535
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002536/*
2537 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
2538 */
2539static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem)
2540{
2541 if (!mem->res.parent)
2542 return NULL;
2543 return mem_cgroup_from_res_counter(mem->res.parent, res);
2544}
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002545
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002546#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2547static void __init enable_swap_cgroup(void)
2548{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002549 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002550 do_swap_account = 1;
2551}
2552#else
2553static void __init enable_swap_cgroup(void)
2554{
2555}
2556#endif
2557
Li Zefan0eb253e2009-01-15 13:51:25 -08002558static struct cgroup_subsys_state * __ref
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002559mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
2560{
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002561 struct mem_cgroup *mem, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002562 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002563 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002564
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002565 mem = mem_cgroup_alloc();
2566 if (!mem)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002567 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08002568
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002569 for_each_node_state(node, N_POSSIBLE)
2570 if (alloc_mem_cgroup_per_zone_info(mem, node))
2571 goto free_out;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002572 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002573 if (cont->parent == NULL) {
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002574 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002575 parent = NULL;
Balbir Singh4b3bde42009-09-23 15:56:32 -07002576 root_mem_cgroup = mem;
Balbir Singh18f59ea2009-01-07 18:08:07 -08002577 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002578 parent = mem_cgroup_from_cont(cont->parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002579 mem->use_hierarchy = parent->use_hierarchy;
2580 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002581
Balbir Singh18f59ea2009-01-07 18:08:07 -08002582 if (parent && parent->use_hierarchy) {
2583 res_counter_init(&mem->res, &parent->res);
2584 res_counter_init(&mem->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002585 /*
2586 * We increment refcnt of the parent to ensure that we can
2587 * safely access it on res_counter_charge/uncharge.
2588 * This refcnt will be decremented when freeing this
2589 * mem_cgroup(see mem_cgroup_put).
2590 */
2591 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002592 } else {
2593 res_counter_init(&mem->res, NULL);
2594 res_counter_init(&mem->memsw, NULL);
2595 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002596 mem->last_scanned_child = 0;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -08002597 spin_lock_init(&mem->reclaim_param_lock);
Balbir Singh6d61ef42009-01-07 18:08:06 -08002598
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002599 if (parent)
2600 mem->swappiness = get_swappiness(parent);
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002601 atomic_set(&mem->refcnt, 1);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002602 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002603free_out:
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002604 __mem_cgroup_free(mem);
Balbir Singh4b3bde42009-09-23 15:56:32 -07002605 root_mem_cgroup = NULL;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002606 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002607}
2608
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07002609static int mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002610 struct cgroup *cont)
2611{
2612 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07002613
2614 return mem_cgroup_force_empty(mem, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002615}
2616
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002617static void mem_cgroup_destroy(struct cgroup_subsys *ss,
2618 struct cgroup *cont)
2619{
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002620 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002621
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002622 mem_cgroup_put(mem);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002623}
2624
2625static int mem_cgroup_populate(struct cgroup_subsys *ss,
2626 struct cgroup *cont)
2627{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002628 int ret;
2629
2630 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
2631 ARRAY_SIZE(mem_cgroup_files));
2632
2633 if (!ret)
2634 ret = register_memsw_files(cont, ss);
2635 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002636}
2637
Balbir Singh67e465a2008-02-07 00:13:54 -08002638static void mem_cgroup_move_task(struct cgroup_subsys *ss,
2639 struct cgroup *cont,
2640 struct cgroup *old_cont,
Ben Blumbe367d02009-09-23 15:56:31 -07002641 struct task_struct *p,
2642 bool threadgroup)
Balbir Singh67e465a2008-02-07 00:13:54 -08002643{
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002644 mutex_lock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002645 /*
Nikanth Karthikesanf9717d22009-01-07 18:08:11 -08002646 * FIXME: It's better to move charges of this process from old
2647 * memcg to new memcg. But it's just on TODO-List now.
Balbir Singh67e465a2008-02-07 00:13:54 -08002648 */
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002649 mutex_unlock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002650}
2651
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002652struct cgroup_subsys mem_cgroup_subsys = {
2653 .name = "memory",
2654 .subsys_id = mem_cgroup_subsys_id,
2655 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002656 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002657 .destroy = mem_cgroup_destroy,
2658 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08002659 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002660 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002661 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002662};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002663
2664#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2665
2666static int __init disable_swap_account(char *s)
2667{
2668 really_do_swap_account = 0;
2669 return 1;
2670}
2671__setup("noswapaccount", disable_swap_account);
2672#endif