memcg: protect prev_priority
[linux-2.6-block.git] / mm / memcontrol.c
CommitLineData
8cdea7c0
BS
1/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
78fb7466
PE
6 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
8cdea7c0
BS
9 * 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>
78fb7466 23#include <linux/mm.h>
d13d1443 24#include <linux/pagemap.h>
d52aa412 25#include <linux/smp.h>
8a9f3ccd 26#include <linux/page-flags.h>
66e1707b 27#include <linux/backing-dev.h>
8a9f3ccd
BS
28#include <linux/bit_spinlock.h>
29#include <linux/rcupdate.h>
8c7c6e34 30#include <linux/mutex.h>
b6ac57d5 31#include <linux/slab.h>
66e1707b
BS
32#include <linux/swap.h>
33#include <linux/spinlock.h>
34#include <linux/fs.h>
d2ceb9b7 35#include <linux/seq_file.h>
33327948 36#include <linux/vmalloc.h>
b69408e8 37#include <linux/mm_inline.h>
52d4b9ac 38#include <linux/page_cgroup.h>
08e552c6 39#include "internal.h"
8cdea7c0 40
8697d331
BS
41#include <asm/uaccess.h>
42
a181b0e8 43struct cgroup_subsys mem_cgroup_subsys __read_mostly;
a181b0e8 44#define MEM_CGROUP_RECLAIM_RETRIES 5
8cdea7c0 45
c077719b
KH
46#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
54
d52aa412
KH
55/*
56 * Statistics for memory cgroup.
57 */
58enum mem_cgroup_stat_index {
59 /*
60 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
61 */
62 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
63 MEM_CGROUP_STAT_RSS, /* # of pages charged as rss */
55e462b0
BR
64 MEM_CGROUP_STAT_PGPGIN_COUNT, /* # of pages paged in */
65 MEM_CGROUP_STAT_PGPGOUT_COUNT, /* # of pages paged out */
d52aa412
KH
66
67 MEM_CGROUP_STAT_NSTATS,
68};
69
70struct mem_cgroup_stat_cpu {
71 s64 count[MEM_CGROUP_STAT_NSTATS];
72} ____cacheline_aligned_in_smp;
73
74struct mem_cgroup_stat {
c8dad2bb 75 struct mem_cgroup_stat_cpu cpustat[0];
d52aa412
KH
76};
77
78/*
79 * For accounting under irq disable, no need for increment preempt count.
80 */
addb9efe 81static inline void __mem_cgroup_stat_add_safe(struct mem_cgroup_stat_cpu *stat,
d52aa412
KH
82 enum mem_cgroup_stat_index idx, int val)
83{
addb9efe 84 stat->count[idx] += val;
d52aa412
KH
85}
86
87static s64 mem_cgroup_read_stat(struct mem_cgroup_stat *stat,
88 enum mem_cgroup_stat_index idx)
89{
90 int cpu;
91 s64 ret = 0;
92 for_each_possible_cpu(cpu)
93 ret += stat->cpustat[cpu].count[idx];
94 return ret;
95}
96
6d12e2d8
KH
97/*
98 * per-zone information in memory controller.
99 */
6d12e2d8 100struct mem_cgroup_per_zone {
072c56c1
KH
101 /*
102 * spin_lock to protect the per cgroup LRU
103 */
b69408e8
CL
104 struct list_head lists[NR_LRU_LISTS];
105 unsigned long count[NR_LRU_LISTS];
3e2f41f1
KM
106
107 struct zone_reclaim_stat reclaim_stat;
6d12e2d8
KH
108};
109/* Macro for accessing counter */
110#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
111
112struct mem_cgroup_per_node {
113 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
114};
115
116struct mem_cgroup_lru_info {
117 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
118};
119
8cdea7c0
BS
120/*
121 * The memory controller data structure. The memory controller controls both
122 * page cache and RSS per cgroup. We would eventually like to provide
123 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
124 * to help the administrator determine what knobs to tune.
125 *
126 * TODO: Add a water mark for the memory controller. Reclaim will begin when
8a9f3ccd
BS
127 * we hit the water mark. May be even add a low water mark, such that
128 * no reclaim occurs from a cgroup at it's low water mark, this is
129 * a feature that will be implemented much later in the future.
8cdea7c0
BS
130 */
131struct mem_cgroup {
132 struct cgroup_subsys_state css;
133 /*
134 * the counter to account for memory usage
135 */
136 struct res_counter res;
8c7c6e34
KH
137 /*
138 * the counter to account for mem+swap usage.
139 */
140 struct res_counter memsw;
78fb7466
PE
141 /*
142 * Per cgroup active and inactive list, similar to the
143 * per zone LRU lists.
78fb7466 144 */
6d12e2d8 145 struct mem_cgroup_lru_info info;
072c56c1 146
2733c06a
KM
147 /*
148 protect against reclaim related member.
149 */
150 spinlock_t reclaim_param_lock;
151
6c48a1d0 152 int prev_priority; /* for recording reclaim priority */
6d61ef40
BS
153
154 /*
155 * While reclaiming in a hiearchy, we cache the last child we
156 * reclaimed from. Protected by cgroup_lock()
157 */
158 struct mem_cgroup *last_scanned_child;
18f59ea7
BS
159 /*
160 * Should the accounting and control be hierarchical, per subtree?
161 */
162 bool use_hierarchy;
a636b327 163 unsigned long last_oom_jiffies;
8c7c6e34
KH
164 int obsolete;
165 atomic_t refcnt;
14797e23
KM
166
167 unsigned int inactive_ratio;
168
d52aa412 169 /*
c8dad2bb 170 * statistics. This must be placed at the end of memcg.
d52aa412
KH
171 */
172 struct mem_cgroup_stat stat;
8cdea7c0
BS
173};
174
217bc319
KH
175enum charge_type {
176 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
177 MEM_CGROUP_CHARGE_TYPE_MAPPED,
4f98a2fe 178 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
c05555b5 179 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
d13d1443 180 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
c05555b5
KH
181 NR_CHARGE_TYPE,
182};
183
52d4b9ac
KH
184/* only for here (for easy reading.) */
185#define PCGF_CACHE (1UL << PCG_CACHE)
186#define PCGF_USED (1UL << PCG_USED)
52d4b9ac 187#define PCGF_LOCK (1UL << PCG_LOCK)
c05555b5
KH
188static const unsigned long
189pcg_default_flags[NR_CHARGE_TYPE] = {
08e552c6
KH
190 PCGF_CACHE | PCGF_USED | PCGF_LOCK, /* File Cache */
191 PCGF_USED | PCGF_LOCK, /* Anon */
192 PCGF_CACHE | PCGF_USED | PCGF_LOCK, /* Shmem */
52d4b9ac 193 0, /* FORCE */
217bc319
KH
194};
195
8c7c6e34
KH
196/* 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
c05555b5
KH
206static void mem_cgroup_charge_statistics(struct mem_cgroup *mem,
207 struct page_cgroup *pc,
208 bool charge)
d52aa412
KH
209{
210 int val = (charge)? 1 : -1;
211 struct mem_cgroup_stat *stat = &mem->stat;
addb9efe 212 struct mem_cgroup_stat_cpu *cpustat;
08e552c6 213 int cpu = get_cpu();
d52aa412 214
08e552c6 215 cpustat = &stat->cpustat[cpu];
c05555b5 216 if (PageCgroupCache(pc))
addb9efe 217 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_CACHE, val);
d52aa412 218 else
addb9efe 219 __mem_cgroup_stat_add_safe(cpustat, MEM_CGROUP_STAT_RSS, val);
55e462b0
BR
220
221 if (charge)
addb9efe 222 __mem_cgroup_stat_add_safe(cpustat,
55e462b0
BR
223 MEM_CGROUP_STAT_PGPGIN_COUNT, 1);
224 else
addb9efe 225 __mem_cgroup_stat_add_safe(cpustat,
55e462b0 226 MEM_CGROUP_STAT_PGPGOUT_COUNT, 1);
08e552c6 227 put_cpu();
6d12e2d8
KH
228}
229
d5b69e38 230static struct mem_cgroup_per_zone *
6d12e2d8
KH
231mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
232{
6d12e2d8
KH
233 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
234}
235
d5b69e38 236static struct mem_cgroup_per_zone *
6d12e2d8
KH
237page_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);
d52aa412 242
54992762
KM
243 if (!mem)
244 return NULL;
245
6d12e2d8
KH
246 return mem_cgroup_zoneinfo(mem, nid, zid);
247}
248
249static unsigned long mem_cgroup_get_all_zonestat(struct mem_cgroup *mem,
b69408e8 250 enum lru_list idx)
6d12e2d8
KH
251{
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;
d52aa412
KH
262}
263
d5b69e38 264static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
8cdea7c0
BS
265{
266 return container_of(cgroup_subsys_state(cont,
267 mem_cgroup_subsys_id), struct mem_cgroup,
268 css);
269}
270
cf475ad2 271struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
78fb7466 272{
31a78f23
BS
273 /*
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
78fb7466
PE
281 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
282 struct mem_cgroup, css);
283}
284
08e552c6
KH
285/*
286 * Following LRU functions are allowed to be used without PCG_LOCK.
287 * Operations are called by routine of global LRU independently from memcg.
288 * What we have to take care of here is validness of pc->mem_cgroup.
289 *
290 * Changes to pc->mem_cgroup happens when
291 * 1. charge
292 * 2. moving account
293 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
294 * It is added to LRU before charge.
295 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
296 * When moving account, the page is not on LRU. It's isolated.
297 */
4f98a2fe 298
08e552c6
KH
299void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru)
300{
301 struct page_cgroup *pc;
302 struct mem_cgroup *mem;
303 struct mem_cgroup_per_zone *mz;
6d12e2d8 304
f8d66542 305 if (mem_cgroup_disabled())
08e552c6
KH
306 return;
307 pc = lookup_page_cgroup(page);
308 /* can happen while we handle swapcache. */
309 if (list_empty(&pc->lru))
310 return;
311 mz = page_cgroup_zoneinfo(pc);
312 mem = pc->mem_cgroup;
b69408e8 313 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
08e552c6
KH
314 list_del_init(&pc->lru);
315 return;
6d12e2d8
KH
316}
317
08e552c6 318void mem_cgroup_del_lru(struct page *page)
6d12e2d8 319{
08e552c6
KH
320 mem_cgroup_del_lru_list(page, page_lru(page));
321}
b69408e8 322
08e552c6
KH
323void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru)
324{
325 struct mem_cgroup_per_zone *mz;
326 struct page_cgroup *pc;
b69408e8 327
f8d66542 328 if (mem_cgroup_disabled())
08e552c6 329 return;
6d12e2d8 330
08e552c6
KH
331 pc = lookup_page_cgroup(page);
332 smp_rmb();
333 /* unused page is not rotated. */
334 if (!PageCgroupUsed(pc))
335 return;
336 mz = page_cgroup_zoneinfo(pc);
337 list_move(&pc->lru, &mz->lists[lru]);
6d12e2d8
KH
338}
339
08e552c6 340void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru)
66e1707b 341{
08e552c6
KH
342 struct page_cgroup *pc;
343 struct mem_cgroup_per_zone *mz;
6d12e2d8 344
f8d66542 345 if (mem_cgroup_disabled())
08e552c6
KH
346 return;
347 pc = lookup_page_cgroup(page);
348 /* barrier to sync with "charge" */
349 smp_rmb();
350 if (!PageCgroupUsed(pc))
894bc310 351 return;
b69408e8 352
08e552c6 353 mz = page_cgroup_zoneinfo(pc);
b69408e8 354 MEM_CGROUP_ZSTAT(mz, lru) += 1;
08e552c6
KH
355 list_add(&pc->lru, &mz->lists[lru]);
356}
357/*
358 * To add swapcache into LRU. Be careful to all this function.
359 * zone->lru_lock shouldn't be held and irq must not be disabled.
360 */
361static void mem_cgroup_lru_fixup(struct page *page)
362{
363 if (!isolate_lru_page(page))
364 putback_lru_page(page);
365}
366
367void mem_cgroup_move_lists(struct page *page,
368 enum lru_list from, enum lru_list to)
369{
f8d66542 370 if (mem_cgroup_disabled())
08e552c6
KH
371 return;
372 mem_cgroup_del_lru_list(page, from);
373 mem_cgroup_add_lru_list(page, to);
66e1707b
BS
374}
375
4c4a2214
DR
376int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
377{
378 int ret;
379
380 task_lock(task);
bd845e38 381 ret = task->mm && mm_match_cgroup(task->mm, mem);
4c4a2214
DR
382 task_unlock(task);
383 return ret;
384}
385
58ae83db
KH
386/*
387 * Calculate mapped_ratio under memory controller. This will be used in
388 * vmscan.c for deteremining we have to reclaim mapped pages.
389 */
390int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
391{
392 long total, rss;
393
394 /*
395 * usage is recorded in bytes. But, here, we assume the number of
396 * physical pages can be represented by "long" on any arch.
397 */
398 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
399 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
400 return (int)((rss * 100L) / total);
401}
8869b8f6 402
6c48a1d0
KH
403/*
404 * prev_priority control...this will be used in memory reclaim path.
405 */
406int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
407{
2733c06a
KM
408 int prev_priority;
409
410 spin_lock(&mem->reclaim_param_lock);
411 prev_priority = mem->prev_priority;
412 spin_unlock(&mem->reclaim_param_lock);
413
414 return prev_priority;
6c48a1d0
KH
415}
416
417void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
418{
2733c06a 419 spin_lock(&mem->reclaim_param_lock);
6c48a1d0
KH
420 if (priority < mem->prev_priority)
421 mem->prev_priority = priority;
2733c06a 422 spin_unlock(&mem->reclaim_param_lock);
6c48a1d0
KH
423}
424
425void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
426{
2733c06a 427 spin_lock(&mem->reclaim_param_lock);
6c48a1d0 428 mem->prev_priority = priority;
2733c06a 429 spin_unlock(&mem->reclaim_param_lock);
6c48a1d0
KH
430}
431
14797e23
KM
432int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg, struct zone *zone)
433{
434 unsigned long active;
435 unsigned long inactive;
436
437 inactive = mem_cgroup_get_all_zonestat(memcg, LRU_INACTIVE_ANON);
438 active = mem_cgroup_get_all_zonestat(memcg, LRU_ACTIVE_ANON);
439
440 if (inactive * memcg->inactive_ratio < active)
441 return 1;
442
443 return 0;
444}
445
a3d8e054
KM
446unsigned long mem_cgroup_zone_nr_pages(struct mem_cgroup *memcg,
447 struct zone *zone,
448 enum lru_list lru)
449{
450 int nid = zone->zone_pgdat->node_id;
451 int zid = zone_idx(zone);
452 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
453
454 return MEM_CGROUP_ZSTAT(mz, lru);
455}
456
3e2f41f1
KM
457struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg,
458 struct zone *zone)
459{
460 int nid = zone->zone_pgdat->node_id;
461 int zid = zone_idx(zone);
462 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
463
464 return &mz->reclaim_stat;
465}
466
467struct zone_reclaim_stat *
468mem_cgroup_get_reclaim_stat_from_page(struct page *page)
469{
470 struct page_cgroup *pc;
471 struct mem_cgroup_per_zone *mz;
472
473 if (mem_cgroup_disabled())
474 return NULL;
475
476 pc = lookup_page_cgroup(page);
477 mz = page_cgroup_zoneinfo(pc);
478 if (!mz)
479 return NULL;
480
481 return &mz->reclaim_stat;
482}
483
66e1707b
BS
484unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
485 struct list_head *dst,
486 unsigned long *scanned, int order,
487 int mode, struct zone *z,
488 struct mem_cgroup *mem_cont,
4f98a2fe 489 int active, int file)
66e1707b
BS
490{
491 unsigned long nr_taken = 0;
492 struct page *page;
493 unsigned long scan;
494 LIST_HEAD(pc_list);
495 struct list_head *src;
ff7283fa 496 struct page_cgroup *pc, *tmp;
1ecaab2b
KH
497 int nid = z->zone_pgdat->node_id;
498 int zid = zone_idx(z);
499 struct mem_cgroup_per_zone *mz;
4f98a2fe 500 int lru = LRU_FILE * !!file + !!active;
66e1707b 501
cf475ad2 502 BUG_ON(!mem_cont);
1ecaab2b 503 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
b69408e8 504 src = &mz->lists[lru];
66e1707b 505
ff7283fa
KH
506 scan = 0;
507 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
436c6541 508 if (scan >= nr_to_scan)
ff7283fa 509 break;
08e552c6
KH
510
511 page = pc->page;
52d4b9ac
KH
512 if (unlikely(!PageCgroupUsed(pc)))
513 continue;
436c6541 514 if (unlikely(!PageLRU(page)))
ff7283fa 515 continue;
ff7283fa 516
436c6541 517 scan++;
4f98a2fe 518 if (__isolate_lru_page(page, mode, file) == 0) {
66e1707b
BS
519 list_move(&page->lru, dst);
520 nr_taken++;
521 }
522 }
523
66e1707b
BS
524 *scanned = scan;
525 return nr_taken;
526}
527
6d61ef40
BS
528#define mem_cgroup_from_res_counter(counter, member) \
529 container_of(counter, struct mem_cgroup, member)
530
531/*
532 * This routine finds the DFS walk successor. This routine should be
533 * called with cgroup_mutex held
534 */
535static struct mem_cgroup *
536mem_cgroup_get_next_node(struct mem_cgroup *curr, struct mem_cgroup *root_mem)
537{
538 struct cgroup *cgroup, *curr_cgroup, *root_cgroup;
539
540 curr_cgroup = curr->css.cgroup;
541 root_cgroup = root_mem->css.cgroup;
542
543 if (!list_empty(&curr_cgroup->children)) {
544 /*
545 * Walk down to children
546 */
547 mem_cgroup_put(curr);
548 cgroup = list_entry(curr_cgroup->children.next,
549 struct cgroup, sibling);
550 curr = mem_cgroup_from_cont(cgroup);
551 mem_cgroup_get(curr);
552 goto done;
553 }
554
555visit_parent:
556 if (curr_cgroup == root_cgroup) {
557 mem_cgroup_put(curr);
558 curr = root_mem;
559 mem_cgroup_get(curr);
560 goto done;
561 }
562
563 /*
564 * Goto next sibling
565 */
566 if (curr_cgroup->sibling.next != &curr_cgroup->parent->children) {
567 mem_cgroup_put(curr);
568 cgroup = list_entry(curr_cgroup->sibling.next, struct cgroup,
569 sibling);
570 curr = mem_cgroup_from_cont(cgroup);
571 mem_cgroup_get(curr);
572 goto done;
573 }
574
575 /*
576 * Go up to next parent and next parent's sibling if need be
577 */
578 curr_cgroup = curr_cgroup->parent;
579 goto visit_parent;
580
581done:
582 root_mem->last_scanned_child = curr;
583 return curr;
584}
585
586/*
587 * Visit the first child (need not be the first child as per the ordering
588 * of the cgroup list, since we track last_scanned_child) of @mem and use
589 * that to reclaim free pages from.
590 */
591static struct mem_cgroup *
592mem_cgroup_get_first_node(struct mem_cgroup *root_mem)
593{
594 struct cgroup *cgroup;
595 struct mem_cgroup *ret;
596 bool obsolete = (root_mem->last_scanned_child &&
597 root_mem->last_scanned_child->obsolete);
598
599 /*
600 * Scan all children under the mem_cgroup mem
601 */
602 cgroup_lock();
603 if (list_empty(&root_mem->css.cgroup->children)) {
604 ret = root_mem;
605 goto done;
606 }
607
608 if (!root_mem->last_scanned_child || obsolete) {
609
610 if (obsolete)
611 mem_cgroup_put(root_mem->last_scanned_child);
612
613 cgroup = list_first_entry(&root_mem->css.cgroup->children,
614 struct cgroup, sibling);
615 ret = mem_cgroup_from_cont(cgroup);
616 mem_cgroup_get(ret);
617 } else
618 ret = mem_cgroup_get_next_node(root_mem->last_scanned_child,
619 root_mem);
620
621done:
622 root_mem->last_scanned_child = ret;
623 cgroup_unlock();
624 return ret;
625}
626
b85a96c0
DN
627static bool mem_cgroup_check_under_limit(struct mem_cgroup *mem)
628{
629 if (do_swap_account) {
630 if (res_counter_check_under_limit(&mem->res) &&
631 res_counter_check_under_limit(&mem->memsw))
632 return true;
633 } else
634 if (res_counter_check_under_limit(&mem->res))
635 return true;
636 return false;
637}
638
6d61ef40
BS
639/*
640 * Dance down the hierarchy if needed to reclaim memory. We remember the
641 * last child we reclaimed from, so that we don't end up penalizing
642 * one child extensively based on its position in the children list.
643 *
644 * root_mem is the original ancestor that we've been reclaim from.
645 */
646static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_mem,
647 gfp_t gfp_mask, bool noswap)
648{
649 struct mem_cgroup *next_mem;
650 int ret = 0;
651
652 /*
653 * Reclaim unconditionally and don't check for return value.
654 * We need to reclaim in the current group and down the tree.
655 * One might think about checking for children before reclaiming,
656 * but there might be left over accounting, even after children
657 * have left.
658 */
659 ret = try_to_free_mem_cgroup_pages(root_mem, gfp_mask, noswap);
b85a96c0 660 if (mem_cgroup_check_under_limit(root_mem))
6d61ef40 661 return 0;
670ec2f1
DN
662 if (!root_mem->use_hierarchy)
663 return ret;
6d61ef40
BS
664
665 next_mem = mem_cgroup_get_first_node(root_mem);
666
667 while (next_mem != root_mem) {
668 if (next_mem->obsolete) {
669 mem_cgroup_put(next_mem);
670 cgroup_lock();
671 next_mem = mem_cgroup_get_first_node(root_mem);
672 cgroup_unlock();
673 continue;
674 }
675 ret = try_to_free_mem_cgroup_pages(next_mem, gfp_mask, noswap);
b85a96c0 676 if (mem_cgroup_check_under_limit(root_mem))
6d61ef40
BS
677 return 0;
678 cgroup_lock();
679 next_mem = mem_cgroup_get_next_node(next_mem, root_mem);
680 cgroup_unlock();
681 }
682 return ret;
683}
684
a636b327
KH
685bool mem_cgroup_oom_called(struct task_struct *task)
686{
687 bool ret = false;
688 struct mem_cgroup *mem;
689 struct mm_struct *mm;
690
691 rcu_read_lock();
692 mm = task->mm;
693 if (!mm)
694 mm = &init_mm;
695 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
696 if (mem && time_before(jiffies, mem->last_oom_jiffies + HZ/10))
697 ret = true;
698 rcu_read_unlock();
699 return ret;
700}
f817ed48
KH
701/*
702 * Unlike exported interface, "oom" parameter is added. if oom==true,
703 * oom-killer can be invoked.
8a9f3ccd 704 */
f817ed48 705static int __mem_cgroup_try_charge(struct mm_struct *mm,
8c7c6e34
KH
706 gfp_t gfp_mask, struct mem_cgroup **memcg,
707 bool oom)
8a9f3ccd 708{
6d61ef40 709 struct mem_cgroup *mem, *mem_over_limit;
7a81b88c 710 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
28dbc4b6 711 struct res_counter *fail_res;
a636b327
KH
712
713 if (unlikely(test_thread_flag(TIF_MEMDIE))) {
714 /* Don't account this! */
715 *memcg = NULL;
716 return 0;
717 }
718
8a9f3ccd 719 /*
3be91277
HD
720 * We always charge the cgroup the mm_struct belongs to.
721 * The mm_struct's mem_cgroup changes on task migration if the
8a9f3ccd
BS
722 * thread group leader migrates. It's possible that mm is not
723 * set, if so charge the init_mm (happens for pagecache usage).
724 */
7a81b88c 725 if (likely(!*memcg)) {
e8589cc1
KH
726 rcu_read_lock();
727 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
31a78f23
BS
728 if (unlikely(!mem)) {
729 rcu_read_unlock();
31a78f23
BS
730 return 0;
731 }
e8589cc1
KH
732 /*
733 * For every charge from the cgroup, increment reference count
734 */
735 css_get(&mem->css);
7a81b88c 736 *memcg = mem;
e8589cc1
KH
737 rcu_read_unlock();
738 } else {
7a81b88c
KH
739 mem = *memcg;
740 css_get(&mem->css);
e8589cc1 741 }
8a9f3ccd 742
8c7c6e34
KH
743 while (1) {
744 int ret;
745 bool noswap = false;
7a81b88c 746
28dbc4b6 747 ret = res_counter_charge(&mem->res, PAGE_SIZE, &fail_res);
8c7c6e34
KH
748 if (likely(!ret)) {
749 if (!do_swap_account)
750 break;
28dbc4b6
BS
751 ret = res_counter_charge(&mem->memsw, PAGE_SIZE,
752 &fail_res);
8c7c6e34
KH
753 if (likely(!ret))
754 break;
755 /* mem+swap counter fails */
756 res_counter_uncharge(&mem->res, PAGE_SIZE);
757 noswap = true;
6d61ef40
BS
758 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
759 memsw);
760 } else
761 /* mem counter fails */
762 mem_over_limit = mem_cgroup_from_res_counter(fail_res,
763 res);
764
3be91277 765 if (!(gfp_mask & __GFP_WAIT))
7a81b88c 766 goto nomem;
e1a1cd59 767
6d61ef40
BS
768 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, gfp_mask,
769 noswap);
66e1707b
BS
770
771 /*
8869b8f6
HD
772 * try_to_free_mem_cgroup_pages() might not give us a full
773 * picture of reclaim. Some pages are reclaimed and might be
774 * moved to swap cache or just unmapped from the cgroup.
775 * Check the limit again to see if the reclaim reduced the
776 * current usage of the cgroup before giving up
8c7c6e34 777 *
8869b8f6 778 */
b85a96c0
DN
779 if (mem_cgroup_check_under_limit(mem_over_limit))
780 continue;
3be91277
HD
781
782 if (!nr_retries--) {
a636b327 783 if (oom) {
88700756
KH
784 mem_cgroup_out_of_memory(mem_over_limit, gfp_mask);
785 mem_over_limit->last_oom_jiffies = jiffies;
a636b327 786 }
7a81b88c 787 goto nomem;
66e1707b 788 }
8a9f3ccd 789 }
7a81b88c
KH
790 return 0;
791nomem:
792 css_put(&mem->css);
793 return -ENOMEM;
794}
8a9f3ccd 795
f817ed48
KH
796/**
797 * mem_cgroup_try_charge - get charge of PAGE_SIZE.
798 * @mm: an mm_struct which is charged against. (when *memcg is NULL)
799 * @gfp_mask: gfp_mask for reclaim.
800 * @memcg: a pointer to memory cgroup which is charged against.
801 *
802 * charge against memory cgroup pointed by *memcg. if *memcg == NULL, estimated
803 * memory cgroup from @mm is got and stored in *memcg.
804 *
805 * Returns 0 if success. -ENOMEM at failure.
806 * This call can invoke OOM-Killer.
807 */
808
809int mem_cgroup_try_charge(struct mm_struct *mm,
810 gfp_t mask, struct mem_cgroup **memcg)
811{
812 return __mem_cgroup_try_charge(mm, mask, memcg, true);
813}
814
7a81b88c
KH
815/*
816 * commit a charge got by mem_cgroup_try_charge() and makes page_cgroup to be
817 * USED state. If already USED, uncharge and return.
818 */
819
820static void __mem_cgroup_commit_charge(struct mem_cgroup *mem,
821 struct page_cgroup *pc,
822 enum charge_type ctype)
823{
7a81b88c
KH
824 /* try_charge() can return NULL to *memcg, taking care of it. */
825 if (!mem)
826 return;
52d4b9ac
KH
827
828 lock_page_cgroup(pc);
829 if (unlikely(PageCgroupUsed(pc))) {
830 unlock_page_cgroup(pc);
831 res_counter_uncharge(&mem->res, PAGE_SIZE);
8c7c6e34
KH
832 if (do_swap_account)
833 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
52d4b9ac 834 css_put(&mem->css);
7a81b88c 835 return;
52d4b9ac 836 }
8a9f3ccd 837 pc->mem_cgroup = mem;
08e552c6 838 smp_wmb();
c05555b5 839 pc->flags = pcg_default_flags[ctype];
3be91277 840
08e552c6 841 mem_cgroup_charge_statistics(mem, pc, true);
52d4b9ac 842
52d4b9ac 843 unlock_page_cgroup(pc);
7a81b88c 844}
66e1707b 845
f817ed48
KH
846/**
847 * mem_cgroup_move_account - move account of the page
848 * @pc: page_cgroup of the page.
849 * @from: mem_cgroup which the page is moved from.
850 * @to: mem_cgroup which the page is moved to. @from != @to.
851 *
852 * The caller must confirm following.
08e552c6 853 * - page is not on LRU (isolate_page() is useful.)
f817ed48
KH
854 *
855 * returns 0 at success,
856 * returns -EBUSY when lock is busy or "pc" is unstable.
857 *
858 * This function does "uncharge" from old cgroup but doesn't do "charge" to
859 * new cgroup. It should be done by a caller.
860 */
861
862static int mem_cgroup_move_account(struct page_cgroup *pc,
863 struct mem_cgroup *from, struct mem_cgroup *to)
864{
865 struct mem_cgroup_per_zone *from_mz, *to_mz;
866 int nid, zid;
867 int ret = -EBUSY;
868
f817ed48 869 VM_BUG_ON(from == to);
08e552c6 870 VM_BUG_ON(PageLRU(pc->page));
f817ed48
KH
871
872 nid = page_cgroup_nid(pc);
873 zid = page_cgroup_zid(pc);
874 from_mz = mem_cgroup_zoneinfo(from, nid, zid);
875 to_mz = mem_cgroup_zoneinfo(to, nid, zid);
876
f817ed48
KH
877 if (!trylock_page_cgroup(pc))
878 return ret;
879
880 if (!PageCgroupUsed(pc))
881 goto out;
882
883 if (pc->mem_cgroup != from)
884 goto out;
885
08e552c6
KH
886 css_put(&from->css);
887 res_counter_uncharge(&from->res, PAGE_SIZE);
888 mem_cgroup_charge_statistics(from, pc, false);
889 if (do_swap_account)
890 res_counter_uncharge(&from->memsw, PAGE_SIZE);
891 pc->mem_cgroup = to;
892 mem_cgroup_charge_statistics(to, pc, true);
893 css_get(&to->css);
894 ret = 0;
f817ed48
KH
895out:
896 unlock_page_cgroup(pc);
897 return ret;
898}
899
900/*
901 * move charges to its parent.
902 */
903
904static int mem_cgroup_move_parent(struct page_cgroup *pc,
905 struct mem_cgroup *child,
906 gfp_t gfp_mask)
907{
08e552c6 908 struct page *page = pc->page;
f817ed48
KH
909 struct cgroup *cg = child->css.cgroup;
910 struct cgroup *pcg = cg->parent;
911 struct mem_cgroup *parent;
f817ed48
KH
912 int ret;
913
914 /* Is ROOT ? */
915 if (!pcg)
916 return -EINVAL;
917
08e552c6 918
f817ed48
KH
919 parent = mem_cgroup_from_cont(pcg);
920
08e552c6 921
f817ed48 922 ret = __mem_cgroup_try_charge(NULL, gfp_mask, &parent, false);
a636b327 923 if (ret || !parent)
f817ed48
KH
924 return ret;
925
08e552c6
KH
926 if (!get_page_unless_zero(page))
927 return -EBUSY;
928
929 ret = isolate_lru_page(page);
930
931 if (ret)
932 goto cancel;
f817ed48 933
f817ed48 934 ret = mem_cgroup_move_account(pc, child, parent);
f817ed48 935
08e552c6 936 /* drop extra refcnt by try_charge() (move_account increment one) */
f817ed48 937 css_put(&parent->css);
08e552c6
KH
938 putback_lru_page(page);
939 if (!ret) {
940 put_page(page);
941 return 0;
8c7c6e34 942 }
08e552c6
KH
943 /* uncharge if move fails */
944cancel:
945 res_counter_uncharge(&parent->res, PAGE_SIZE);
946 if (do_swap_account)
947 res_counter_uncharge(&parent->memsw, PAGE_SIZE);
948 put_page(page);
f817ed48
KH
949 return ret;
950}
951
7a81b88c
KH
952/*
953 * Charge the memory controller for page usage.
954 * Return
955 * 0 if the charge was successful
956 * < 0 if the cgroup is over its limit
957 */
958static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
959 gfp_t gfp_mask, enum charge_type ctype,
960 struct mem_cgroup *memcg)
961{
962 struct mem_cgroup *mem;
963 struct page_cgroup *pc;
964 int ret;
965
966 pc = lookup_page_cgroup(page);
967 /* can happen at boot */
968 if (unlikely(!pc))
969 return 0;
970 prefetchw(pc);
971
972 mem = memcg;
f817ed48 973 ret = __mem_cgroup_try_charge(mm, gfp_mask, &mem, true);
a636b327 974 if (ret || !mem)
7a81b88c
KH
975 return ret;
976
977 __mem_cgroup_commit_charge(mem, pc, ctype);
8a9f3ccd 978 return 0;
8a9f3ccd
BS
979}
980
7a81b88c
KH
981int mem_cgroup_newpage_charge(struct page *page,
982 struct mm_struct *mm, gfp_t gfp_mask)
217bc319 983{
f8d66542 984 if (mem_cgroup_disabled())
cede86ac 985 return 0;
52d4b9ac
KH
986 if (PageCompound(page))
987 return 0;
69029cd5
KH
988 /*
989 * If already mapped, we don't have to account.
990 * If page cache, page->mapping has address_space.
991 * But page->mapping may have out-of-use anon_vma pointer,
992 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
993 * is NULL.
994 */
995 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
996 return 0;
997 if (unlikely(!mm))
998 mm = &init_mm;
217bc319 999 return mem_cgroup_charge_common(page, mm, gfp_mask,
e8589cc1 1000 MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
217bc319
KH
1001}
1002
e1a1cd59
BS
1003int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
1004 gfp_t gfp_mask)
8697d331 1005{
f8d66542 1006 if (mem_cgroup_disabled())
cede86ac 1007 return 0;
52d4b9ac
KH
1008 if (PageCompound(page))
1009 return 0;
accf163e
KH
1010 /*
1011 * Corner case handling. This is called from add_to_page_cache()
1012 * in usual. But some FS (shmem) precharges this page before calling it
1013 * and call add_to_page_cache() with GFP_NOWAIT.
1014 *
1015 * For GFP_NOWAIT case, the page may be pre-charged before calling
1016 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
1017 * charge twice. (It works but has to pay a bit larger cost.)
1018 */
1019 if (!(gfp_mask & __GFP_WAIT)) {
1020 struct page_cgroup *pc;
1021
52d4b9ac
KH
1022
1023 pc = lookup_page_cgroup(page);
1024 if (!pc)
1025 return 0;
1026 lock_page_cgroup(pc);
1027 if (PageCgroupUsed(pc)) {
1028 unlock_page_cgroup(pc);
accf163e
KH
1029 return 0;
1030 }
52d4b9ac 1031 unlock_page_cgroup(pc);
accf163e
KH
1032 }
1033
69029cd5 1034 if (unlikely(!mm))
8697d331 1035 mm = &init_mm;
accf163e 1036
c05555b5
KH
1037 if (page_is_file_cache(page))
1038 return mem_cgroup_charge_common(page, mm, gfp_mask,
e8589cc1 1039 MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
c05555b5
KH
1040 else
1041 return mem_cgroup_charge_common(page, mm, gfp_mask,
1042 MEM_CGROUP_CHARGE_TYPE_SHMEM, NULL);
e8589cc1
KH
1043}
1044
8c7c6e34
KH
1045int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
1046 struct page *page,
1047 gfp_t mask, struct mem_cgroup **ptr)
1048{
1049 struct mem_cgroup *mem;
1050 swp_entry_t ent;
1051
f8d66542 1052 if (mem_cgroup_disabled())
8c7c6e34
KH
1053 return 0;
1054
1055 if (!do_swap_account)
1056 goto charge_cur_mm;
1057
1058 /*
1059 * A racing thread's fault, or swapoff, may have already updated
1060 * the pte, and even removed page from swap cache: return success
1061 * to go on to do_swap_page()'s pte_same() test, which should fail.
1062 */
1063 if (!PageSwapCache(page))
1064 return 0;
1065
1066 ent.val = page_private(page);
1067
1068 mem = lookup_swap_cgroup(ent);
1069 if (!mem || mem->obsolete)
1070 goto charge_cur_mm;
1071 *ptr = mem;
1072 return __mem_cgroup_try_charge(NULL, mask, ptr, true);
1073charge_cur_mm:
1074 if (unlikely(!mm))
1075 mm = &init_mm;
1076 return __mem_cgroup_try_charge(mm, mask, ptr, true);
1077}
1078
d13d1443 1079#ifdef CONFIG_SWAP
8c7c6e34 1080
d13d1443
KH
1081int mem_cgroup_cache_charge_swapin(struct page *page,
1082 struct mm_struct *mm, gfp_t mask, bool locked)
1083{
1084 int ret = 0;
1085
f8d66542 1086 if (mem_cgroup_disabled())
d13d1443
KH
1087 return 0;
1088 if (unlikely(!mm))
1089 mm = &init_mm;
1090 if (!locked)
1091 lock_page(page);
1092 /*
1093 * If not locked, the page can be dropped from SwapCache until
1094 * we reach here.
1095 */
1096 if (PageSwapCache(page)) {
8c7c6e34
KH
1097 struct mem_cgroup *mem = NULL;
1098 swp_entry_t ent;
1099
1100 ent.val = page_private(page);
1101 if (do_swap_account) {
1102 mem = lookup_swap_cgroup(ent);
1103 if (mem && mem->obsolete)
1104 mem = NULL;
1105 if (mem)
1106 mm = NULL;
1107 }
d13d1443 1108 ret = mem_cgroup_charge_common(page, mm, mask,
8c7c6e34
KH
1109 MEM_CGROUP_CHARGE_TYPE_SHMEM, mem);
1110
1111 if (!ret && do_swap_account) {
1112 /* avoid double counting */
1113 mem = swap_cgroup_record(ent, NULL);
1114 if (mem) {
1115 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
1116 mem_cgroup_put(mem);
1117 }
1118 }
d13d1443
KH
1119 }
1120 if (!locked)
1121 unlock_page(page);
08e552c6
KH
1122 /* add this page(page_cgroup) to the LRU we want. */
1123 mem_cgroup_lru_fixup(page);
d13d1443
KH
1124
1125 return ret;
1126}
1127#endif
1128
7a81b88c
KH
1129void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
1130{
1131 struct page_cgroup *pc;
1132
f8d66542 1133 if (mem_cgroup_disabled())
7a81b88c
KH
1134 return;
1135 if (!ptr)
1136 return;
1137 pc = lookup_page_cgroup(page);
1138 __mem_cgroup_commit_charge(ptr, pc, MEM_CGROUP_CHARGE_TYPE_MAPPED);
8c7c6e34
KH
1139 /*
1140 * Now swap is on-memory. This means this page may be
1141 * counted both as mem and swap....double count.
1142 * Fix it by uncharging from memsw. This SwapCache is stable
1143 * because we're still under lock_page().
1144 */
1145 if (do_swap_account) {
1146 swp_entry_t ent = {.val = page_private(page)};
1147 struct mem_cgroup *memcg;
1148 memcg = swap_cgroup_record(ent, NULL);
1149 if (memcg) {
1150 /* If memcg is obsolete, memcg can be != ptr */
1151 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1152 mem_cgroup_put(memcg);
1153 }
1154
1155 }
08e552c6
KH
1156 /* add this page(page_cgroup) to the LRU we want. */
1157 mem_cgroup_lru_fixup(page);
7a81b88c
KH
1158}
1159
1160void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *mem)
1161{
f8d66542 1162 if (mem_cgroup_disabled())
7a81b88c
KH
1163 return;
1164 if (!mem)
1165 return;
1166 res_counter_uncharge(&mem->res, PAGE_SIZE);
8c7c6e34
KH
1167 if (do_swap_account)
1168 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
7a81b88c
KH
1169 css_put(&mem->css);
1170}
1171
1172
8a9f3ccd 1173/*
69029cd5 1174 * uncharge if !page_mapped(page)
8a9f3ccd 1175 */
8c7c6e34 1176static struct mem_cgroup *
69029cd5 1177__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
8a9f3ccd 1178{
8289546e 1179 struct page_cgroup *pc;
8c7c6e34 1180 struct mem_cgroup *mem = NULL;
072c56c1 1181 struct mem_cgroup_per_zone *mz;
8a9f3ccd 1182
f8d66542 1183 if (mem_cgroup_disabled())
8c7c6e34 1184 return NULL;
4077960e 1185
d13d1443 1186 if (PageSwapCache(page))
8c7c6e34 1187 return NULL;
d13d1443 1188
8697d331 1189 /*
3c541e14 1190 * Check if our page_cgroup is valid
8697d331 1191 */
52d4b9ac
KH
1192 pc = lookup_page_cgroup(page);
1193 if (unlikely(!pc || !PageCgroupUsed(pc)))
8c7c6e34 1194 return NULL;
b9c565d5 1195
52d4b9ac 1196 lock_page_cgroup(pc);
d13d1443 1197
8c7c6e34
KH
1198 mem = pc->mem_cgroup;
1199
d13d1443
KH
1200 if (!PageCgroupUsed(pc))
1201 goto unlock_out;
1202
1203 switch (ctype) {
1204 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
1205 if (page_mapped(page))
1206 goto unlock_out;
1207 break;
1208 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
1209 if (!PageAnon(page)) { /* Shared memory */
1210 if (page->mapping && !page_is_file_cache(page))
1211 goto unlock_out;
1212 } else if (page_mapped(page)) /* Anon */
1213 goto unlock_out;
1214 break;
1215 default:
1216 break;
52d4b9ac 1217 }
d13d1443 1218
8c7c6e34
KH
1219 res_counter_uncharge(&mem->res, PAGE_SIZE);
1220 if (do_swap_account && (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT))
1221 res_counter_uncharge(&mem->memsw, PAGE_SIZE);
1222
08e552c6 1223 mem_cgroup_charge_statistics(mem, pc, false);
52d4b9ac 1224 ClearPageCgroupUsed(pc);
b9c565d5 1225
69029cd5 1226 mz = page_cgroup_zoneinfo(pc);
52d4b9ac 1227 unlock_page_cgroup(pc);
fb59e9f1 1228
a7fe942e
KH
1229 /* at swapout, this memcg will be accessed to record to swap */
1230 if (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
1231 css_put(&mem->css);
6d12e2d8 1232
8c7c6e34 1233 return mem;
d13d1443
KH
1234
1235unlock_out:
1236 unlock_page_cgroup(pc);
8c7c6e34 1237 return NULL;
3c541e14
BS
1238}
1239
69029cd5
KH
1240void mem_cgroup_uncharge_page(struct page *page)
1241{
52d4b9ac
KH
1242 /* early check. */
1243 if (page_mapped(page))
1244 return;
1245 if (page->mapping && !PageAnon(page))
1246 return;
69029cd5
KH
1247 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
1248}
1249
1250void mem_cgroup_uncharge_cache_page(struct page *page)
1251{
1252 VM_BUG_ON(page_mapped(page));
b7abea96 1253 VM_BUG_ON(page->mapping);
69029cd5
KH
1254 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
1255}
1256
8c7c6e34
KH
1257/*
1258 * called from __delete_from_swap_cache() and drop "page" account.
1259 * memcg information is recorded to swap_cgroup of "ent"
1260 */
1261void mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent)
1262{
1263 struct mem_cgroup *memcg;
1264
1265 memcg = __mem_cgroup_uncharge_common(page,
1266 MEM_CGROUP_CHARGE_TYPE_SWAPOUT);
1267 /* record memcg information */
1268 if (do_swap_account && memcg) {
1269 swap_cgroup_record(ent, memcg);
1270 mem_cgroup_get(memcg);
1271 }
a7fe942e
KH
1272 if (memcg)
1273 css_put(&memcg->css);
8c7c6e34
KH
1274}
1275
1276#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
1277/*
1278 * called from swap_entry_free(). remove record in swap_cgroup and
1279 * uncharge "memsw" account.
1280 */
1281void mem_cgroup_uncharge_swap(swp_entry_t ent)
d13d1443 1282{
8c7c6e34
KH
1283 struct mem_cgroup *memcg;
1284
1285 if (!do_swap_account)
1286 return;
1287
1288 memcg = swap_cgroup_record(ent, NULL);
1289 if (memcg) {
1290 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
1291 mem_cgroup_put(memcg);
1292 }
d13d1443 1293}
8c7c6e34 1294#endif
d13d1443 1295
ae41be37 1296/*
01b1ae63
KH
1297 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
1298 * page belongs to.
ae41be37 1299 */
01b1ae63 1300int mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr)
ae41be37
KH
1301{
1302 struct page_cgroup *pc;
e8589cc1 1303 struct mem_cgroup *mem = NULL;
e8589cc1 1304 int ret = 0;
8869b8f6 1305
f8d66542 1306 if (mem_cgroup_disabled())
4077960e
BS
1307 return 0;
1308
52d4b9ac
KH
1309 pc = lookup_page_cgroup(page);
1310 lock_page_cgroup(pc);
1311 if (PageCgroupUsed(pc)) {
e8589cc1
KH
1312 mem = pc->mem_cgroup;
1313 css_get(&mem->css);
e8589cc1 1314 }
52d4b9ac 1315 unlock_page_cgroup(pc);
01b1ae63 1316
e8589cc1 1317 if (mem) {
2c26fdd7 1318 ret = mem_cgroup_try_charge(NULL, GFP_KERNEL, &mem);
e8589cc1
KH
1319 css_put(&mem->css);
1320 }
01b1ae63 1321 *ptr = mem;
e8589cc1 1322 return ret;
ae41be37 1323}
8869b8f6 1324
69029cd5 1325/* remove redundant charge if migration failed*/
01b1ae63
KH
1326void mem_cgroup_end_migration(struct mem_cgroup *mem,
1327 struct page *oldpage, struct page *newpage)
ae41be37 1328{
01b1ae63
KH
1329 struct page *target, *unused;
1330 struct page_cgroup *pc;
1331 enum charge_type ctype;
1332
1333 if (!mem)
1334 return;
1335
1336 /* at migration success, oldpage->mapping is NULL. */
1337 if (oldpage->mapping) {
1338 target = oldpage;
1339 unused = NULL;
1340 } else {
1341 target = newpage;
1342 unused = oldpage;
1343 }
1344
1345 if (PageAnon(target))
1346 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
1347 else if (page_is_file_cache(target))
1348 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
1349 else
1350 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
1351
1352 /* unused page is not on radix-tree now. */
d13d1443 1353 if (unused)
01b1ae63
KH
1354 __mem_cgroup_uncharge_common(unused, ctype);
1355
1356 pc = lookup_page_cgroup(target);
69029cd5 1357 /*
01b1ae63
KH
1358 * __mem_cgroup_commit_charge() check PCG_USED bit of page_cgroup.
1359 * So, double-counting is effectively avoided.
1360 */
1361 __mem_cgroup_commit_charge(mem, pc, ctype);
1362
1363 /*
1364 * Both of oldpage and newpage are still under lock_page().
1365 * Then, we don't have to care about race in radix-tree.
1366 * But we have to be careful that this page is unmapped or not.
1367 *
1368 * There is a case for !page_mapped(). At the start of
1369 * migration, oldpage was mapped. But now, it's zapped.
1370 * But we know *target* page is not freed/reused under us.
1371 * mem_cgroup_uncharge_page() does all necessary checks.
69029cd5 1372 */
01b1ae63
KH
1373 if (ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
1374 mem_cgroup_uncharge_page(target);
ae41be37 1375}
78fb7466 1376
c9b0ed51
KH
1377/*
1378 * A call to try to shrink memory usage under specified resource controller.
1379 * This is typically used for page reclaiming for shmem for reducing side
1380 * effect of page allocation from shmem, which is used by some mem_cgroup.
1381 */
1382int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask)
1383{
1384 struct mem_cgroup *mem;
1385 int progress = 0;
1386 int retry = MEM_CGROUP_RECLAIM_RETRIES;
1387
f8d66542 1388 if (mem_cgroup_disabled())
cede86ac 1389 return 0;
9623e078
HD
1390 if (!mm)
1391 return 0;
cede86ac 1392
c9b0ed51
KH
1393 rcu_read_lock();
1394 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
31a78f23
BS
1395 if (unlikely(!mem)) {
1396 rcu_read_unlock();
1397 return 0;
1398 }
c9b0ed51
KH
1399 css_get(&mem->css);
1400 rcu_read_unlock();
1401
1402 do {
8c7c6e34 1403 progress = try_to_free_mem_cgroup_pages(mem, gfp_mask, true);
b85a96c0 1404 progress += mem_cgroup_check_under_limit(mem);
c9b0ed51
KH
1405 } while (!progress && --retry);
1406
1407 css_put(&mem->css);
1408 if (!retry)
1409 return -ENOMEM;
1410 return 0;
1411}
1412
14797e23
KM
1413/*
1414 * The inactive anon list should be small enough that the VM never has to
1415 * do too much work, but large enough that each inactive page has a chance
1416 * to be referenced again before it is swapped out.
1417 *
1418 * this calculation is straightforward porting from
1419 * page_alloc.c::setup_per_zone_inactive_ratio().
1420 * it describe more detail.
1421 */
1422static void mem_cgroup_set_inactive_ratio(struct mem_cgroup *memcg)
1423{
1424 unsigned int gb, ratio;
1425
1426 gb = res_counter_read_u64(&memcg->res, RES_LIMIT) >> 30;
1427 if (gb)
1428 ratio = int_sqrt(10 * gb);
1429 else
1430 ratio = 1;
1431
1432 memcg->inactive_ratio = ratio;
1433
1434}
1435
8c7c6e34
KH
1436static DEFINE_MUTEX(set_limit_mutex);
1437
d38d2a75 1438static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
8c7c6e34 1439 unsigned long long val)
628f4235
KH
1440{
1441
1442 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
1443 int progress;
8c7c6e34 1444 u64 memswlimit;
628f4235
KH
1445 int ret = 0;
1446
8c7c6e34 1447 while (retry_count) {
628f4235
KH
1448 if (signal_pending(current)) {
1449 ret = -EINTR;
1450 break;
1451 }
8c7c6e34
KH
1452 /*
1453 * Rather than hide all in some function, I do this in
1454 * open coded manner. You see what this really does.
1455 * We have to guarantee mem->res.limit < mem->memsw.limit.
1456 */
1457 mutex_lock(&set_limit_mutex);
1458 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1459 if (memswlimit < val) {
1460 ret = -EINVAL;
1461 mutex_unlock(&set_limit_mutex);
628f4235
KH
1462 break;
1463 }
8c7c6e34
KH
1464 ret = res_counter_set_limit(&memcg->res, val);
1465 mutex_unlock(&set_limit_mutex);
1466
1467 if (!ret)
1468 break;
1469
bced0520 1470 progress = try_to_free_mem_cgroup_pages(memcg,
2c26fdd7 1471 GFP_KERNEL, false);
8c7c6e34
KH
1472 if (!progress) retry_count--;
1473 }
14797e23
KM
1474
1475 if (!ret)
1476 mem_cgroup_set_inactive_ratio(memcg);
1477
8c7c6e34
KH
1478 return ret;
1479}
1480
1481int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
1482 unsigned long long val)
1483{
1484 int retry_count = MEM_CGROUP_RECLAIM_RETRIES;
1485 u64 memlimit, oldusage, curusage;
1486 int ret;
1487
1488 if (!do_swap_account)
1489 return -EINVAL;
1490
1491 while (retry_count) {
1492 if (signal_pending(current)) {
1493 ret = -EINTR;
1494 break;
1495 }
1496 /*
1497 * Rather than hide all in some function, I do this in
1498 * open coded manner. You see what this really does.
1499 * We have to guarantee mem->res.limit < mem->memsw.limit.
1500 */
1501 mutex_lock(&set_limit_mutex);
1502 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1503 if (memlimit > val) {
1504 ret = -EINVAL;
1505 mutex_unlock(&set_limit_mutex);
1506 break;
1507 }
1508 ret = res_counter_set_limit(&memcg->memsw, val);
1509 mutex_unlock(&set_limit_mutex);
1510
1511 if (!ret)
1512 break;
1513
1514 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
2c26fdd7 1515 try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL, true);
8c7c6e34
KH
1516 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
1517 if (curusage >= oldusage)
628f4235
KH
1518 retry_count--;
1519 }
1520 return ret;
1521}
1522
cc847582
KH
1523/*
1524 * This routine traverse page_cgroup in given list and drop them all.
cc847582
KH
1525 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
1526 */
f817ed48 1527static int mem_cgroup_force_empty_list(struct mem_cgroup *mem,
08e552c6 1528 int node, int zid, enum lru_list lru)
cc847582 1529{
08e552c6
KH
1530 struct zone *zone;
1531 struct mem_cgroup_per_zone *mz;
f817ed48 1532 struct page_cgroup *pc, *busy;
08e552c6 1533 unsigned long flags, loop;
072c56c1 1534 struct list_head *list;
f817ed48 1535 int ret = 0;
072c56c1 1536
08e552c6
KH
1537 zone = &NODE_DATA(node)->node_zones[zid];
1538 mz = mem_cgroup_zoneinfo(mem, node, zid);
b69408e8 1539 list = &mz->lists[lru];
cc847582 1540
f817ed48
KH
1541 loop = MEM_CGROUP_ZSTAT(mz, lru);
1542 /* give some margin against EBUSY etc...*/
1543 loop += 256;
1544 busy = NULL;
1545 while (loop--) {
1546 ret = 0;
08e552c6 1547 spin_lock_irqsave(&zone->lru_lock, flags);
f817ed48 1548 if (list_empty(list)) {
08e552c6 1549 spin_unlock_irqrestore(&zone->lru_lock, flags);
52d4b9ac 1550 break;
f817ed48
KH
1551 }
1552 pc = list_entry(list->prev, struct page_cgroup, lru);
1553 if (busy == pc) {
1554 list_move(&pc->lru, list);
1555 busy = 0;
08e552c6 1556 spin_unlock_irqrestore(&zone->lru_lock, flags);
f817ed48
KH
1557 continue;
1558 }
08e552c6 1559 spin_unlock_irqrestore(&zone->lru_lock, flags);
f817ed48 1560
2c26fdd7 1561 ret = mem_cgroup_move_parent(pc, mem, GFP_KERNEL);
f817ed48 1562 if (ret == -ENOMEM)
52d4b9ac 1563 break;
f817ed48
KH
1564
1565 if (ret == -EBUSY || ret == -EINVAL) {
1566 /* found lock contention or "pc" is obsolete. */
1567 busy = pc;
1568 cond_resched();
1569 } else
1570 busy = NULL;
cc847582 1571 }
08e552c6 1572
f817ed48
KH
1573 if (!ret && !list_empty(list))
1574 return -EBUSY;
1575 return ret;
cc847582
KH
1576}
1577
1578/*
1579 * make mem_cgroup's charge to be 0 if there is no task.
1580 * This enables deleting this mem_cgroup.
1581 */
c1e862c1 1582static int mem_cgroup_force_empty(struct mem_cgroup *mem, bool free_all)
cc847582 1583{
f817ed48
KH
1584 int ret;
1585 int node, zid, shrink;
1586 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
c1e862c1 1587 struct cgroup *cgrp = mem->css.cgroup;
8869b8f6 1588
cc847582 1589 css_get(&mem->css);
f817ed48
KH
1590
1591 shrink = 0;
c1e862c1
KH
1592 /* should free all ? */
1593 if (free_all)
1594 goto try_to_free;
f817ed48 1595move_account:
1ecaab2b 1596 while (mem->res.usage > 0) {
f817ed48 1597 ret = -EBUSY;
c1e862c1
KH
1598 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
1599 goto out;
1600 ret = -EINTR;
1601 if (signal_pending(current))
cc847582 1602 goto out;
52d4b9ac
KH
1603 /* This is for making all *used* pages to be on LRU. */
1604 lru_add_drain_all();
f817ed48
KH
1605 ret = 0;
1606 for_each_node_state(node, N_POSSIBLE) {
1607 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
b69408e8 1608 enum lru_list l;
f817ed48
KH
1609 for_each_lru(l) {
1610 ret = mem_cgroup_force_empty_list(mem,
08e552c6 1611 node, zid, l);
f817ed48
KH
1612 if (ret)
1613 break;
1614 }
1ecaab2b 1615 }
f817ed48
KH
1616 if (ret)
1617 break;
1618 }
1619 /* it seems parent cgroup doesn't have enough mem */
1620 if (ret == -ENOMEM)
1621 goto try_to_free;
52d4b9ac 1622 cond_resched();
cc847582
KH
1623 }
1624 ret = 0;
1625out:
1626 css_put(&mem->css);
1627 return ret;
f817ed48
KH
1628
1629try_to_free:
c1e862c1
KH
1630 /* returns EBUSY if there is a task or if we come here twice. */
1631 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
f817ed48
KH
1632 ret = -EBUSY;
1633 goto out;
1634 }
c1e862c1
KH
1635 /* we call try-to-free pages for make this cgroup empty */
1636 lru_add_drain_all();
f817ed48
KH
1637 /* try to free all pages in this cgroup */
1638 shrink = 1;
1639 while (nr_retries && mem->res.usage > 0) {
1640 int progress;
c1e862c1
KH
1641
1642 if (signal_pending(current)) {
1643 ret = -EINTR;
1644 goto out;
1645 }
f817ed48 1646 progress = try_to_free_mem_cgroup_pages(mem,
2c26fdd7 1647 GFP_KERNEL, false);
c1e862c1 1648 if (!progress) {
f817ed48 1649 nr_retries--;
c1e862c1
KH
1650 /* maybe some writeback is necessary */
1651 congestion_wait(WRITE, HZ/10);
1652 }
f817ed48
KH
1653
1654 }
08e552c6 1655 lru_add_drain();
f817ed48
KH
1656 /* try move_account...there may be some *locked* pages. */
1657 if (mem->res.usage)
1658 goto move_account;
1659 ret = 0;
1660 goto out;
cc847582
KH
1661}
1662
c1e862c1
KH
1663int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
1664{
1665 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
1666}
1667
1668
18f59ea7
BS
1669static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
1670{
1671 return mem_cgroup_from_cont(cont)->use_hierarchy;
1672}
1673
1674static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
1675 u64 val)
1676{
1677 int retval = 0;
1678 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1679 struct cgroup *parent = cont->parent;
1680 struct mem_cgroup *parent_mem = NULL;
1681
1682 if (parent)
1683 parent_mem = mem_cgroup_from_cont(parent);
1684
1685 cgroup_lock();
1686 /*
1687 * If parent's use_hiearchy is set, we can't make any modifications
1688 * in the child subtrees. If it is unset, then the change can
1689 * occur, provided the current cgroup has no children.
1690 *
1691 * For the root cgroup, parent_mem is NULL, we allow value to be
1692 * set if there are no children.
1693 */
1694 if ((!parent_mem || !parent_mem->use_hierarchy) &&
1695 (val == 1 || val == 0)) {
1696 if (list_empty(&cont->children))
1697 mem->use_hierarchy = val;
1698 else
1699 retval = -EBUSY;
1700 } else
1701 retval = -EINVAL;
1702 cgroup_unlock();
1703
1704 return retval;
1705}
1706
2c3daa72 1707static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
8cdea7c0 1708{
8c7c6e34
KH
1709 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1710 u64 val = 0;
1711 int type, name;
1712
1713 type = MEMFILE_TYPE(cft->private);
1714 name = MEMFILE_ATTR(cft->private);
1715 switch (type) {
1716 case _MEM:
1717 val = res_counter_read_u64(&mem->res, name);
1718 break;
1719 case _MEMSWAP:
1720 if (do_swap_account)
1721 val = res_counter_read_u64(&mem->memsw, name);
1722 break;
1723 default:
1724 BUG();
1725 break;
1726 }
1727 return val;
8cdea7c0 1728}
628f4235
KH
1729/*
1730 * The user of this function is...
1731 * RES_LIMIT.
1732 */
856c13aa
PM
1733static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
1734 const char *buffer)
8cdea7c0 1735{
628f4235 1736 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
8c7c6e34 1737 int type, name;
628f4235
KH
1738 unsigned long long val;
1739 int ret;
1740
8c7c6e34
KH
1741 type = MEMFILE_TYPE(cft->private);
1742 name = MEMFILE_ATTR(cft->private);
1743 switch (name) {
628f4235
KH
1744 case RES_LIMIT:
1745 /* This function does all necessary parse...reuse it */
1746 ret = res_counter_memparse_write_strategy(buffer, &val);
8c7c6e34
KH
1747 if (ret)
1748 break;
1749 if (type == _MEM)
628f4235 1750 ret = mem_cgroup_resize_limit(memcg, val);
8c7c6e34
KH
1751 else
1752 ret = mem_cgroup_resize_memsw_limit(memcg, val);
628f4235
KH
1753 break;
1754 default:
1755 ret = -EINVAL; /* should be BUG() ? */
1756 break;
1757 }
1758 return ret;
8cdea7c0
BS
1759}
1760
29f2a4da 1761static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
c84872e1
PE
1762{
1763 struct mem_cgroup *mem;
8c7c6e34 1764 int type, name;
c84872e1
PE
1765
1766 mem = mem_cgroup_from_cont(cont);
8c7c6e34
KH
1767 type = MEMFILE_TYPE(event);
1768 name = MEMFILE_ATTR(event);
1769 switch (name) {
29f2a4da 1770 case RES_MAX_USAGE:
8c7c6e34
KH
1771 if (type == _MEM)
1772 res_counter_reset_max(&mem->res);
1773 else
1774 res_counter_reset_max(&mem->memsw);
29f2a4da
PE
1775 break;
1776 case RES_FAILCNT:
8c7c6e34
KH
1777 if (type == _MEM)
1778 res_counter_reset_failcnt(&mem->res);
1779 else
1780 res_counter_reset_failcnt(&mem->memsw);
29f2a4da
PE
1781 break;
1782 }
85cc59db 1783 return 0;
c84872e1
PE
1784}
1785
d2ceb9b7
KH
1786static const struct mem_cgroup_stat_desc {
1787 const char *msg;
1788 u64 unit;
1789} mem_cgroup_stat_desc[] = {
1790 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
1791 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
55e462b0
BR
1792 [MEM_CGROUP_STAT_PGPGIN_COUNT] = {"pgpgin", 1, },
1793 [MEM_CGROUP_STAT_PGPGOUT_COUNT] = {"pgpgout", 1, },
d2ceb9b7
KH
1794};
1795
c64745cf
PM
1796static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
1797 struct cgroup_map_cb *cb)
d2ceb9b7 1798{
d2ceb9b7
KH
1799 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
1800 struct mem_cgroup_stat *stat = &mem_cont->stat;
1801 int i;
1802
1803 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
1804 s64 val;
1805
1806 val = mem_cgroup_read_stat(stat, i);
1807 val *= mem_cgroup_stat_desc[i].unit;
c64745cf 1808 cb->fill(cb, mem_cgroup_stat_desc[i].msg, val);
d2ceb9b7 1809 }
6d12e2d8
KH
1810 /* showing # of active pages */
1811 {
4f98a2fe
RR
1812 unsigned long active_anon, inactive_anon;
1813 unsigned long active_file, inactive_file;
7b854121 1814 unsigned long unevictable;
4f98a2fe
RR
1815
1816 inactive_anon = mem_cgroup_get_all_zonestat(mem_cont,
1817 LRU_INACTIVE_ANON);
1818 active_anon = mem_cgroup_get_all_zonestat(mem_cont,
1819 LRU_ACTIVE_ANON);
1820 inactive_file = mem_cgroup_get_all_zonestat(mem_cont,
1821 LRU_INACTIVE_FILE);
1822 active_file = mem_cgroup_get_all_zonestat(mem_cont,
1823 LRU_ACTIVE_FILE);
7b854121
LS
1824 unevictable = mem_cgroup_get_all_zonestat(mem_cont,
1825 LRU_UNEVICTABLE);
1826
4f98a2fe
RR
1827 cb->fill(cb, "active_anon", (active_anon) * PAGE_SIZE);
1828 cb->fill(cb, "inactive_anon", (inactive_anon) * PAGE_SIZE);
1829 cb->fill(cb, "active_file", (active_file) * PAGE_SIZE);
1830 cb->fill(cb, "inactive_file", (inactive_file) * PAGE_SIZE);
7b854121
LS
1831 cb->fill(cb, "unevictable", unevictable * PAGE_SIZE);
1832
6d12e2d8 1833 }
7f016ee8
KM
1834
1835#ifdef CONFIG_DEBUG_VM
1836 cb->fill(cb, "inactive_ratio", mem_cont->inactive_ratio);
1837
1838 {
1839 int nid, zid;
1840 struct mem_cgroup_per_zone *mz;
1841 unsigned long recent_rotated[2] = {0, 0};
1842 unsigned long recent_scanned[2] = {0, 0};
1843
1844 for_each_online_node(nid)
1845 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1846 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
1847
1848 recent_rotated[0] +=
1849 mz->reclaim_stat.recent_rotated[0];
1850 recent_rotated[1] +=
1851 mz->reclaim_stat.recent_rotated[1];
1852 recent_scanned[0] +=
1853 mz->reclaim_stat.recent_scanned[0];
1854 recent_scanned[1] +=
1855 mz->reclaim_stat.recent_scanned[1];
1856 }
1857 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
1858 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
1859 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
1860 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
1861 }
1862#endif
1863
d2ceb9b7
KH
1864 return 0;
1865}
1866
c1e862c1 1867
8cdea7c0
BS
1868static struct cftype mem_cgroup_files[] = {
1869 {
0eea1030 1870 .name = "usage_in_bytes",
8c7c6e34 1871 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
2c3daa72 1872 .read_u64 = mem_cgroup_read,
8cdea7c0 1873 },
c84872e1
PE
1874 {
1875 .name = "max_usage_in_bytes",
8c7c6e34 1876 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
29f2a4da 1877 .trigger = mem_cgroup_reset,
c84872e1
PE
1878 .read_u64 = mem_cgroup_read,
1879 },
8cdea7c0 1880 {
0eea1030 1881 .name = "limit_in_bytes",
8c7c6e34 1882 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
856c13aa 1883 .write_string = mem_cgroup_write,
2c3daa72 1884 .read_u64 = mem_cgroup_read,
8cdea7c0
BS
1885 },
1886 {
1887 .name = "failcnt",
8c7c6e34 1888 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
29f2a4da 1889 .trigger = mem_cgroup_reset,
2c3daa72 1890 .read_u64 = mem_cgroup_read,
8cdea7c0 1891 },
d2ceb9b7
KH
1892 {
1893 .name = "stat",
c64745cf 1894 .read_map = mem_control_stat_show,
d2ceb9b7 1895 },
c1e862c1
KH
1896 {
1897 .name = "force_empty",
1898 .trigger = mem_cgroup_force_empty_write,
1899 },
18f59ea7
BS
1900 {
1901 .name = "use_hierarchy",
1902 .write_u64 = mem_cgroup_hierarchy_write,
1903 .read_u64 = mem_cgroup_hierarchy_read,
1904 },
8cdea7c0
BS
1905};
1906
8c7c6e34
KH
1907#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
1908static struct cftype memsw_cgroup_files[] = {
1909 {
1910 .name = "memsw.usage_in_bytes",
1911 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
1912 .read_u64 = mem_cgroup_read,
1913 },
1914 {
1915 .name = "memsw.max_usage_in_bytes",
1916 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
1917 .trigger = mem_cgroup_reset,
1918 .read_u64 = mem_cgroup_read,
1919 },
1920 {
1921 .name = "memsw.limit_in_bytes",
1922 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
1923 .write_string = mem_cgroup_write,
1924 .read_u64 = mem_cgroup_read,
1925 },
1926 {
1927 .name = "memsw.failcnt",
1928 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
1929 .trigger = mem_cgroup_reset,
1930 .read_u64 = mem_cgroup_read,
1931 },
1932};
1933
1934static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
1935{
1936 if (!do_swap_account)
1937 return 0;
1938 return cgroup_add_files(cont, ss, memsw_cgroup_files,
1939 ARRAY_SIZE(memsw_cgroup_files));
1940};
1941#else
1942static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
1943{
1944 return 0;
1945}
1946#endif
1947
6d12e2d8
KH
1948static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
1949{
1950 struct mem_cgroup_per_node *pn;
1ecaab2b 1951 struct mem_cgroup_per_zone *mz;
b69408e8 1952 enum lru_list l;
41e3355d 1953 int zone, tmp = node;
1ecaab2b
KH
1954 /*
1955 * This routine is called against possible nodes.
1956 * But it's BUG to call kmalloc() against offline node.
1957 *
1958 * TODO: this routine can waste much memory for nodes which will
1959 * never be onlined. It's better to use memory hotplug callback
1960 * function.
1961 */
41e3355d
KH
1962 if (!node_state(node, N_NORMAL_MEMORY))
1963 tmp = -1;
1964 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
6d12e2d8
KH
1965 if (!pn)
1966 return 1;
1ecaab2b 1967
6d12e2d8
KH
1968 mem->info.nodeinfo[node] = pn;
1969 memset(pn, 0, sizeof(*pn));
1ecaab2b
KH
1970
1971 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
1972 mz = &pn->zoneinfo[zone];
b69408e8
CL
1973 for_each_lru(l)
1974 INIT_LIST_HEAD(&mz->lists[l]);
1ecaab2b 1975 }
6d12e2d8
KH
1976 return 0;
1977}
1978
1ecaab2b
KH
1979static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
1980{
1981 kfree(mem->info.nodeinfo[node]);
1982}
1983
c8dad2bb
JB
1984static int mem_cgroup_size(void)
1985{
1986 int cpustat_size = nr_cpu_ids * sizeof(struct mem_cgroup_stat_cpu);
1987 return sizeof(struct mem_cgroup) + cpustat_size;
1988}
1989
33327948
KH
1990static struct mem_cgroup *mem_cgroup_alloc(void)
1991{
1992 struct mem_cgroup *mem;
c8dad2bb 1993 int size = mem_cgroup_size();
33327948 1994
c8dad2bb
JB
1995 if (size < PAGE_SIZE)
1996 mem = kmalloc(size, GFP_KERNEL);
33327948 1997 else
c8dad2bb 1998 mem = vmalloc(size);
33327948
KH
1999
2000 if (mem)
c8dad2bb 2001 memset(mem, 0, size);
33327948
KH
2002 return mem;
2003}
2004
8c7c6e34
KH
2005/*
2006 * At destroying mem_cgroup, references from swap_cgroup can remain.
2007 * (scanning all at force_empty is too costly...)
2008 *
2009 * Instead of clearing all references at force_empty, we remember
2010 * the number of reference from swap_cgroup and free mem_cgroup when
2011 * it goes down to 0.
2012 *
2013 * When mem_cgroup is destroyed, mem->obsolete will be set to 0 and
2014 * entry which points to this memcg will be ignore at swapin.
2015 *
2016 * Removal of cgroup itself succeeds regardless of refs from swap.
2017 */
2018
33327948
KH
2019static void mem_cgroup_free(struct mem_cgroup *mem)
2020{
08e552c6
KH
2021 int node;
2022
8c7c6e34
KH
2023 if (atomic_read(&mem->refcnt) > 0)
2024 return;
08e552c6
KH
2025
2026
2027 for_each_node_state(node, N_POSSIBLE)
2028 free_mem_cgroup_per_zone_info(mem, node);
2029
c8dad2bb 2030 if (mem_cgroup_size() < PAGE_SIZE)
33327948
KH
2031 kfree(mem);
2032 else
2033 vfree(mem);
2034}
2035
8c7c6e34
KH
2036static void mem_cgroup_get(struct mem_cgroup *mem)
2037{
2038 atomic_inc(&mem->refcnt);
2039}
2040
2041static void mem_cgroup_put(struct mem_cgroup *mem)
2042{
2043 if (atomic_dec_and_test(&mem->refcnt)) {
2044 if (!mem->obsolete)
2045 return;
2046 mem_cgroup_free(mem);
2047 }
2048}
2049
33327948 2050
c077719b
KH
2051#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2052static void __init enable_swap_cgroup(void)
2053{
f8d66542 2054 if (!mem_cgroup_disabled() && really_do_swap_account)
c077719b
KH
2055 do_swap_account = 1;
2056}
2057#else
2058static void __init enable_swap_cgroup(void)
2059{
2060}
2061#endif
2062
8cdea7c0
BS
2063static struct cgroup_subsys_state *
2064mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
2065{
28dbc4b6 2066 struct mem_cgroup *mem, *parent;
6d12e2d8 2067 int node;
8cdea7c0 2068
c8dad2bb
JB
2069 mem = mem_cgroup_alloc();
2070 if (!mem)
2071 return ERR_PTR(-ENOMEM);
78fb7466 2072
6d12e2d8
KH
2073 for_each_node_state(node, N_POSSIBLE)
2074 if (alloc_mem_cgroup_per_zone_info(mem, node))
2075 goto free_out;
c077719b 2076 /* root ? */
28dbc4b6 2077 if (cont->parent == NULL) {
c077719b 2078 enable_swap_cgroup();
28dbc4b6 2079 parent = NULL;
18f59ea7 2080 } else {
28dbc4b6 2081 parent = mem_cgroup_from_cont(cont->parent);
18f59ea7
BS
2082 mem->use_hierarchy = parent->use_hierarchy;
2083 }
28dbc4b6 2084
18f59ea7
BS
2085 if (parent && parent->use_hierarchy) {
2086 res_counter_init(&mem->res, &parent->res);
2087 res_counter_init(&mem->memsw, &parent->memsw);
2088 } else {
2089 res_counter_init(&mem->res, NULL);
2090 res_counter_init(&mem->memsw, NULL);
2091 }
14797e23 2092 mem_cgroup_set_inactive_ratio(mem);
6d61ef40 2093 mem->last_scanned_child = NULL;
2733c06a 2094 spin_lock_init(&mem->reclaim_param_lock);
6d61ef40 2095
8cdea7c0 2096 return &mem->css;
6d12e2d8
KH
2097free_out:
2098 for_each_node_state(node, N_POSSIBLE)
1ecaab2b 2099 free_mem_cgroup_per_zone_info(mem, node);
c8dad2bb 2100 mem_cgroup_free(mem);
2dda81ca 2101 return ERR_PTR(-ENOMEM);
8cdea7c0
BS
2102}
2103
df878fb0
KH
2104static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
2105 struct cgroup *cont)
2106{
2107 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
8c7c6e34 2108 mem->obsolete = 1;
c1e862c1 2109 mem_cgroup_force_empty(mem, false);
df878fb0
KH
2110}
2111
8cdea7c0
BS
2112static void mem_cgroup_destroy(struct cgroup_subsys *ss,
2113 struct cgroup *cont)
2114{
33327948 2115 mem_cgroup_free(mem_cgroup_from_cont(cont));
8cdea7c0
BS
2116}
2117
2118static int mem_cgroup_populate(struct cgroup_subsys *ss,
2119 struct cgroup *cont)
2120{
8c7c6e34
KH
2121 int ret;
2122
2123 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
2124 ARRAY_SIZE(mem_cgroup_files));
2125
2126 if (!ret)
2127 ret = register_memsw_files(cont, ss);
2128 return ret;
8cdea7c0
BS
2129}
2130
67e465a7
BS
2131static void mem_cgroup_move_task(struct cgroup_subsys *ss,
2132 struct cgroup *cont,
2133 struct cgroup *old_cont,
2134 struct task_struct *p)
2135{
67e465a7 2136 /*
f9717d28
NK
2137 * FIXME: It's better to move charges of this process from old
2138 * memcg to new memcg. But it's just on TODO-List now.
67e465a7 2139 */
67e465a7
BS
2140}
2141
8cdea7c0
BS
2142struct cgroup_subsys mem_cgroup_subsys = {
2143 .name = "memory",
2144 .subsys_id = mem_cgroup_subsys_id,
2145 .create = mem_cgroup_create,
df878fb0 2146 .pre_destroy = mem_cgroup_pre_destroy,
8cdea7c0
BS
2147 .destroy = mem_cgroup_destroy,
2148 .populate = mem_cgroup_populate,
67e465a7 2149 .attach = mem_cgroup_move_task,
6d12e2d8 2150 .early_init = 0,
8cdea7c0 2151};
c077719b
KH
2152
2153#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2154
2155static int __init disable_swap_account(char *s)
2156{
2157 really_do_swap_account = 0;
2158 return 1;
2159}
2160__setup("noswapaccount", disable_swap_account);
2161#endif