blob: 6f6a575e77ad970156b2fceee7a022707ce1805f [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
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700705static int mem_cgroup_count_children_cb(struct mem_cgroup *mem, void *data)
706{
707 int *val = data;
708 (*val)++;
709 return 0;
710}
711/*
712 * This function returns the number of memcg under hierarchy tree. Returns
713 * 1(self count) if no children.
714 */
715static int mem_cgroup_count_children(struct mem_cgroup *mem)
716{
717 int num = 0;
718 mem_cgroup_walk_tree(mem, &num, mem_cgroup_count_children_cb);
719 return num;
720}
721
Balbir Singh6d61ef42009-01-07 18:08:06 -0800722/*
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700723 * Visit the first child (need not be the first child as per the ordering
724 * of the cgroup list, since we track last_scanned_child) of @mem and use
725 * that to reclaim free pages from.
726 */
727static struct mem_cgroup *
728mem_cgroup_select_victim(struct mem_cgroup *root_mem)
729{
730 struct mem_cgroup *ret = NULL;
731 struct cgroup_subsys_state *css;
732 int nextid, found;
733
734 if (!root_mem->use_hierarchy) {
735 css_get(&root_mem->css);
736 ret = root_mem;
737 }
738
739 while (!ret) {
740 rcu_read_lock();
741 nextid = root_mem->last_scanned_child + 1;
742 css = css_get_next(&mem_cgroup_subsys, nextid, &root_mem->css,
743 &found);
744 if (css && css_tryget(css))
745 ret = container_of(css, struct mem_cgroup, css);
746
747 rcu_read_unlock();
748 /* Updates scanning parameter */
749 spin_lock(&root_mem->reclaim_param_lock);
750 if (!css) {
751 /* this means start scan from ID:1 */
752 root_mem->last_scanned_child = 0;
753 } else
754 root_mem->last_scanned_child = found;
755 spin_unlock(&root_mem->reclaim_param_lock);
756 }
757
758 return ret;
759}
760
761/*
762 * Scan the hierarchy if needed to reclaim memory. We remember the last child
763 * we reclaimed from, so that we don't end up penalizing one child extensively
764 * based on its position in the children list.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800765 *
766 * root_mem is the original ancestor that we've been reclaim from.
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700767 *
768 * We give up and return to the caller when we visit root_mem twice.
769 * (other groups can be removed while we're walking....)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700770 *
771 * If shrink==true, for avoiding to free too much, this returns immedieately.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800772 */
773static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_mem,
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700774 gfp_t gfp_mask, bool noswap, bool shrink)
Balbir Singh6d61ef42009-01-07 18:08:06 -0800775{
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700776 struct mem_cgroup *victim;
777 int ret, total = 0;
778 int loop = 0;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800779
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700780 while (loop < 2) {
781 victim = mem_cgroup_select_victim(root_mem);
782 if (victim == root_mem)
783 loop++;
784 if (!mem_cgroup_local_usage(&victim->stat)) {
785 /* this cgroup's local usage == 0 */
786 css_put(&victim->css);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800787 continue;
788 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700789 /* we use swappiness of local cgroup */
790 ret = try_to_free_mem_cgroup_pages(victim, gfp_mask, noswap,
791 get_swappiness(victim));
792 css_put(&victim->css);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700793 /*
794 * At shrinking usage, we can't check we should stop here or
795 * reclaim more. It's depends on callers. last_scanned_child
796 * will work enough for keeping fairness under tree.
797 */
798 if (shrink)
799 return ret;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700800 total += ret;
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800801 if (mem_cgroup_check_under_limit(root_mem))
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700802 return 1 + total;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800803 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700804 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800805}
806
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800807bool mem_cgroup_oom_called(struct task_struct *task)
808{
809 bool ret = false;
810 struct mem_cgroup *mem;
811 struct mm_struct *mm;
812
813 rcu_read_lock();
814 mm = task->mm;
815 if (!mm)
816 mm = &init_mm;
817 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
818 if (mem && time_before(jiffies, mem->last_oom_jiffies + HZ/10))
819 ret = true;
820 rcu_read_unlock();
821 return ret;
822}
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800823/*
824 * Unlike exported interface, "oom" parameter is added. if oom==true,
825 * oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800826 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800827static int __mem_cgroup_try_charge(struct mm_struct *mm,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800828 gfp_t gfp_mask, struct mem_cgroup **memcg,
829 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800830{
Balbir Singh6d61ef42009-01-07 18:08:06 -0800831 struct mem_cgroup *mem, *mem_over_limit;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800832 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800833 struct res_counter *fail_res;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800834
835 if (unlikely(test_thread_flag(TIF_MEMDIE))) {
836 /* Don't account this! */
837 *memcg = NULL;
838 return 0;
839 }
840
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800841 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800842 * We always charge the cgroup the mm_struct belongs to.
843 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800844 * thread group leader migrates. It's possible that mm is not
845 * set, if so charge the init_mm (happens for pagecache usage).
846 */
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800847 mem = *memcg;
848 if (likely(!mem)) {
849 mem = try_get_mem_cgroup_from_mm(mm);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800850 *memcg = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700851 } else {
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800852 css_get(&mem->css);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700853 }
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800854 if (unlikely(!mem))
855 return 0;
856
857 VM_BUG_ON(mem_cgroup_is_obsolete(mem));
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800858
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800859 while (1) {
860 int ret;
861 bool noswap = false;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800862
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800863 ret = res_counter_charge(&mem->res, PAGE_SIZE, &fail_res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800864 if (likely(!ret)) {
865 if (!do_swap_account)
866 break;
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800867 ret = res_counter_charge(&mem->memsw, PAGE_SIZE,
868 &fail_res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800869 if (likely(!ret))
870 break;
871 /* mem+swap counter fails */
872 res_counter_uncharge(&mem->res, PAGE_SIZE);
873 noswap = true;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800874 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
875 memsw);
876 } else
877 /* mem counter fails */
878 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
879 res);
880
Hugh Dickins3be91272008-02-07 00:14:19 -0800881 if (!(gfp_mask & __GFP_WAIT))
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800882 goto nomem;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800883
Balbir Singh6d61ef42009-01-07 18:08:06 -0800884 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, gfp_mask,
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -0700885 noswap, false);
Daisuke Nishimura4d1c6272009-01-15 13:51:14 -0800886 if (ret)
887 continue;
Balbir Singh66e17072008-02-07 00:13:56 -0800888
889 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800890 * try_to_free_mem_cgroup_pages() might not give us a full
891 * picture of reclaim. Some pages are reclaimed and might be
892 * moved to swap cache or just unmapped from the cgroup.
893 * Check the limit again to see if the reclaim reduced the
894 * current usage of the cgroup before giving up
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800895 *
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800896 */
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800897 if (mem_cgroup_check_under_limit(mem_over_limit))
898 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800899
900 if (!nr_retries--) {
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800901 if (oom) {
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -0800902 mutex_lock(&memcg_tasklist);
KAMEZAWA Hiroyuki88700752009-01-07 18:08:09 -0800903 mem_cgroup_out_of_memory(mem_over_limit, gfp_mask);
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -0800904 mutex_unlock(&memcg_tasklist);
KAMEZAWA Hiroyuki88700752009-01-07 18:08:09 -0800905 mem_over_limit->last_oom_jiffies = jiffies;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800906 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800907 goto nomem;
Balbir Singh66e17072008-02-07 00:13:56 -0800908 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800909 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800910 return 0;
911nomem:
912 css_put(&mem->css);
913 return -ENOMEM;
914}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800915
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -0800916static struct mem_cgroup *try_get_mem_cgroup_from_swapcache(struct page *page)
917{
918 struct mem_cgroup *mem;
919 swp_entry_t ent;
920
921 if (!PageSwapCache(page))
922 return NULL;
923
924 ent.val = page_private(page);
925 mem = lookup_swap_cgroup(ent);
926 if (!mem)
927 return NULL;
928 if (!css_tryget(&mem->css))
929 return NULL;
930 return mem;
931}
932
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800933/*
Daisuke Nishimuraa5e924f2009-01-07 18:08:28 -0800934 * commit a charge got by __mem_cgroup_try_charge() and makes page_cgroup to be
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800935 * USED state. If already USED, uncharge and return.
936 */
937
938static void __mem_cgroup_commit_charge(struct mem_cgroup *mem,
939 struct page_cgroup *pc,
940 enum charge_type ctype)
941{
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800942 /* try_charge() can return NULL to *memcg, taking care of it. */
943 if (!mem)
944 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700945
946 lock_page_cgroup(pc);
947 if (unlikely(PageCgroupUsed(pc))) {
948 unlock_page_cgroup(pc);
949 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800950 if (do_swap_account)
951 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700952 css_put(&mem->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800953 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700954 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800955 pc->mem_cgroup = mem;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800956 smp_wmb();
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700957 pc->flags = pcg_default_flags[ctype];
Hugh Dickins3be91272008-02-07 00:14:19 -0800958
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800959 mem_cgroup_charge_statistics(mem, pc, true);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700960
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700961 unlock_page_cgroup(pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800962}
963
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800964/**
965 * mem_cgroup_move_account - move account of the page
966 * @pc: page_cgroup of the page.
967 * @from: mem_cgroup which the page is moved from.
968 * @to: mem_cgroup which the page is moved to. @from != @to.
969 *
970 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800971 * - page is not on LRU (isolate_page() is useful.)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800972 *
973 * returns 0 at success,
974 * returns -EBUSY when lock is busy or "pc" is unstable.
975 *
976 * This function does "uncharge" from old cgroup but doesn't do "charge" to
977 * new cgroup. It should be done by a caller.
978 */
979
980static int mem_cgroup_move_account(struct page_cgroup *pc,
981 struct mem_cgroup *from, struct mem_cgroup *to)
982{
983 struct mem_cgroup_per_zone *from_mz, *to_mz;
984 int nid, zid;
985 int ret = -EBUSY;
986
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800987 VM_BUG_ON(from == to);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800988 VM_BUG_ON(PageLRU(pc->page));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800989
990 nid = page_cgroup_nid(pc);
991 zid = page_cgroup_zid(pc);
992 from_mz = mem_cgroup_zoneinfo(from, nid, zid);
993 to_mz = mem_cgroup_zoneinfo(to, nid, zid);
994
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800995 if (!trylock_page_cgroup(pc))
996 return ret;
997
998 if (!PageCgroupUsed(pc))
999 goto out;
1000
1001 if (pc->mem_cgroup != from)
1002 goto out;
1003
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001004 res_counter_uncharge(&from->res, PAGE_SIZE);
1005 mem_cgroup_charge_statistics(from, pc, false);
1006 if (do_swap_account)
1007 res_counter_uncharge(&from->memsw, PAGE_SIZE);
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001008 css_put(&from->css);
1009
1010 css_get(&to->css);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001011 pc->mem_cgroup = to;
1012 mem_cgroup_charge_statistics(to, pc, true);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001013 ret = 0;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001014out:
1015 unlock_page_cgroup(pc);
1016 return ret;
1017}
1018
1019/*
1020 * move charges to its parent.
1021 */
1022
1023static int mem_cgroup_move_parent(struct page_cgroup *pc,
1024 struct mem_cgroup *child,
1025 gfp_t gfp_mask)
1026{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001027 struct page *page = pc->page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001028 struct cgroup *cg = child->css.cgroup;
1029 struct cgroup *pcg = cg->parent;
1030 struct mem_cgroup *parent;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001031 int ret;
1032
1033 /* Is ROOT ? */
1034 if (!pcg)
1035 return -EINVAL;
1036
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001037
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001038 parent = mem_cgroup_from_cont(pcg);
1039
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001040
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001041 ret = __mem_cgroup_try_charge(NULL, gfp_mask, &parent, false);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001042 if (ret || !parent)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001043 return ret;
1044
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001045 if (!get_page_unless_zero(page)) {
1046 ret = -EBUSY;
1047 goto uncharge;
1048 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001049
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001050 ret = isolate_lru_page(page);
1051
1052 if (ret)
1053 goto cancel;
1054
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001055 ret = mem_cgroup_move_account(pc, child, parent);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001056
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001057 putback_lru_page(page);
1058 if (!ret) {
1059 put_page(page);
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001060 /* drop extra refcnt by try_charge() */
1061 css_put(&parent->css);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001062 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001063 }
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001064
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001065cancel:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001066 put_page(page);
1067uncharge:
1068 /* drop extra refcnt by try_charge() */
1069 css_put(&parent->css);
1070 /* uncharge if move fails */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001071 res_counter_uncharge(&parent->res, PAGE_SIZE);
1072 if (do_swap_account)
1073 res_counter_uncharge(&parent->memsw, PAGE_SIZE);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001074 return ret;
1075}
1076
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001077/*
1078 * Charge the memory controller for page usage.
1079 * Return
1080 * 0 if the charge was successful
1081 * < 0 if the cgroup is over its limit
1082 */
1083static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
1084 gfp_t gfp_mask, enum charge_type ctype,
1085 struct mem_cgroup *memcg)
1086{
1087 struct mem_cgroup *mem;
1088 struct page_cgroup *pc;
1089 int ret;
1090
1091 pc = lookup_page_cgroup(page);
1092 /* can happen at boot */
1093 if (unlikely(!pc))
1094 return 0;
1095 prefetchw(pc);
1096
1097 mem = memcg;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001098 ret = __mem_cgroup_try_charge(mm, gfp_mask, &mem, true);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001099 if (ret || !mem)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001100 return ret;
1101
1102 __mem_cgroup_commit_charge(mem, pc, ctype);
1103 return 0;
1104}
1105
1106int mem_cgroup_newpage_charge(struct page *page,
1107 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001108{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001109 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001110 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001111 if (PageCompound(page))
1112 return 0;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001113 /*
1114 * If already mapped, we don't have to account.
1115 * If page cache, page->mapping has address_space.
1116 * But page->mapping may have out-of-use anon_vma pointer,
1117 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
1118 * is NULL.
1119 */
1120 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
1121 return 0;
1122 if (unlikely(!mm))
1123 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001124 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001125 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001126}
1127
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001128int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
1129 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -08001130{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001131 struct mem_cgroup *mem = NULL;
1132 int ret;
1133
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001134 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001135 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001136 if (PageCompound(page))
1137 return 0;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001138 /*
1139 * Corner case handling. This is called from add_to_page_cache()
1140 * in usual. But some FS (shmem) precharges this page before calling it
1141 * and call add_to_page_cache() with GFP_NOWAIT.
1142 *
1143 * For GFP_NOWAIT case, the page may be pre-charged before calling
1144 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
1145 * charge twice. (It works but has to pay a bit larger cost.)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001146 * And when the page is SwapCache, it should take swap information
1147 * into account. This is under lock_page() now.
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001148 */
1149 if (!(gfp_mask & __GFP_WAIT)) {
1150 struct page_cgroup *pc;
1151
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001152
1153 pc = lookup_page_cgroup(page);
1154 if (!pc)
1155 return 0;
1156 lock_page_cgroup(pc);
1157 if (PageCgroupUsed(pc)) {
1158 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001159 return 0;
1160 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001161 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001162 }
1163
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001164 if (do_swap_account && PageSwapCache(page)) {
1165 mem = try_get_mem_cgroup_from_swapcache(page);
1166 if (mem)
1167 mm = NULL;
1168 else
1169 mem = NULL;
1170 /* SwapCache may be still linked to LRU now. */
1171 mem_cgroup_lru_del_before_commit_swapcache(page);
1172 }
1173
1174 if (unlikely(!mm && !mem))
Balbir Singh8697d332008-02-07 00:13:59 -08001175 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001176
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -07001177 if (page_is_file_cache(page))
1178 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001179 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001180
1181 ret = mem_cgroup_charge_common(page, mm, gfp_mask,
1182 MEM_CGROUP_CHARGE_TYPE_SHMEM, mem);
1183 if (mem)
1184 css_put(&mem->css);
1185 if (PageSwapCache(page))
1186 mem_cgroup_lru_add_after_commit_swapcache(page);
1187
1188 if (do_swap_account && !ret && PageSwapCache(page)) {
1189 swp_entry_t ent = {.val = page_private(page)};
1190 /* avoid double counting */
1191 mem = swap_cgroup_record(ent, NULL);
1192 if (mem) {
1193 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
1194 mem_cgroup_put(mem);
1195 }
1196 }
1197 return ret;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001198}
1199
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001200/*
1201 * While swap-in, try_charge -> commit or cancel, the page is locked.
1202 * And when try_charge() successfully returns, one refcnt to memcg without
1203 * struct page_cgroup is aquired. This refcnt will be cumsumed by
1204 * "commit()" or removed by "cancel()"
1205 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001206int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
1207 struct page *page,
1208 gfp_t mask, struct mem_cgroup **ptr)
1209{
1210 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001211 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001212
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001213 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001214 return 0;
1215
1216 if (!do_swap_account)
1217 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001218 /*
1219 * A racing thread's fault, or swapoff, may have already updated
1220 * the pte, and even removed page from swap cache: return success
1221 * to go on to do_swap_page()'s pte_same() test, which should fail.
1222 */
1223 if (!PageSwapCache(page))
1224 return 0;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001225 mem = try_get_mem_cgroup_from_swapcache(page);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001226 if (!mem)
1227 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001228 *ptr = mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001229 ret = __mem_cgroup_try_charge(NULL, mask, ptr, true);
1230 /* drop extra refcnt from tryget */
1231 css_put(&mem->css);
1232 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001233charge_cur_mm:
1234 if (unlikely(!mm))
1235 mm = &init_mm;
1236 return __mem_cgroup_try_charge(mm, mask, ptr, true);
1237}
1238
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001239void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
1240{
1241 struct page_cgroup *pc;
1242
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001243 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001244 return;
1245 if (!ptr)
1246 return;
1247 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001248 mem_cgroup_lru_del_before_commit_swapcache(page);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001249 __mem_cgroup_commit_charge(ptr, pc, MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001250 mem_cgroup_lru_add_after_commit_swapcache(page);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001251 /*
1252 * Now swap is on-memory. This means this page may be
1253 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001254 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
1255 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
1256 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001257 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001258 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001259 swp_entry_t ent = {.val = page_private(page)};
1260 struct mem_cgroup *memcg;
1261 memcg = swap_cgroup_record(ent, NULL);
1262 if (memcg) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001263 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1264 mem_cgroup_put(memcg);
1265 }
1266
1267 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001268 /* add this page(page_cgroup) to the LRU we want. */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001269
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001270}
1271
1272void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *mem)
1273{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001274 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001275 return;
1276 if (!mem)
1277 return;
1278 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001279 if (do_swap_account)
1280 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001281 css_put(&mem->css);
1282}
1283
1284
Balbir Singh8697d332008-02-07 00:13:59 -08001285/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001286 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001287 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001288static struct mem_cgroup *
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001289__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001290{
Hugh Dickins82895462008-03-04 14:29:08 -08001291 struct page_cgroup *pc;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001292 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001293 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001294
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001295 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001296 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07001297
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001298 if (PageSwapCache(page))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001299 return NULL;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001300
Balbir Singh8697d332008-02-07 00:13:59 -08001301 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08001302 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08001303 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001304 pc = lookup_page_cgroup(page);
1305 if (unlikely(!pc || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001306 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001307
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001308 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001309
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001310 mem = pc->mem_cgroup;
1311
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001312 if (!PageCgroupUsed(pc))
1313 goto unlock_out;
1314
1315 switch (ctype) {
1316 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
1317 if (page_mapped(page))
1318 goto unlock_out;
1319 break;
1320 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
1321 if (!PageAnon(page)) { /* Shared memory */
1322 if (page->mapping && !page_is_file_cache(page))
1323 goto unlock_out;
1324 } else if (page_mapped(page)) /* Anon */
1325 goto unlock_out;
1326 break;
1327 default:
1328 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001329 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001330
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001331 res_counter_uncharge(&mem->res, PAGE_SIZE);
1332 if (do_swap_account && (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT))
1333 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001334 mem_cgroup_charge_statistics(mem, pc, false);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001335
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001336 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001337 /*
1338 * pc->mem_cgroup is not cleared here. It will be accessed when it's
1339 * freed from LRU. This is safe because uncharged page is expected not
1340 * to be reused (freed soon). Exception is SwapCache, it's handled by
1341 * special functions.
1342 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001343
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001344 mz = page_cgroup_zoneinfo(pc);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001345 unlock_page_cgroup(pc);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001346
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001347 /* at swapout, this memcg will be accessed to record to swap */
1348 if (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
1349 css_put(&mem->css);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001350
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001351 return mem;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001352
1353unlock_out:
1354 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001355 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08001356}
1357
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001358void mem_cgroup_uncharge_page(struct page *page)
1359{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001360 /* early check. */
1361 if (page_mapped(page))
1362 return;
1363 if (page->mapping && !PageAnon(page))
1364 return;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001365 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
1366}
1367
1368void mem_cgroup_uncharge_cache_page(struct page *page)
1369{
1370 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07001371 VM_BUG_ON(page->mapping);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001372 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
1373}
1374
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001375/*
1376 * called from __delete_from_swap_cache() and drop "page" account.
1377 * memcg information is recorded to swap_cgroup of "ent"
1378 */
1379void mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001380{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001381 struct mem_cgroup *memcg;
1382
1383 memcg = __mem_cgroup_uncharge_common(page,
1384 MEM_CGROUP_CHARGE_TYPE_SWAPOUT);
1385 /* record memcg information */
1386 if (do_swap_account && memcg) {
1387 swap_cgroup_record(ent, memcg);
1388 mem_cgroup_get(memcg);
1389 }
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001390 if (memcg)
1391 css_put(&memcg->css);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001392}
1393
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001394#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
1395/*
1396 * called from swap_entry_free(). remove record in swap_cgroup and
1397 * uncharge "memsw" account.
1398 */
1399void mem_cgroup_uncharge_swap(swp_entry_t ent)
1400{
1401 struct mem_cgroup *memcg;
1402
1403 if (!do_swap_account)
1404 return;
1405
1406 memcg = swap_cgroup_record(ent, NULL);
1407 if (memcg) {
1408 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1409 mem_cgroup_put(memcg);
1410 }
1411}
1412#endif
1413
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001414/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001415 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
1416 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001417 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001418int mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001419{
1420 struct page_cgroup *pc;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001421 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001422 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001423
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001424 if (mem_cgroup_disabled())
Balbir Singh40779602008-04-04 14:29:59 -07001425 return 0;
1426
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001427 pc = lookup_page_cgroup(page);
1428 lock_page_cgroup(pc);
1429 if (PageCgroupUsed(pc)) {
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001430 mem = pc->mem_cgroup;
1431 css_get(&mem->css);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001432 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001433 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001434
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001435 if (mem) {
Daisuke Nishimura3bb4edf2009-01-07 18:08:28 -08001436 ret = __mem_cgroup_try_charge(NULL, GFP_KERNEL, &mem, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001437 css_put(&mem->css);
1438 }
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001439 *ptr = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001440 return ret;
1441}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001442
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001443/* remove redundant charge if migration failed*/
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001444void mem_cgroup_end_migration(struct mem_cgroup *mem,
1445 struct page *oldpage, struct page *newpage)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001446{
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001447 struct page *target, *unused;
1448 struct page_cgroup *pc;
1449 enum charge_type ctype;
1450
1451 if (!mem)
1452 return;
1453
1454 /* at migration success, oldpage->mapping is NULL. */
1455 if (oldpage->mapping) {
1456 target = oldpage;
1457 unused = NULL;
1458 } else {
1459 target = newpage;
1460 unused = oldpage;
1461 }
1462
1463 if (PageAnon(target))
1464 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
1465 else if (page_is_file_cache(target))
1466 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
1467 else
1468 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
1469
1470 /* unused page is not on radix-tree now. */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001471 if (unused)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001472 __mem_cgroup_uncharge_common(unused, ctype);
1473
1474 pc = lookup_page_cgroup(target);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001475 /*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001476 * __mem_cgroup_commit_charge() check PCG_USED bit of page_cgroup.
1477 * So, double-counting is effectively avoided.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001478 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001479 __mem_cgroup_commit_charge(mem, pc, ctype);
1480
1481 /*
1482 * Both of oldpage and newpage are still under lock_page().
1483 * Then, we don't have to care about race in radix-tree.
1484 * But we have to be careful that this page is unmapped or not.
1485 *
1486 * There is a case for !page_mapped(). At the start of
1487 * migration, oldpage was mapped. But now, it's zapped.
1488 * But we know *target* page is not freed/reused under us.
1489 * mem_cgroup_uncharge_page() does all necessary checks.
1490 */
1491 if (ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
1492 mem_cgroup_uncharge_page(target);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001493}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001494
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001495/*
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001496 * A call to try to shrink memory usage under specified resource controller.
1497 * This is typically used for page reclaiming for shmem for reducing side
1498 * effect of page allocation from shmem, which is used by some mem_cgroup.
1499 */
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001500int mem_cgroup_shrink_usage(struct page *page,
1501 struct mm_struct *mm,
1502 gfp_t gfp_mask)
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001503{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001504 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001505 int progress = 0;
1506 int retry = MEM_CGROUP_RECLAIM_RETRIES;
1507
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001508 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001509 return 0;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001510 if (page)
1511 mem = try_get_mem_cgroup_from_swapcache(page);
1512 if (!mem && mm)
1513 mem = try_get_mem_cgroup_from_mm(mm);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001514 if (unlikely(!mem))
Balbir Singh31a78f22008-09-28 23:09:31 +01001515 return 0;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001516
1517 do {
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001518 progress = mem_cgroup_hierarchical_reclaim(mem,
1519 gfp_mask, true, false);
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -08001520 progress += mem_cgroup_check_under_limit(mem);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001521 } while (!progress && --retry);
1522
1523 css_put(&mem->css);
1524 if (!retry)
1525 return -ENOMEM;
1526 return 0;
1527}
1528
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001529static DEFINE_MUTEX(set_limit_mutex);
1530
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08001531static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001532 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001533{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001534 int retry_count;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001535 int progress;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001536 u64 memswlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001537 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001538 int children = mem_cgroup_count_children(memcg);
1539 u64 curusage, oldusage;
1540
1541 /*
1542 * For keeping hierarchical_reclaim simple, how long we should retry
1543 * is depends on callers. We set our retry-count to be function
1544 * of # of children which we should visit in this loop.
1545 */
1546 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
1547
1548 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001549
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001550 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001551 if (signal_pending(current)) {
1552 ret = -EINTR;
1553 break;
1554 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001555 /*
1556 * Rather than hide all in some function, I do this in
1557 * open coded manner. You see what this really does.
1558 * We have to guarantee mem->res.limit < mem->memsw.limit.
1559 */
1560 mutex_lock(&set_limit_mutex);
1561 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1562 if (memswlimit < val) {
1563 ret = -EINVAL;
1564 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001565 break;
1566 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001567 ret = res_counter_set_limit(&memcg->res, val);
1568 mutex_unlock(&set_limit_mutex);
1569
1570 if (!ret)
1571 break;
1572
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001573 progress = mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL,
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001574 false, true);
1575 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
1576 /* Usage is reduced ? */
1577 if (curusage >= oldusage)
1578 retry_count--;
1579 else
1580 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001581 }
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001582
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001583 return ret;
1584}
1585
1586int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
1587 unsigned long long val)
1588{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001589 int retry_count;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001590 u64 memlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001591 int children = mem_cgroup_count_children(memcg);
1592 int ret = -EBUSY;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001593
1594 if (!do_swap_account)
1595 return -EINVAL;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001596 /* see mem_cgroup_resize_res_limit */
1597 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
1598 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001599 while (retry_count) {
1600 if (signal_pending(current)) {
1601 ret = -EINTR;
1602 break;
1603 }
1604 /*
1605 * Rather than hide all in some function, I do this in
1606 * open coded manner. You see what this really does.
1607 * We have to guarantee mem->res.limit < mem->memsw.limit.
1608 */
1609 mutex_lock(&set_limit_mutex);
1610 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1611 if (memlimit > val) {
1612 ret = -EINVAL;
1613 mutex_unlock(&set_limit_mutex);
1614 break;
1615 }
1616 ret = res_counter_set_limit(&memcg->memsw, val);
1617 mutex_unlock(&set_limit_mutex);
1618
1619 if (!ret)
1620 break;
1621
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001622 mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL, true, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001623 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001624 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001625 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001626 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001627 else
1628 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001629 }
1630 return ret;
1631}
1632
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001633/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001634 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001635 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
1636 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001637static int mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001638 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001639{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001640 struct zone *zone;
1641 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001642 struct page_cgroup *pc, *busy;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001643 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001644 struct list_head *list;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001645 int ret = 0;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08001646
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001647 zone = &NODE_DATA(node)->node_zones[zid];
1648 mz = mem_cgroup_zoneinfo(mem, node, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001649 list = &mz->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001650
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001651 loop = MEM_CGROUP_ZSTAT(mz, lru);
1652 /* give some margin against EBUSY etc...*/
1653 loop += 256;
1654 busy = NULL;
1655 while (loop--) {
1656 ret = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001657 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001658 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001659 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001660 break;
1661 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001662 pc = list_entry(list->prev, struct page_cgroup, lru);
1663 if (busy == pc) {
1664 list_move(&pc->lru, list);
1665 busy = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001666 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001667 continue;
1668 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001669 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001670
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -08001671 ret = mem_cgroup_move_parent(pc, mem, GFP_KERNEL);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001672 if (ret == -ENOMEM)
1673 break;
1674
1675 if (ret == -EBUSY || ret == -EINVAL) {
1676 /* found lock contention or "pc" is obsolete. */
1677 busy = pc;
1678 cond_resched();
1679 } else
1680 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001681 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001682
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001683 if (!ret && !list_empty(list))
1684 return -EBUSY;
1685 return ret;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001686}
1687
1688/*
1689 * make mem_cgroup's charge to be 0 if there is no task.
1690 * This enables deleting this mem_cgroup.
1691 */
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001692static int mem_cgroup_force_empty(struct mem_cgroup *mem, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001693{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001694 int ret;
1695 int node, zid, shrink;
1696 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001697 struct cgroup *cgrp = mem->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001698
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001699 css_get(&mem->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001700
1701 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001702 /* should free all ? */
1703 if (free_all)
1704 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001705move_account:
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001706 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001707 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001708 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001709 goto out;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001710 ret = -EINTR;
1711 if (signal_pending(current))
1712 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001713 /* This is for making all *used* pages to be on LRU. */
1714 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001715 ret = 0;
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08001716 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001717 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001718 enum lru_list l;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001719 for_each_lru(l) {
1720 ret = mem_cgroup_force_empty_list(mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001721 node, zid, l);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001722 if (ret)
1723 break;
1724 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001725 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001726 if (ret)
1727 break;
1728 }
1729 /* it seems parent cgroup doesn't have enough mem */
1730 if (ret == -ENOMEM)
1731 goto try_to_free;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001732 cond_resched();
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001733 }
1734 ret = 0;
1735out:
1736 css_put(&mem->css);
1737 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001738
1739try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001740 /* returns EBUSY if there is a task or if we come here twice. */
1741 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001742 ret = -EBUSY;
1743 goto out;
1744 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001745 /* we call try-to-free pages for make this cgroup empty */
1746 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001747 /* try to free all pages in this cgroup */
1748 shrink = 1;
1749 while (nr_retries && mem->res.usage > 0) {
1750 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001751
1752 if (signal_pending(current)) {
1753 ret = -EINTR;
1754 goto out;
1755 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001756 progress = try_to_free_mem_cgroup_pages(mem, GFP_KERNEL,
1757 false, get_swappiness(mem));
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001758 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001759 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001760 /* maybe some writeback is necessary */
1761 congestion_wait(WRITE, HZ/10);
1762 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001763
1764 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001765 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001766 /* try move_account...there may be some *locked* pages. */
1767 if (mem->res.usage)
1768 goto move_account;
1769 ret = 0;
1770 goto out;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001771}
1772
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001773int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
1774{
1775 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
1776}
1777
1778
Balbir Singh18f59ea2009-01-07 18:08:07 -08001779static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
1780{
1781 return mem_cgroup_from_cont(cont)->use_hierarchy;
1782}
1783
1784static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
1785 u64 val)
1786{
1787 int retval = 0;
1788 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1789 struct cgroup *parent = cont->parent;
1790 struct mem_cgroup *parent_mem = NULL;
1791
1792 if (parent)
1793 parent_mem = mem_cgroup_from_cont(parent);
1794
1795 cgroup_lock();
1796 /*
1797 * If parent's use_hiearchy is set, we can't make any modifications
1798 * in the child subtrees. If it is unset, then the change can
1799 * occur, provided the current cgroup has no children.
1800 *
1801 * For the root cgroup, parent_mem is NULL, we allow value to be
1802 * set if there are no children.
1803 */
1804 if ((!parent_mem || !parent_mem->use_hierarchy) &&
1805 (val == 1 || val == 0)) {
1806 if (list_empty(&cont->children))
1807 mem->use_hierarchy = val;
1808 else
1809 retval = -EBUSY;
1810 } else
1811 retval = -EINVAL;
1812 cgroup_unlock();
1813
1814 return retval;
1815}
1816
Paul Menage2c3daa72008-04-29 00:59:58 -07001817static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001818{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001819 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1820 u64 val = 0;
1821 int type, name;
1822
1823 type = MEMFILE_TYPE(cft->private);
1824 name = MEMFILE_ATTR(cft->private);
1825 switch (type) {
1826 case _MEM:
1827 val = res_counter_read_u64(&mem->res, name);
1828 break;
1829 case _MEMSWAP:
1830 if (do_swap_account)
1831 val = res_counter_read_u64(&mem->memsw, name);
1832 break;
1833 default:
1834 BUG();
1835 break;
1836 }
1837 return val;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001838}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001839/*
1840 * The user of this function is...
1841 * RES_LIMIT.
1842 */
Paul Menage856c13a2008-07-25 01:47:04 -07001843static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
1844 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001845{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001846 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001847 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001848 unsigned long long val;
1849 int ret;
1850
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001851 type = MEMFILE_TYPE(cft->private);
1852 name = MEMFILE_ATTR(cft->private);
1853 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001854 case RES_LIMIT:
1855 /* This function does all necessary parse...reuse it */
1856 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001857 if (ret)
1858 break;
1859 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001860 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001861 else
1862 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001863 break;
1864 default:
1865 ret = -EINVAL; /* should be BUG() ? */
1866 break;
1867 }
1868 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001869}
1870
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08001871static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
1872 unsigned long long *mem_limit, unsigned long long *memsw_limit)
1873{
1874 struct cgroup *cgroup;
1875 unsigned long long min_limit, min_memsw_limit, tmp;
1876
1877 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1878 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1879 cgroup = memcg->css.cgroup;
1880 if (!memcg->use_hierarchy)
1881 goto out;
1882
1883 while (cgroup->parent) {
1884 cgroup = cgroup->parent;
1885 memcg = mem_cgroup_from_cont(cgroup);
1886 if (!memcg->use_hierarchy)
1887 break;
1888 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
1889 min_limit = min(min_limit, tmp);
1890 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1891 min_memsw_limit = min(min_memsw_limit, tmp);
1892 }
1893out:
1894 *mem_limit = min_limit;
1895 *memsw_limit = min_memsw_limit;
1896 return;
1897}
1898
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001899static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001900{
1901 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001902 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001903
1904 mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001905 type = MEMFILE_TYPE(event);
1906 name = MEMFILE_ATTR(event);
1907 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001908 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001909 if (type == _MEM)
1910 res_counter_reset_max(&mem->res);
1911 else
1912 res_counter_reset_max(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001913 break;
1914 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08001915 if (type == _MEM)
1916 res_counter_reset_failcnt(&mem->res);
1917 else
1918 res_counter_reset_failcnt(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001919 break;
1920 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07001921 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001922}
1923
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001924
1925/* For read statistics */
1926enum {
1927 MCS_CACHE,
1928 MCS_RSS,
1929 MCS_PGPGIN,
1930 MCS_PGPGOUT,
1931 MCS_INACTIVE_ANON,
1932 MCS_ACTIVE_ANON,
1933 MCS_INACTIVE_FILE,
1934 MCS_ACTIVE_FILE,
1935 MCS_UNEVICTABLE,
1936 NR_MCS_STAT,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001937};
1938
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001939struct mcs_total_stat {
1940 s64 stat[NR_MCS_STAT];
1941};
1942
1943struct {
1944 char *local_name;
1945 char *total_name;
1946} memcg_stat_strings[NR_MCS_STAT] = {
1947 {"cache", "total_cache"},
1948 {"rss", "total_rss"},
1949 {"pgpgin", "total_pgpgin"},
1950 {"pgpgout", "total_pgpgout"},
1951 {"inactive_anon", "total_inactive_anon"},
1952 {"active_anon", "total_active_anon"},
1953 {"inactive_file", "total_inactive_file"},
1954 {"active_file", "total_active_file"},
1955 {"unevictable", "total_unevictable"}
1956};
1957
1958
1959static int mem_cgroup_get_local_stat(struct mem_cgroup *mem, void *data)
1960{
1961 struct mcs_total_stat *s = data;
1962 s64 val;
1963
1964 /* per cpu stat */
1965 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_CACHE);
1966 s->stat[MCS_CACHE] += val * PAGE_SIZE;
1967 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
1968 s->stat[MCS_RSS] += val * PAGE_SIZE;
1969 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_PGPGIN_COUNT);
1970 s->stat[MCS_PGPGIN] += val;
1971 val = mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_PGPGOUT_COUNT);
1972 s->stat[MCS_PGPGOUT] += val;
1973
1974 /* per zone stat */
1975 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_ANON);
1976 s->stat[MCS_INACTIVE_ANON] += val * PAGE_SIZE;
1977 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_ANON);
1978 s->stat[MCS_ACTIVE_ANON] += val * PAGE_SIZE;
1979 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_FILE);
1980 s->stat[MCS_INACTIVE_FILE] += val * PAGE_SIZE;
1981 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_FILE);
1982 s->stat[MCS_ACTIVE_FILE] += val * PAGE_SIZE;
1983 val = mem_cgroup_get_local_zonestat(mem, LRU_UNEVICTABLE);
1984 s->stat[MCS_UNEVICTABLE] += val * PAGE_SIZE;
1985 return 0;
1986}
1987
1988static void
1989mem_cgroup_get_total_stat(struct mem_cgroup *mem, struct mcs_total_stat *s)
1990{
1991 mem_cgroup_walk_tree(mem, s, mem_cgroup_get_local_stat);
1992}
1993
Paul Menagec64745c2008-04-29 01:00:02 -07001994static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
1995 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001996{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001997 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001998 struct mcs_total_stat mystat;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001999 int i;
2000
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002001 memset(&mystat, 0, sizeof(mystat));
2002 mem_cgroup_get_local_stat(mem_cont, &mystat);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002003
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002004 for (i = 0; i < NR_MCS_STAT; i++)
2005 cb->fill(cb, memcg_stat_strings[i].local_name, mystat.stat[i]);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002006
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002007 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08002008 {
2009 unsigned long long limit, memsw_limit;
2010 memcg_get_hierarchical_limit(mem_cont, &limit, &memsw_limit);
2011 cb->fill(cb, "hierarchical_memory_limit", limit);
2012 if (do_swap_account)
2013 cb->fill(cb, "hierarchical_memsw_limit", memsw_limit);
2014 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08002015
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07002016 memset(&mystat, 0, sizeof(mystat));
2017 mem_cgroup_get_total_stat(mem_cont, &mystat);
2018 for (i = 0; i < NR_MCS_STAT; i++)
2019 cb->fill(cb, memcg_stat_strings[i].total_name, mystat.stat[i]);
2020
2021
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08002022#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08002023 cb->fill(cb, "inactive_ratio", calc_inactive_ratio(mem_cont, NULL));
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08002024
2025 {
2026 int nid, zid;
2027 struct mem_cgroup_per_zone *mz;
2028 unsigned long recent_rotated[2] = {0, 0};
2029 unsigned long recent_scanned[2] = {0, 0};
2030
2031 for_each_online_node(nid)
2032 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
2033 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
2034
2035 recent_rotated[0] +=
2036 mz->reclaim_stat.recent_rotated[0];
2037 recent_rotated[1] +=
2038 mz->reclaim_stat.recent_rotated[1];
2039 recent_scanned[0] +=
2040 mz->reclaim_stat.recent_scanned[0];
2041 recent_scanned[1] +=
2042 mz->reclaim_stat.recent_scanned[1];
2043 }
2044 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
2045 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
2046 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
2047 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
2048 }
2049#endif
2050
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002051 return 0;
2052}
2053
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002054static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
2055{
2056 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2057
2058 return get_swappiness(memcg);
2059}
2060
2061static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
2062 u64 val)
2063{
2064 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2065 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08002066
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002067 if (val > 100)
2068 return -EINVAL;
2069
2070 if (cgrp->parent == NULL)
2071 return -EINVAL;
2072
2073 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08002074
2075 cgroup_lock();
2076
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002077 /* If under hierarchy, only empty-root can set this value */
2078 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08002079 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
2080 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002081 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08002082 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002083
2084 spin_lock(&memcg->reclaim_param_lock);
2085 memcg->swappiness = val;
2086 spin_unlock(&memcg->reclaim_param_lock);
2087
Li Zefan068b38c2009-01-15 13:51:26 -08002088 cgroup_unlock();
2089
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002090 return 0;
2091}
2092
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002093
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002094static struct cftype mem_cgroup_files[] = {
2095 {
Balbir Singh0eea1032008-02-07 00:13:57 -08002096 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002097 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Paul Menage2c3daa72008-04-29 00:59:58 -07002098 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002099 },
2100 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002101 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002102 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002103 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002104 .read_u64 = mem_cgroup_read,
2105 },
2106 {
Balbir Singh0eea1032008-02-07 00:13:57 -08002107 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002108 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07002109 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07002110 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002111 },
2112 {
2113 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002114 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002115 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07002116 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002117 },
Balbir Singh8697d332008-02-07 00:13:59 -08002118 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002119 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07002120 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002121 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002122 {
2123 .name = "force_empty",
2124 .trigger = mem_cgroup_force_empty_write,
2125 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08002126 {
2127 .name = "use_hierarchy",
2128 .write_u64 = mem_cgroup_hierarchy_write,
2129 .read_u64 = mem_cgroup_hierarchy_read,
2130 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002131 {
2132 .name = "swappiness",
2133 .read_u64 = mem_cgroup_swappiness_read,
2134 .write_u64 = mem_cgroup_swappiness_write,
2135 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002136};
2137
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002138#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2139static struct cftype memsw_cgroup_files[] = {
2140 {
2141 .name = "memsw.usage_in_bytes",
2142 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
2143 .read_u64 = mem_cgroup_read,
2144 },
2145 {
2146 .name = "memsw.max_usage_in_bytes",
2147 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
2148 .trigger = mem_cgroup_reset,
2149 .read_u64 = mem_cgroup_read,
2150 },
2151 {
2152 .name = "memsw.limit_in_bytes",
2153 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
2154 .write_string = mem_cgroup_write,
2155 .read_u64 = mem_cgroup_read,
2156 },
2157 {
2158 .name = "memsw.failcnt",
2159 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
2160 .trigger = mem_cgroup_reset,
2161 .read_u64 = mem_cgroup_read,
2162 },
2163};
2164
2165static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2166{
2167 if (!do_swap_account)
2168 return 0;
2169 return cgroup_add_files(cont, ss, memsw_cgroup_files,
2170 ARRAY_SIZE(memsw_cgroup_files));
2171};
2172#else
2173static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2174{
2175 return 0;
2176}
2177#endif
2178
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002179static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2180{
2181 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002182 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -07002183 enum lru_list l;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002184 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002185 /*
2186 * This routine is called against possible nodes.
2187 * But it's BUG to call kmalloc() against offline node.
2188 *
2189 * TODO: this routine can waste much memory for nodes which will
2190 * never be onlined. It's better to use memory hotplug callback
2191 * function.
2192 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002193 if (!node_state(node, N_NORMAL_MEMORY))
2194 tmp = -1;
2195 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002196 if (!pn)
2197 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002198
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002199 mem->info.nodeinfo[node] = pn;
2200 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002201
2202 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
2203 mz = &pn->zoneinfo[zone];
Christoph Lameterb69408e2008-10-18 20:26:14 -07002204 for_each_lru(l)
2205 INIT_LIST_HEAD(&mz->lists[l]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002206 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002207 return 0;
2208}
2209
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002210static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2211{
2212 kfree(mem->info.nodeinfo[node]);
2213}
2214
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002215static int mem_cgroup_size(void)
2216{
2217 int cpustat_size = nr_cpu_ids * sizeof(struct mem_cgroup_stat_cpu);
2218 return sizeof(struct mem_cgroup) + cpustat_size;
2219}
2220
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002221static struct mem_cgroup *mem_cgroup_alloc(void)
2222{
2223 struct mem_cgroup *mem;
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002224 int size = mem_cgroup_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002225
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002226 if (size < PAGE_SIZE)
2227 mem = kmalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002228 else
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002229 mem = vmalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002230
2231 if (mem)
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002232 memset(mem, 0, size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002233 return mem;
2234}
2235
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002236/*
2237 * At destroying mem_cgroup, references from swap_cgroup can remain.
2238 * (scanning all at force_empty is too costly...)
2239 *
2240 * Instead of clearing all references at force_empty, we remember
2241 * the number of reference from swap_cgroup and free mem_cgroup when
2242 * it goes down to 0.
2243 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002244 * Removal of cgroup itself succeeds regardless of refs from swap.
2245 */
2246
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002247static void __mem_cgroup_free(struct mem_cgroup *mem)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002248{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002249 int node;
2250
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002251 free_css_id(&mem_cgroup_subsys, &mem->css);
2252
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002253 for_each_node_state(node, N_POSSIBLE)
2254 free_mem_cgroup_per_zone_info(mem, node);
2255
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002256 if (mem_cgroup_size() < PAGE_SIZE)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002257 kfree(mem);
2258 else
2259 vfree(mem);
2260}
2261
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002262static void mem_cgroup_get(struct mem_cgroup *mem)
2263{
2264 atomic_inc(&mem->refcnt);
2265}
2266
2267static void mem_cgroup_put(struct mem_cgroup *mem)
2268{
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002269 if (atomic_dec_and_test(&mem->refcnt)) {
2270 struct mem_cgroup *parent = parent_mem_cgroup(mem);
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002271 __mem_cgroup_free(mem);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002272 if (parent)
2273 mem_cgroup_put(parent);
2274 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002275}
2276
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002277/*
2278 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
2279 */
2280static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem)
2281{
2282 if (!mem->res.parent)
2283 return NULL;
2284 return mem_cgroup_from_res_counter(mem->res.parent, res);
2285}
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002286
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002287#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2288static void __init enable_swap_cgroup(void)
2289{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002290 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002291 do_swap_account = 1;
2292}
2293#else
2294static void __init enable_swap_cgroup(void)
2295{
2296}
2297#endif
2298
Li Zefan0eb253e2009-01-15 13:51:25 -08002299static struct cgroup_subsys_state * __ref
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002300mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
2301{
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002302 struct mem_cgroup *mem, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002303 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002304 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002305
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002306 mem = mem_cgroup_alloc();
2307 if (!mem)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002308 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08002309
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002310 for_each_node_state(node, N_POSSIBLE)
2311 if (alloc_mem_cgroup_per_zone_info(mem, node))
2312 goto free_out;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002313 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002314 if (cont->parent == NULL) {
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002315 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002316 parent = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08002317 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002318 parent = mem_cgroup_from_cont(cont->parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002319 mem->use_hierarchy = parent->use_hierarchy;
2320 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002321
Balbir Singh18f59ea2009-01-07 18:08:07 -08002322 if (parent && parent->use_hierarchy) {
2323 res_counter_init(&mem->res, &parent->res);
2324 res_counter_init(&mem->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002325 /*
2326 * We increment refcnt of the parent to ensure that we can
2327 * safely access it on res_counter_charge/uncharge.
2328 * This refcnt will be decremented when freeing this
2329 * mem_cgroup(see mem_cgroup_put).
2330 */
2331 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002332 } else {
2333 res_counter_init(&mem->res, NULL);
2334 res_counter_init(&mem->memsw, NULL);
2335 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002336 mem->last_scanned_child = 0;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -08002337 spin_lock_init(&mem->reclaim_param_lock);
Balbir Singh6d61ef42009-01-07 18:08:06 -08002338
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002339 if (parent)
2340 mem->swappiness = get_swappiness(parent);
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002341 atomic_set(&mem->refcnt, 1);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002342 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002343free_out:
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002344 __mem_cgroup_free(mem);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002345 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002346}
2347
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07002348static int mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002349 struct cgroup *cont)
2350{
2351 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07002352
2353 return mem_cgroup_force_empty(mem, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002354}
2355
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002356static void mem_cgroup_destroy(struct cgroup_subsys *ss,
2357 struct cgroup *cont)
2358{
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002359 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002360
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002361 mem_cgroup_put(mem);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002362}
2363
2364static int mem_cgroup_populate(struct cgroup_subsys *ss,
2365 struct cgroup *cont)
2366{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002367 int ret;
2368
2369 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
2370 ARRAY_SIZE(mem_cgroup_files));
2371
2372 if (!ret)
2373 ret = register_memsw_files(cont, ss);
2374 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002375}
2376
Balbir Singh67e465a2008-02-07 00:13:54 -08002377static void mem_cgroup_move_task(struct cgroup_subsys *ss,
2378 struct cgroup *cont,
2379 struct cgroup *old_cont,
2380 struct task_struct *p)
2381{
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002382 mutex_lock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002383 /*
Nikanth Karthikesanf9717d22009-01-07 18:08:11 -08002384 * FIXME: It's better to move charges of this process from old
2385 * memcg to new memcg. But it's just on TODO-List now.
Balbir Singh67e465a2008-02-07 00:13:54 -08002386 */
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002387 mutex_unlock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002388}
2389
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002390struct cgroup_subsys mem_cgroup_subsys = {
2391 .name = "memory",
2392 .subsys_id = mem_cgroup_subsys_id,
2393 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002394 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002395 .destroy = mem_cgroup_destroy,
2396 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08002397 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002398 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002399 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002400};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002401
2402#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2403
2404static int __init disable_swap_account(char *s)
2405{
2406 really_do_swap_account = 0;
2407 return 1;
2408}
2409__setup("noswapaccount", disable_swap_account);
2410#endif