blob: 61fd9590c135fcb57b1e55aedc2643fd1718fe0d [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 Hiroyuki8c7c6e32009-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 Hiroyuki072c56c2008-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 Hiroyuki8c7c6e32009-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 Hiroyuki072c56c2008-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 Hiroyuki8c7c6e32009-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 Hiroyuki8c7c6e32009-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 Hiroyuki8c7c6e32009-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
259static unsigned long mem_cgroup_get_all_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 Hiroyuki08e552c2009-01-07 18:08:01 -0800320/*
321 * Following LRU functions are allowed to be used without PCG_LOCK.
322 * Operations are called by routine of global LRU independently from memcg.
323 * What we have to take care of here is validness of pc->mem_cgroup.
324 *
325 * Changes to pc->mem_cgroup happens when
326 * 1. charge
327 * 2. moving account
328 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
329 * It is added to LRU before charge.
330 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
331 * When moving account, the page is not on LRU. It's isolated.
332 */
333
334void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800335{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800336 struct page_cgroup *pc;
337 struct mem_cgroup *mem;
338 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700339
Hirokazu Takahashif8d66542009-01-07 18:08:02 -0800340 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800341 return;
342 pc = lookup_page_cgroup(page);
343 /* can happen while we handle swapcache. */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800344 if (list_empty(&pc->lru) || !pc->mem_cgroup)
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800345 return;
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800346 /*
347 * We don't check PCG_USED bit. It's cleared when the "page" is finally
348 * removed from global LRU.
349 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800350 mz = page_cgroup_zoneinfo(pc);
351 mem = pc->mem_cgroup;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700352 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800353 list_del_init(&pc->lru);
354 return;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800355}
356
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800357void mem_cgroup_del_lru(struct page *page)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800358{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800359 mem_cgroup_del_lru_list(page, page_lru(page));
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800360}
361
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800362void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru)
Balbir Singh66e17072008-02-07 00:13:56 -0800363{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800364 struct mem_cgroup_per_zone *mz;
365 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800366
Hirokazu Takahashif8d66542009-01-07 18:08:02 -0800367 if (mem_cgroup_disabled())
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700368 return;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700369
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800370 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -0800371 /*
372 * Used bit is set without atomic ops but after smp_wmb().
373 * For making pc->mem_cgroup visible, insert smp_rmb() here.
374 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800375 smp_rmb();
376 /* unused page is not rotated. */
377 if (!PageCgroupUsed(pc))
378 return;
379 mz = page_cgroup_zoneinfo(pc);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700380 list_move(&pc->lru, &mz->lists[lru]);
Balbir Singh66e17072008-02-07 00:13:56 -0800381}
382
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800383void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru)
384{
385 struct page_cgroup *pc;
386 struct mem_cgroup_per_zone *mz;
387
Hirokazu Takahashif8d66542009-01-07 18:08:02 -0800388 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800389 return;
390 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -0800391 /*
392 * Used bit is set without atomic ops but after smp_wmb().
393 * For making pc->mem_cgroup visible, insert smp_rmb() here.
394 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800395 smp_rmb();
396 if (!PageCgroupUsed(pc))
397 return;
398
399 mz = page_cgroup_zoneinfo(pc);
400 MEM_CGROUP_ZSTAT(mz, lru) += 1;
401 list_add(&pc->lru, &mz->lists[lru]);
402}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800403
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800404/*
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800405 * At handling SwapCache, pc->mem_cgroup may be changed while it's linked to
406 * lru because the page may.be reused after it's fully uncharged (because of
407 * SwapCache behavior).To handle that, unlink page_cgroup from LRU when charge
408 * it again. This function is only used to charge SwapCache. It's done under
409 * lock_page and expected that zone->lru_lock is never held.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800410 */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800411static void mem_cgroup_lru_del_before_commit_swapcache(struct page *page)
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800412{
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800413 unsigned long flags;
414 struct zone *zone = page_zone(page);
415 struct page_cgroup *pc = lookup_page_cgroup(page);
416
417 spin_lock_irqsave(&zone->lru_lock, flags);
418 /*
419 * Forget old LRU when this page_cgroup is *not* used. This Used bit
420 * is guarded by lock_page() because the page is SwapCache.
421 */
422 if (!PageCgroupUsed(pc))
423 mem_cgroup_del_lru_list(page, page_lru(page));
424 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800425}
426
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800427static void mem_cgroup_lru_add_after_commit_swapcache(struct page *page)
428{
429 unsigned long flags;
430 struct zone *zone = page_zone(page);
431 struct page_cgroup *pc = lookup_page_cgroup(page);
432
433 spin_lock_irqsave(&zone->lru_lock, flags);
434 /* link when the page is linked to LRU but page_cgroup isn't */
435 if (PageLRU(page) && list_empty(&pc->lru))
436 mem_cgroup_add_lru_list(page, page_lru(page));
437 spin_unlock_irqrestore(&zone->lru_lock, flags);
438}
439
440
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800441void mem_cgroup_move_lists(struct page *page,
442 enum lru_list from, enum lru_list to)
443{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -0800444 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800445 return;
446 mem_cgroup_del_lru_list(page, from);
447 mem_cgroup_add_lru_list(page, to);
448}
449
David Rientjes4c4a2212008-02-07 00:14:06 -0800450int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
451{
452 int ret;
453
454 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800455 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800456 task_unlock(task);
457 return ret;
458}
459
Balbir Singh66e17072008-02-07 00:13:56 -0800460/*
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800461 * Calculate mapped_ratio under memory controller. This will be used in
462 * vmscan.c for deteremining we have to reclaim mapped pages.
463 */
464int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
465{
466 long total, rss;
467
468 /*
469 * usage is recorded in bytes. But, here, we assume the number of
470 * physical pages can be represented by "long" on any arch.
471 */
472 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
473 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
474 return (int)((rss * 100L) / total);
475}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800476
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800477/*
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800478 * prev_priority control...this will be used in memory reclaim path.
479 */
480int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
481{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800482 int prev_priority;
483
484 spin_lock(&mem->reclaim_param_lock);
485 prev_priority = mem->prev_priority;
486 spin_unlock(&mem->reclaim_param_lock);
487
488 return prev_priority;
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800489}
490
491void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
492{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800493 spin_lock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800494 if (priority < mem->prev_priority)
495 mem->prev_priority = priority;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800496 spin_unlock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800497}
498
499void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
500{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800501 spin_lock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800502 mem->prev_priority = priority;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800503 spin_unlock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800504}
505
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800506static int calc_inactive_ratio(struct mem_cgroup *memcg, unsigned long *present_pages)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800507{
508 unsigned long active;
509 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800510 unsigned long gb;
511 unsigned long inactive_ratio;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800512
513 inactive = mem_cgroup_get_all_zonestat(memcg, LRU_INACTIVE_ANON);
514 active = mem_cgroup_get_all_zonestat(memcg, LRU_ACTIVE_ANON);
515
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800516 gb = (inactive + active) >> (30 - PAGE_SHIFT);
517 if (gb)
518 inactive_ratio = int_sqrt(10 * gb);
519 else
520 inactive_ratio = 1;
521
522 if (present_pages) {
523 present_pages[0] = inactive;
524 present_pages[1] = active;
525 }
526
527 return inactive_ratio;
528}
529
530int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg)
531{
532 unsigned long active;
533 unsigned long inactive;
534 unsigned long present_pages[2];
535 unsigned long inactive_ratio;
536
537 inactive_ratio = calc_inactive_ratio(memcg, present_pages);
538
539 inactive = present_pages[0];
540 active = present_pages[1];
541
542 if (inactive * inactive_ratio < active)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800543 return 1;
544
545 return 0;
546}
547
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800548unsigned long mem_cgroup_zone_nr_pages(struct mem_cgroup *memcg,
549 struct zone *zone,
550 enum lru_list lru)
551{
552 int nid = zone->zone_pgdat->node_id;
553 int zid = zone_idx(zone);
554 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
555
556 return MEM_CGROUP_ZSTAT(mz, lru);
557}
558
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800559struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg,
560 struct zone *zone)
561{
562 int nid = zone->zone_pgdat->node_id;
563 int zid = zone_idx(zone);
564 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
565
566 return &mz->reclaim_stat;
567}
568
569struct zone_reclaim_stat *
570mem_cgroup_get_reclaim_stat_from_page(struct page *page)
571{
572 struct page_cgroup *pc;
573 struct mem_cgroup_per_zone *mz;
574
575 if (mem_cgroup_disabled())
576 return NULL;
577
578 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -0800579 /*
580 * Used bit is set without atomic ops but after smp_wmb().
581 * For making pc->mem_cgroup visible, insert smp_rmb() here.
582 */
583 smp_rmb();
584 if (!PageCgroupUsed(pc))
585 return NULL;
586
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800587 mz = page_cgroup_zoneinfo(pc);
588 if (!mz)
589 return NULL;
590
591 return &mz->reclaim_stat;
592}
593
Balbir Singh66e17072008-02-07 00:13:56 -0800594unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
595 struct list_head *dst,
596 unsigned long *scanned, int order,
597 int mode, struct zone *z,
598 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700599 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -0800600{
601 unsigned long nr_taken = 0;
602 struct page *page;
603 unsigned long scan;
604 LIST_HEAD(pc_list);
605 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800606 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800607 int nid = z->zone_pgdat->node_id;
608 int zid = zone_idx(z);
609 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700610 int lru = LRU_FILE * !!file + !!active;
Balbir Singh66e17072008-02-07 00:13:56 -0800611
Balbir Singhcf475ad2008-04-29 01:00:16 -0700612 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800613 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700614 src = &mz->lists[lru];
Balbir Singh66e17072008-02-07 00:13:56 -0800615
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800616 scan = 0;
617 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800618 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800619 break;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800620
621 page = pc->page;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700622 if (unlikely(!PageCgroupUsed(pc)))
623 continue;
Hugh Dickins436c65412008-02-07 00:14:12 -0800624 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800625 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800626
Hugh Dickins436c65412008-02-07 00:14:12 -0800627 scan++;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700628 if (__isolate_lru_page(page, mode, file) == 0) {
Balbir Singh66e17072008-02-07 00:13:56 -0800629 list_move(&page->lru, dst);
630 nr_taken++;
631 }
632 }
633
Balbir Singh66e17072008-02-07 00:13:56 -0800634 *scanned = scan;
635 return nr_taken;
636}
637
Balbir Singh6d61ef42009-01-07 18:08:06 -0800638#define mem_cgroup_from_res_counter(counter, member) \
639 container_of(counter, struct mem_cgroup, member)
640
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800641static bool mem_cgroup_check_under_limit(struct mem_cgroup *mem)
642{
643 if (do_swap_account) {
644 if (res_counter_check_under_limit(&mem->res) &&
645 res_counter_check_under_limit(&mem->memsw))
646 return true;
647 } else
648 if (res_counter_check_under_limit(&mem->res))
649 return true;
650 return false;
651}
652
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800653static unsigned int get_swappiness(struct mem_cgroup *memcg)
654{
655 struct cgroup *cgrp = memcg->css.cgroup;
656 unsigned int swappiness;
657
658 /* root ? */
659 if (cgrp->parent == NULL)
660 return vm_swappiness;
661
662 spin_lock(&memcg->reclaim_param_lock);
663 swappiness = memcg->swappiness;
664 spin_unlock(&memcg->reclaim_param_lock);
665
666 return swappiness;
667}
668
Balbir Singh6d61ef42009-01-07 18:08:06 -0800669/*
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700670 * Visit the first child (need not be the first child as per the ordering
671 * of the cgroup list, since we track last_scanned_child) of @mem and use
672 * that to reclaim free pages from.
673 */
674static struct mem_cgroup *
675mem_cgroup_select_victim(struct mem_cgroup *root_mem)
676{
677 struct mem_cgroup *ret = NULL;
678 struct cgroup_subsys_state *css;
679 int nextid, found;
680
681 if (!root_mem->use_hierarchy) {
682 css_get(&root_mem->css);
683 ret = root_mem;
684 }
685
686 while (!ret) {
687 rcu_read_lock();
688 nextid = root_mem->last_scanned_child + 1;
689 css = css_get_next(&mem_cgroup_subsys, nextid, &root_mem->css,
690 &found);
691 if (css && css_tryget(css))
692 ret = container_of(css, struct mem_cgroup, css);
693
694 rcu_read_unlock();
695 /* Updates scanning parameter */
696 spin_lock(&root_mem->reclaim_param_lock);
697 if (!css) {
698 /* this means start scan from ID:1 */
699 root_mem->last_scanned_child = 0;
700 } else
701 root_mem->last_scanned_child = found;
702 spin_unlock(&root_mem->reclaim_param_lock);
703 }
704
705 return ret;
706}
707
708/*
709 * Scan the hierarchy if needed to reclaim memory. We remember the last child
710 * we reclaimed from, so that we don't end up penalizing one child extensively
711 * based on its position in the children list.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800712 *
713 * root_mem is the original ancestor that we've been reclaim from.
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700714 *
715 * We give up and return to the caller when we visit root_mem twice.
716 * (other groups can be removed while we're walking....)
Balbir Singh6d61ef42009-01-07 18:08:06 -0800717 */
718static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_mem,
719 gfp_t gfp_mask, bool noswap)
720{
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700721 struct mem_cgroup *victim;
722 int ret, total = 0;
723 int loop = 0;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800724
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700725 while (loop < 2) {
726 victim = mem_cgroup_select_victim(root_mem);
727 if (victim == root_mem)
728 loop++;
729 if (!mem_cgroup_local_usage(&victim->stat)) {
730 /* this cgroup's local usage == 0 */
731 css_put(&victim->css);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800732 continue;
733 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700734 /* we use swappiness of local cgroup */
735 ret = try_to_free_mem_cgroup_pages(victim, gfp_mask, noswap,
736 get_swappiness(victim));
737 css_put(&victim->css);
738 total += ret;
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800739 if (mem_cgroup_check_under_limit(root_mem))
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700740 return 1 + total;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800741 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700742 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800743}
744
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800745bool mem_cgroup_oom_called(struct task_struct *task)
746{
747 bool ret = false;
748 struct mem_cgroup *mem;
749 struct mm_struct *mm;
750
751 rcu_read_lock();
752 mm = task->mm;
753 if (!mm)
754 mm = &init_mm;
755 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
756 if (mem && time_before(jiffies, mem->last_oom_jiffies + HZ/10))
757 ret = true;
758 rcu_read_unlock();
759 return ret;
760}
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800761/*
762 * Unlike exported interface, "oom" parameter is added. if oom==true,
763 * oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800764 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800765static int __mem_cgroup_try_charge(struct mm_struct *mm,
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800766 gfp_t gfp_mask, struct mem_cgroup **memcg,
767 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800768{
Balbir Singh6d61ef42009-01-07 18:08:06 -0800769 struct mem_cgroup *mem, *mem_over_limit;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800770 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800771 struct res_counter *fail_res;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800772
773 if (unlikely(test_thread_flag(TIF_MEMDIE))) {
774 /* Don't account this! */
775 *memcg = NULL;
776 return 0;
777 }
778
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800779 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800780 * We always charge the cgroup the mm_struct belongs to.
781 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800782 * thread group leader migrates. It's possible that mm is not
783 * set, if so charge the init_mm (happens for pagecache usage).
784 */
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800785 mem = *memcg;
786 if (likely(!mem)) {
787 mem = try_get_mem_cgroup_from_mm(mm);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800788 *memcg = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700789 } else {
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800790 css_get(&mem->css);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700791 }
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800792 if (unlikely(!mem))
793 return 0;
794
795 VM_BUG_ON(mem_cgroup_is_obsolete(mem));
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800796
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800797 while (1) {
798 int ret;
799 bool noswap = false;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800800
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800801 ret = res_counter_charge(&mem->res, PAGE_SIZE, &fail_res);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800802 if (likely(!ret)) {
803 if (!do_swap_account)
804 break;
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800805 ret = res_counter_charge(&mem->memsw, PAGE_SIZE,
806 &fail_res);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800807 if (likely(!ret))
808 break;
809 /* mem+swap counter fails */
810 res_counter_uncharge(&mem->res, PAGE_SIZE);
811 noswap = true;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800812 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
813 memsw);
814 } else
815 /* mem counter fails */
816 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
817 res);
818
Hugh Dickins3be91272008-02-07 00:14:19 -0800819 if (!(gfp_mask & __GFP_WAIT))
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800820 goto nomem;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800821
Balbir Singh6d61ef42009-01-07 18:08:06 -0800822 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, gfp_mask,
823 noswap);
Daisuke Nishimura4d1c6272009-01-15 13:51:14 -0800824 if (ret)
825 continue;
Balbir Singh66e17072008-02-07 00:13:56 -0800826
827 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800828 * try_to_free_mem_cgroup_pages() might not give us a full
829 * picture of reclaim. Some pages are reclaimed and might be
830 * moved to swap cache or just unmapped from the cgroup.
831 * Check the limit again to see if the reclaim reduced the
832 * current usage of the cgroup before giving up
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800833 *
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800834 */
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800835 if (mem_cgroup_check_under_limit(mem_over_limit))
836 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800837
838 if (!nr_retries--) {
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800839 if (oom) {
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -0800840 mutex_lock(&memcg_tasklist);
KAMEZAWA Hiroyuki88700752009-01-07 18:08:09 -0800841 mem_cgroup_out_of_memory(mem_over_limit, gfp_mask);
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -0800842 mutex_unlock(&memcg_tasklist);
KAMEZAWA Hiroyuki88700752009-01-07 18:08:09 -0800843 mem_over_limit->last_oom_jiffies = jiffies;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800844 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800845 goto nomem;
Balbir Singh66e17072008-02-07 00:13:56 -0800846 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800847 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800848 return 0;
849nomem:
850 css_put(&mem->css);
851 return -ENOMEM;
852}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800853
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -0800854static struct mem_cgroup *try_get_mem_cgroup_from_swapcache(struct page *page)
855{
856 struct mem_cgroup *mem;
857 swp_entry_t ent;
858
859 if (!PageSwapCache(page))
860 return NULL;
861
862 ent.val = page_private(page);
863 mem = lookup_swap_cgroup(ent);
864 if (!mem)
865 return NULL;
866 if (!css_tryget(&mem->css))
867 return NULL;
868 return mem;
869}
870
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800871/*
Daisuke Nishimuraa5e924f2009-01-07 18:08:28 -0800872 * commit a charge got by __mem_cgroup_try_charge() and makes page_cgroup to be
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800873 * USED state. If already USED, uncharge and return.
874 */
875
876static void __mem_cgroup_commit_charge(struct mem_cgroup *mem,
877 struct page_cgroup *pc,
878 enum charge_type ctype)
879{
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800880 /* try_charge() can return NULL to *memcg, taking care of it. */
881 if (!mem)
882 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700883
884 lock_page_cgroup(pc);
885 if (unlikely(PageCgroupUsed(pc))) {
886 unlock_page_cgroup(pc);
887 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800888 if (do_swap_account)
889 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700890 css_put(&mem->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800891 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700892 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800893 pc->mem_cgroup = mem;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800894 smp_wmb();
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700895 pc->flags = pcg_default_flags[ctype];
Hugh Dickins3be91272008-02-07 00:14:19 -0800896
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800897 mem_cgroup_charge_statistics(mem, pc, true);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700898
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700899 unlock_page_cgroup(pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800900}
901
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800902/**
903 * mem_cgroup_move_account - move account of the page
904 * @pc: page_cgroup of the page.
905 * @from: mem_cgroup which the page is moved from.
906 * @to: mem_cgroup which the page is moved to. @from != @to.
907 *
908 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800909 * - page is not on LRU (isolate_page() is useful.)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800910 *
911 * returns 0 at success,
912 * returns -EBUSY when lock is busy or "pc" is unstable.
913 *
914 * This function does "uncharge" from old cgroup but doesn't do "charge" to
915 * new cgroup. It should be done by a caller.
916 */
917
918static int mem_cgroup_move_account(struct page_cgroup *pc,
919 struct mem_cgroup *from, struct mem_cgroup *to)
920{
921 struct mem_cgroup_per_zone *from_mz, *to_mz;
922 int nid, zid;
923 int ret = -EBUSY;
924
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800925 VM_BUG_ON(from == to);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800926 VM_BUG_ON(PageLRU(pc->page));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800927
928 nid = page_cgroup_nid(pc);
929 zid = page_cgroup_zid(pc);
930 from_mz = mem_cgroup_zoneinfo(from, nid, zid);
931 to_mz = mem_cgroup_zoneinfo(to, nid, zid);
932
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800933 if (!trylock_page_cgroup(pc))
934 return ret;
935
936 if (!PageCgroupUsed(pc))
937 goto out;
938
939 if (pc->mem_cgroup != from)
940 goto out;
941
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800942 res_counter_uncharge(&from->res, PAGE_SIZE);
943 mem_cgroup_charge_statistics(from, pc, false);
944 if (do_swap_account)
945 res_counter_uncharge(&from->memsw, PAGE_SIZE);
Daisuke Nishimura40d58132009-01-15 13:51:12 -0800946 css_put(&from->css);
947
948 css_get(&to->css);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800949 pc->mem_cgroup = to;
950 mem_cgroup_charge_statistics(to, pc, true);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800951 ret = 0;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800952out:
953 unlock_page_cgroup(pc);
954 return ret;
955}
956
957/*
958 * move charges to its parent.
959 */
960
961static int mem_cgroup_move_parent(struct page_cgroup *pc,
962 struct mem_cgroup *child,
963 gfp_t gfp_mask)
964{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800965 struct page *page = pc->page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800966 struct cgroup *cg = child->css.cgroup;
967 struct cgroup *pcg = cg->parent;
968 struct mem_cgroup *parent;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800969 int ret;
970
971 /* Is ROOT ? */
972 if (!pcg)
973 return -EINVAL;
974
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800975
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800976 parent = mem_cgroup_from_cont(pcg);
977
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800978
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800979 ret = __mem_cgroup_try_charge(NULL, gfp_mask, &parent, false);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800980 if (ret || !parent)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800981 return ret;
982
Daisuke Nishimura40d58132009-01-15 13:51:12 -0800983 if (!get_page_unless_zero(page)) {
984 ret = -EBUSY;
985 goto uncharge;
986 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800987
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800988 ret = isolate_lru_page(page);
989
990 if (ret)
991 goto cancel;
992
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800993 ret = mem_cgroup_move_account(pc, child, parent);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800994
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800995 putback_lru_page(page);
996 if (!ret) {
997 put_page(page);
Daisuke Nishimura40d58132009-01-15 13:51:12 -0800998 /* drop extra refcnt by try_charge() */
999 css_put(&parent->css);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001000 return 0;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001001 }
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001002
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001003cancel:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08001004 put_page(page);
1005uncharge:
1006 /* drop extra refcnt by try_charge() */
1007 css_put(&parent->css);
1008 /* uncharge if move fails */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001009 res_counter_uncharge(&parent->res, PAGE_SIZE);
1010 if (do_swap_account)
1011 res_counter_uncharge(&parent->memsw, PAGE_SIZE);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001012 return ret;
1013}
1014
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001015/*
1016 * Charge the memory controller for page usage.
1017 * Return
1018 * 0 if the charge was successful
1019 * < 0 if the cgroup is over its limit
1020 */
1021static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
1022 gfp_t gfp_mask, enum charge_type ctype,
1023 struct mem_cgroup *memcg)
1024{
1025 struct mem_cgroup *mem;
1026 struct page_cgroup *pc;
1027 int ret;
1028
1029 pc = lookup_page_cgroup(page);
1030 /* can happen at boot */
1031 if (unlikely(!pc))
1032 return 0;
1033 prefetchw(pc);
1034
1035 mem = memcg;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001036 ret = __mem_cgroup_try_charge(mm, gfp_mask, &mem, true);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001037 if (ret || !mem)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001038 return ret;
1039
1040 __mem_cgroup_commit_charge(mem, pc, ctype);
1041 return 0;
1042}
1043
1044int mem_cgroup_newpage_charge(struct page *page,
1045 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001046{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001047 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001048 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001049 if (PageCompound(page))
1050 return 0;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001051 /*
1052 * If already mapped, we don't have to account.
1053 * If page cache, page->mapping has address_space.
1054 * But page->mapping may have out-of-use anon_vma pointer,
1055 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
1056 * is NULL.
1057 */
1058 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
1059 return 0;
1060 if (unlikely(!mm))
1061 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001062 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001063 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001064}
1065
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001066int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
1067 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -08001068{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001069 struct mem_cgroup *mem = NULL;
1070 int ret;
1071
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001072 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001073 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001074 if (PageCompound(page))
1075 return 0;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001076 /*
1077 * Corner case handling. This is called from add_to_page_cache()
1078 * in usual. But some FS (shmem) precharges this page before calling it
1079 * and call add_to_page_cache() with GFP_NOWAIT.
1080 *
1081 * For GFP_NOWAIT case, the page may be pre-charged before calling
1082 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
1083 * charge twice. (It works but has to pay a bit larger cost.)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001084 * And when the page is SwapCache, it should take swap information
1085 * into account. This is under lock_page() now.
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001086 */
1087 if (!(gfp_mask & __GFP_WAIT)) {
1088 struct page_cgroup *pc;
1089
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001090
1091 pc = lookup_page_cgroup(page);
1092 if (!pc)
1093 return 0;
1094 lock_page_cgroup(pc);
1095 if (PageCgroupUsed(pc)) {
1096 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001097 return 0;
1098 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001099 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001100 }
1101
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001102 if (do_swap_account && PageSwapCache(page)) {
1103 mem = try_get_mem_cgroup_from_swapcache(page);
1104 if (mem)
1105 mm = NULL;
1106 else
1107 mem = NULL;
1108 /* SwapCache may be still linked to LRU now. */
1109 mem_cgroup_lru_del_before_commit_swapcache(page);
1110 }
1111
1112 if (unlikely(!mm && !mem))
Balbir Singh8697d332008-02-07 00:13:59 -08001113 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001114
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -07001115 if (page_is_file_cache(page))
1116 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001117 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001118
1119 ret = mem_cgroup_charge_common(page, mm, gfp_mask,
1120 MEM_CGROUP_CHARGE_TYPE_SHMEM, mem);
1121 if (mem)
1122 css_put(&mem->css);
1123 if (PageSwapCache(page))
1124 mem_cgroup_lru_add_after_commit_swapcache(page);
1125
1126 if (do_swap_account && !ret && PageSwapCache(page)) {
1127 swp_entry_t ent = {.val = page_private(page)};
1128 /* avoid double counting */
1129 mem = swap_cgroup_record(ent, NULL);
1130 if (mem) {
1131 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
1132 mem_cgroup_put(mem);
1133 }
1134 }
1135 return ret;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001136}
1137
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001138/*
1139 * While swap-in, try_charge -> commit or cancel, the page is locked.
1140 * And when try_charge() successfully returns, one refcnt to memcg without
1141 * struct page_cgroup is aquired. This refcnt will be cumsumed by
1142 * "commit()" or removed by "cancel()"
1143 */
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001144int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
1145 struct page *page,
1146 gfp_t mask, struct mem_cgroup **ptr)
1147{
1148 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001149 int ret;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001150
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001151 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001152 return 0;
1153
1154 if (!do_swap_account)
1155 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001156 /*
1157 * A racing thread's fault, or swapoff, may have already updated
1158 * the pte, and even removed page from swap cache: return success
1159 * to go on to do_swap_page()'s pte_same() test, which should fail.
1160 */
1161 if (!PageSwapCache(page))
1162 return 0;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001163 mem = try_get_mem_cgroup_from_swapcache(page);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001164 if (!mem)
1165 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001166 *ptr = mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001167 ret = __mem_cgroup_try_charge(NULL, mask, ptr, true);
1168 /* drop extra refcnt from tryget */
1169 css_put(&mem->css);
1170 return ret;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001171charge_cur_mm:
1172 if (unlikely(!mm))
1173 mm = &init_mm;
1174 return __mem_cgroup_try_charge(mm, mask, ptr, true);
1175}
1176
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001177void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
1178{
1179 struct page_cgroup *pc;
1180
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001181 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001182 return;
1183 if (!ptr)
1184 return;
1185 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001186 mem_cgroup_lru_del_before_commit_swapcache(page);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001187 __mem_cgroup_commit_charge(ptr, pc, MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001188 mem_cgroup_lru_add_after_commit_swapcache(page);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001189 /*
1190 * Now swap is on-memory. This means this page may be
1191 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001192 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
1193 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
1194 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001195 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001196 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001197 swp_entry_t ent = {.val = page_private(page)};
1198 struct mem_cgroup *memcg;
1199 memcg = swap_cgroup_record(ent, NULL);
1200 if (memcg) {
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001201 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1202 mem_cgroup_put(memcg);
1203 }
1204
1205 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001206 /* add this page(page_cgroup) to the LRU we want. */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001207
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001208}
1209
1210void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *mem)
1211{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001212 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001213 return;
1214 if (!mem)
1215 return;
1216 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001217 if (do_swap_account)
1218 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001219 css_put(&mem->css);
1220}
1221
1222
Balbir Singh8697d332008-02-07 00:13:59 -08001223/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001224 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001225 */
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001226static struct mem_cgroup *
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001227__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001228{
Hugh Dickins82895462008-03-04 14:29:08 -08001229 struct page_cgroup *pc;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001230 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -08001231 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001232
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001233 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001234 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07001235
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001236 if (PageSwapCache(page))
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001237 return NULL;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001238
Balbir Singh8697d332008-02-07 00:13:59 -08001239 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08001240 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08001241 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001242 pc = lookup_page_cgroup(page);
1243 if (unlikely(!pc || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001244 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001245
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001246 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001247
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001248 mem = pc->mem_cgroup;
1249
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001250 if (!PageCgroupUsed(pc))
1251 goto unlock_out;
1252
1253 switch (ctype) {
1254 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
1255 if (page_mapped(page))
1256 goto unlock_out;
1257 break;
1258 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
1259 if (!PageAnon(page)) { /* Shared memory */
1260 if (page->mapping && !page_is_file_cache(page))
1261 goto unlock_out;
1262 } else if (page_mapped(page)) /* Anon */
1263 goto unlock_out;
1264 break;
1265 default:
1266 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001267 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001268
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001269 res_counter_uncharge(&mem->res, PAGE_SIZE);
1270 if (do_swap_account && (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT))
1271 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001272 mem_cgroup_charge_statistics(mem, pc, false);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001273
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001274 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001275 /*
1276 * pc->mem_cgroup is not cleared here. It will be accessed when it's
1277 * freed from LRU. This is safe because uncharged page is expected not
1278 * to be reused (freed soon). Exception is SwapCache, it's handled by
1279 * special functions.
1280 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001281
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001282 mz = page_cgroup_zoneinfo(pc);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001283 unlock_page_cgroup(pc);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001284
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001285 /* at swapout, this memcg will be accessed to record to swap */
1286 if (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
1287 css_put(&mem->css);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001288
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001289 return mem;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001290
1291unlock_out:
1292 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001293 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08001294}
1295
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001296void mem_cgroup_uncharge_page(struct page *page)
1297{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001298 /* early check. */
1299 if (page_mapped(page))
1300 return;
1301 if (page->mapping && !PageAnon(page))
1302 return;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001303 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
1304}
1305
1306void mem_cgroup_uncharge_cache_page(struct page *page)
1307{
1308 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07001309 VM_BUG_ON(page->mapping);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001310 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
1311}
1312
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001313/*
1314 * called from __delete_from_swap_cache() and drop "page" account.
1315 * memcg information is recorded to swap_cgroup of "ent"
1316 */
1317void mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001318{
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001319 struct mem_cgroup *memcg;
1320
1321 memcg = __mem_cgroup_uncharge_common(page,
1322 MEM_CGROUP_CHARGE_TYPE_SWAPOUT);
1323 /* record memcg information */
1324 if (do_swap_account && memcg) {
1325 swap_cgroup_record(ent, memcg);
1326 mem_cgroup_get(memcg);
1327 }
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001328 if (memcg)
1329 css_put(&memcg->css);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001330}
1331
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001332#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
1333/*
1334 * called from swap_entry_free(). remove record in swap_cgroup and
1335 * uncharge "memsw" account.
1336 */
1337void mem_cgroup_uncharge_swap(swp_entry_t ent)
1338{
1339 struct mem_cgroup *memcg;
1340
1341 if (!do_swap_account)
1342 return;
1343
1344 memcg = swap_cgroup_record(ent, NULL);
1345 if (memcg) {
1346 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1347 mem_cgroup_put(memcg);
1348 }
1349}
1350#endif
1351
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001352/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001353 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
1354 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001355 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001356int mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001357{
1358 struct page_cgroup *pc;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001359 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001360 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001361
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001362 if (mem_cgroup_disabled())
Balbir Singh40779602008-04-04 14:29:59 -07001363 return 0;
1364
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001365 pc = lookup_page_cgroup(page);
1366 lock_page_cgroup(pc);
1367 if (PageCgroupUsed(pc)) {
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001368 mem = pc->mem_cgroup;
1369 css_get(&mem->css);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001370 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001371 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001372
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001373 if (mem) {
Daisuke Nishimura3bb4edf2009-01-07 18:08:28 -08001374 ret = __mem_cgroup_try_charge(NULL, GFP_KERNEL, &mem, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001375 css_put(&mem->css);
1376 }
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001377 *ptr = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001378 return ret;
1379}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001380
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001381/* remove redundant charge if migration failed*/
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001382void mem_cgroup_end_migration(struct mem_cgroup *mem,
1383 struct page *oldpage, struct page *newpage)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001384{
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001385 struct page *target, *unused;
1386 struct page_cgroup *pc;
1387 enum charge_type ctype;
1388
1389 if (!mem)
1390 return;
1391
1392 /* at migration success, oldpage->mapping is NULL. */
1393 if (oldpage->mapping) {
1394 target = oldpage;
1395 unused = NULL;
1396 } else {
1397 target = newpage;
1398 unused = oldpage;
1399 }
1400
1401 if (PageAnon(target))
1402 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
1403 else if (page_is_file_cache(target))
1404 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
1405 else
1406 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
1407
1408 /* unused page is not on radix-tree now. */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001409 if (unused)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001410 __mem_cgroup_uncharge_common(unused, ctype);
1411
1412 pc = lookup_page_cgroup(target);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001413 /*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001414 * __mem_cgroup_commit_charge() check PCG_USED bit of page_cgroup.
1415 * So, double-counting is effectively avoided.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001416 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001417 __mem_cgroup_commit_charge(mem, pc, ctype);
1418
1419 /*
1420 * Both of oldpage and newpage are still under lock_page().
1421 * Then, we don't have to care about race in radix-tree.
1422 * But we have to be careful that this page is unmapped or not.
1423 *
1424 * There is a case for !page_mapped(). At the start of
1425 * migration, oldpage was mapped. But now, it's zapped.
1426 * But we know *target* page is not freed/reused under us.
1427 * mem_cgroup_uncharge_page() does all necessary checks.
1428 */
1429 if (ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
1430 mem_cgroup_uncharge_page(target);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001431}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001432
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001433/*
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001434 * A call to try to shrink memory usage under specified resource controller.
1435 * This is typically used for page reclaiming for shmem for reducing side
1436 * effect of page allocation from shmem, which is used by some mem_cgroup.
1437 */
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001438int mem_cgroup_shrink_usage(struct page *page,
1439 struct mm_struct *mm,
1440 gfp_t gfp_mask)
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001441{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001442 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001443 int progress = 0;
1444 int retry = MEM_CGROUP_RECLAIM_RETRIES;
1445
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001446 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001447 return 0;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001448 if (page)
1449 mem = try_get_mem_cgroup_from_swapcache(page);
1450 if (!mem && mm)
1451 mem = try_get_mem_cgroup_from_mm(mm);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001452 if (unlikely(!mem))
Balbir Singh31a78f22008-09-28 23:09:31 +01001453 return 0;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001454
1455 do {
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001456 progress = mem_cgroup_hierarchical_reclaim(mem, gfp_mask, true);
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -08001457 progress += mem_cgroup_check_under_limit(mem);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001458 } while (!progress && --retry);
1459
1460 css_put(&mem->css);
1461 if (!retry)
1462 return -ENOMEM;
1463 return 0;
1464}
1465
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001466static DEFINE_MUTEX(set_limit_mutex);
1467
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08001468static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001469 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001470{
1471
1472 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
1473 int progress;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001474 u64 memswlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001475 int ret = 0;
1476
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001477 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001478 if (signal_pending(current)) {
1479 ret = -EINTR;
1480 break;
1481 }
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001482 /*
1483 * Rather than hide all in some function, I do this in
1484 * open coded manner. You see what this really does.
1485 * We have to guarantee mem->res.limit < mem->memsw.limit.
1486 */
1487 mutex_lock(&set_limit_mutex);
1488 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1489 if (memswlimit < val) {
1490 ret = -EINVAL;
1491 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001492 break;
1493 }
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001494 ret = res_counter_set_limit(&memcg->res, val);
1495 mutex_unlock(&set_limit_mutex);
1496
1497 if (!ret)
1498 break;
1499
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001500 progress = mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL,
1501 false);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001502 if (!progress) retry_count--;
1503 }
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001504
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001505 return ret;
1506}
1507
1508int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
1509 unsigned long long val)
1510{
1511 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
1512 u64 memlimit, oldusage, curusage;
1513 int ret;
1514
1515 if (!do_swap_account)
1516 return -EINVAL;
1517
1518 while (retry_count) {
1519 if (signal_pending(current)) {
1520 ret = -EINTR;
1521 break;
1522 }
1523 /*
1524 * Rather than hide all in some function, I do this in
1525 * open coded manner. You see what this really does.
1526 * We have to guarantee mem->res.limit < mem->memsw.limit.
1527 */
1528 mutex_lock(&set_limit_mutex);
1529 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1530 if (memlimit > val) {
1531 ret = -EINVAL;
1532 mutex_unlock(&set_limit_mutex);
1533 break;
1534 }
1535 ret = res_counter_set_limit(&memcg->memsw, val);
1536 mutex_unlock(&set_limit_mutex);
1537
1538 if (!ret)
1539 break;
1540
1541 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001542 mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL, true);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001543 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
1544 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001545 retry_count--;
1546 }
1547 return ret;
1548}
1549
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001550/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001551 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001552 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
1553 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001554static int mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001555 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001556{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001557 struct zone *zone;
1558 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001559 struct page_cgroup *pc, *busy;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001560 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -08001561 struct list_head *list;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001562 int ret = 0;
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -08001563
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001564 zone = &NODE_DATA(node)->node_zones[zid];
1565 mz = mem_cgroup_zoneinfo(mem, node, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001566 list = &mz->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001567
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001568 loop = MEM_CGROUP_ZSTAT(mz, lru);
1569 /* give some margin against EBUSY etc...*/
1570 loop += 256;
1571 busy = NULL;
1572 while (loop--) {
1573 ret = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001574 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001575 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001576 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001577 break;
1578 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001579 pc = list_entry(list->prev, struct page_cgroup, lru);
1580 if (busy == pc) {
1581 list_move(&pc->lru, list);
1582 busy = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001583 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001584 continue;
1585 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001586 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001587
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -08001588 ret = mem_cgroup_move_parent(pc, mem, GFP_KERNEL);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001589 if (ret == -ENOMEM)
1590 break;
1591
1592 if (ret == -EBUSY || ret == -EINVAL) {
1593 /* found lock contention or "pc" is obsolete. */
1594 busy = pc;
1595 cond_resched();
1596 } else
1597 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001598 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001599
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001600 if (!ret && !list_empty(list))
1601 return -EBUSY;
1602 return ret;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001603}
1604
1605/*
1606 * make mem_cgroup's charge to be 0 if there is no task.
1607 * This enables deleting this mem_cgroup.
1608 */
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001609static int mem_cgroup_force_empty(struct mem_cgroup *mem, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001610{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001611 int ret;
1612 int node, zid, shrink;
1613 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001614 struct cgroup *cgrp = mem->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001615
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001616 css_get(&mem->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001617
1618 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001619 /* should free all ? */
1620 if (free_all)
1621 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001622move_account:
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001623 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001624 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001625 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001626 goto out;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001627 ret = -EINTR;
1628 if (signal_pending(current))
1629 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001630 /* This is for making all *used* pages to be on LRU. */
1631 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001632 ret = 0;
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08001633 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001634 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001635 enum lru_list l;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001636 for_each_lru(l) {
1637 ret = mem_cgroup_force_empty_list(mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001638 node, zid, l);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001639 if (ret)
1640 break;
1641 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001642 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001643 if (ret)
1644 break;
1645 }
1646 /* it seems parent cgroup doesn't have enough mem */
1647 if (ret == -ENOMEM)
1648 goto try_to_free;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001649 cond_resched();
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001650 }
1651 ret = 0;
1652out:
1653 css_put(&mem->css);
1654 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001655
1656try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001657 /* returns EBUSY if there is a task or if we come here twice. */
1658 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001659 ret = -EBUSY;
1660 goto out;
1661 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001662 /* we call try-to-free pages for make this cgroup empty */
1663 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001664 /* try to free all pages in this cgroup */
1665 shrink = 1;
1666 while (nr_retries && mem->res.usage > 0) {
1667 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001668
1669 if (signal_pending(current)) {
1670 ret = -EINTR;
1671 goto out;
1672 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001673 progress = try_to_free_mem_cgroup_pages(mem, GFP_KERNEL,
1674 false, get_swappiness(mem));
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001675 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001676 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001677 /* maybe some writeback is necessary */
1678 congestion_wait(WRITE, HZ/10);
1679 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001680
1681 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001682 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001683 /* try move_account...there may be some *locked* pages. */
1684 if (mem->res.usage)
1685 goto move_account;
1686 ret = 0;
1687 goto out;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001688}
1689
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001690int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
1691{
1692 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
1693}
1694
1695
Balbir Singh18f59ea2009-01-07 18:08:07 -08001696static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
1697{
1698 return mem_cgroup_from_cont(cont)->use_hierarchy;
1699}
1700
1701static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
1702 u64 val)
1703{
1704 int retval = 0;
1705 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1706 struct cgroup *parent = cont->parent;
1707 struct mem_cgroup *parent_mem = NULL;
1708
1709 if (parent)
1710 parent_mem = mem_cgroup_from_cont(parent);
1711
1712 cgroup_lock();
1713 /*
1714 * If parent's use_hiearchy is set, we can't make any modifications
1715 * in the child subtrees. If it is unset, then the change can
1716 * occur, provided the current cgroup has no children.
1717 *
1718 * For the root cgroup, parent_mem is NULL, we allow value to be
1719 * set if there are no children.
1720 */
1721 if ((!parent_mem || !parent_mem->use_hierarchy) &&
1722 (val == 1 || val == 0)) {
1723 if (list_empty(&cont->children))
1724 mem->use_hierarchy = val;
1725 else
1726 retval = -EBUSY;
1727 } else
1728 retval = -EINVAL;
1729 cgroup_unlock();
1730
1731 return retval;
1732}
1733
Paul Menage2c3daa72008-04-29 00:59:58 -07001734static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001735{
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001736 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1737 u64 val = 0;
1738 int type, name;
1739
1740 type = MEMFILE_TYPE(cft->private);
1741 name = MEMFILE_ATTR(cft->private);
1742 switch (type) {
1743 case _MEM:
1744 val = res_counter_read_u64(&mem->res, name);
1745 break;
1746 case _MEMSWAP:
1747 if (do_swap_account)
1748 val = res_counter_read_u64(&mem->memsw, name);
1749 break;
1750 default:
1751 BUG();
1752 break;
1753 }
1754 return val;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001755}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001756/*
1757 * The user of this function is...
1758 * RES_LIMIT.
1759 */
Paul Menage856c13a2008-07-25 01:47:04 -07001760static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
1761 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001762{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001763 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001764 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001765 unsigned long long val;
1766 int ret;
1767
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001768 type = MEMFILE_TYPE(cft->private);
1769 name = MEMFILE_ATTR(cft->private);
1770 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001771 case RES_LIMIT:
1772 /* This function does all necessary parse...reuse it */
1773 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001774 if (ret)
1775 break;
1776 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001777 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001778 else
1779 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001780 break;
1781 default:
1782 ret = -EINVAL; /* should be BUG() ? */
1783 break;
1784 }
1785 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001786}
1787
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08001788static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
1789 unsigned long long *mem_limit, unsigned long long *memsw_limit)
1790{
1791 struct cgroup *cgroup;
1792 unsigned long long min_limit, min_memsw_limit, tmp;
1793
1794 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1795 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1796 cgroup = memcg->css.cgroup;
1797 if (!memcg->use_hierarchy)
1798 goto out;
1799
1800 while (cgroup->parent) {
1801 cgroup = cgroup->parent;
1802 memcg = mem_cgroup_from_cont(cgroup);
1803 if (!memcg->use_hierarchy)
1804 break;
1805 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
1806 min_limit = min(min_limit, tmp);
1807 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1808 min_memsw_limit = min(min_memsw_limit, tmp);
1809 }
1810out:
1811 *mem_limit = min_limit;
1812 *memsw_limit = min_memsw_limit;
1813 return;
1814}
1815
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001816static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001817{
1818 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001819 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001820
1821 mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001822 type = MEMFILE_TYPE(event);
1823 name = MEMFILE_ATTR(event);
1824 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001825 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001826 if (type == _MEM)
1827 res_counter_reset_max(&mem->res);
1828 else
1829 res_counter_reset_max(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001830 break;
1831 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001832 if (type == _MEM)
1833 res_counter_reset_failcnt(&mem->res);
1834 else
1835 res_counter_reset_failcnt(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001836 break;
1837 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07001838 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001839}
1840
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001841static const struct mem_cgroup_stat_desc {
1842 const char *msg;
1843 u64 unit;
1844} mem_cgroup_stat_desc[] = {
1845 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
1846 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
Balaji Rao55e462b2008-05-01 04:35:12 -07001847 [MEM_CGROUP_STAT_PGPGIN_COUNT] = {"pgpgin", 1, },
1848 [MEM_CGROUP_STAT_PGPGOUT_COUNT] = {"pgpgout", 1, },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001849};
1850
Paul Menagec64745c2008-04-29 01:00:02 -07001851static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
1852 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001853{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001854 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
1855 struct mem_cgroup_stat *stat = &mem_cont->stat;
1856 int i;
1857
1858 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
1859 s64 val;
1860
1861 val = mem_cgroup_read_stat(stat, i);
1862 val *= mem_cgroup_stat_desc[i].unit;
Paul Menagec64745c2008-04-29 01:00:02 -07001863 cb->fill(cb, mem_cgroup_stat_desc[i].msg, val);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001864 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001865 /* showing # of active pages */
1866 {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001867 unsigned long active_anon, inactive_anon;
1868 unsigned long active_file, inactive_file;
Lee Schermerhorn7b854122008-10-18 20:26:40 -07001869 unsigned long unevictable;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001870
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001871 inactive_anon = mem_cgroup_get_all_zonestat(mem_cont,
1872 LRU_INACTIVE_ANON);
1873 active_anon = mem_cgroup_get_all_zonestat(mem_cont,
1874 LRU_ACTIVE_ANON);
1875 inactive_file = mem_cgroup_get_all_zonestat(mem_cont,
1876 LRU_INACTIVE_FILE);
1877 active_file = mem_cgroup_get_all_zonestat(mem_cont,
1878 LRU_ACTIVE_FILE);
Lee Schermerhorn7b854122008-10-18 20:26:40 -07001879 unevictable = mem_cgroup_get_all_zonestat(mem_cont,
1880 LRU_UNEVICTABLE);
1881
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001882 cb->fill(cb, "active_anon", (active_anon) * PAGE_SIZE);
1883 cb->fill(cb, "inactive_anon", (inactive_anon) * PAGE_SIZE);
1884 cb->fill(cb, "active_file", (active_file) * PAGE_SIZE);
1885 cb->fill(cb, "inactive_file", (inactive_file) * PAGE_SIZE);
Lee Schermerhorn7b854122008-10-18 20:26:40 -07001886 cb->fill(cb, "unevictable", unevictable * PAGE_SIZE);
1887
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001888 }
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08001889 {
1890 unsigned long long limit, memsw_limit;
1891 memcg_get_hierarchical_limit(mem_cont, &limit, &memsw_limit);
1892 cb->fill(cb, "hierarchical_memory_limit", limit);
1893 if (do_swap_account)
1894 cb->fill(cb, "hierarchical_memsw_limit", memsw_limit);
1895 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08001896
1897#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001898 cb->fill(cb, "inactive_ratio", calc_inactive_ratio(mem_cont, NULL));
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08001899
1900 {
1901 int nid, zid;
1902 struct mem_cgroup_per_zone *mz;
1903 unsigned long recent_rotated[2] = {0, 0};
1904 unsigned long recent_scanned[2] = {0, 0};
1905
1906 for_each_online_node(nid)
1907 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1908 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
1909
1910 recent_rotated[0] +=
1911 mz->reclaim_stat.recent_rotated[0];
1912 recent_rotated[1] +=
1913 mz->reclaim_stat.recent_rotated[1];
1914 recent_scanned[0] +=
1915 mz->reclaim_stat.recent_scanned[0];
1916 recent_scanned[1] +=
1917 mz->reclaim_stat.recent_scanned[1];
1918 }
1919 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
1920 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
1921 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
1922 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
1923 }
1924#endif
1925
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001926 return 0;
1927}
1928
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001929static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
1930{
1931 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
1932
1933 return get_swappiness(memcg);
1934}
1935
1936static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
1937 u64 val)
1938{
1939 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
1940 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08001941
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001942 if (val > 100)
1943 return -EINVAL;
1944
1945 if (cgrp->parent == NULL)
1946 return -EINVAL;
1947
1948 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08001949
1950 cgroup_lock();
1951
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001952 /* If under hierarchy, only empty-root can set this value */
1953 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08001954 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
1955 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001956 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08001957 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001958
1959 spin_lock(&memcg->reclaim_param_lock);
1960 memcg->swappiness = val;
1961 spin_unlock(&memcg->reclaim_param_lock);
1962
Li Zefan068b38c2009-01-15 13:51:26 -08001963 cgroup_unlock();
1964
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001965 return 0;
1966}
1967
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001968
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001969static struct cftype mem_cgroup_files[] = {
1970 {
Balbir Singh0eea1032008-02-07 00:13:57 -08001971 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001972 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Paul Menage2c3daa72008-04-29 00:59:58 -07001973 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001974 },
1975 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001976 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001977 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001978 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001979 .read_u64 = mem_cgroup_read,
1980 },
1981 {
Balbir Singh0eea1032008-02-07 00:13:57 -08001982 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001983 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07001984 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07001985 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001986 },
1987 {
1988 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001989 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001990 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07001991 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001992 },
Balbir Singh8697d332008-02-07 00:13:59 -08001993 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001994 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07001995 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001996 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001997 {
1998 .name = "force_empty",
1999 .trigger = mem_cgroup_force_empty_write,
2000 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08002001 {
2002 .name = "use_hierarchy",
2003 .write_u64 = mem_cgroup_hierarchy_write,
2004 .read_u64 = mem_cgroup_hierarchy_read,
2005 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002006 {
2007 .name = "swappiness",
2008 .read_u64 = mem_cgroup_swappiness_read,
2009 .write_u64 = mem_cgroup_swappiness_write,
2010 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002011};
2012
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002013#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2014static struct cftype memsw_cgroup_files[] = {
2015 {
2016 .name = "memsw.usage_in_bytes",
2017 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
2018 .read_u64 = mem_cgroup_read,
2019 },
2020 {
2021 .name = "memsw.max_usage_in_bytes",
2022 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
2023 .trigger = mem_cgroup_reset,
2024 .read_u64 = mem_cgroup_read,
2025 },
2026 {
2027 .name = "memsw.limit_in_bytes",
2028 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
2029 .write_string = mem_cgroup_write,
2030 .read_u64 = mem_cgroup_read,
2031 },
2032 {
2033 .name = "memsw.failcnt",
2034 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
2035 .trigger = mem_cgroup_reset,
2036 .read_u64 = mem_cgroup_read,
2037 },
2038};
2039
2040static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2041{
2042 if (!do_swap_account)
2043 return 0;
2044 return cgroup_add_files(cont, ss, memsw_cgroup_files,
2045 ARRAY_SIZE(memsw_cgroup_files));
2046};
2047#else
2048static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2049{
2050 return 0;
2051}
2052#endif
2053
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002054static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2055{
2056 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002057 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -07002058 enum lru_list l;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002059 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002060 /*
2061 * This routine is called against possible nodes.
2062 * But it's BUG to call kmalloc() against offline node.
2063 *
2064 * TODO: this routine can waste much memory for nodes which will
2065 * never be onlined. It's better to use memory hotplug callback
2066 * function.
2067 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002068 if (!node_state(node, N_NORMAL_MEMORY))
2069 tmp = -1;
2070 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002071 if (!pn)
2072 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002073
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002074 mem->info.nodeinfo[node] = pn;
2075 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002076
2077 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
2078 mz = &pn->zoneinfo[zone];
Christoph Lameterb69408e2008-10-18 20:26:14 -07002079 for_each_lru(l)
2080 INIT_LIST_HEAD(&mz->lists[l]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002081 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002082 return 0;
2083}
2084
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002085static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2086{
2087 kfree(mem->info.nodeinfo[node]);
2088}
2089
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002090static int mem_cgroup_size(void)
2091{
2092 int cpustat_size = nr_cpu_ids * sizeof(struct mem_cgroup_stat_cpu);
2093 return sizeof(struct mem_cgroup) + cpustat_size;
2094}
2095
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002096static struct mem_cgroup *mem_cgroup_alloc(void)
2097{
2098 struct mem_cgroup *mem;
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002099 int size = mem_cgroup_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002100
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002101 if (size < PAGE_SIZE)
2102 mem = kmalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002103 else
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002104 mem = vmalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002105
2106 if (mem)
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002107 memset(mem, 0, size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002108 return mem;
2109}
2110
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002111/*
2112 * At destroying mem_cgroup, references from swap_cgroup can remain.
2113 * (scanning all at force_empty is too costly...)
2114 *
2115 * Instead of clearing all references at force_empty, we remember
2116 * the number of reference from swap_cgroup and free mem_cgroup when
2117 * it goes down to 0.
2118 *
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002119 * Removal of cgroup itself succeeds regardless of refs from swap.
2120 */
2121
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002122static void __mem_cgroup_free(struct mem_cgroup *mem)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002123{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002124 int node;
2125
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002126 free_css_id(&mem_cgroup_subsys, &mem->css);
2127
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002128 for_each_node_state(node, N_POSSIBLE)
2129 free_mem_cgroup_per_zone_info(mem, node);
2130
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002131 if (mem_cgroup_size() < PAGE_SIZE)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002132 kfree(mem);
2133 else
2134 vfree(mem);
2135}
2136
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002137static void mem_cgroup_get(struct mem_cgroup *mem)
2138{
2139 atomic_inc(&mem->refcnt);
2140}
2141
2142static void mem_cgroup_put(struct mem_cgroup *mem)
2143{
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002144 if (atomic_dec_and_test(&mem->refcnt)) {
2145 struct mem_cgroup *parent = parent_mem_cgroup(mem);
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002146 __mem_cgroup_free(mem);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002147 if (parent)
2148 mem_cgroup_put(parent);
2149 }
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002150}
2151
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002152/*
2153 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
2154 */
2155static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem)
2156{
2157 if (!mem->res.parent)
2158 return NULL;
2159 return mem_cgroup_from_res_counter(mem->res.parent, res);
2160}
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002161
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002162#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2163static void __init enable_swap_cgroup(void)
2164{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08002165 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002166 do_swap_account = 1;
2167}
2168#else
2169static void __init enable_swap_cgroup(void)
2170{
2171}
2172#endif
2173
Li Zefan0eb253e2009-01-15 13:51:25 -08002174static struct cgroup_subsys_state * __ref
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002175mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
2176{
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002177 struct mem_cgroup *mem, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002178 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002179 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002180
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002181 mem = mem_cgroup_alloc();
2182 if (!mem)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002183 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08002184
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002185 for_each_node_state(node, N_POSSIBLE)
2186 if (alloc_mem_cgroup_per_zone_info(mem, node))
2187 goto free_out;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002188 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002189 if (cont->parent == NULL) {
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002190 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002191 parent = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08002192 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002193 parent = mem_cgroup_from_cont(cont->parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002194 mem->use_hierarchy = parent->use_hierarchy;
2195 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002196
Balbir Singh18f59ea2009-01-07 18:08:07 -08002197 if (parent && parent->use_hierarchy) {
2198 res_counter_init(&mem->res, &parent->res);
2199 res_counter_init(&mem->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08002200 /*
2201 * We increment refcnt of the parent to ensure that we can
2202 * safely access it on res_counter_charge/uncharge.
2203 * This refcnt will be decremented when freeing this
2204 * mem_cgroup(see mem_cgroup_put).
2205 */
2206 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002207 } else {
2208 res_counter_init(&mem->res, NULL);
2209 res_counter_init(&mem->memsw, NULL);
2210 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002211 mem->last_scanned_child = 0;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -08002212 spin_lock_init(&mem->reclaim_param_lock);
Balbir Singh6d61ef42009-01-07 18:08:06 -08002213
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002214 if (parent)
2215 mem->swappiness = get_swappiness(parent);
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002216 atomic_set(&mem->refcnt, 1);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002217 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002218free_out:
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002219 __mem_cgroup_free(mem);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002220 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002221}
2222
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07002223static int mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002224 struct cgroup *cont)
2225{
2226 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07002227
2228 return mem_cgroup_force_empty(mem, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002229}
2230
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002231static void mem_cgroup_destroy(struct cgroup_subsys *ss,
2232 struct cgroup *cont)
2233{
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002234 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002235
Daisuke Nishimurac268e992009-01-15 13:51:13 -08002236 mem_cgroup_put(mem);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002237}
2238
2239static int mem_cgroup_populate(struct cgroup_subsys *ss,
2240 struct cgroup *cont)
2241{
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002242 int ret;
2243
2244 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
2245 ARRAY_SIZE(mem_cgroup_files));
2246
2247 if (!ret)
2248 ret = register_memsw_files(cont, ss);
2249 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002250}
2251
Balbir Singh67e465a2008-02-07 00:13:54 -08002252static void mem_cgroup_move_task(struct cgroup_subsys *ss,
2253 struct cgroup *cont,
2254 struct cgroup *old_cont,
2255 struct task_struct *p)
2256{
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002257 mutex_lock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002258 /*
Nikanth Karthikesanf9717d22009-01-07 18:08:11 -08002259 * FIXME: It's better to move charges of this process from old
2260 * memcg to new memcg. But it's just on TODO-List now.
Balbir Singh67e465a2008-02-07 00:13:54 -08002261 */
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002262 mutex_unlock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002263}
2264
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002265struct cgroup_subsys mem_cgroup_subsys = {
2266 .name = "memory",
2267 .subsys_id = mem_cgroup_subsys_id,
2268 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002269 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002270 .destroy = mem_cgroup_destroy,
2271 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08002272 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002273 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002274 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002275};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002276
2277#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2278
2279static int __init disable_swap_account(char *s)
2280{
2281 really_do_swap_account = 0;
2282 return 1;
2283}
2284__setup("noswapaccount", disable_swap_account);
2285#endif