blob: e2996b80601f8fd20a3bb9d1216ebf3017d11afa [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
98/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080099 * per-zone information in memory controller.
100 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800101struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -0800102 /*
103 * spin_lock to protect the per cgroup LRU
104 */
Christoph Lameterb69408e2008-10-18 20:26:14 -0700105 struct list_head lists[NR_LRU_LISTS];
106 unsigned long count[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800107
108 struct zone_reclaim_stat reclaim_stat;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800109};
110/* Macro for accessing counter */
111#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
112
113struct mem_cgroup_per_node {
114 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
115};
116
117struct mem_cgroup_lru_info {
118 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
119};
120
121/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800122 * The memory controller data structure. The memory controller controls both
123 * page cache and RSS per cgroup. We would eventually like to provide
124 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
125 * to help the administrator determine what knobs to tune.
126 *
127 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800128 * we hit the water mark. May be even add a low water mark, such that
129 * no reclaim occurs from a cgroup at it's low water mark, this is
130 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800131 */
132struct mem_cgroup {
133 struct cgroup_subsys_state css;
134 /*
135 * the counter to account for memory usage
136 */
137 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800138 /*
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800139 * the counter to account for mem+swap usage.
140 */
141 struct res_counter memsw;
142 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800143 * Per cgroup active and inactive list, similar to the
144 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800145 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800146 struct mem_cgroup_lru_info info;
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -0800147
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800148 /*
149 protect against reclaim related member.
150 */
151 spinlock_t reclaim_param_lock;
152
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800153 int prev_priority; /* for recording reclaim priority */
Balbir Singh6d61ef42009-01-07 18:08:06 -0800154
155 /*
156 * While reclaiming in a hiearchy, we cache the last child we
Paul Menage2cb378c2009-01-07 18:08:37 -0800157 * reclaimed from. Protected by hierarchy_mutex
Balbir Singh6d61ef42009-01-07 18:08:06 -0800158 */
159 struct mem_cgroup *last_scanned_child;
Balbir Singh18f59ea2009-01-07 18:08:07 -0800160 /*
161 * Should the accounting and control be hierarchical, per subtree?
162 */
163 bool use_hierarchy;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800164 unsigned long last_oom_jiffies;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800165 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800166
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800167 unsigned int swappiness;
168
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800169 /*
Jan Blunckc8dad2b2009-01-07 18:07:53 -0800170 * statistics. This must be placed at the end of memcg.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800171 */
172 struct mem_cgroup_stat stat;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800173};
174
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800175enum charge_type {
176 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
177 MEM_CGROUP_CHARGE_TYPE_MAPPED,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700178 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700179 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800180 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700181 NR_CHARGE_TYPE,
182};
183
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700184/* only for here (for easy reading.) */
185#define PCGF_CACHE (1UL << PCG_CACHE)
186#define PCGF_USED (1UL << PCG_USED)
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700187#define PCGF_LOCK (1UL << PCG_LOCK)
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700188static const unsigned long
189pcg_default_flags[NR_CHARGE_TYPE] = {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800190 PCGF_CACHE | PCGF_USED | PCGF_LOCK, /* File Cache */
191 PCGF_USED | PCGF_LOCK, /* Anon */
192 PCGF_CACHE | PCGF_USED | PCGF_LOCK, /* Shmem */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700193 0, /* FORCE */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800194};
195
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800196/* for encoding cft->private value on file */
197#define _MEM (0)
198#define _MEMSWAP (1)
199#define MEMFILE_PRIVATE(x, val) (((x) << 16) | (val))
200#define MEMFILE_TYPE(val) (((val) >> 16) & 0xffff)
201#define MEMFILE_ATTR(val) ((val) & 0xffff)
202
203static void mem_cgroup_get(struct mem_cgroup *mem);
204static void mem_cgroup_put(struct mem_cgroup *mem);
205
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700206static void mem_cgroup_charge_statistics(struct mem_cgroup *mem,
207 struct page_cgroup *pc,
208 bool charge)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800209{
210 int val = (charge)? 1 : -1;
211 struct mem_cgroup_stat *stat = &mem->stat;
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700212 struct mem_cgroup_stat_cpu *cpustat;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800213 int cpu = get_cpu();
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800214
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800215 cpustat = &stat->cpustat[cpu];
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700216 if (PageCgroupCache(pc))
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700217 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_CACHE, val);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800218 else
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700219 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_RSS, val);
Balaji Rao55e462b2008-05-01 04:35:12 -0700220
221 if (charge)
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700222 __mem_cgroup_stat_add_safe(cpustat,
Balaji Rao55e462b2008-05-01 04:35:12 -0700223 MEM_CGROUP_STAT_PGPGIN_COUNT, 1);
224 else
KAMEZAWA Hiroyukiaddb9ef2008-10-18 20:28:10 -0700225 __mem_cgroup_stat_add_safe(cpustat,
Balaji Rao55e462b2008-05-01 04:35:12 -0700226 MEM_CGROUP_STAT_PGPGOUT_COUNT, 1);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800227 put_cpu();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800228}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800229
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800230static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800231mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
232{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800233 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
234}
235
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800236static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800237page_cgroup_zoneinfo(struct page_cgroup *pc)
238{
239 struct mem_cgroup *mem = pc->mem_cgroup;
240 int nid = page_cgroup_nid(pc);
241 int zid = page_cgroup_zid(pc);
242
KOSAKI Motohiro54992762009-01-07 18:08:18 -0800243 if (!mem)
244 return NULL;
245
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800246 return mem_cgroup_zoneinfo(mem, nid, zid);
247}
248
249static unsigned long mem_cgroup_get_all_zonestat(struct mem_cgroup *mem,
Christoph Lameterb69408e2008-10-18 20:26:14 -0700250 enum lru_list idx)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800251{
252 int nid, zid;
253 struct mem_cgroup_per_zone *mz;
254 u64 total = 0;
255
256 for_each_online_node(nid)
257 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
258 mz = mem_cgroup_zoneinfo(mem, nid, zid);
259 total += MEM_CGROUP_ZSTAT(mz, idx);
260 }
261 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800262}
263
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800264static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800265{
266 return container_of(cgroup_subsys_state(cont,
267 mem_cgroup_subsys_id), struct mem_cgroup,
268 css);
269}
270
Balbir Singhcf475ad2008-04-29 01:00:16 -0700271struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800272{
Balbir Singh31a78f22008-09-28 23:09:31 +0100273 /*
274 * mm_update_next_owner() may clear mm->owner to NULL
275 * if it races with swapoff, page migration, etc.
276 * So this can be called with p == NULL.
277 */
278 if (unlikely(!p))
279 return NULL;
280
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800281 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
282 struct mem_cgroup, css);
283}
284
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800285static struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
286{
287 struct mem_cgroup *mem = NULL;
288 /*
289 * Because we have no locks, mm->owner's may be being moved to other
290 * cgroup. We use css_tryget() here even if this looks
291 * pessimistic (rather than adding locks here).
292 */
293 rcu_read_lock();
294 do {
295 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
296 if (unlikely(!mem))
297 break;
298 } while (!css_tryget(&mem->css));
299 rcu_read_unlock();
300 return mem;
301}
302
303static bool mem_cgroup_is_obsolete(struct mem_cgroup *mem)
304{
305 if (!mem)
306 return true;
307 return css_is_removed(&mem->css);
308}
309
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800310/*
311 * Following LRU functions are allowed to be used without PCG_LOCK.
312 * Operations are called by routine of global LRU independently from memcg.
313 * What we have to take care of here is validness of pc->mem_cgroup.
314 *
315 * Changes to pc->mem_cgroup happens when
316 * 1. charge
317 * 2. moving account
318 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
319 * It is added to LRU before charge.
320 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
321 * When moving account, the page is not on LRU. It's isolated.
322 */
323
324void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800325{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800326 struct page_cgroup *pc;
327 struct mem_cgroup *mem;
328 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700329
Hirokazu Takahashif8d66542009-01-07 18:08:02 -0800330 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800331 return;
332 pc = lookup_page_cgroup(page);
333 /* can happen while we handle swapcache. */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800334 if (list_empty(&pc->lru) || !pc->mem_cgroup)
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800335 return;
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800336 /*
337 * We don't check PCG_USED bit. It's cleared when the "page" is finally
338 * removed from global LRU.
339 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800340 mz = page_cgroup_zoneinfo(pc);
341 mem = pc->mem_cgroup;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700342 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800343 list_del_init(&pc->lru);
344 return;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800345}
346
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800347void mem_cgroup_del_lru(struct page *page)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800348{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800349 mem_cgroup_del_lru_list(page, page_lru(page));
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800350}
351
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800352void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru)
Balbir Singh66e17072008-02-07 00:13:56 -0800353{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800354 struct mem_cgroup_per_zone *mz;
355 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800356
Hirokazu Takahashif8d66542009-01-07 18:08:02 -0800357 if (mem_cgroup_disabled())
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700358 return;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700359
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800360 pc = lookup_page_cgroup(page);
361 smp_rmb();
362 /* unused page is not rotated. */
363 if (!PageCgroupUsed(pc))
364 return;
365 mz = page_cgroup_zoneinfo(pc);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700366 list_move(&pc->lru, &mz->lists[lru]);
Balbir Singh66e17072008-02-07 00:13:56 -0800367}
368
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800369void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru)
370{
371 struct page_cgroup *pc;
372 struct mem_cgroup_per_zone *mz;
373
Hirokazu Takahashif8d66542009-01-07 18:08:02 -0800374 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800375 return;
376 pc = lookup_page_cgroup(page);
377 /* barrier to sync with "charge" */
378 smp_rmb();
379 if (!PageCgroupUsed(pc))
380 return;
381
382 mz = page_cgroup_zoneinfo(pc);
383 MEM_CGROUP_ZSTAT(mz, lru) += 1;
384 list_add(&pc->lru, &mz->lists[lru]);
385}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800386
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800387/*
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800388 * At handling SwapCache, pc->mem_cgroup may be changed while it's linked to
389 * lru because the page may.be reused after it's fully uncharged (because of
390 * SwapCache behavior).To handle that, unlink page_cgroup from LRU when charge
391 * it again. This function is only used to charge SwapCache. It's done under
392 * lock_page and expected that zone->lru_lock is never held.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800393 */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800394static void mem_cgroup_lru_del_before_commit_swapcache(struct page *page)
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800395{
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800396 unsigned long flags;
397 struct zone *zone = page_zone(page);
398 struct page_cgroup *pc = lookup_page_cgroup(page);
399
400 spin_lock_irqsave(&zone->lru_lock, flags);
401 /*
402 * Forget old LRU when this page_cgroup is *not* used. This Used bit
403 * is guarded by lock_page() because the page is SwapCache.
404 */
405 if (!PageCgroupUsed(pc))
406 mem_cgroup_del_lru_list(page, page_lru(page));
407 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800408}
409
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800410static void mem_cgroup_lru_add_after_commit_swapcache(struct page *page)
411{
412 unsigned long flags;
413 struct zone *zone = page_zone(page);
414 struct page_cgroup *pc = lookup_page_cgroup(page);
415
416 spin_lock_irqsave(&zone->lru_lock, flags);
417 /* link when the page is linked to LRU but page_cgroup isn't */
418 if (PageLRU(page) && list_empty(&pc->lru))
419 mem_cgroup_add_lru_list(page, page_lru(page));
420 spin_unlock_irqrestore(&zone->lru_lock, flags);
421}
422
423
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800424void mem_cgroup_move_lists(struct page *page,
425 enum lru_list from, enum lru_list to)
426{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -0800427 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800428 return;
429 mem_cgroup_del_lru_list(page, from);
430 mem_cgroup_add_lru_list(page, to);
431}
432
David Rientjes4c4a2212008-02-07 00:14:06 -0800433int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
434{
435 int ret;
436
437 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800438 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800439 task_unlock(task);
440 return ret;
441}
442
Balbir Singh66e17072008-02-07 00:13:56 -0800443/*
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800444 * Calculate mapped_ratio under memory controller. This will be used in
445 * vmscan.c for deteremining we have to reclaim mapped pages.
446 */
447int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
448{
449 long total, rss;
450
451 /*
452 * usage is recorded in bytes. But, here, we assume the number of
453 * physical pages can be represented by "long" on any arch.
454 */
455 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
456 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
457 return (int)((rss * 100L) / total);
458}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800459
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800460/*
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800461 * prev_priority control...this will be used in memory reclaim path.
462 */
463int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
464{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800465 int prev_priority;
466
467 spin_lock(&mem->reclaim_param_lock);
468 prev_priority = mem->prev_priority;
469 spin_unlock(&mem->reclaim_param_lock);
470
471 return prev_priority;
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800472}
473
474void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
475{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800476 spin_lock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800477 if (priority < mem->prev_priority)
478 mem->prev_priority = priority;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800479 spin_unlock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800480}
481
482void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
483{
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800484 spin_lock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800485 mem->prev_priority = priority;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -0800486 spin_unlock(&mem->reclaim_param_lock);
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800487}
488
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800489static int calc_inactive_ratio(struct mem_cgroup *memcg, unsigned long *present_pages)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800490{
491 unsigned long active;
492 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800493 unsigned long gb;
494 unsigned long inactive_ratio;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800495
496 inactive = mem_cgroup_get_all_zonestat(memcg, LRU_INACTIVE_ANON);
497 active = mem_cgroup_get_all_zonestat(memcg, LRU_ACTIVE_ANON);
498
KOSAKI Motohiroc772be92009-01-07 18:08:25 -0800499 gb = (inactive + active) >> (30 - PAGE_SHIFT);
500 if (gb)
501 inactive_ratio = int_sqrt(10 * gb);
502 else
503 inactive_ratio = 1;
504
505 if (present_pages) {
506 present_pages[0] = inactive;
507 present_pages[1] = active;
508 }
509
510 return inactive_ratio;
511}
512
513int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg)
514{
515 unsigned long active;
516 unsigned long inactive;
517 unsigned long present_pages[2];
518 unsigned long inactive_ratio;
519
520 inactive_ratio = calc_inactive_ratio(memcg, present_pages);
521
522 inactive = present_pages[0];
523 active = present_pages[1];
524
525 if (inactive * inactive_ratio < active)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800526 return 1;
527
528 return 0;
529}
530
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800531unsigned long mem_cgroup_zone_nr_pages(struct mem_cgroup *memcg,
532 struct zone *zone,
533 enum lru_list lru)
534{
535 int nid = zone->zone_pgdat->node_id;
536 int zid = zone_idx(zone);
537 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
538
539 return MEM_CGROUP_ZSTAT(mz, lru);
540}
541
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800542struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg,
543 struct zone *zone)
544{
545 int nid = zone->zone_pgdat->node_id;
546 int zid = zone_idx(zone);
547 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
548
549 return &mz->reclaim_stat;
550}
551
552struct zone_reclaim_stat *
553mem_cgroup_get_reclaim_stat_from_page(struct page *page)
554{
555 struct page_cgroup *pc;
556 struct mem_cgroup_per_zone *mz;
557
558 if (mem_cgroup_disabled())
559 return NULL;
560
561 pc = lookup_page_cgroup(page);
562 mz = page_cgroup_zoneinfo(pc);
563 if (!mz)
564 return NULL;
565
566 return &mz->reclaim_stat;
567}
568
Balbir Singh66e17072008-02-07 00:13:56 -0800569unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
570 struct list_head *dst,
571 unsigned long *scanned, int order,
572 int mode, struct zone *z,
573 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700574 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -0800575{
576 unsigned long nr_taken = 0;
577 struct page *page;
578 unsigned long scan;
579 LIST_HEAD(pc_list);
580 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800581 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800582 int nid = z->zone_pgdat->node_id;
583 int zid = zone_idx(z);
584 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700585 int lru = LRU_FILE * !!file + !!active;
Balbir Singh66e17072008-02-07 00:13:56 -0800586
Balbir Singhcf475ad2008-04-29 01:00:16 -0700587 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800588 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700589 src = &mz->lists[lru];
Balbir Singh66e17072008-02-07 00:13:56 -0800590
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800591 scan = 0;
592 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800593 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800594 break;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800595
596 page = pc->page;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700597 if (unlikely(!PageCgroupUsed(pc)))
598 continue;
Hugh Dickins436c65412008-02-07 00:14:12 -0800599 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800600 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800601
Hugh Dickins436c65412008-02-07 00:14:12 -0800602 scan++;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700603 if (__isolate_lru_page(page, mode, file) == 0) {
Balbir Singh66e17072008-02-07 00:13:56 -0800604 list_move(&page->lru, dst);
605 nr_taken++;
606 }
607 }
608
Balbir Singh66e17072008-02-07 00:13:56 -0800609 *scanned = scan;
610 return nr_taken;
611}
612
Balbir Singh6d61ef42009-01-07 18:08:06 -0800613#define mem_cgroup_from_res_counter(counter, member) \
614 container_of(counter, struct mem_cgroup, member)
615
616/*
617 * This routine finds the DFS walk successor. This routine should be
Paul Menage2cb378c2009-01-07 18:08:37 -0800618 * called with hierarchy_mutex held
Balbir Singh6d61ef42009-01-07 18:08:06 -0800619 */
620static struct mem_cgroup *
621mem_cgroup_get_next_node(struct mem_cgroup *curr, struct mem_cgroup *root_mem)
622{
623 struct cgroup *cgroup, *curr_cgroup, *root_cgroup;
624
625 curr_cgroup = curr->css.cgroup;
626 root_cgroup = root_mem->css.cgroup;
627
628 if (!list_empty(&curr_cgroup->children)) {
629 /*
630 * Walk down to children
631 */
632 mem_cgroup_put(curr);
633 cgroup = list_entry(curr_cgroup->children.next,
634 struct cgroup, sibling);
635 curr = mem_cgroup_from_cont(cgroup);
636 mem_cgroup_get(curr);
637 goto done;
638 }
639
640visit_parent:
641 if (curr_cgroup == root_cgroup) {
642 mem_cgroup_put(curr);
643 curr = root_mem;
644 mem_cgroup_get(curr);
645 goto done;
646 }
647
648 /*
649 * Goto next sibling
650 */
651 if (curr_cgroup->sibling.next != &curr_cgroup->parent->children) {
652 mem_cgroup_put(curr);
653 cgroup = list_entry(curr_cgroup->sibling.next, struct cgroup,
654 sibling);
655 curr = mem_cgroup_from_cont(cgroup);
656 mem_cgroup_get(curr);
657 goto done;
658 }
659
660 /*
661 * Go up to next parent and next parent's sibling if need be
662 */
663 curr_cgroup = curr_cgroup->parent;
664 goto visit_parent;
665
666done:
667 root_mem->last_scanned_child = curr;
668 return curr;
669}
670
671/*
672 * Visit the first child (need not be the first child as per the ordering
673 * of the cgroup list, since we track last_scanned_child) of @mem and use
674 * that to reclaim free pages from.
675 */
676static struct mem_cgroup *
677mem_cgroup_get_first_node(struct mem_cgroup *root_mem)
678{
679 struct cgroup *cgroup;
680 struct mem_cgroup *ret;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800681 bool obsolete;
682
683 obsolete = mem_cgroup_is_obsolete(root_mem->last_scanned_child);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800684
685 /*
686 * Scan all children under the mem_cgroup mem
687 */
Paul Menage2cb378c2009-01-07 18:08:37 -0800688 mutex_lock(&mem_cgroup_subsys.hierarchy_mutex);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800689 if (list_empty(&root_mem->css.cgroup->children)) {
690 ret = root_mem;
691 goto done;
692 }
693
694 if (!root_mem->last_scanned_child || obsolete) {
695
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800696 if (obsolete && root_mem->last_scanned_child)
Balbir Singh6d61ef42009-01-07 18:08:06 -0800697 mem_cgroup_put(root_mem->last_scanned_child);
698
699 cgroup = list_first_entry(&root_mem->css.cgroup->children,
700 struct cgroup, sibling);
701 ret = mem_cgroup_from_cont(cgroup);
702 mem_cgroup_get(ret);
703 } else
704 ret = mem_cgroup_get_next_node(root_mem->last_scanned_child,
705 root_mem);
706
707done:
708 root_mem->last_scanned_child = ret;
Paul Menage2cb378c2009-01-07 18:08:37 -0800709 mutex_unlock(&mem_cgroup_subsys.hierarchy_mutex);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800710 return ret;
711}
712
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800713static bool mem_cgroup_check_under_limit(struct mem_cgroup *mem)
714{
715 if (do_swap_account) {
716 if (res_counter_check_under_limit(&mem->res) &&
717 res_counter_check_under_limit(&mem->memsw))
718 return true;
719 } else
720 if (res_counter_check_under_limit(&mem->res))
721 return true;
722 return false;
723}
724
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800725static unsigned int get_swappiness(struct mem_cgroup *memcg)
726{
727 struct cgroup *cgrp = memcg->css.cgroup;
728 unsigned int swappiness;
729
730 /* root ? */
731 if (cgrp->parent == NULL)
732 return vm_swappiness;
733
734 spin_lock(&memcg->reclaim_param_lock);
735 swappiness = memcg->swappiness;
736 spin_unlock(&memcg->reclaim_param_lock);
737
738 return swappiness;
739}
740
Balbir Singh6d61ef42009-01-07 18:08:06 -0800741/*
742 * Dance down the hierarchy if needed to reclaim memory. We remember the
743 * last child we reclaimed from, so that we don't end up penalizing
744 * one child extensively based on its position in the children list.
745 *
746 * root_mem is the original ancestor that we've been reclaim from.
747 */
748static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_mem,
749 gfp_t gfp_mask, bool noswap)
750{
751 struct mem_cgroup *next_mem;
752 int ret = 0;
753
754 /*
755 * Reclaim unconditionally and don't check for return value.
756 * We need to reclaim in the current group and down the tree.
757 * One might think about checking for children before reclaiming,
758 * but there might be left over accounting, even after children
759 * have left.
760 */
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800761 ret = try_to_free_mem_cgroup_pages(root_mem, gfp_mask, noswap,
762 get_swappiness(root_mem));
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800763 if (mem_cgroup_check_under_limit(root_mem))
Balbir Singh6d61ef42009-01-07 18:08:06 -0800764 return 0;
Daisuke Nishimura670ec2f2009-01-07 18:08:13 -0800765 if (!root_mem->use_hierarchy)
766 return ret;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800767
768 next_mem = mem_cgroup_get_first_node(root_mem);
769
770 while (next_mem != root_mem) {
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800771 if (mem_cgroup_is_obsolete(next_mem)) {
Balbir Singh6d61ef42009-01-07 18:08:06 -0800772 mem_cgroup_put(next_mem);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800773 next_mem = mem_cgroup_get_first_node(root_mem);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800774 continue;
775 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800776 ret = try_to_free_mem_cgroup_pages(next_mem, gfp_mask, noswap,
777 get_swappiness(next_mem));
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800778 if (mem_cgroup_check_under_limit(root_mem))
Balbir Singh6d61ef42009-01-07 18:08:06 -0800779 return 0;
Paul Menage2cb378c2009-01-07 18:08:37 -0800780 mutex_lock(&mem_cgroup_subsys.hierarchy_mutex);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800781 next_mem = mem_cgroup_get_next_node(next_mem, root_mem);
Paul Menage2cb378c2009-01-07 18:08:37 -0800782 mutex_unlock(&mem_cgroup_subsys.hierarchy_mutex);
Balbir Singh6d61ef42009-01-07 18:08:06 -0800783 }
784 return ret;
785}
786
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800787bool mem_cgroup_oom_called(struct task_struct *task)
788{
789 bool ret = false;
790 struct mem_cgroup *mem;
791 struct mm_struct *mm;
792
793 rcu_read_lock();
794 mm = task->mm;
795 if (!mm)
796 mm = &init_mm;
797 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
798 if (mem && time_before(jiffies, mem->last_oom_jiffies + HZ/10))
799 ret = true;
800 rcu_read_unlock();
801 return ret;
802}
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800803/*
804 * Unlike exported interface, "oom" parameter is added. if oom==true,
805 * oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800806 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800807static int __mem_cgroup_try_charge(struct mm_struct *mm,
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800808 gfp_t gfp_mask, struct mem_cgroup **memcg,
809 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800810{
Balbir Singh6d61ef42009-01-07 18:08:06 -0800811 struct mem_cgroup *mem, *mem_over_limit;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800812 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800813 struct res_counter *fail_res;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800814
815 if (unlikely(test_thread_flag(TIF_MEMDIE))) {
816 /* Don't account this! */
817 *memcg = NULL;
818 return 0;
819 }
820
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800821 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800822 * We always charge the cgroup the mm_struct belongs to.
823 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800824 * thread group leader migrates. It's possible that mm is not
825 * set, if so charge the init_mm (happens for pagecache usage).
826 */
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800827 mem = *memcg;
828 if (likely(!mem)) {
829 mem = try_get_mem_cgroup_from_mm(mm);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800830 *memcg = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700831 } else {
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800832 css_get(&mem->css);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700833 }
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800834 if (unlikely(!mem))
835 return 0;
836
837 VM_BUG_ON(mem_cgroup_is_obsolete(mem));
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800838
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800839 while (1) {
840 int ret;
841 bool noswap = false;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800842
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800843 ret = res_counter_charge(&mem->res, PAGE_SIZE, &fail_res);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800844 if (likely(!ret)) {
845 if (!do_swap_account)
846 break;
Balbir Singh28dbc4b2009-01-07 18:08:05 -0800847 ret = res_counter_charge(&mem->memsw, PAGE_SIZE,
848 &fail_res);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800849 if (likely(!ret))
850 break;
851 /* mem+swap counter fails */
852 res_counter_uncharge(&mem->res, PAGE_SIZE);
853 noswap = true;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800854 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
855 memsw);
856 } else
857 /* mem counter fails */
858 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
859 res);
860
Hugh Dickins3be91272008-02-07 00:14:19 -0800861 if (!(gfp_mask & __GFP_WAIT))
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800862 goto nomem;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800863
Balbir Singh6d61ef42009-01-07 18:08:06 -0800864 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, gfp_mask,
865 noswap);
Balbir Singh66e17072008-02-07 00:13:56 -0800866
867 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800868 * try_to_free_mem_cgroup_pages() might not give us a full
869 * picture of reclaim. Some pages are reclaimed and might be
870 * moved to swap cache or just unmapped from the cgroup.
871 * Check the limit again to see if the reclaim reduced the
872 * current usage of the cgroup before giving up
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800873 *
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800874 */
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -0800875 if (mem_cgroup_check_under_limit(mem_over_limit))
876 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800877
878 if (!nr_retries--) {
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800879 if (oom) {
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -0800880 mutex_lock(&memcg_tasklist);
KAMEZAWA Hiroyuki88700752009-01-07 18:08:09 -0800881 mem_cgroup_out_of_memory(mem_over_limit, gfp_mask);
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -0800882 mutex_unlock(&memcg_tasklist);
KAMEZAWA Hiroyuki88700752009-01-07 18:08:09 -0800883 mem_over_limit->last_oom_jiffies = jiffies;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800884 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800885 goto nomem;
Balbir Singh66e17072008-02-07 00:13:56 -0800886 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800887 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800888 return 0;
889nomem:
890 css_put(&mem->css);
891 return -ENOMEM;
892}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800893
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -0800894static struct mem_cgroup *try_get_mem_cgroup_from_swapcache(struct page *page)
895{
896 struct mem_cgroup *mem;
897 swp_entry_t ent;
898
899 if (!PageSwapCache(page))
900 return NULL;
901
902 ent.val = page_private(page);
903 mem = lookup_swap_cgroup(ent);
904 if (!mem)
905 return NULL;
906 if (!css_tryget(&mem->css))
907 return NULL;
908 return mem;
909}
910
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800911/*
Daisuke Nishimuraa5e924f2009-01-07 18:08:28 -0800912 * commit a charge got by __mem_cgroup_try_charge() and makes page_cgroup to be
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800913 * USED state. If already USED, uncharge and return.
914 */
915
916static void __mem_cgroup_commit_charge(struct mem_cgroup *mem,
917 struct page_cgroup *pc,
918 enum charge_type ctype)
919{
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800920 /* try_charge() can return NULL to *memcg, taking care of it. */
921 if (!mem)
922 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700923
924 lock_page_cgroup(pc);
925 if (unlikely(PageCgroupUsed(pc))) {
926 unlock_page_cgroup(pc);
927 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800928 if (do_swap_account)
929 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700930 css_put(&mem->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800931 return;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700932 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800933 pc->mem_cgroup = mem;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800934 smp_wmb();
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700935 pc->flags = pcg_default_flags[ctype];
Hugh Dickins3be91272008-02-07 00:14:19 -0800936
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800937 mem_cgroup_charge_statistics(mem, pc, true);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700938
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700939 unlock_page_cgroup(pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800940}
941
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800942/**
943 * mem_cgroup_move_account - move account of the page
944 * @pc: page_cgroup of the page.
945 * @from: mem_cgroup which the page is moved from.
946 * @to: mem_cgroup which the page is moved to. @from != @to.
947 *
948 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800949 * - page is not on LRU (isolate_page() is useful.)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800950 *
951 * returns 0 at success,
952 * returns -EBUSY when lock is busy or "pc" is unstable.
953 *
954 * This function does "uncharge" from old cgroup but doesn't do "charge" to
955 * new cgroup. It should be done by a caller.
956 */
957
958static int mem_cgroup_move_account(struct page_cgroup *pc,
959 struct mem_cgroup *from, struct mem_cgroup *to)
960{
961 struct mem_cgroup_per_zone *from_mz, *to_mz;
962 int nid, zid;
963 int ret = -EBUSY;
964
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800965 VM_BUG_ON(from == to);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800966 VM_BUG_ON(PageLRU(pc->page));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800967
968 nid = page_cgroup_nid(pc);
969 zid = page_cgroup_zid(pc);
970 from_mz = mem_cgroup_zoneinfo(from, nid, zid);
971 to_mz = mem_cgroup_zoneinfo(to, nid, zid);
972
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800973 if (!trylock_page_cgroup(pc))
974 return ret;
975
976 if (!PageCgroupUsed(pc))
977 goto out;
978
979 if (pc->mem_cgroup != from)
980 goto out;
981
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800982 css_put(&from->css);
983 res_counter_uncharge(&from->res, PAGE_SIZE);
984 mem_cgroup_charge_statistics(from, pc, false);
985 if (do_swap_account)
986 res_counter_uncharge(&from->memsw, PAGE_SIZE);
987 pc->mem_cgroup = to;
988 mem_cgroup_charge_statistics(to, pc, true);
989 css_get(&to->css);
990 ret = 0;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -0800991out:
992 unlock_page_cgroup(pc);
993 return ret;
994}
995
996/*
997 * move charges to its parent.
998 */
999
1000static int mem_cgroup_move_parent(struct page_cgroup *pc,
1001 struct mem_cgroup *child,
1002 gfp_t gfp_mask)
1003{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001004 struct page *page = pc->page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001005 struct cgroup *cg = child->css.cgroup;
1006 struct cgroup *pcg = cg->parent;
1007 struct mem_cgroup *parent;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001008 int ret;
1009
1010 /* Is ROOT ? */
1011 if (!pcg)
1012 return -EINVAL;
1013
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001014
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001015 parent = mem_cgroup_from_cont(pcg);
1016
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001017
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001018 ret = __mem_cgroup_try_charge(NULL, gfp_mask, &parent, false);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001019 if (ret || !parent)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001020 return ret;
1021
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001022 if (!get_page_unless_zero(page))
1023 return -EBUSY;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001024
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001025 ret = isolate_lru_page(page);
1026
1027 if (ret)
1028 goto cancel;
1029
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001030 ret = mem_cgroup_move_account(pc, child, parent);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001031
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001032 /* drop extra refcnt by try_charge() (move_account increment one) */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001033 css_put(&parent->css);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001034 putback_lru_page(page);
1035 if (!ret) {
1036 put_page(page);
1037 return 0;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001038 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001039 /* uncharge if move fails */
1040cancel:
1041 res_counter_uncharge(&parent->res, PAGE_SIZE);
1042 if (do_swap_account)
1043 res_counter_uncharge(&parent->memsw, PAGE_SIZE);
1044 put_page(page);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001045 return ret;
1046}
1047
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001048/*
1049 * Charge the memory controller for page usage.
1050 * Return
1051 * 0 if the charge was successful
1052 * < 0 if the cgroup is over its limit
1053 */
1054static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
1055 gfp_t gfp_mask, enum charge_type ctype,
1056 struct mem_cgroup *memcg)
1057{
1058 struct mem_cgroup *mem;
1059 struct page_cgroup *pc;
1060 int ret;
1061
1062 pc = lookup_page_cgroup(page);
1063 /* can happen at boot */
1064 if (unlikely(!pc))
1065 return 0;
1066 prefetchw(pc);
1067
1068 mem = memcg;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001069 ret = __mem_cgroup_try_charge(mm, gfp_mask, &mem, true);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001070 if (ret || !mem)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001071 return ret;
1072
1073 __mem_cgroup_commit_charge(mem, pc, ctype);
1074 return 0;
1075}
1076
1077int mem_cgroup_newpage_charge(struct page *page,
1078 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001079{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001080 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001081 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001082 if (PageCompound(page))
1083 return 0;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001084 /*
1085 * If already mapped, we don't have to account.
1086 * If page cache, page->mapping has address_space.
1087 * But page->mapping may have out-of-use anon_vma pointer,
1088 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
1089 * is NULL.
1090 */
1091 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
1092 return 0;
1093 if (unlikely(!mm))
1094 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001095 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001096 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08001097}
1098
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001099int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
1100 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -08001101{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001102 struct mem_cgroup *mem = NULL;
1103 int ret;
1104
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001105 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001106 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001107 if (PageCompound(page))
1108 return 0;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001109 /*
1110 * Corner case handling. This is called from add_to_page_cache()
1111 * in usual. But some FS (shmem) precharges this page before calling it
1112 * and call add_to_page_cache() with GFP_NOWAIT.
1113 *
1114 * For GFP_NOWAIT case, the page may be pre-charged before calling
1115 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
1116 * charge twice. (It works but has to pay a bit larger cost.)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001117 * And when the page is SwapCache, it should take swap information
1118 * into account. This is under lock_page() now.
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001119 */
1120 if (!(gfp_mask & __GFP_WAIT)) {
1121 struct page_cgroup *pc;
1122
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001123
1124 pc = lookup_page_cgroup(page);
1125 if (!pc)
1126 return 0;
1127 lock_page_cgroup(pc);
1128 if (PageCgroupUsed(pc)) {
1129 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001130 return 0;
1131 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001132 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001133 }
1134
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001135 if (do_swap_account && PageSwapCache(page)) {
1136 mem = try_get_mem_cgroup_from_swapcache(page);
1137 if (mem)
1138 mm = NULL;
1139 else
1140 mem = NULL;
1141 /* SwapCache may be still linked to LRU now. */
1142 mem_cgroup_lru_del_before_commit_swapcache(page);
1143 }
1144
1145 if (unlikely(!mm && !mem))
Balbir Singh8697d332008-02-07 00:13:59 -08001146 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07001147
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -07001148 if (page_is_file_cache(page))
1149 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001150 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001151
1152 ret = mem_cgroup_charge_common(page, mm, gfp_mask,
1153 MEM_CGROUP_CHARGE_TYPE_SHMEM, mem);
1154 if (mem)
1155 css_put(&mem->css);
1156 if (PageSwapCache(page))
1157 mem_cgroup_lru_add_after_commit_swapcache(page);
1158
1159 if (do_swap_account && !ret && PageSwapCache(page)) {
1160 swp_entry_t ent = {.val = page_private(page)};
1161 /* avoid double counting */
1162 mem = swap_cgroup_record(ent, NULL);
1163 if (mem) {
1164 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
1165 mem_cgroup_put(mem);
1166 }
1167 }
1168 return ret;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001169}
1170
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001171/*
1172 * While swap-in, try_charge -> commit or cancel, the page is locked.
1173 * And when try_charge() successfully returns, one refcnt to memcg without
1174 * struct page_cgroup is aquired. This refcnt will be cumsumed by
1175 * "commit()" or removed by "cancel()"
1176 */
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001177int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
1178 struct page *page,
1179 gfp_t mask, struct mem_cgroup **ptr)
1180{
1181 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001182 int ret;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001183
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001184 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001185 return 0;
1186
1187 if (!do_swap_account)
1188 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001189 /*
1190 * A racing thread's fault, or swapoff, may have already updated
1191 * the pte, and even removed page from swap cache: return success
1192 * to go on to do_swap_page()'s pte_same() test, which should fail.
1193 */
1194 if (!PageSwapCache(page))
1195 return 0;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001196 mem = try_get_mem_cgroup_from_swapcache(page);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001197 if (!mem)
1198 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001199 *ptr = mem;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001200 ret = __mem_cgroup_try_charge(NULL, mask, ptr, true);
1201 /* drop extra refcnt from tryget */
1202 css_put(&mem->css);
1203 return ret;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001204charge_cur_mm:
1205 if (unlikely(!mm))
1206 mm = &init_mm;
1207 return __mem_cgroup_try_charge(mm, mask, ptr, true);
1208}
1209
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001210void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
1211{
1212 struct page_cgroup *pc;
1213
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001214 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001215 return;
1216 if (!ptr)
1217 return;
1218 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001219 mem_cgroup_lru_del_before_commit_swapcache(page);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001220 __mem_cgroup_commit_charge(ptr, pc, MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001221 mem_cgroup_lru_add_after_commit_swapcache(page);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001222 /*
1223 * Now swap is on-memory. This means this page may be
1224 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001225 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
1226 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
1227 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001228 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08001229 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001230 swp_entry_t ent = {.val = page_private(page)};
1231 struct mem_cgroup *memcg;
1232 memcg = swap_cgroup_record(ent, NULL);
1233 if (memcg) {
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001234 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1235 mem_cgroup_put(memcg);
1236 }
1237
1238 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001239 /* add this page(page_cgroup) to the LRU we want. */
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001240
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001241}
1242
1243void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *mem)
1244{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001245 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001246 return;
1247 if (!mem)
1248 return;
1249 res_counter_uncharge(&mem->res, PAGE_SIZE);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001250 if (do_swap_account)
1251 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001252 css_put(&mem->css);
1253}
1254
1255
Balbir Singh8697d332008-02-07 00:13:59 -08001256/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001257 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001258 */
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001259static struct mem_cgroup *
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001260__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001261{
Hugh Dickins82895462008-03-04 14:29:08 -08001262 struct page_cgroup *pc;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001263 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -08001264 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001265
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001266 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001267 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07001268
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001269 if (PageSwapCache(page))
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001270 return NULL;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001271
Balbir Singh8697d332008-02-07 00:13:59 -08001272 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08001273 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08001274 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001275 pc = lookup_page_cgroup(page);
1276 if (unlikely(!pc || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001277 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001278
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001279 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001280
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001281 mem = pc->mem_cgroup;
1282
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001283 if (!PageCgroupUsed(pc))
1284 goto unlock_out;
1285
1286 switch (ctype) {
1287 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
1288 if (page_mapped(page))
1289 goto unlock_out;
1290 break;
1291 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
1292 if (!PageAnon(page)) { /* Shared memory */
1293 if (page->mapping && !page_is_file_cache(page))
1294 goto unlock_out;
1295 } else if (page_mapped(page)) /* Anon */
1296 goto unlock_out;
1297 break;
1298 default:
1299 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001300 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001301
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001302 res_counter_uncharge(&mem->res, PAGE_SIZE);
1303 if (do_swap_account && (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT))
1304 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
1305
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001306 mem_cgroup_charge_statistics(mem, pc, false);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001307 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001308 /*
1309 * pc->mem_cgroup is not cleared here. It will be accessed when it's
1310 * freed from LRU. This is safe because uncharged page is expected not
1311 * to be reused (freed soon). Exception is SwapCache, it's handled by
1312 * special functions.
1313 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001314
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001315 mz = page_cgroup_zoneinfo(pc);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001316 unlock_page_cgroup(pc);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001317
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001318 /* at swapout, this memcg will be accessed to record to swap */
1319 if (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
1320 css_put(&mem->css);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001321
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001322 return mem;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001323
1324unlock_out:
1325 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001326 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08001327}
1328
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001329void mem_cgroup_uncharge_page(struct page *page)
1330{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001331 /* early check. */
1332 if (page_mapped(page))
1333 return;
1334 if (page->mapping && !PageAnon(page))
1335 return;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001336 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
1337}
1338
1339void mem_cgroup_uncharge_cache_page(struct page *page)
1340{
1341 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07001342 VM_BUG_ON(page->mapping);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001343 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
1344}
1345
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001346/*
1347 * called from __delete_from_swap_cache() and drop "page" account.
1348 * memcg information is recorded to swap_cgroup of "ent"
1349 */
1350void mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001351{
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001352 struct mem_cgroup *memcg;
1353
1354 memcg = __mem_cgroup_uncharge_common(page,
1355 MEM_CGROUP_CHARGE_TYPE_SWAPOUT);
1356 /* record memcg information */
1357 if (do_swap_account && memcg) {
1358 swap_cgroup_record(ent, memcg);
1359 mem_cgroup_get(memcg);
1360 }
KAMEZAWA Hiroyukia7fe9422009-01-07 18:08:13 -08001361 if (memcg)
1362 css_put(&memcg->css);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001363}
1364
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001365#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
1366/*
1367 * called from swap_entry_free(). remove record in swap_cgroup and
1368 * uncharge "memsw" account.
1369 */
1370void mem_cgroup_uncharge_swap(swp_entry_t ent)
1371{
1372 struct mem_cgroup *memcg;
1373
1374 if (!do_swap_account)
1375 return;
1376
1377 memcg = swap_cgroup_record(ent, NULL);
1378 if (memcg) {
1379 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1380 mem_cgroup_put(memcg);
1381 }
1382}
1383#endif
1384
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001385/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001386 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
1387 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001388 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001389int mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001390{
1391 struct page_cgroup *pc;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001392 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001393 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001394
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001395 if (mem_cgroup_disabled())
Balbir Singh40779602008-04-04 14:29:59 -07001396 return 0;
1397
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001398 pc = lookup_page_cgroup(page);
1399 lock_page_cgroup(pc);
1400 if (PageCgroupUsed(pc)) {
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001401 mem = pc->mem_cgroup;
1402 css_get(&mem->css);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08001403 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001404 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001405
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001406 if (mem) {
Daisuke Nishimura3bb4edf2009-01-07 18:08:28 -08001407 ret = __mem_cgroup_try_charge(NULL, GFP_KERNEL, &mem, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001408 css_put(&mem->css);
1409 }
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001410 *ptr = mem;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001411 return ret;
1412}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08001413
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001414/* remove redundant charge if migration failed*/
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001415void mem_cgroup_end_migration(struct mem_cgroup *mem,
1416 struct page *oldpage, struct page *newpage)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07001417{
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001418 struct page *target, *unused;
1419 struct page_cgroup *pc;
1420 enum charge_type ctype;
1421
1422 if (!mem)
1423 return;
1424
1425 /* at migration success, oldpage->mapping is NULL. */
1426 if (oldpage->mapping) {
1427 target = oldpage;
1428 unused = NULL;
1429 } else {
1430 target = newpage;
1431 unused = oldpage;
1432 }
1433
1434 if (PageAnon(target))
1435 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
1436 else if (page_is_file_cache(target))
1437 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
1438 else
1439 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
1440
1441 /* unused page is not on radix-tree now. */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001442 if (unused)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001443 __mem_cgroup_uncharge_common(unused, ctype);
1444
1445 pc = lookup_page_cgroup(target);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001446 /*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001447 * __mem_cgroup_commit_charge() check PCG_USED bit of page_cgroup.
1448 * So, double-counting is effectively avoided.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001449 */
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08001450 __mem_cgroup_commit_charge(mem, pc, ctype);
1451
1452 /*
1453 * Both of oldpage and newpage are still under lock_page().
1454 * Then, we don't have to care about race in radix-tree.
1455 * But we have to be careful that this page is unmapped or not.
1456 *
1457 * There is a case for !page_mapped(). At the start of
1458 * migration, oldpage was mapped. But now, it's zapped.
1459 * But we know *target* page is not freed/reused under us.
1460 * mem_cgroup_uncharge_page() does all necessary checks.
1461 */
1462 if (ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
1463 mem_cgroup_uncharge_page(target);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08001464}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001465
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001466/*
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001467 * A call to try to shrink memory usage under specified resource controller.
1468 * This is typically used for page reclaiming for shmem for reducing side
1469 * effect of page allocation from shmem, which is used by some mem_cgroup.
1470 */
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001471int mem_cgroup_shrink_usage(struct page *page,
1472 struct mm_struct *mm,
1473 gfp_t gfp_mask)
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001474{
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001475 struct mem_cgroup *mem = NULL;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001476 int progress = 0;
1477 int retry = MEM_CGROUP_RECLAIM_RETRIES;
1478
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001479 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07001480 return 0;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001481 if (page)
1482 mem = try_get_mem_cgroup_from_swapcache(page);
1483 if (!mem && mm)
1484 mem = try_get_mem_cgroup_from_mm(mm);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001485 if (unlikely(!mem))
Balbir Singh31a78f22008-09-28 23:09:31 +01001486 return 0;
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001487
1488 do {
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001489 progress = mem_cgroup_hierarchical_reclaim(mem, gfp_mask, true);
Daisuke Nishimurab85a96c2009-01-07 18:08:12 -08001490 progress += mem_cgroup_check_under_limit(mem);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001491 } while (!progress && --retry);
1492
1493 css_put(&mem->css);
1494 if (!retry)
1495 return -ENOMEM;
1496 return 0;
1497}
1498
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001499static DEFINE_MUTEX(set_limit_mutex);
1500
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08001501static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001502 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001503{
1504
1505 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
1506 int progress;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001507 u64 memswlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001508 int ret = 0;
1509
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001510 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001511 if (signal_pending(current)) {
1512 ret = -EINTR;
1513 break;
1514 }
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001515 /*
1516 * Rather than hide all in some function, I do this in
1517 * open coded manner. You see what this really does.
1518 * We have to guarantee mem->res.limit < mem->memsw.limit.
1519 */
1520 mutex_lock(&set_limit_mutex);
1521 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1522 if (memswlimit < val) {
1523 ret = -EINVAL;
1524 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001525 break;
1526 }
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001527 ret = res_counter_set_limit(&memcg->res, val);
1528 mutex_unlock(&set_limit_mutex);
1529
1530 if (!ret)
1531 break;
1532
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001533 progress = mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL,
1534 false);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001535 if (!progress) retry_count--;
1536 }
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001537
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001538 return ret;
1539}
1540
1541int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
1542 unsigned long long val)
1543{
1544 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
1545 u64 memlimit, oldusage, curusage;
1546 int ret;
1547
1548 if (!do_swap_account)
1549 return -EINVAL;
1550
1551 while (retry_count) {
1552 if (signal_pending(current)) {
1553 ret = -EINTR;
1554 break;
1555 }
1556 /*
1557 * Rather than hide all in some function, I do this in
1558 * open coded manner. You see what this really does.
1559 * We have to guarantee mem->res.limit < mem->memsw.limit.
1560 */
1561 mutex_lock(&set_limit_mutex);
1562 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1563 if (memlimit > val) {
1564 ret = -EINVAL;
1565 mutex_unlock(&set_limit_mutex);
1566 break;
1567 }
1568 ret = res_counter_set_limit(&memcg->memsw, val);
1569 mutex_unlock(&set_limit_mutex);
1570
1571 if (!ret)
1572 break;
1573
1574 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
Daisuke Nishimura42e9abb2009-01-07 18:08:30 -08001575 mem_cgroup_hierarchical_reclaim(memcg, GFP_KERNEL, true);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001576 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
1577 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001578 retry_count--;
1579 }
1580 return ret;
1581}
1582
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001583/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001584 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001585 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
1586 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001587static int mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001588 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001589{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001590 struct zone *zone;
1591 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001592 struct page_cgroup *pc, *busy;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001593 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -08001594 struct list_head *list;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001595 int ret = 0;
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -08001596
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001597 zone = &NODE_DATA(node)->node_zones[zid];
1598 mz = mem_cgroup_zoneinfo(mem, node, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001599 list = &mz->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001600
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001601 loop = MEM_CGROUP_ZSTAT(mz, lru);
1602 /* give some margin against EBUSY etc...*/
1603 loop += 256;
1604 busy = NULL;
1605 while (loop--) {
1606 ret = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001607 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001608 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001609 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001610 break;
1611 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001612 pc = list_entry(list->prev, struct page_cgroup, lru);
1613 if (busy == pc) {
1614 list_move(&pc->lru, list);
1615 busy = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001616 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001617 continue;
1618 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001619 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001620
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -08001621 ret = mem_cgroup_move_parent(pc, mem, GFP_KERNEL);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001622 if (ret == -ENOMEM)
1623 break;
1624
1625 if (ret == -EBUSY || ret == -EINVAL) {
1626 /* found lock contention or "pc" is obsolete. */
1627 busy = pc;
1628 cond_resched();
1629 } else
1630 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001631 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001632
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001633 if (!ret && !list_empty(list))
1634 return -EBUSY;
1635 return ret;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001636}
1637
1638/*
1639 * make mem_cgroup's charge to be 0 if there is no task.
1640 * This enables deleting this mem_cgroup.
1641 */
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001642static int mem_cgroup_force_empty(struct mem_cgroup *mem, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001643{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001644 int ret;
1645 int node, zid, shrink;
1646 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001647 struct cgroup *cgrp = mem->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08001648
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001649 css_get(&mem->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001650
1651 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001652 /* should free all ? */
1653 if (free_all)
1654 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001655move_account:
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001656 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001657 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001658 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001659 goto out;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001660 ret = -EINTR;
1661 if (signal_pending(current))
1662 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001663 /* This is for making all *used* pages to be on LRU. */
1664 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001665 ret = 0;
1666 for_each_node_state(node, N_POSSIBLE) {
1667 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001668 enum lru_list l;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001669 for_each_lru(l) {
1670 ret = mem_cgroup_force_empty_list(mem,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001671 node, zid, l);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001672 if (ret)
1673 break;
1674 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001675 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001676 if (ret)
1677 break;
1678 }
1679 /* it seems parent cgroup doesn't have enough mem */
1680 if (ret == -ENOMEM)
1681 goto try_to_free;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001682 cond_resched();
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001683 }
1684 ret = 0;
1685out:
1686 css_put(&mem->css);
1687 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001688
1689try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001690 /* returns EBUSY if there is a task or if we come here twice. */
1691 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001692 ret = -EBUSY;
1693 goto out;
1694 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001695 /* we call try-to-free pages for make this cgroup empty */
1696 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001697 /* try to free all pages in this cgroup */
1698 shrink = 1;
1699 while (nr_retries && mem->res.usage > 0) {
1700 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001701
1702 if (signal_pending(current)) {
1703 ret = -EINTR;
1704 goto out;
1705 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001706 progress = try_to_free_mem_cgroup_pages(mem, GFP_KERNEL,
1707 false, get_swappiness(mem));
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001708 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001709 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001710 /* maybe some writeback is necessary */
1711 congestion_wait(WRITE, HZ/10);
1712 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001713
1714 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001715 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001716 /* try move_account...there may be some *locked* pages. */
1717 if (mem->res.usage)
1718 goto move_account;
1719 ret = 0;
1720 goto out;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08001721}
1722
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001723int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
1724{
1725 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
1726}
1727
1728
Balbir Singh18f59ea2009-01-07 18:08:07 -08001729static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
1730{
1731 return mem_cgroup_from_cont(cont)->use_hierarchy;
1732}
1733
1734static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
1735 u64 val)
1736{
1737 int retval = 0;
1738 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1739 struct cgroup *parent = cont->parent;
1740 struct mem_cgroup *parent_mem = NULL;
1741
1742 if (parent)
1743 parent_mem = mem_cgroup_from_cont(parent);
1744
1745 cgroup_lock();
1746 /*
1747 * If parent's use_hiearchy is set, we can't make any modifications
1748 * in the child subtrees. If it is unset, then the change can
1749 * occur, provided the current cgroup has no children.
1750 *
1751 * For the root cgroup, parent_mem is NULL, we allow value to be
1752 * set if there are no children.
1753 */
1754 if ((!parent_mem || !parent_mem->use_hierarchy) &&
1755 (val == 1 || val == 0)) {
1756 if (list_empty(&cont->children))
1757 mem->use_hierarchy = val;
1758 else
1759 retval = -EBUSY;
1760 } else
1761 retval = -EINVAL;
1762 cgroup_unlock();
1763
1764 return retval;
1765}
1766
Paul Menage2c3daa72008-04-29 00:59:58 -07001767static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001768{
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001769 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1770 u64 val = 0;
1771 int type, name;
1772
1773 type = MEMFILE_TYPE(cft->private);
1774 name = MEMFILE_ATTR(cft->private);
1775 switch (type) {
1776 case _MEM:
1777 val = res_counter_read_u64(&mem->res, name);
1778 break;
1779 case _MEMSWAP:
1780 if (do_swap_account)
1781 val = res_counter_read_u64(&mem->memsw, name);
1782 break;
1783 default:
1784 BUG();
1785 break;
1786 }
1787 return val;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001788}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001789/*
1790 * The user of this function is...
1791 * RES_LIMIT.
1792 */
Paul Menage856c13a2008-07-25 01:47:04 -07001793static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
1794 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001795{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001796 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001797 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001798 unsigned long long val;
1799 int ret;
1800
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001801 type = MEMFILE_TYPE(cft->private);
1802 name = MEMFILE_ATTR(cft->private);
1803 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001804 case RES_LIMIT:
1805 /* This function does all necessary parse...reuse it */
1806 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001807 if (ret)
1808 break;
1809 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001810 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001811 else
1812 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07001813 break;
1814 default:
1815 ret = -EINVAL; /* should be BUG() ? */
1816 break;
1817 }
1818 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001819}
1820
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08001821static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
1822 unsigned long long *mem_limit, unsigned long long *memsw_limit)
1823{
1824 struct cgroup *cgroup;
1825 unsigned long long min_limit, min_memsw_limit, tmp;
1826
1827 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1828 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1829 cgroup = memcg->css.cgroup;
1830 if (!memcg->use_hierarchy)
1831 goto out;
1832
1833 while (cgroup->parent) {
1834 cgroup = cgroup->parent;
1835 memcg = mem_cgroup_from_cont(cgroup);
1836 if (!memcg->use_hierarchy)
1837 break;
1838 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
1839 min_limit = min(min_limit, tmp);
1840 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1841 min_memsw_limit = min(min_memsw_limit, tmp);
1842 }
1843out:
1844 *mem_limit = min_limit;
1845 *memsw_limit = min_memsw_limit;
1846 return;
1847}
1848
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001849static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001850{
1851 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001852 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001853
1854 mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001855 type = MEMFILE_TYPE(event);
1856 name = MEMFILE_ATTR(event);
1857 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001858 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001859 if (type == _MEM)
1860 res_counter_reset_max(&mem->res);
1861 else
1862 res_counter_reset_max(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001863 break;
1864 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001865 if (type == _MEM)
1866 res_counter_reset_failcnt(&mem->res);
1867 else
1868 res_counter_reset_failcnt(&mem->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07001869 break;
1870 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07001871 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07001872}
1873
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001874static const struct mem_cgroup_stat_desc {
1875 const char *msg;
1876 u64 unit;
1877} mem_cgroup_stat_desc[] = {
1878 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
1879 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
Balaji Rao55e462b2008-05-01 04:35:12 -07001880 [MEM_CGROUP_STAT_PGPGIN_COUNT] = {"pgpgin", 1, },
1881 [MEM_CGROUP_STAT_PGPGOUT_COUNT] = {"pgpgout", 1, },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001882};
1883
Paul Menagec64745c2008-04-29 01:00:02 -07001884static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
1885 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001886{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001887 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
1888 struct mem_cgroup_stat *stat = &mem_cont->stat;
1889 int i;
1890
1891 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
1892 s64 val;
1893
1894 val = mem_cgroup_read_stat(stat, i);
1895 val *= mem_cgroup_stat_desc[i].unit;
Paul Menagec64745c2008-04-29 01:00:02 -07001896 cb->fill(cb, mem_cgroup_stat_desc[i].msg, val);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001897 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001898 /* showing # of active pages */
1899 {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001900 unsigned long active_anon, inactive_anon;
1901 unsigned long active_file, inactive_file;
Lee Schermerhorn7b854122008-10-18 20:26:40 -07001902 unsigned long unevictable;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001903
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001904 inactive_anon = mem_cgroup_get_all_zonestat(mem_cont,
1905 LRU_INACTIVE_ANON);
1906 active_anon = mem_cgroup_get_all_zonestat(mem_cont,
1907 LRU_ACTIVE_ANON);
1908 inactive_file = mem_cgroup_get_all_zonestat(mem_cont,
1909 LRU_INACTIVE_FILE);
1910 active_file = mem_cgroup_get_all_zonestat(mem_cont,
1911 LRU_ACTIVE_FILE);
Lee Schermerhorn7b854122008-10-18 20:26:40 -07001912 unevictable = mem_cgroup_get_all_zonestat(mem_cont,
1913 LRU_UNEVICTABLE);
1914
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001915 cb->fill(cb, "active_anon", (active_anon) * PAGE_SIZE);
1916 cb->fill(cb, "inactive_anon", (inactive_anon) * PAGE_SIZE);
1917 cb->fill(cb, "active_file", (active_file) * PAGE_SIZE);
1918 cb->fill(cb, "inactive_file", (inactive_file) * PAGE_SIZE);
Lee Schermerhorn7b854122008-10-18 20:26:40 -07001919 cb->fill(cb, "unevictable", unevictable * PAGE_SIZE);
1920
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001921 }
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08001922 {
1923 unsigned long long limit, memsw_limit;
1924 memcg_get_hierarchical_limit(mem_cont, &limit, &memsw_limit);
1925 cb->fill(cb, "hierarchical_memory_limit", limit);
1926 if (do_swap_account)
1927 cb->fill(cb, "hierarchical_memsw_limit", memsw_limit);
1928 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08001929
1930#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001931 cb->fill(cb, "inactive_ratio", calc_inactive_ratio(mem_cont, NULL));
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08001932
1933 {
1934 int nid, zid;
1935 struct mem_cgroup_per_zone *mz;
1936 unsigned long recent_rotated[2] = {0, 0};
1937 unsigned long recent_scanned[2] = {0, 0};
1938
1939 for_each_online_node(nid)
1940 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1941 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
1942
1943 recent_rotated[0] +=
1944 mz->reclaim_stat.recent_rotated[0];
1945 recent_rotated[1] +=
1946 mz->reclaim_stat.recent_rotated[1];
1947 recent_scanned[0] +=
1948 mz->reclaim_stat.recent_scanned[0];
1949 recent_scanned[1] +=
1950 mz->reclaim_stat.recent_scanned[1];
1951 }
1952 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
1953 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
1954 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
1955 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
1956 }
1957#endif
1958
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08001959 return 0;
1960}
1961
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001962static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
1963{
1964 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
1965
1966 return get_swappiness(memcg);
1967}
1968
1969static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
1970 u64 val)
1971{
1972 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
1973 struct mem_cgroup *parent;
1974 if (val > 100)
1975 return -EINVAL;
1976
1977 if (cgrp->parent == NULL)
1978 return -EINVAL;
1979
1980 parent = mem_cgroup_from_cont(cgrp->parent);
1981 /* If under hierarchy, only empty-root can set this value */
1982 if ((parent->use_hierarchy) ||
1983 (memcg->use_hierarchy && !list_empty(&cgrp->children)))
1984 return -EINVAL;
1985
1986 spin_lock(&memcg->reclaim_param_lock);
1987 memcg->swappiness = val;
1988 spin_unlock(&memcg->reclaim_param_lock);
1989
1990 return 0;
1991}
1992
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08001993
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001994static struct cftype mem_cgroup_files[] = {
1995 {
Balbir Singh0eea1032008-02-07 00:13:57 -08001996 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08001997 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Paul Menage2c3daa72008-04-29 00:59:58 -07001998 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001999 },
2000 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002001 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002002 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002003 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07002004 .read_u64 = mem_cgroup_read,
2005 },
2006 {
Balbir Singh0eea1032008-02-07 00:13:57 -08002007 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002008 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07002009 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07002010 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002011 },
2012 {
2013 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002014 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07002015 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07002016 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002017 },
Balbir Singh8697d332008-02-07 00:13:59 -08002018 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002019 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07002020 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08002021 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002022 {
2023 .name = "force_empty",
2024 .trigger = mem_cgroup_force_empty_write,
2025 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08002026 {
2027 .name = "use_hierarchy",
2028 .write_u64 = mem_cgroup_hierarchy_write,
2029 .read_u64 = mem_cgroup_hierarchy_read,
2030 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002031 {
2032 .name = "swappiness",
2033 .read_u64 = mem_cgroup_swappiness_read,
2034 .write_u64 = mem_cgroup_swappiness_write,
2035 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002036};
2037
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002038#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2039static struct cftype memsw_cgroup_files[] = {
2040 {
2041 .name = "memsw.usage_in_bytes",
2042 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
2043 .read_u64 = mem_cgroup_read,
2044 },
2045 {
2046 .name = "memsw.max_usage_in_bytes",
2047 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
2048 .trigger = mem_cgroup_reset,
2049 .read_u64 = mem_cgroup_read,
2050 },
2051 {
2052 .name = "memsw.limit_in_bytes",
2053 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
2054 .write_string = mem_cgroup_write,
2055 .read_u64 = mem_cgroup_read,
2056 },
2057 {
2058 .name = "memsw.failcnt",
2059 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
2060 .trigger = mem_cgroup_reset,
2061 .read_u64 = mem_cgroup_read,
2062 },
2063};
2064
2065static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2066{
2067 if (!do_swap_account)
2068 return 0;
2069 return cgroup_add_files(cont, ss, memsw_cgroup_files,
2070 ARRAY_SIZE(memsw_cgroup_files));
2071};
2072#else
2073static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
2074{
2075 return 0;
2076}
2077#endif
2078
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002079static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2080{
2081 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002082 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -07002083 enum lru_list l;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002084 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002085 /*
2086 * This routine is called against possible nodes.
2087 * But it's BUG to call kmalloc() against offline node.
2088 *
2089 * TODO: this routine can waste much memory for nodes which will
2090 * never be onlined. It's better to use memory hotplug callback
2091 * function.
2092 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07002093 if (!node_state(node, N_NORMAL_MEMORY))
2094 tmp = -1;
2095 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002096 if (!pn)
2097 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002098
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002099 mem->info.nodeinfo[node] = pn;
2100 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002101
2102 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
2103 mz = &pn->zoneinfo[zone];
Christoph Lameterb69408e2008-10-18 20:26:14 -07002104 for_each_lru(l)
2105 INIT_LIST_HEAD(&mz->lists[l]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002106 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002107 return 0;
2108}
2109
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08002110static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
2111{
2112 kfree(mem->info.nodeinfo[node]);
2113}
2114
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002115static int mem_cgroup_size(void)
2116{
2117 int cpustat_size = nr_cpu_ids * sizeof(struct mem_cgroup_stat_cpu);
2118 return sizeof(struct mem_cgroup) + cpustat_size;
2119}
2120
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002121static struct mem_cgroup *mem_cgroup_alloc(void)
2122{
2123 struct mem_cgroup *mem;
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002124 int size = mem_cgroup_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002125
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002126 if (size < PAGE_SIZE)
2127 mem = kmalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002128 else
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002129 mem = vmalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002130
2131 if (mem)
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002132 memset(mem, 0, size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002133 return mem;
2134}
2135
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002136/*
2137 * At destroying mem_cgroup, references from swap_cgroup can remain.
2138 * (scanning all at force_empty is too costly...)
2139 *
2140 * Instead of clearing all references at force_empty, we remember
2141 * the number of reference from swap_cgroup and free mem_cgroup when
2142 * it goes down to 0.
2143 *
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002144 * Removal of cgroup itself succeeds regardless of refs from swap.
2145 */
2146
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002147static void __mem_cgroup_free(struct mem_cgroup *mem)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002148{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002149 int node;
2150
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002151 for_each_node_state(node, N_POSSIBLE)
2152 free_mem_cgroup_per_zone_info(mem, node);
2153
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002154 if (mem_cgroup_size() < PAGE_SIZE)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002155 kfree(mem);
2156 else
2157 vfree(mem);
2158}
2159
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002160static void mem_cgroup_get(struct mem_cgroup *mem)
2161{
2162 atomic_inc(&mem->refcnt);
2163}
2164
2165static void mem_cgroup_put(struct mem_cgroup *mem)
2166{
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002167 if (atomic_dec_and_test(&mem->refcnt))
2168 __mem_cgroup_free(mem);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002169}
2170
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07002171
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002172#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2173static void __init enable_swap_cgroup(void)
2174{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08002175 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002176 do_swap_account = 1;
2177}
2178#else
2179static void __init enable_swap_cgroup(void)
2180{
2181}
2182#endif
2183
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002184static struct cgroup_subsys_state *
2185mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
2186{
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002187 struct mem_cgroup *mem, *parent;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002188 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002189
Jan Blunckc8dad2b2009-01-07 18:07:53 -08002190 mem = mem_cgroup_alloc();
2191 if (!mem)
2192 return ERR_PTR(-ENOMEM);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08002193
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002194 for_each_node_state(node, N_POSSIBLE)
2195 if (alloc_mem_cgroup_per_zone_info(mem, node))
2196 goto free_out;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002197 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002198 if (cont->parent == NULL) {
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002199 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002200 parent = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08002201 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002202 parent = mem_cgroup_from_cont(cont->parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002203 mem->use_hierarchy = parent->use_hierarchy;
2204 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08002205
Balbir Singh18f59ea2009-01-07 18:08:07 -08002206 if (parent && parent->use_hierarchy) {
2207 res_counter_init(&mem->res, &parent->res);
2208 res_counter_init(&mem->memsw, &parent->memsw);
2209 } else {
2210 res_counter_init(&mem->res, NULL);
2211 res_counter_init(&mem->memsw, NULL);
2212 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002213 mem->last_scanned_child = NULL;
KOSAKI Motohiro2733c062009-01-07 18:08:23 -08002214 spin_lock_init(&mem->reclaim_param_lock);
Balbir Singh6d61ef42009-01-07 18:08:06 -08002215
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002216 if (parent)
2217 mem->swappiness = get_swappiness(parent);
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002218 atomic_set(&mem->refcnt, 1);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002219 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002220free_out:
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002221 __mem_cgroup_free(mem);
Li Zefan2dda81c2008-02-23 15:24:14 -08002222 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002223}
2224
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002225static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
2226 struct cgroup *cont)
2227{
2228 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002229 mem_cgroup_force_empty(mem, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002230}
2231
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002232static void mem_cgroup_destroy(struct cgroup_subsys *ss,
2233 struct cgroup *cont)
2234{
KAMEZAWA Hiroyukia7ba0ee2009-01-07 18:08:32 -08002235 mem_cgroup_put(mem_cgroup_from_cont(cont));
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002236}
2237
2238static int mem_cgroup_populate(struct cgroup_subsys *ss,
2239 struct cgroup *cont)
2240{
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002241 int ret;
2242
2243 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
2244 ARRAY_SIZE(mem_cgroup_files));
2245
2246 if (!ret)
2247 ret = register_memsw_files(cont, ss);
2248 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002249}
2250
Balbir Singh67e465a2008-02-07 00:13:54 -08002251static void mem_cgroup_move_task(struct cgroup_subsys *ss,
2252 struct cgroup *cont,
2253 struct cgroup *old_cont,
2254 struct task_struct *p)
2255{
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002256 mutex_lock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002257 /*
Nikanth Karthikesanf9717d22009-01-07 18:08:11 -08002258 * FIXME: It's better to move charges of this process from old
2259 * memcg to new memcg. But it's just on TODO-List now.
Balbir Singh67e465a2008-02-07 00:13:54 -08002260 */
Daisuke Nishimura7f4d4542009-01-07 18:08:29 -08002261 mutex_unlock(&memcg_tasklist);
Balbir Singh67e465a2008-02-07 00:13:54 -08002262}
2263
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002264struct cgroup_subsys mem_cgroup_subsys = {
2265 .name = "memory",
2266 .subsys_id = mem_cgroup_subsys_id,
2267 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08002268 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002269 .destroy = mem_cgroup_destroy,
2270 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08002271 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08002272 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002273};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08002274
2275#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2276
2277static int __init disable_swap_account(char *s)
2278{
2279 really_do_swap_account = 0;
2280 return 1;
2281}
2282__setup("noswapaccount", disable_swap_account);
2283#endif