blob: 33fc0302e29e8a0e1eac76354ce18a2b80bae5c2 [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>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080030#include <linux/mutex.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070031#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080032#include <linux/swap.h>
33#include <linux/spinlock.h>
34#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080035#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070036#include <linux/vmalloc.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070037#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070038#include <linux/page_cgroup.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080039#include "internal.h"
Balbir Singh8cdea7c2008-02-07 00:13:50 -080040
Balbir Singh8697d332008-02-07 00:13:59 -080041#include <asm/uaccess.h>
42
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070043struct cgroup_subsys mem_cgroup_subsys __read_mostly;
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070044#define MEM_CGROUP_RECLAIM_RETRIES 5
Balbir Singh8cdea7c2008-02-07 00:13:50 -080045
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080046#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
47/* Turned on only when memory cgroup is enabled && really_do_swap_account = 0 */
48int do_swap_account __read_mostly;
49static int really_do_swap_account __initdata = 1; /* for remember boot option*/
50#else
51#define do_swap_account (0)
52#endif
53
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -080054static DEFINE_MUTEX(memcg_tasklist); /* can be hold under cgroup_mutex */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080055
Balbir Singh8cdea7c2008-02-07 00:13:50 -080056/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080057 * Statistics for memory cgroup.
58 */
59enum mem_cgroup_stat_index {
60 /*
61 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
62 */
63 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
64 MEM_CGROUP_STAT_RSS, /* # of pages charged as rss */
Balaji Rao55e462b2008-05-01 04:35:12 -070065 MEM_CGROUP_STAT_PGPGIN_COUNT, /* # of pages paged in */
66 MEM_CGROUP_STAT_PGPGOUT_COUNT, /* # of pages paged out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080067
68 MEM_CGROUP_STAT_NSTATS,
69};
70
71struct mem_cgroup_stat_cpu {
72 s64 count[MEM_CGROUP_STAT_NSTATS];
73} ____cacheline_aligned_in_smp;
74
75struct mem_cgroup_stat {
Jan Blunckc8dad2b2009-01-07 18:07:53 -080076 struct mem_cgroup_stat_cpu cpustat[0];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080077};
78
79/*
80 * For accounting under irq disable, no need for increment preempt count.
81 */
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -070082static inline void __mem_cgroup_stat_add_safe(struct mem_cgroup_stat_cpu *stat,
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080083 enum mem_cgroup_stat_index idx, int val)
84{
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -070085 stat->count[idx] += val;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080086}
87
88static s64 mem_cgroup_read_stat(struct mem_cgroup_stat *stat,
89 enum mem_cgroup_stat_index idx)
90{
91 int cpu;
92 s64 ret = 0;
93 for_each_possible_cpu(cpu)
94 ret += stat->cpustat[cpu].count[idx];
95 return ret;
96}
97
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -070098static s64 mem_cgroup_local_usage(struct mem_cgroup_stat *stat)
99{
100 s64 ret;
101
102 ret = mem_cgroup_read_stat(stat, MEM_CGROUP_STAT_CACHE);
103 ret += mem_cgroup_read_stat(stat, MEM_CGROUP_STAT_RSS);
104 return ret;
105}
106
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800107/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800108 * per-zone information in memory controller.
109 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800110struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800111 /*
112 * spin_lock to protect the per cgroup LRU
113 */
Christoph Lameterb69408e2008-10-18 20:26:14 -0700114 struct list_head lists[NR_LRU_LISTS];
115 unsigned long count[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800116
117 struct zone_reclaim_stat reclaim_stat;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800118};
119/* Macro for accessing counter */
120#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
121
122struct mem_cgroup_per_node {
123 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
124};
125
126struct mem_cgroup_lru_info {
127 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
128};
129
130/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800131 * The memory controller data structure. The memory controller controls both
132 * page cache and RSS per cgroup. We would eventually like to provide
133 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
134 * to help the administrator determine what knobs to tune.
135 *
136 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800137 * we hit the water mark. May be even add a low water mark, such that
138 * no reclaim occurs from a cgroup at it's low water mark, this is
139 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800140 */
141struct mem_cgroup {
142 struct cgroup_subsys_state css;
143 /*
144 * the counter to account for memory usage
145 */
146 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800147 /*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800148 * the counter to account for mem+swap usage.
149 */
150 struct res_counter memsw;
151 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800152 * Per cgroup active and inactive list, similar to the
153 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800154 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800155 struct mem_cgroup_lru_info info;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800156
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800157 /*
158 protect against reclaim related member.
159 */
160 spinlock_t reclaim_param_lock;
161
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800162 int prev_priority; /* for recording reclaim priority */
Balbir Singh6d61ef42009-01-07 18:08:06 -0800163
164 /*
165 * While reclaiming in a hiearchy, we cache the last child we
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700166 * reclaimed from.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800167 */
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700168 int last_scanned_child;
Balbir Singh18f59ea2009-01-07 18:08:07 -0800169 /*
170 * Should the accounting and control be hierarchical, per subtree?
171 */
172 bool use_hierarchy;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800173 unsigned long last_oom_jiffies;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800174 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800175
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800176 unsigned int swappiness;
177
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800178 /*
Jan Blunckc8dad2b2009-01-07 18:07:53 -0800179 * statistics. This must be placed at the end of memcg.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800180 */
181 struct mem_cgroup_stat stat;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800182};
183
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800184enum charge_type {
185 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
186 MEM_CGROUP_CHARGE_TYPE_MAPPED,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700187 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700188 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800189 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700190 NR_CHARGE_TYPE,
191};
192
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700193/* only for here (for easy reading.) */
194#define PCGF_CACHE (1UL << PCG_CACHE)
195#define PCGF_USED (1UL << PCG_USED)
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700196#define PCGF_LOCK (1UL << PCG_LOCK)
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700197static const unsigned long
198pcg_default_flags[NR_CHARGE_TYPE] = {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800199 PCGF_CACHE | PCGF_USED | PCGF_LOCK, /* File Cache */
200 PCGF_USED | PCGF_LOCK, /* Anon */
201 PCGF_CACHE | PCGF_USED | PCGF_LOCK, /* Shmem */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700202 0, /* FORCE */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800203};
204
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800205/* for encoding cft->private value on file */
206#define _MEM (0)
207#define _MEMSWAP (1)
208#define MEMFILE_PRIVATE(x, val) (((x) << 16) | (val))
209#define MEMFILE_TYPE(val) (((val) >> 16) & 0xffff)
210#define MEMFILE_ATTR(val) ((val) & 0xffff)
211
212static void mem_cgroup_get(struct mem_cgroup *mem);
213static void mem_cgroup_put(struct mem_cgroup *mem);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -0800214static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800215
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700216static void mem_cgroup_charge_statistics(struct mem_cgroup *mem,
217 struct page_cgroup *pc,
218 bool charge)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800219{
220 int val = (charge)? 1 : -1;
221 struct mem_cgroup_stat *stat = &mem->stat;
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700222 struct mem_cgroup_stat_cpu *cpustat;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800223 int cpu = get_cpu();
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800224
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800225 cpustat = &stat->cpustat[cpu];
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700226 if (PageCgroupCache(pc))
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700227 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_CACHE, val);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800228 else
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700229 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_RSS, val);
Balaji Rao55e462b2008-05-01 04:35:12 -0700230
231 if (charge)
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700232 __mem_cgroup_stat_add_safe(cpustat,
Balaji Rao55e462b2008-05-01 04:35:12 -0700233 MEM_CGROUP_STAT_PGPGIN_COUNT, 1);
234 else
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700235 __mem_cgroup_stat_add_safe(cpustat,
Balaji Rao55e462b2008-05-01 04:35:12 -0700236 MEM_CGROUP_STAT_PGPGOUT_COUNT, 1);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800237 put_cpu();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800238}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800239
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800240static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800241mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
242{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800243 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
244}
245
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800246static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800247page_cgroup_zoneinfo(struct page_cgroup *pc)
248{
249 struct mem_cgroup *mem = pc->mem_cgroup;
250 int nid = page_cgroup_nid(pc);
251 int zid = page_cgroup_zid(pc);
252
KOSAKI Motohiro54992762009-01-07 18:08:18 -0800253 if (!mem)
254 return NULL;
255
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800256 return mem_cgroup_zoneinfo(mem, nid, zid);
257}
258
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700259static unsigned long mem_cgroup_get_local_zonestat(struct mem_cgroup *mem,
Christoph Lameterb69408e2008-10-18 20:26:14 -0700260 enum lru_list idx)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800261{
262 int nid, zid;
263 struct mem_cgroup_per_zone *mz;
264 u64 total = 0;
265
266 for_each_online_node(nid)
267 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
268 mz = mem_cgroup_zoneinfo(mem, nid, zid);
269 total += MEM_CGROUP_ZSTAT(mz, idx);
270 }
271 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800272}
273
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800274static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800275{
276 return container_of(cgroup_subsys_state(cont,
277 mem_cgroup_subsys_id), struct mem_cgroup,
278 css);
279}
280
Balbir Singhcf475ad2008-04-29 01:00:16 -0700281struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800282{
Balbir Singh31a78f22008-09-28 23:09:31 +0100283 /*
284 * mm_update_next_owner() may clear mm->owner to NULL
285 * if it races with swapoff, page migration, etc.
286 * So this can be called with p == NULL.
287 */
288 if (unlikely(!p))
289 return NULL;
290
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800291 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
292 struct mem_cgroup, css);
293}
294
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800295static struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
296{
297 struct mem_cgroup *mem = NULL;
298 /*
299 * Because we have no locks, mm->owner's may be being moved to other
300 * cgroup. We use css_tryget() here even if this looks
301 * pessimistic (rather than adding locks here).
302 */
303 rcu_read_lock();
304 do {
305 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
306 if (unlikely(!mem))
307 break;
308 } while (!css_tryget(&mem->css));
309 rcu_read_unlock();
310 return mem;
311}
312
313static bool mem_cgroup_is_obsolete(struct mem_cgroup *mem)
314{
315 if (!mem)
316 return true;
317 return css_is_removed(&mem->css);
318}
319
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700320
321/*
322 * Call callback function against all cgroup under hierarchy tree.
323 */
324static int mem_cgroup_walk_tree(struct mem_cgroup *root, void *data,
325 int (*func)(struct mem_cgroup *, void *))
326{
327 int found, ret, nextid;
328 struct cgroup_subsys_state *css;
329 struct mem_cgroup *mem;
330
331 if (!root->use_hierarchy)
332 return (*func)(root, data);
333
334 nextid = 1;
335 do {
336 ret = 0;
337 mem = NULL;
338
339 rcu_read_lock();
340 css = css_get_next(&mem_cgroup_subsys, nextid, &root->css,
341 &found);
342 if (css && css_tryget(css))
343 mem = container_of(css, struct mem_cgroup, css);
344 rcu_read_unlock();
345
346 if (mem) {
347 ret = (*func)(mem, data);
348 css_put(&mem->css);
349 }
350 nextid = found + 1;
351 } while (!ret && css);
352
353 return ret;
354}
355
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800356/*
357 * Following LRU functions are allowed to be used without PCG_LOCK.
358 * Operations are called by routine of global LRU independently from memcg.
359 * What we have to take care of here is validness of pc->mem_cgroup.
360 *
361 * Changes to pc->mem_cgroup happens when
362 * 1. charge
363 * 2. moving account
364 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
365 * It is added to LRU before charge.
366 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
367 * When moving account, the page is not on LRU. It's isolated.
368 */
369
370void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800371{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800372 struct page_cgroup *pc;
373 struct mem_cgroup *mem;
374 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700375
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800376 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800377 return;
378 pc = lookup_page_cgroup(page);
379 /* can happen while we handle swapcache. */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800380 if (list_empty(&pc->lru) || !pc->mem_cgroup)
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800381 return;
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800382 /*
383 * We don't check PCG_USED bit. It's cleared when the "page" is finally
384 * removed from global LRU.
385 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800386 mz = page_cgroup_zoneinfo(pc);
387 mem = pc->mem_cgroup;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700388 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800389 list_del_init(&pc->lru);
390 return;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800391}
392
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800393void mem_cgroup_del_lru(struct page *page)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800394{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800395 mem_cgroup_del_lru_list(page, page_lru(page));
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800396}
397
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800398void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru)
Balbir Singh66e17072008-02-07 00:13:56 -0800399{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800400 struct mem_cgroup_per_zone *mz;
401 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800402
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800403 if (mem_cgroup_disabled())
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700404 return;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700405
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800406 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -0800407 /*
408 * Used bit is set without atomic ops but after smp_wmb().
409 * For making pc->mem_cgroup visible, insert smp_rmb() here.
410 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800411 smp_rmb();
412 /* unused page is not rotated. */
413 if (!PageCgroupUsed(pc))
414 return;
415 mz = page_cgroup_zoneinfo(pc);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700416 list_move(&pc->lru, &mz->lists[lru]);
Balbir Singh66e17072008-02-07 00:13:56 -0800417}
418
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800419void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru)
420{
421 struct page_cgroup *pc;
422 struct mem_cgroup_per_zone *mz;
423
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800424 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800425 return;
426 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -0800427 /*
428 * Used bit is set without atomic ops but after smp_wmb().
429 * For making pc->mem_cgroup visible, insert smp_rmb() here.
430 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800431 smp_rmb();
432 if (!PageCgroupUsed(pc))
433 return;
434
435 mz = page_cgroup_zoneinfo(pc);
436 MEM_CGROUP_ZSTAT(mz, lru) += 1;
437 list_add(&pc->lru, &mz->lists[lru]);
438}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800439
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800440/*
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800441 * At handling SwapCache, pc->mem_cgroup may be changed while it's linked to
442 * lru because the page may.be reused after it's fully uncharged (because of
443 * SwapCache behavior).To handle that, unlink page_cgroup from LRU when charge
444 * it again. This function is only used to charge SwapCache. It's done under
445 * lock_page and expected that zone->lru_lock is never held.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800446 */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800447static void mem_cgroup_lru_del_before_commit_swapcache(struct page *page)
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800448{
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800449 unsigned long flags;
450 struct zone *zone = page_zone(page);
451 struct page_cgroup *pc = lookup_page_cgroup(page);
452
453 spin_lock_irqsave(&zone->lru_lock, flags);
454 /*
455 * Forget old LRU when this page_cgroup is *not* used. This Used bit
456 * is guarded by lock_page() because the page is SwapCache.
457 */
458 if (!PageCgroupUsed(pc))
459 mem_cgroup_del_lru_list(page, page_lru(page));
460 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800461}
462
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800463static void mem_cgroup_lru_add_after_commit_swapcache(struct page *page)
464{
465 unsigned long flags;
466 struct zone *zone = page_zone(page);
467 struct page_cgroup *pc = lookup_page_cgroup(page);
468
469 spin_lock_irqsave(&zone->lru_lock, flags);
470 /* link when the page is linked to LRU but page_cgroup isn't */
471 if (PageLRU(page) && list_empty(&pc->lru))
472 mem_cgroup_add_lru_list(page, page_lru(page));
473 spin_unlock_irqrestore(&zone->lru_lock, flags);
474}
475
476
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800477void mem_cgroup_move_lists(struct page *page,
478 enum lru_list from, enum lru_list to)
479{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800480 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800481 return;
482 mem_cgroup_del_lru_list(page, from);
483 mem_cgroup_add_lru_list(page, to);
484}
485
David Rientjes4c4a2212008-02-07 00:14:06 -0800486int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
487{
488 int ret;
489
490 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800491 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800492 task_unlock(task);
493 return ret;
494}
495
Balbir Singh66e17072008-02-07 00:13:56 -0800496/*
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800497 * Calculate mapped_ratio under memory controller. This will be used in
498 * vmscan.c for deteremining we have to reclaim mapped pages.
499 */
500int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
501{
502 long total, rss;
503
504 /*
505 * usage is recorded in bytes. But, here, we assume the number of
506 * physical pages can be represented by "long" on any arch.
507 */
508 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
509 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
510 return (int)((rss * 100L) / total);
511}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800512
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800513/*
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800514 * prev_priority control...this will be used in memory reclaim path.
515 */
516int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
517{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800518 int prev_priority;
519
520 spin_lock(&mem->reclaim_param_lock);
521 prev_priority = mem->prev_priority;
522 spin_unlock(&mem->reclaim_param_lock);
523
524 return prev_priority;
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800525}
526
527void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
528{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800529 spin_lock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800530 if (priority < mem->prev_priority)
531 mem->prev_priority = priority;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800532 spin_unlock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800533}
534
535void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
536{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800537 spin_lock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800538 mem->prev_priority = priority;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800539 spin_unlock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800540}
541
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800542static int calc_inactive_ratio(struct mem_cgroup *memcg, unsigned long *present_pages)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800543{
544 unsigned long active;
545 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800546 unsigned long gb;
547 unsigned long inactive_ratio;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800548
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700549 inactive = mem_cgroup_get_local_zonestat(memcg, LRU_INACTIVE_ANON);
550 active = mem_cgroup_get_local_zonestat(memcg, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800551
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800552 gb = (inactive + active) >> (30 - PAGE_SHIFT);
553 if (gb)
554 inactive_ratio = int_sqrt(10 * gb);
555 else
556 inactive_ratio = 1;
557
558 if (present_pages) {
559 present_pages[0] = inactive;
560 present_pages[1] = active;
561 }
562
563 return inactive_ratio;
564}
565
566int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg)
567{
568 unsigned long active;
569 unsigned long inactive;
570 unsigned long present_pages[2];
571 unsigned long inactive_ratio;
572
573 inactive_ratio = calc_inactive_ratio(memcg, present_pages);
574
575 inactive = present_pages[0];
576 active = present_pages[1];
577
578 if (inactive * inactive_ratio < active)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800579 return 1;
580
581 return 0;
582}
583
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800584unsigned long mem_cgroup_zone_nr_pages(struct mem_cgroup *memcg,
585 struct zone *zone,
586 enum lru_list lru)
587{
588 int nid = zone->zone_pgdat->node_id;
589 int zid = zone_idx(zone);
590 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
591
592 return MEM_CGROUP_ZSTAT(mz, lru);
593}
594
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800595struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg,
596 struct zone *zone)
597{
598 int nid = zone->zone_pgdat->node_id;
599 int zid = zone_idx(zone);
600 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
601
602 return &mz->reclaim_stat;
603}
604
605struct zone_reclaim_stat *
606mem_cgroup_get_reclaim_stat_from_page(struct page *page)
607{
608 struct page_cgroup *pc;
609 struct mem_cgroup_per_zone *mz;
610
611 if (mem_cgroup_disabled())
612 return NULL;
613
614 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -0800615 /*
616 * Used bit is set without atomic ops but after smp_wmb().
617 * For making pc->mem_cgroup visible, insert smp_rmb() here.
618 */
619 smp_rmb();
620 if (!PageCgroupUsed(pc))
621 return NULL;
622
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800623 mz = page_cgroup_zoneinfo(pc);
624 if (!mz)
625 return NULL;
626
627 return &mz->reclaim_stat;
628}
629
Balbir Singh66e17072008-02-07 00:13:56 -0800630unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
631 struct list_head *dst,
632 unsigned long *scanned, int order,
633 int mode, struct zone *z,
634 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700635 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -0800636{
637 unsigned long nr_taken = 0;
638 struct page *page;
639 unsigned long scan;
640 LIST_HEAD(pc_list);
641 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800642 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800643 int nid = z->zone_pgdat->node_id;
644 int zid = zone_idx(z);
645 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700646 int lru = LRU_FILE * !!file + !!active;
Balbir Singh66e17072008-02-07 00:13:56 -0800647
Balbir Singhcf475ad2008-04-29 01:00:16 -0700648 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800649 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700650 src = &mz->lists[lru];
Balbir Singh66e17072008-02-07 00:13:56 -0800651
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800652 scan = 0;
653 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800654 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800655 break;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800656
657 page = pc->page;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700658 if (unlikely(!PageCgroupUsed(pc)))
659 continue;
Hugh Dickins436c65412008-02-07 00:14:12 -0800660 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800661 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800662
Hugh Dickins436c65412008-02-07 00:14:12 -0800663 scan++;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700664 if (__isolate_lru_page(page, mode, file) == 0) {
Balbir Singh66e17072008-02-07 00:13:56 -0800665 list_move(&page->lru, dst);
666 nr_taken++;
667 }
668 }
669
Balbir Singh66e17072008-02-07 00:13:56 -0800670 *scanned = scan;
671 return nr_taken;
672}
673
Balbir Singh6d61ef42009-01-07 18:08:06 -0800674#define mem_cgroup_from_res_counter(counter, member) \
675 container_of(counter, struct mem_cgroup, member)
676
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800677static bool mem_cgroup_check_under_limit(struct mem_cgroup *mem)
678{
679 if (do_swap_account) {
680 if (res_counter_check_under_limit(&mem->res) &&
681 res_counter_check_under_limit(&mem->memsw))
682 return true;
683 } else
684 if (res_counter_check_under_limit(&mem->res))
685 return true;
686 return false;
687}
688
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800689static unsigned int get_swappiness(struct mem_cgroup *memcg)
690{
691 struct cgroup *cgrp = memcg->css.cgroup;
692 unsigned int swappiness;
693
694 /* root ? */
695 if (cgrp->parent == NULL)
696 return vm_swappiness;
697
698 spin_lock(&memcg->reclaim_param_lock);
699 swappiness = memcg->swappiness;
700 spin_unlock(&memcg->reclaim_param_lock);
701
702 return swappiness;
703}
704
Balbir Singh6d61ef42009-01-07 18:08:06 -0800705/*
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700706 * Visit the first child (need not be the first child as per the ordering
707 * of the cgroup list, since we track last_scanned_child) of @mem and use
708 * that to reclaim free pages from.
709 */
710static struct mem_cgroup *
711mem_cgroup_select_victim(struct mem_cgroup *root_mem)
712{
713 struct mem_cgroup *ret = NULL;
714 struct cgroup_subsys_state *css;
715 int nextid, found;
716
717 if (!root_mem->use_hierarchy) {
718 css_get(&root_mem->css);
719 ret = root_mem;
720 }
721
722 while (!ret) {
723 rcu_read_lock();
724 nextid = root_mem->last_scanned_child + 1;
725 css = css_get_next(&mem_cgroup_subsys, nextid, &root_mem->css,
726 &found);
727 if (css && css_tryget(css))
728 ret = container_of(css, struct mem_cgroup, css);
729
730 rcu_read_unlock();
731 /* Updates scanning parameter */
732 spin_lock(&root_mem->reclaim_param_lock);
733 if (!css) {
734 /* this means start scan from ID:1 */
735 root_mem->last_scanned_child = 0;
736 } else
737 root_mem->last_scanned_child = found;
738 spin_unlock(&root_mem->reclaim_param_lock);
739 }
740
741 return ret;
742}
743
744/*
745 * Scan the hierarchy if needed to reclaim memory. We remember the last child
746 * we reclaimed from, so that we don't end up penalizing one child extensively
747 * based on its position in the children list.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800748 *
749 * root_mem is the original ancestor that we've been reclaim from.
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700750 *
751 * We give up and return to the caller when we visit root_mem twice.
752 * (other groups can be removed while we're walking....)
Balbir Singh6d61ef42009-01-07 18:08:06 -0800753 */
754static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_mem,
755 gfp_t gfp_mask, bool noswap)
756{
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700757 struct mem_cgroup *victim;
758 int ret, total = 0;
759 int loop = 0;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800760
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700761 while (loop < 2) {
762 victim = mem_cgroup_select_victim(root_mem);
763 if (victim == root_mem)
764 loop++;
765 if (!mem_cgroup_local_usage(&victim->stat)) {
766 /* this cgroup's local usage == 0 */
767 css_put(&victim->css);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800768 continue;
769 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700770 /* we use swappiness of local cgroup */
771 ret = try_to_free_mem_cgroup_pages(victim, gfp_mask, noswap,
772 get_swappiness(victim));
773 css_put(&victim->css);
774 total += ret;
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800775 if (mem_cgroup_check_under_limit(root_mem))
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700776 return 1 + total;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800777 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700778 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800779}
780
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800781bool mem_cgroup_oom_called(struct task_struct *task)
782{
783 bool ret = false;
784 struct mem_cgroup *mem;
785 struct mm_struct *mm;
786
787 rcu_read_lock();
788 mm = task->mm;
789 if (!mm)
790 mm = &init_mm;
791 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
792 if (mem && time_before(jiffies, mem->last_oom_jiffies + HZ/10))
793 ret = true;
794 rcu_read_unlock();
795 return ret;
796}
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800797/*
798 * Unlike exported interface, "oom" parameter is added. if oom==true,
799 * oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800800 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800801static int __mem_cgroup_try_charge(struct mm_struct *mm,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800802 gfp_t gfp_mask, struct mem_cgroup **memcg,
803 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800804{
Balbir Singh6d61ef42009-01-07 18:08:06 -0800805 struct mem_cgroup *mem, *mem_over_limit;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800806 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800807 struct res_counter *fail_res;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800808
809 if (unlikely(test_thread_flag(TIF_MEMDIE))) {
810 /* Don't account this! */
811 *memcg = NULL;
812 return 0;
813 }
814
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800815 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800816 * We always charge the cgroup the mm_struct belongs to.
817 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800818 * thread group leader migrates. It's possible that mm is not
819 * set, if so charge the init_mm (happens for pagecache usage).
820 */
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800821 mem = *memcg;
822 if (likely(!mem)) {
823 mem = try_get_mem_cgroup_from_mm(mm);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800824 *memcg = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700825 } else {
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800826 css_get(&mem->css);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700827 }
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800828 if (unlikely(!mem))
829 return 0;
830
831 VM_BUG_ON(mem_cgroup_is_obsolete(mem));
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800832
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800833 while (1) {
834 int ret;
835 bool noswap = false;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800836
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800837 ret = res_counter_charge(&mem->res, PAGE_SIZE, &fail_res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800838 if (likely(!ret)) {
839 if (!do_swap_account)
840 break;
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800841 ret = res_counter_charge(&mem->memsw, PAGE_SIZE,
842 &fail_res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800843 if (likely(!ret))
844 break;
845 /* mem+swap counter fails */
846 res_counter_uncharge(&mem->res, PAGE_SIZE);
847 noswap = true;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800848 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
849 memsw);
850 } else
851 /* mem counter fails */
852 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
853 res);
854
Hugh Dickins3be91272008-02-07 00:14:19 -0800855 if (!(gfp_mask & __GFP_WAIT))
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800856 goto nomem;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800857
Balbir Singh6d61ef42009-01-07 18:08:06 -0800858 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, gfp_mask,
859 noswap);
Daisuke Nishimura4d1c6272009-01-15 13:51:14 -0800860 if (ret)
861 continue;
Balbir Singh66e17072008-02-07 00:13:56 -0800862
863 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800864 * try_to_free_mem_cgroup_pages() might not give us a full
865 * picture of reclaim. Some pages are reclaimed and might be
866 * moved to swap cache or just unmapped from the cgroup.
867 * Check the limit again to see if the reclaim reduced the
868 * current usage of the cgroup before giving up
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800869 *
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800870 */
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800871 if (mem_cgroup_check_under_limit(mem_over_limit))
872 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800873
874 if (!nr_retries--) {
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800875 if (oom) {
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -0800876 mutex_lock(&memcg_tasklist);
KAMEZAWA Hiroyuki88700752009-01-07 18:08:09 -0800877 mem_cgroup_out_of_memory(mem_over_limit, gfp_mask);
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -0800878 mutex_unlock(&memcg_tasklist);
KAMEZAWA Hiroyuki88700752009-01-07 18:08:09 -0800879 mem_over_limit->last_oom_jiffies = jiffies;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800880 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800881 goto nomem;
Balbir Singh66e17072008-02-07 00:13:56 -0800882 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800883 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800884 return 0;
885nomem:
886 css_put(&mem->css);
887 return -ENOMEM;
888}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800889
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -0800890static struct mem_cgroup *try_get_mem_cgroup_from_swapcache(struct page *page)
891{
892 struct mem_cgroup *mem;
893 swp_entry_t ent;
894
895 if (!PageSwapCache(page))
896 return NULL;
897
898 ent.val = page_private(page);
899 mem = lookup_swap_cgroup(ent);
900 if (!mem)
901 return NULL;
902 if (!css_tryget(&mem->css))
903 return NULL;
904 return mem;
905}
906
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800907/*
Daisuke Nishimuraa5e924f2009-01-07 18:08:28 -0800908 * commit a charge got by __mem_cgroup_try_charge() and makes page_cgroup to be
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800909 * USED state. If already USED, uncharge and return.
910 */
911
912static void __mem_cgroup_commit_charge(struct mem_cgroup *mem,
913 struct page_cgroup *pc,
914 enum charge_type ctype)
915{
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800916 /* try_charge() can return NULL to *memcg, taking care of it. */
917 if (!mem)
918 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700919
920 lock_page_cgroup(pc);
921 if (unlikely(PageCgroupUsed(pc))) {
922 unlock_page_cgroup(pc);
923 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800924 if (do_swap_account)
925 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700926 css_put(&mem->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800927 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700928 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800929 pc->mem_cgroup = mem;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800930 smp_wmb();
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700931 pc->flags = pcg_default_flags[ctype];
Hugh Dickins3be91272008-02-07 00:14:19 -0800932
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800933 mem_cgroup_charge_statistics(mem, pc, true);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700934
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700935 unlock_page_cgroup(pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800936}
937
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800938/**
939 * mem_cgroup_move_account - move account of the page
940 * @pc: page_cgroup of the page.
941 * @from: mem_cgroup which the page is moved from.
942 * @to: mem_cgroup which the page is moved to. @from != @to.
943 *
944 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800945 * - page is not on LRU (isolate_page() is useful.)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800946 *
947 * returns 0 at success,
948 * returns -EBUSY when lock is busy or "pc" is unstable.
949 *
950 * This function does "uncharge" from old cgroup but doesn't do "charge" to
951 * new cgroup. It should be done by a caller.
952 */
953
954static int mem_cgroup_move_account(struct page_cgroup *pc,
955 struct mem_cgroup *from, struct mem_cgroup *to)
956{
957 struct mem_cgroup_per_zone *from_mz, *to_mz;
958 int nid, zid;
959 int ret = -EBUSY;
960
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800961 VM_BUG_ON(from == to);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800962 VM_BUG_ON(PageLRU(pc->page));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800963
964 nid = page_cgroup_nid(pc);
965 zid = page_cgroup_zid(pc);
966 from_mz = mem_cgroup_zoneinfo(from, nid, zid);
967 to_mz = mem_cgroup_zoneinfo(to, nid, zid);
968
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800969 if (!trylock_page_cgroup(pc))
970 return ret;
971
972 if (!PageCgroupUsed(pc))
973 goto out;
974
975 if (pc->mem_cgroup != from)
976 goto out;
977
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800978 res_counter_uncharge(&from->res, PAGE_SIZE);
979 mem_cgroup_charge_statistics(from, pc, false);
980 if (do_swap_account)
981 res_counter_uncharge(&from->memsw, PAGE_SIZE);
Daisuke Nishimura40d58132009-01-15 13:51:12 -0800982 css_put(&from->css);
983
984 css_get(&to->css);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800985 pc->mem_cgroup = to;
986 mem_cgroup_charge_statistics(to, pc, true);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800987 ret = 0;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800988out:
989 unlock_page_cgroup(pc);
990 return ret;
991}
992
993/*
994 * move charges to its parent.
995 */
996
997static int mem_cgroup_move_parent(struct page_cgroup *pc,
998 struct mem_cgroup *child,
999 gfp_t gfp_mask)
1000{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001001 struct page *page = pc->page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001002 struct cgroup *cg = child->css.cgroup;
1003 struct cgroup *pcg = cg->parent;
1004 struct mem_cgroup *parent;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001005 int ret;
1006
1007 /* Is ROOT ? */
1008 if (!pcg)
1009 return -EINVAL;
1010
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001011
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001012 parent = mem_cgroup_from_cont(pcg);
1013
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001014
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001015 ret = __mem_cgroup_try_charge(NULL, gfp_mask, &parent, false);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001016 if (ret || !parent)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001017 return ret;
1018
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001019 if (!get_page_unless_zero(page)) {
1020 ret = -EBUSY;
1021 goto uncharge;
1022 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001023
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001024 ret = isolate_lru_page(page);
1025
1026 if (ret)
1027 goto cancel;
1028
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001029 ret = mem_cgroup_move_account(pc, child, parent);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001030
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001031 putback_lru_page(page);
1032 if (!ret) {
1033 put_page(page);
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001034 /* drop extra refcnt by try_charge() */
1035 css_put(&parent->css);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001036 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001037 }
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001038
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001039cancel:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001040 put_page(page);
1041uncharge:
1042 /* drop extra refcnt by try_charge() */
1043 css_put(&parent->css);
1044 /* uncharge if move fails */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001045 res_counter_uncharge(&parent->res, PAGE_SIZE);
1046 if (do_swap_account)
1047 res_counter_uncharge(&parent->memsw, PAGE_SIZE);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001048 return ret;
1049}
1050
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001051/*
1052 * Charge the memory controller for page usage.
1053 * Return
1054 * 0 if the charge was successful
1055 * < 0 if the cgroup is over its limit
1056 */
1057static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
1058 gfp_t gfp_mask, enum charge_type ctype,
1059 struct mem_cgroup *memcg)
1060{
1061 struct mem_cgroup *mem;
1062 struct page_cgroup *pc;
1063 int ret;
1064
1065 pc = lookup_page_cgroup(page);
1066 /* can happen at boot */
1067 if (unlikely(!pc))
1068 return 0;
1069 prefetchw(pc);
1070
1071 mem = memcg;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001072 ret = __mem_cgroup_try_charge(mm, gfp_mask, &mem, true);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001073 if (ret || !mem)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001074 return ret;
1075
1076 __mem_cgroup_commit_charge(mem, pc, ctype);
1077 return 0;
1078}
1079
1080int mem_cgroup_newpage_charge(struct page *page,
1081 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001082{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001083 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001084 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001085 if (PageCompound(page))
1086 return 0;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001087 /*
1088 * If already mapped, we don't have to account.
1089 * If page cache, page->mapping has address_space.
1090 * But page->mapping may have out-of-use anon_vma pointer,
1091 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
1092 * is NULL.
1093 */
1094 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
1095 return 0;
1096 if (unlikely(!mm))
1097 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001098 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001099 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001100}
1101
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001102int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
1103 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -08001104{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001105 struct mem_cgroup *mem = NULL;
1106 int ret;
1107
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001108 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001109 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001110 if (PageCompound(page))
1111 return 0;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001112 /*
1113 * Corner case handling. This is called from add_to_page_cache()
1114 * in usual. But some FS (shmem) precharges this page before calling it
1115 * and call add_to_page_cache() with GFP_NOWAIT.
1116 *
1117 * For GFP_NOWAIT case, the page may be pre-charged before calling
1118 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
1119 * charge twice. (It works but has to pay a bit larger cost.)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001120 * And when the page is SwapCache, it should take swap information
1121 * into account. This is under lock_page() now.
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001122 */
1123 if (!(gfp_mask & __GFP_WAIT)) {
1124 struct page_cgroup *pc;
1125
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001126
1127 pc = lookup_page_cgroup(page);
1128 if (!pc)
1129 return 0;
1130 lock_page_cgroup(pc);
1131 if (PageCgroupUsed(pc)) {
1132 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001133 return 0;
1134 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001135 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001136 }
1137
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001138 if (do_swap_account && PageSwapCache(page)) {
1139 mem = try_get_mem_cgroup_from_swapcache(page);
1140 if (mem)
1141 mm = NULL;
1142 else
1143 mem = NULL;
1144 /* SwapCache may be still linked to LRU now. */
1145 mem_cgroup_lru_del_before_commit_swapcache(page);
1146 }
1147
1148 if (unlikely(!mm && !mem))
Balbir Singh8697d332008-02-07 00:13:59 -08001149 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001150
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -07001151 if (page_is_file_cache(page))
1152 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001153 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001154
1155 ret = mem_cgroup_charge_common(page, mm, gfp_mask,
1156 MEM_CGROUP_CHARGE_TYPE_SHMEM, mem);
1157 if (mem)
1158 css_put(&mem->css);
1159 if (PageSwapCache(page))
1160 mem_cgroup_lru_add_after_commit_swapcache(page);
1161
1162 if (do_swap_account && !ret && PageSwapCache(page)) {
1163 swp_entry_t ent = {.val = page_private(page)};
1164 /* avoid double counting */
1165 mem = swap_cgroup_record(ent, NULL);
1166 if (mem) {
1167 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
1168 mem_cgroup_put(mem);
1169 }
1170 }
1171 return ret;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001172}
1173
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001174/*
1175 * While swap-in, try_charge -> commit or cancel, the page is locked.
1176 * And when try_charge() successfully returns, one refcnt to memcg without
1177 * struct page_cgroup is aquired. This refcnt will be cumsumed by
1178 * "commit()" or removed by "cancel()"
1179 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001180int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
1181 struct page *page,
1182 gfp_t mask, struct mem_cgroup **ptr)
1183{
1184 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001185 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001186
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001187 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001188 return 0;
1189
1190 if (!do_swap_account)
1191 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001192 /*
1193 * A racing thread's fault, or swapoff, may have already updated
1194 * the pte, and even removed page from swap cache: return success
1195 * to go on to do_swap_page()'s pte_same() test, which should fail.
1196 */
1197 if (!PageSwapCache(page))
1198 return 0;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001199 mem = try_get_mem_cgroup_from_swapcache(page);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001200 if (!mem)
1201 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001202 *ptr = mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001203 ret = __mem_cgroup_try_charge(NULL, mask, ptr, true);
1204 /* drop extra refcnt from tryget */
1205 css_put(&mem->css);
1206 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001207charge_cur_mm:
1208 if (unlikely(!mm))
1209 mm = &init_mm;
1210 return __mem_cgroup_try_charge(mm, mask, ptr, true);
1211}
1212
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001213void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
1214{
1215 struct page_cgroup *pc;
1216
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001217 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001218 return;
1219 if (!ptr)
1220 return;
1221 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001222 mem_cgroup_lru_del_before_commit_swapcache(page);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001223 __mem_cgroup_commit_charge(ptr, pc, MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001224 mem_cgroup_lru_add_after_commit_swapcache(page);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001225 /*
1226 * Now swap is on-memory. This means this page may be
1227 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001228 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
1229 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
1230 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001231 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001232 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001233 swp_entry_t ent = {.val = page_private(page)};
1234 struct mem_cgroup *memcg;
1235 memcg = swap_cgroup_record(ent, NULL);
1236 if (memcg) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001237 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1238 mem_cgroup_put(memcg);
1239 }
1240
1241 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001242 /* add this page(page_cgroup) to the LRU we want. */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001243
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001244}
1245
1246void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *mem)
1247{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001248 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001249 return;
1250 if (!mem)
1251 return;
1252 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001253 if (do_swap_account)
1254 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001255 css_put(&mem->css);
1256}
1257
1258
Balbir Singh8697d332008-02-07 00:13:59 -08001259/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001260 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001261 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001262static struct mem_cgroup *
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001263__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001264{
Hugh Dickins82895462008-03-04 14:29:08 -08001265 struct page_cgroup *pc;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001266 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001267 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001268
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001269 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001270 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07001271
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001272 if (PageSwapCache(page))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001273 return NULL;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001274
Balbir Singh8697d332008-02-07 00:13:59 -08001275 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08001276 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08001277 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001278 pc = lookup_page_cgroup(page);
1279 if (unlikely(!pc || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001280 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001281
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001282 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001283
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001284 mem = pc->mem_cgroup;
1285
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001286 if (!PageCgroupUsed(pc))
1287 goto unlock_out;
1288
1289 switch (ctype) {
1290 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
1291 if (page_mapped(page))
1292 goto unlock_out;
1293 break;
1294 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
1295 if (!PageAnon(page)) { /* Shared memory */
1296 if (page->mapping && !page_is_file_cache(page))
1297 goto unlock_out;
1298 } else if (page_mapped(page)) /* Anon */
1299 goto unlock_out;
1300 break;
1301 default:
1302 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001303 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001304
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001305 res_counter_uncharge(&mem->res, PAGE_SIZE);
1306 if (do_swap_account && (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT))
1307 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001308 mem_cgroup_charge_statistics(mem, pc, false);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001309
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001310 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001311 /*
1312 * pc->mem_cgroup is not cleared here. It will be accessed when it's
1313 * freed from LRU. This is safe because uncharged page is expected not
1314 * to be reused (freed soon). Exception is SwapCache, it's handled by
1315 * special functions.
1316 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001317
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001318 mz = page_cgroup_zoneinfo(pc);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001319 unlock_page_cgroup(pc);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001320
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001321 /* at swapout, this memcg will be accessed to record to swap */
1322 if (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
1323 css_put(&mem->css);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001324
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001325 return mem;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001326
1327unlock_out:
1328 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001329 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08001330}
1331
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001332void mem_cgroup_uncharge_page(struct page *page)
1333{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001334 /* early check. */
1335 if (page_mapped(page))
1336 return;
1337 if (page->mapping && !PageAnon(page))
1338 return;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001339 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
1340}
1341
1342void mem_cgroup_uncharge_cache_page(struct page *page)
1343{
1344 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07001345 VM_BUG_ON(page->mapping);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001346 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
1347}
1348
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001349/*
1350 * called from __delete_from_swap_cache() and drop "page" account.
1351 * memcg information is recorded to swap_cgroup of "ent"
1352 */
1353void mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001354{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001355 struct mem_cgroup *memcg;
1356
1357 memcg = __mem_cgroup_uncharge_common(page,
1358 MEM_CGROUP_CHARGE_TYPE_SWAPOUT);
1359 /* record memcg information */
1360 if (do_swap_account && memcg) {
1361 swap_cgroup_record(ent, memcg);
1362 mem_cgroup_get(memcg);
1363 }
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001364 if (memcg)
1365 css_put(&memcg->css);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001366}
1367
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001368#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
1369/*
1370 * called from swap_entry_free(). remove record in swap_cgroup and
1371 * uncharge "memsw" account.
1372 */
1373void mem_cgroup_uncharge_swap(swp_entry_t ent)
1374{
1375 struct mem_cgroup *memcg;
1376
1377 if (!do_swap_account)
1378 return;
1379
1380 memcg = swap_cgroup_record(ent, NULL);
1381 if (memcg) {
1382 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1383 mem_cgroup_put(memcg);
1384 }
1385}
1386#endif
1387
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001388/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001389 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
1390 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001391 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001392int mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001393{
1394 struct page_cgroup *pc;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001395 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001396 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001397
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001398 if (mem_cgroup_disabled())
Balbir Singh40779602008-04-04 14:29:59 -07001399 return 0;
1400
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001401 pc = lookup_page_cgroup(page);
1402 lock_page_cgroup(pc);
1403 if (PageCgroupUsed(pc)) {
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001404 mem = pc->mem_cgroup;
1405 css_get(&mem->css);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001406 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001407 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001408
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001409 if (mem) {
Daisuke Nishimura3bb4edf2009-01-07 18:08:28 -08001410 ret = __mem_cgroup_try_charge(NULL, GFP_KERNEL, &mem, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001411 css_put(&mem->css);
1412 }
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001413 *ptr = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001414 return ret;
1415}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001416
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001417/* remove redundant charge if migration failed*/
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001418void mem_cgroup_end_migration(struct mem_cgroup *mem,
1419 struct page *oldpage, struct page *newpage)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001420{
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001421 struct page *target, *unused;
1422 struct page_cgroup *pc;
1423 enum charge_type ctype;
1424
1425 if (!mem)
1426 return;
1427
1428 /* at migration success, oldpage->mapping is NULL. */
1429 if (oldpage->mapping) {
1430 target = oldpage;
1431 unused = NULL;
1432 } else {
1433 target = newpage;
1434 unused = oldpage;
1435 }
1436
1437 if (PageAnon(target))
1438 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
1439 else if (page_is_file_cache(target))
1440 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
1441 else
1442 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
1443
1444 /* unused page is not on radix-tree now. */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001445 if (unused)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001446 __mem_cgroup_uncharge_common(unused, ctype);
1447
1448 pc = lookup_page_cgroup(target);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001449 /*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001450 * __mem_cgroup_commit_charge() check PCG_USED bit of page_cgroup.
1451 * So, double-counting is effectively avoided.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001452 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001453 __mem_cgroup_commit_charge(mem, pc, ctype);
1454
1455 /*
1456 * Both of oldpage and newpage are still under lock_page().
1457 * Then, we don't have to care about race in radix-tree.
1458 * But we have to be careful that this page is unmapped or not.
1459 *
1460 * There is a case for !page_mapped(). At the start of
1461 * migration, oldpage was mapped. But now, it's zapped.
1462 * But we know *target* page is not freed/reused under us.
1463 * mem_cgroup_uncharge_page() does all necessary checks.
1464 */
1465 if (ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
1466 mem_cgroup_uncharge_page(target);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001467}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001468
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001469/*
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001470 * A call to try to shrink memory usage under specified resource controller.
1471 * This is typically used for page reclaiming for shmem for reducing side
1472 * effect of page allocation from shmem, which is used by some mem_cgroup.
1473 */
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001474int mem_cgroup_shrink_usage(struct page *page,
1475 struct mm_struct *mm,
1476 gfp_t gfp_mask)
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001477{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001478 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001479 int progress = 0;
1480 int retry = MEM_CGROUP_RECLAIM_RETRIES;
1481
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001482 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001483 return 0;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001484 if (page)
1485 mem = try_get_mem_cgroup_from_swapcache(page);
1486 if (!mem && mm)
1487 mem = try_get_mem_cgroup_from_mm(mm);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001488 if (unlikely(!mem))
Balbir Singh31a78f22008-09-28 23:09:31 +01001489 return 0;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001490
1491 do {
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001492 progress = mem_cgroup_hierarchical_reclaim(mem, gfp_mask, true);
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -08001493 progress += mem_cgroup_check_under_limit(mem);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001494 } while (!progress && --retry);
1495
1496 css_put(&mem->css);
1497 if (!retry)
1498 return -ENOMEM;
1499 return 0;
1500}
1501
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001502static DEFINE_MUTEX(set_limit_mutex);
1503
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08001504static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001505 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001506{
1507
1508 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
1509 int progress;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001510 u64 memswlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001511 int ret = 0;
1512
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001513 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001514 if (signal_pending(current)) {
1515 ret = -EINTR;
1516 break;
1517 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001518 /*
1519 * Rather than hide all in some function, I do this in
1520 * open coded manner. You see what this really does.
1521 * We have to guarantee mem->res.limit < mem->memsw.limit.
1522 */
1523 mutex_lock(&set_limit_mutex);
1524 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1525 if (memswlimit < val) {
1526 ret = -EINVAL;
1527 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001528 break;
1529 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001530 ret = res_counter_set_limit(&memcg->res, val);
1531 mutex_unlock(&set_limit_mutex);
1532
1533 if (!ret)
1534 break;
1535
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001536 progress = mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL,
1537 false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001538 if (!progress) retry_count--;
1539 }
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001540
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001541 return ret;
1542}
1543
1544int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
1545 unsigned long long val)
1546{
1547 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
1548 u64 memlimit, oldusage, curusage;
1549 int ret;
1550
1551 if (!do_swap_account)
1552 return -EINVAL;
1553
1554 while (retry_count) {
1555 if (signal_pending(current)) {
1556 ret = -EINTR;
1557 break;
1558 }
1559 /*
1560 * Rather than hide all in some function, I do this in
1561 * open coded manner. You see what this really does.
1562 * We have to guarantee mem->res.limit < mem->memsw.limit.
1563 */
1564 mutex_lock(&set_limit_mutex);
1565 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1566 if (memlimit > val) {
1567 ret = -EINVAL;
1568 mutex_unlock(&set_limit_mutex);
1569 break;
1570 }
1571 ret = res_counter_set_limit(&memcg->memsw, val);
1572 mutex_unlock(&set_limit_mutex);
1573
1574 if (!ret)
1575 break;
1576
1577 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001578 mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001579 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
1580 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001581 retry_count--;
1582 }
1583 return ret;
1584}
1585
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001586/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001587 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001588 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
1589 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001590static int mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001591 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001592{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001593 struct zone *zone;
1594 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001595 struct page_cgroup *pc, *busy;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001596 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001597 struct list_head *list;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001598 int ret = 0;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001599
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001600 zone = &NODE_DATA(node)->node_zones[zid];
1601 mz = mem_cgroup_zoneinfo(mem, node, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001602 list = &mz->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001603
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001604 loop = MEM_CGROUP_ZSTAT(mz, lru);
1605 /* give some margin against EBUSY etc...*/
1606 loop += 256;
1607 busy = NULL;
1608 while (loop--) {
1609 ret = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001610 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001611 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001612 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001613 break;
1614 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001615 pc = list_entry(list->prev, struct page_cgroup, lru);
1616 if (busy == pc) {
1617 list_move(&pc->lru, list);
1618 busy = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001619 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001620 continue;
1621 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001622 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001623
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -08001624 ret = mem_cgroup_move_parent(pc, mem, GFP_KERNEL);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001625 if (ret == -ENOMEM)
1626 break;
1627
1628 if (ret == -EBUSY || ret == -EINVAL) {
1629 /* found lock contention or "pc" is obsolete. */
1630 busy = pc;
1631 cond_resched();
1632 } else
1633 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001634 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001635
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001636 if (!ret && !list_empty(list))
1637 return -EBUSY;
1638 return ret;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001639}
1640
1641/*
1642 * make mem_cgroup's charge to be 0 if there is no task.
1643 * This enables deleting this mem_cgroup.
1644 */
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001645static int mem_cgroup_force_empty(struct mem_cgroup *mem, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001646{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001647 int ret;
1648 int node, zid, shrink;
1649 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001650 struct cgroup *cgrp = mem->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001651
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001652 css_get(&mem->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001653
1654 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001655 /* should free all ? */
1656 if (free_all)
1657 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001658move_account:
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001659 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001660 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001661 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001662 goto out;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001663 ret = -EINTR;
1664 if (signal_pending(current))
1665 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001666 /* This is for making all *used* pages to be on LRU. */
1667 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001668 ret = 0;
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08001669 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001670 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001671 enum lru_list l;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001672 for_each_lru(l) {
1673 ret = mem_cgroup_force_empty_list(mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001674 node, zid, l);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001675 if (ret)
1676 break;
1677 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001678 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001679 if (ret)
1680 break;
1681 }
1682 /* it seems parent cgroup doesn't have enough mem */
1683 if (ret == -ENOMEM)
1684 goto try_to_free;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001685 cond_resched();
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001686 }
1687 ret = 0;
1688out:
1689 css_put(&mem->css);
1690 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001691
1692try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001693 /* returns EBUSY if there is a task or if we come here twice. */
1694 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001695 ret = -EBUSY;
1696 goto out;
1697 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001698 /* we call try-to-free pages for make this cgroup empty */
1699 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001700 /* try to free all pages in this cgroup */
1701 shrink = 1;
1702 while (nr_retries && mem->res.usage > 0) {
1703 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001704
1705 if (signal_pending(current)) {
1706 ret = -EINTR;
1707 goto out;
1708 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001709 progress = try_to_free_mem_cgroup_pages(mem, GFP_KERNEL,
1710 false, get_swappiness(mem));
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001711 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001712 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001713 /* maybe some writeback is necessary */
1714 congestion_wait(WRITE, HZ/10);
1715 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001716
1717 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001718 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001719 /* try move_account...there may be some *locked* pages. */
1720 if (mem->res.usage)
1721 goto move_account;
1722 ret = 0;
1723 goto out;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001724}
1725
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001726int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
1727{
1728 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
1729}
1730
1731
Balbir Singh18f59ea2009-01-07 18:08:07 -08001732static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
1733{
1734 return mem_cgroup_from_cont(cont)->use_hierarchy;
1735}
1736
1737static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
1738 u64 val)
1739{
1740 int retval = 0;
1741 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1742 struct cgroup *parent = cont->parent;
1743 struct mem_cgroup *parent_mem = NULL;
1744
1745 if (parent)
1746 parent_mem = mem_cgroup_from_cont(parent);
1747
1748 cgroup_lock();
1749 /*
1750 * If parent's use_hiearchy is set, we can't make any modifications
1751 * in the child subtrees. If it is unset, then the change can
1752 * occur, provided the current cgroup has no children.
1753 *
1754 * For the root cgroup, parent_mem is NULL, we allow value to be
1755 * set if there are no children.
1756 */
1757 if ((!parent_mem || !parent_mem->use_hierarchy) &&
1758 (val == 1 || val == 0)) {
1759 if (list_empty(&cont->children))
1760 mem->use_hierarchy = val;
1761 else
1762 retval = -EBUSY;
1763 } else
1764 retval = -EINVAL;
1765 cgroup_unlock();
1766
1767 return retval;
1768}
1769
Paul Menage2c3daa72008-04-29 00:59:58 -07001770static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001771{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001772 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1773 u64 val = 0;
1774 int type, name;
1775
1776 type = MEMFILE_TYPE(cft->private);
1777 name = MEMFILE_ATTR(cft->private);
1778 switch (type) {
1779 case _MEM:
1780 val = res_counter_read_u64(&mem->res, name);
1781 break;
1782 case _MEMSWAP:
1783 if (do_swap_account)
1784 val = res_counter_read_u64(&mem->memsw, name);
1785 break;
1786 default:
1787 BUG();
1788 break;
1789 }
1790 return val;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001791}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001792/*
1793 * The user of this function is...
1794 * RES_LIMIT.
1795 */
Paul Menage856c13a2008-07-25 01:47:04 -07001796static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
1797 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001798{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001799 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001800 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001801 unsigned long long val;
1802 int ret;
1803
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001804 type = MEMFILE_TYPE(cft->private);
1805 name = MEMFILE_ATTR(cft->private);
1806 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001807 case RES_LIMIT:
1808 /* This function does all necessary parse...reuse it */
1809 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001810 if (ret)
1811 break;
1812 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001813 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001814 else
1815 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001816 break;
1817 default:
1818 ret = -EINVAL; /* should be BUG() ? */
1819 break;
1820 }
1821 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001822}
1823
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08001824static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
1825 unsigned long long *mem_limit, unsigned long long *memsw_limit)
1826{
1827 struct cgroup *cgroup;
1828 unsigned long long min_limit, min_memsw_limit, tmp;
1829
1830 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1831 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1832 cgroup = memcg->css.cgroup;
1833 if (!memcg->use_hierarchy)
1834 goto out;
1835
1836 while (cgroup->parent) {
1837 cgroup = cgroup->parent;
1838 memcg = mem_cgroup_from_cont(cgroup);
1839 if (!memcg->use_hierarchy)
1840 break;
1841 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
1842 min_limit = min(min_limit, tmp);
1843 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1844 min_memsw_limit = min(min_memsw_limit, tmp);
1845 }
1846out:
1847 *mem_limit = min_limit;
1848 *memsw_limit = min_memsw_limit;
1849 return;
1850}
1851
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001852static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001853{
1854 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001855 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001856
1857 mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001858 type = MEMFILE_TYPE(event);
1859 name = MEMFILE_ATTR(event);
1860 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001861 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001862 if (type == _MEM)
1863 res_counter_reset_max(&mem->res);
1864 else
1865 res_counter_reset_max(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001866 break;
1867 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001868 if (type == _MEM)
1869 res_counter_reset_failcnt(&mem->res);
1870 else
1871 res_counter_reset_failcnt(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001872 break;
1873 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07001874 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001875}
1876
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001877
1878/* For read statistics */
1879enum {
1880 MCS_CACHE,
1881 MCS_RSS,
1882 MCS_PGPGIN,
1883 MCS_PGPGOUT,
1884 MCS_INACTIVE_ANON,
1885 MCS_ACTIVE_ANON,
1886 MCS_INACTIVE_FILE,
1887 MCS_ACTIVE_FILE,
1888 MCS_UNEVICTABLE,
1889 NR_MCS_STAT,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001890};
1891
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001892struct mcs_total_stat {
1893 s64 stat[NR_MCS_STAT];
1894};
1895
1896struct {
1897 char *local_name;
1898 char *total_name;
1899} memcg_stat_strings[NR_MCS_STAT] = {
1900 {"cache", "total_cache"},
1901 {"rss", "total_rss"},
1902 {"pgpgin", "total_pgpgin"},
1903 {"pgpgout", "total_pgpgout"},
1904 {"inactive_anon", "total_inactive_anon"},
1905 {"active_anon", "total_active_anon"},
1906 {"inactive_file", "total_inactive_file"},
1907 {"active_file", "total_active_file"},
1908 {"unevictable", "total_unevictable"}
1909};
1910
1911
1912static int mem_cgroup_get_local_stat(struct mem_cgroup *mem, void *data)
1913{
1914 struct mcs_total_stat *s = data;
1915 s64 val;
1916
1917 /* per cpu stat */
1918 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_CACHE);
1919 s->stat[MCS_CACHE] += val * PAGE_SIZE;
1920 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
1921 s->stat[MCS_RSS] += val * PAGE_SIZE;
1922 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_PGPGIN_COUNT);
1923 s->stat[MCS_PGPGIN] += val;
1924 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_PGPGOUT_COUNT);
1925 s->stat[MCS_PGPGOUT] += val;
1926
1927 /* per zone stat */
1928 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_ANON);
1929 s->stat[MCS_INACTIVE_ANON] += val * PAGE_SIZE;
1930 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_ANON);
1931 s->stat[MCS_ACTIVE_ANON] += val * PAGE_SIZE;
1932 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_FILE);
1933 s->stat[MCS_INACTIVE_FILE] += val * PAGE_SIZE;
1934 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_FILE);
1935 s->stat[MCS_ACTIVE_FILE] += val * PAGE_SIZE;
1936 val = mem_cgroup_get_local_zonestat(mem, LRU_UNEVICTABLE);
1937 s->stat[MCS_UNEVICTABLE] += val * PAGE_SIZE;
1938 return 0;
1939}
1940
1941static void
1942mem_cgroup_get_total_stat(struct mem_cgroup *mem, struct mcs_total_stat *s)
1943{
1944 mem_cgroup_walk_tree(mem, s, mem_cgroup_get_local_stat);
1945}
1946
Paul Menagec64745c2008-04-29 01:00:02 -07001947static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
1948 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001949{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001950 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001951 struct mcs_total_stat mystat;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001952 int i;
1953
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001954 memset(&mystat, 0, sizeof(mystat));
1955 mem_cgroup_get_local_stat(mem_cont, &mystat);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001956
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001957 for (i = 0; i < NR_MCS_STAT; i++)
1958 cb->fill(cb, memcg_stat_strings[i].local_name, mystat.stat[i]);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001959
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001960 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08001961 {
1962 unsigned long long limit, memsw_limit;
1963 memcg_get_hierarchical_limit(mem_cont, &limit, &memsw_limit);
1964 cb->fill(cb, "hierarchical_memory_limit", limit);
1965 if (do_swap_account)
1966 cb->fill(cb, "hierarchical_memsw_limit", memsw_limit);
1967 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08001968
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001969 memset(&mystat, 0, sizeof(mystat));
1970 mem_cgroup_get_total_stat(mem_cont, &mystat);
1971 for (i = 0; i < NR_MCS_STAT; i++)
1972 cb->fill(cb, memcg_stat_strings[i].total_name, mystat.stat[i]);
1973
1974
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08001975#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001976 cb->fill(cb, "inactive_ratio", calc_inactive_ratio(mem_cont, NULL));
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08001977
1978 {
1979 int nid, zid;
1980 struct mem_cgroup_per_zone *mz;
1981 unsigned long recent_rotated[2] = {0, 0};
1982 unsigned long recent_scanned[2] = {0, 0};
1983
1984 for_each_online_node(nid)
1985 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1986 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
1987
1988 recent_rotated[0] +=
1989 mz->reclaim_stat.recent_rotated[0];
1990 recent_rotated[1] +=
1991 mz->reclaim_stat.recent_rotated[1];
1992 recent_scanned[0] +=
1993 mz->reclaim_stat.recent_scanned[0];
1994 recent_scanned[1] +=
1995 mz->reclaim_stat.recent_scanned[1];
1996 }
1997 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
1998 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
1999 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
2000 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
2001 }
2002#endif
2003
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002004 return 0;
2005}
2006
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002007static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
2008{
2009 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2010
2011 return get_swappiness(memcg);
2012}
2013
2014static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
2015 u64 val)
2016{
2017 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2018 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08002019
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002020 if (val > 100)
2021 return -EINVAL;
2022
2023 if (cgrp->parent == NULL)
2024 return -EINVAL;
2025
2026 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08002027
2028 cgroup_lock();
2029
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002030 /* If under hierarchy, only empty-root can set this value */
2031 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08002032 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
2033 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002034 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08002035 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002036
2037 spin_lock(&memcg->reclaim_param_lock);
2038 memcg->swappiness = val;
2039 spin_unlock(&memcg->reclaim_param_lock);
2040
Li Zefan068b38c2009-01-15 13:51:26 -08002041 cgroup_unlock();
2042
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002043 return 0;
2044}
2045
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002046
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002047static struct cftype mem_cgroup_files[] = {
2048 {
Balbir Singh0eea1032008-02-07 00:13:57 -08002049 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002050 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Paul Menage2c3daa72008-04-29 00:59:58 -07002051 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002052 },
2053 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002054 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002055 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002056 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002057 .read_u64 = mem_cgroup_read,
2058 },
2059 {
Balbir Singh0eea1032008-02-07 00:13:57 -08002060 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002061 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07002062 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07002063 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002064 },
2065 {
2066 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002067 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002068 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07002069 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002070 },
Balbir Singh8697d332008-02-07 00:13:59 -08002071 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002072 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07002073 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002074 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002075 {
2076 .name = "force_empty",
2077 .trigger = mem_cgroup_force_empty_write,
2078 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08002079 {
2080 .name = "use_hierarchy",
2081 .write_u64 = mem_cgroup_hierarchy_write,
2082 .read_u64 = mem_cgroup_hierarchy_read,
2083 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002084 {
2085 .name = "swappiness",
2086 .read_u64 = mem_cgroup_swappiness_read,
2087 .write_u64 = mem_cgroup_swappiness_write,
2088 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002089};
2090
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002091#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2092static struct cftype memsw_cgroup_files[] = {
2093 {
2094 .name = "memsw.usage_in_bytes",
2095 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
2096 .read_u64 = mem_cgroup_read,
2097 },
2098 {
2099 .name = "memsw.max_usage_in_bytes",
2100 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
2101 .trigger = mem_cgroup_reset,
2102 .read_u64 = mem_cgroup_read,
2103 },
2104 {
2105 .name = "memsw.limit_in_bytes",
2106 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
2107 .write_string = mem_cgroup_write,
2108 .read_u64 = mem_cgroup_read,
2109 },
2110 {
2111 .name = "memsw.failcnt",
2112 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
2113 .trigger = mem_cgroup_reset,
2114 .read_u64 = mem_cgroup_read,
2115 },
2116};
2117
2118static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2119{
2120 if (!do_swap_account)
2121 return 0;
2122 return cgroup_add_files(cont, ss, memsw_cgroup_files,
2123 ARRAY_SIZE(memsw_cgroup_files));
2124};
2125#else
2126static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2127{
2128 return 0;
2129}
2130#endif
2131
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002132static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2133{
2134 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002135 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -07002136 enum lru_list l;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002137 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002138 /*
2139 * This routine is called against possible nodes.
2140 * But it's BUG to call kmalloc() against offline node.
2141 *
2142 * TODO: this routine can waste much memory for nodes which will
2143 * never be onlined. It's better to use memory hotplug callback
2144 * function.
2145 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002146 if (!node_state(node, N_NORMAL_MEMORY))
2147 tmp = -1;
2148 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002149 if (!pn)
2150 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002151
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002152 mem->info.nodeinfo[node] = pn;
2153 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002154
2155 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
2156 mz = &pn->zoneinfo[zone];
Christoph Lameterb69408e2008-10-18 20:26:14 -07002157 for_each_lru(l)
2158 INIT_LIST_HEAD(&mz->lists[l]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002159 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002160 return 0;
2161}
2162
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002163static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2164{
2165 kfree(mem->info.nodeinfo[node]);
2166}
2167
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002168static int mem_cgroup_size(void)
2169{
2170 int cpustat_size = nr_cpu_ids * sizeof(struct mem_cgroup_stat_cpu);
2171 return sizeof(struct mem_cgroup) + cpustat_size;
2172}
2173
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002174static struct mem_cgroup *mem_cgroup_alloc(void)
2175{
2176 struct mem_cgroup *mem;
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002177 int size = mem_cgroup_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002178
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002179 if (size < PAGE_SIZE)
2180 mem = kmalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002181 else
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002182 mem = vmalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002183
2184 if (mem)
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002185 memset(mem, 0, size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002186 return mem;
2187}
2188
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002189/*
2190 * At destroying mem_cgroup, references from swap_cgroup can remain.
2191 * (scanning all at force_empty is too costly...)
2192 *
2193 * Instead of clearing all references at force_empty, we remember
2194 * the number of reference from swap_cgroup and free mem_cgroup when
2195 * it goes down to 0.
2196 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002197 * Removal of cgroup itself succeeds regardless of refs from swap.
2198 */
2199
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002200static void __mem_cgroup_free(struct mem_cgroup *mem)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002201{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002202 int node;
2203
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002204 free_css_id(&mem_cgroup_subsys, &mem->css);
2205
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002206 for_each_node_state(node, N_POSSIBLE)
2207 free_mem_cgroup_per_zone_info(mem, node);
2208
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002209 if (mem_cgroup_size() < PAGE_SIZE)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002210 kfree(mem);
2211 else
2212 vfree(mem);
2213}
2214
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002215static void mem_cgroup_get(struct mem_cgroup *mem)
2216{
2217 atomic_inc(&mem->refcnt);
2218}
2219
2220static void mem_cgroup_put(struct mem_cgroup *mem)
2221{
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002222 if (atomic_dec_and_test(&mem->refcnt)) {
2223 struct mem_cgroup *parent = parent_mem_cgroup(mem);
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002224 __mem_cgroup_free(mem);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002225 if (parent)
2226 mem_cgroup_put(parent);
2227 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002228}
2229
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002230/*
2231 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
2232 */
2233static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem)
2234{
2235 if (!mem->res.parent)
2236 return NULL;
2237 return mem_cgroup_from_res_counter(mem->res.parent, res);
2238}
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002239
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002240#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2241static void __init enable_swap_cgroup(void)
2242{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002243 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002244 do_swap_account = 1;
2245}
2246#else
2247static void __init enable_swap_cgroup(void)
2248{
2249}
2250#endif
2251
Li Zefan0eb253e2009-01-15 13:51:25 -08002252static struct cgroup_subsys_state * __ref
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002253mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
2254{
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002255 struct mem_cgroup *mem, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002256 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002257 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002258
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002259 mem = mem_cgroup_alloc();
2260 if (!mem)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002261 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08002262
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002263 for_each_node_state(node, N_POSSIBLE)
2264 if (alloc_mem_cgroup_per_zone_info(mem, node))
2265 goto free_out;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002266 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002267 if (cont->parent == NULL) {
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002268 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002269 parent = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08002270 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002271 parent = mem_cgroup_from_cont(cont->parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002272 mem->use_hierarchy = parent->use_hierarchy;
2273 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002274
Balbir Singh18f59ea2009-01-07 18:08:07 -08002275 if (parent && parent->use_hierarchy) {
2276 res_counter_init(&mem->res, &parent->res);
2277 res_counter_init(&mem->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002278 /*
2279 * We increment refcnt of the parent to ensure that we can
2280 * safely access it on res_counter_charge/uncharge.
2281 * This refcnt will be decremented when freeing this
2282 * mem_cgroup(see mem_cgroup_put).
2283 */
2284 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002285 } else {
2286 res_counter_init(&mem->res, NULL);
2287 res_counter_init(&mem->memsw, NULL);
2288 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002289 mem->last_scanned_child = 0;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -08002290 spin_lock_init(&mem->reclaim_param_lock);
Balbir Singh6d61ef42009-01-07 18:08:06 -08002291
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002292 if (parent)
2293 mem->swappiness = get_swappiness(parent);
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002294 atomic_set(&mem->refcnt, 1);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002295 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002296free_out:
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002297 __mem_cgroup_free(mem);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002298 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002299}
2300
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07002301static int mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002302 struct cgroup *cont)
2303{
2304 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07002305
2306 return mem_cgroup_force_empty(mem, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002307}
2308
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002309static void mem_cgroup_destroy(struct cgroup_subsys *ss,
2310 struct cgroup *cont)
2311{
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002312 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002313
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002314 mem_cgroup_put(mem);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002315}
2316
2317static int mem_cgroup_populate(struct cgroup_subsys *ss,
2318 struct cgroup *cont)
2319{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002320 int ret;
2321
2322 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
2323 ARRAY_SIZE(mem_cgroup_files));
2324
2325 if (!ret)
2326 ret = register_memsw_files(cont, ss);
2327 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002328}
2329
Balbir Singh67e465a2008-02-07 00:13:54 -08002330static void mem_cgroup_move_task(struct cgroup_subsys *ss,
2331 struct cgroup *cont,
2332 struct cgroup *old_cont,
2333 struct task_struct *p)
2334{
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002335 mutex_lock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002336 /*
Nikanth Karthikesanf9717d22009-01-07 18:08:11 -08002337 * FIXME: It's better to move charges of this process from old
2338 * memcg to new memcg. But it's just on TODO-List now.
Balbir Singh67e465a2008-02-07 00:13:54 -08002339 */
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002340 mutex_unlock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002341}
2342
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002343struct cgroup_subsys mem_cgroup_subsys = {
2344 .name = "memory",
2345 .subsys_id = mem_cgroup_subsys_id,
2346 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002347 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002348 .destroy = mem_cgroup_destroy,
2349 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08002350 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002351 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002352 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002353};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002354
2355#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2356
2357static int __init disable_swap_account(char *s)
2358{
2359 really_do_swap_account = 0;
2360 return 1;
2361}
2362__setup("noswapaccount", disable_swap_account);
2363#endif