memcg: modify accounting function for supporting THP better
[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 *
2e72b634
KS
9 * Memory thresholds
10 * Copyright (C) 2009 Nokia Corporation
11 * Author: Kirill A. Shutemov
12 *
8cdea7c0
BS
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 */
23
24#include <linux/res_counter.h>
25#include <linux/memcontrol.h>
26#include <linux/cgroup.h>
78fb7466 27#include <linux/mm.h>
4ffef5fe 28#include <linux/hugetlb.h>
d13d1443 29#include <linux/pagemap.h>
d52aa412 30#include <linux/smp.h>
8a9f3ccd 31#include <linux/page-flags.h>
66e1707b 32#include <linux/backing-dev.h>
8a9f3ccd
BS
33#include <linux/bit_spinlock.h>
34#include <linux/rcupdate.h>
e222432b 35#include <linux/limits.h>
8c7c6e34 36#include <linux/mutex.h>
f64c3f54 37#include <linux/rbtree.h>
b6ac57d5 38#include <linux/slab.h>
66e1707b 39#include <linux/swap.h>
02491447 40#include <linux/swapops.h>
66e1707b 41#include <linux/spinlock.h>
2e72b634
KS
42#include <linux/eventfd.h>
43#include <linux/sort.h>
66e1707b 44#include <linux/fs.h>
d2ceb9b7 45#include <linux/seq_file.h>
33327948 46#include <linux/vmalloc.h>
b69408e8 47#include <linux/mm_inline.h>
52d4b9ac 48#include <linux/page_cgroup.h>
cdec2e42 49#include <linux/cpu.h>
158e0a2d 50#include <linux/oom.h>
08e552c6 51#include "internal.h"
8cdea7c0 52
8697d331
BS
53#include <asm/uaccess.h>
54
cc8e970c
KM
55#include <trace/events/vmscan.h>
56
a181b0e8 57struct cgroup_subsys mem_cgroup_subsys __read_mostly;
a181b0e8 58#define MEM_CGROUP_RECLAIM_RETRIES 5
4b3bde4c 59struct mem_cgroup *root_mem_cgroup __read_mostly;
8cdea7c0 60
c077719b 61#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
338c8431 62/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
c077719b 63int do_swap_account __read_mostly;
a42c390c
MH
64
65/* for remember boot option*/
66#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP_ENABLED
67static int really_do_swap_account __initdata = 1;
68#else
69static int really_do_swap_account __initdata = 0;
70#endif
71
c077719b
KH
72#else
73#define do_swap_account (0)
74#endif
75
d2265e6f
KH
76/*
77 * Per memcg event counter is incremented at every pagein/pageout. This counter
78 * is used for trigger some periodic events. This is straightforward and better
79 * than using jiffies etc. to handle periodic memcg event.
80 *
81 * These values will be used as !((event) & ((1 <<(thresh)) - 1))
82 */
83#define THRESHOLDS_EVENTS_THRESH (7) /* once in 128 */
84#define SOFTLIMIT_EVENTS_THRESH (10) /* once in 1024 */
c077719b 85
d52aa412
KH
86/*
87 * Statistics for memory cgroup.
88 */
89enum mem_cgroup_stat_index {
90 /*
91 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
92 */
93 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
d69b042f 94 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
d8046582 95 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
55e462b0
BR
96 MEM_CGROUP_STAT_PGPGIN_COUNT, /* # of pages paged in */
97 MEM_CGROUP_STAT_PGPGOUT_COUNT, /* # of pages paged out */
0c3e73e8 98 MEM_CGROUP_STAT_SWAPOUT, /* # of pages, swapped out */
711d3d2c
KH
99 MEM_CGROUP_STAT_DATA, /* end of data requires synchronization */
100 /* incremented at every pagein/pageout */
101 MEM_CGROUP_EVENTS = MEM_CGROUP_STAT_DATA,
32047e2a 102 MEM_CGROUP_ON_MOVE, /* someone is moving account between groups */
d52aa412
KH
103
104 MEM_CGROUP_STAT_NSTATS,
105};
106
107struct mem_cgroup_stat_cpu {
108 s64 count[MEM_CGROUP_STAT_NSTATS];
d52aa412
KH
109};
110
6d12e2d8
KH
111/*
112 * per-zone information in memory controller.
113 */
6d12e2d8 114struct mem_cgroup_per_zone {
072c56c1
KH
115 /*
116 * spin_lock to protect the per cgroup LRU
117 */
b69408e8
CL
118 struct list_head lists[NR_LRU_LISTS];
119 unsigned long count[NR_LRU_LISTS];
3e2f41f1
KM
120
121 struct zone_reclaim_stat reclaim_stat;
f64c3f54
BS
122 struct rb_node tree_node; /* RB tree node */
123 unsigned long long usage_in_excess;/* Set to the value by which */
124 /* the soft limit is exceeded*/
125 bool on_tree;
4e416953
BS
126 struct mem_cgroup *mem; /* Back pointer, we cannot */
127 /* use container_of */
6d12e2d8
KH
128};
129/* Macro for accessing counter */
130#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
131
132struct mem_cgroup_per_node {
133 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
134};
135
136struct mem_cgroup_lru_info {
137 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
138};
139
f64c3f54
BS
140/*
141 * Cgroups above their limits are maintained in a RB-Tree, independent of
142 * their hierarchy representation
143 */
144
145struct mem_cgroup_tree_per_zone {
146 struct rb_root rb_root;
147 spinlock_t lock;
148};
149
150struct mem_cgroup_tree_per_node {
151 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
152};
153
154struct mem_cgroup_tree {
155 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
156};
157
158static struct mem_cgroup_tree soft_limit_tree __read_mostly;
159
2e72b634
KS
160struct mem_cgroup_threshold {
161 struct eventfd_ctx *eventfd;
162 u64 threshold;
163};
164
9490ff27 165/* For threshold */
2e72b634
KS
166struct mem_cgroup_threshold_ary {
167 /* An array index points to threshold just below usage. */
5407a562 168 int current_threshold;
2e72b634
KS
169 /* Size of entries[] */
170 unsigned int size;
171 /* Array of thresholds */
172 struct mem_cgroup_threshold entries[0];
173};
2c488db2
KS
174
175struct mem_cgroup_thresholds {
176 /* Primary thresholds array */
177 struct mem_cgroup_threshold_ary *primary;
178 /*
179 * Spare threshold array.
180 * This is needed to make mem_cgroup_unregister_event() "never fail".
181 * It must be able to store at least primary->size - 1 entries.
182 */
183 struct mem_cgroup_threshold_ary *spare;
184};
185
9490ff27
KH
186/* for OOM */
187struct mem_cgroup_eventfd_list {
188 struct list_head list;
189 struct eventfd_ctx *eventfd;
190};
2e72b634 191
2e72b634 192static void mem_cgroup_threshold(struct mem_cgroup *mem);
9490ff27 193static void mem_cgroup_oom_notify(struct mem_cgroup *mem);
2e72b634 194
8cdea7c0
BS
195/*
196 * The memory controller data structure. The memory controller controls both
197 * page cache and RSS per cgroup. We would eventually like to provide
198 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
199 * to help the administrator determine what knobs to tune.
200 *
201 * TODO: Add a water mark for the memory controller. Reclaim will begin when
8a9f3ccd
BS
202 * we hit the water mark. May be even add a low water mark, such that
203 * no reclaim occurs from a cgroup at it's low water mark, this is
204 * a feature that will be implemented much later in the future.
8cdea7c0
BS
205 */
206struct mem_cgroup {
207 struct cgroup_subsys_state css;
208 /*
209 * the counter to account for memory usage
210 */
211 struct res_counter res;
8c7c6e34
KH
212 /*
213 * the counter to account for mem+swap usage.
214 */
215 struct res_counter memsw;
78fb7466
PE
216 /*
217 * Per cgroup active and inactive list, similar to the
218 * per zone LRU lists.
78fb7466 219 */
6d12e2d8 220 struct mem_cgroup_lru_info info;
072c56c1 221
2733c06a
KM
222 /*
223 protect against reclaim related member.
224 */
225 spinlock_t reclaim_param_lock;
226
6d61ef40 227 /*
af901ca1 228 * While reclaiming in a hierarchy, we cache the last child we
04046e1a 229 * reclaimed from.
6d61ef40 230 */
04046e1a 231 int last_scanned_child;
18f59ea7
BS
232 /*
233 * Should the accounting and control be hierarchical, per subtree?
234 */
235 bool use_hierarchy;
867578cb 236 atomic_t oom_lock;
8c7c6e34 237 atomic_t refcnt;
14797e23 238
a7885eb8 239 unsigned int swappiness;
3c11ecf4
KH
240 /* OOM-Killer disable */
241 int oom_kill_disable;
a7885eb8 242
22a668d7
KH
243 /* set when res.limit == memsw.limit */
244 bool memsw_is_minimum;
245
2e72b634
KS
246 /* protect arrays of thresholds */
247 struct mutex thresholds_lock;
248
249 /* thresholds for memory usage. RCU-protected */
2c488db2 250 struct mem_cgroup_thresholds thresholds;
907860ed 251
2e72b634 252 /* thresholds for mem+swap usage. RCU-protected */
2c488db2 253 struct mem_cgroup_thresholds memsw_thresholds;
907860ed 254
9490ff27
KH
255 /* For oom notifier event fd */
256 struct list_head oom_notify;
257
7dc74be0
DN
258 /*
259 * Should we move charges of a task when a task is moved into this
260 * mem_cgroup ? And what type of charges should we move ?
261 */
262 unsigned long move_charge_at_immigrate;
d52aa412 263 /*
c62b1a3b 264 * percpu counter.
d52aa412 265 */
c62b1a3b 266 struct mem_cgroup_stat_cpu *stat;
711d3d2c
KH
267 /*
268 * used when a cpu is offlined or other synchronizations
269 * See mem_cgroup_read_stat().
270 */
271 struct mem_cgroup_stat_cpu nocpu_base;
272 spinlock_t pcp_counter_lock;
8cdea7c0
BS
273};
274
7dc74be0
DN
275/* Stuffs for move charges at task migration. */
276/*
277 * Types of charges to be moved. "move_charge_at_immitgrate" is treated as a
278 * left-shifted bitmap of these types.
279 */
280enum move_type {
4ffef5fe 281 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
87946a72 282 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
7dc74be0
DN
283 NR_MOVE_TYPE,
284};
285
4ffef5fe
DN
286/* "mc" and its members are protected by cgroup_mutex */
287static struct move_charge_struct {
b1dd693e 288 spinlock_t lock; /* for from, to */
4ffef5fe
DN
289 struct mem_cgroup *from;
290 struct mem_cgroup *to;
291 unsigned long precharge;
854ffa8d 292 unsigned long moved_charge;
483c30b5 293 unsigned long moved_swap;
8033b97c
DN
294 struct task_struct *moving_task; /* a task moving charges */
295 wait_queue_head_t waitq; /* a waitq for other context */
296} mc = {
2bd9bb20 297 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
8033b97c
DN
298 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
299};
4ffef5fe 300
90254a65
DN
301static bool move_anon(void)
302{
303 return test_bit(MOVE_CHARGE_TYPE_ANON,
304 &mc.to->move_charge_at_immigrate);
305}
306
87946a72
DN
307static bool move_file(void)
308{
309 return test_bit(MOVE_CHARGE_TYPE_FILE,
310 &mc.to->move_charge_at_immigrate);
311}
312
4e416953
BS
313/*
314 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
315 * limit reclaim to prevent infinite loops, if they ever occur.
316 */
317#define MEM_CGROUP_MAX_RECLAIM_LOOPS (100)
318#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS (2)
319
217bc319
KH
320enum charge_type {
321 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
322 MEM_CGROUP_CHARGE_TYPE_MAPPED,
4f98a2fe 323 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
c05555b5 324 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
d13d1443 325 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
8a9478ca 326 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
c05555b5
KH
327 NR_CHARGE_TYPE,
328};
329
52d4b9ac
KH
330/* only for here (for easy reading.) */
331#define PCGF_CACHE (1UL << PCG_CACHE)
332#define PCGF_USED (1UL << PCG_USED)
52d4b9ac 333#define PCGF_LOCK (1UL << PCG_LOCK)
4b3bde4c
BS
334/* Not used, but added here for completeness */
335#define PCGF_ACCT (1UL << PCG_ACCT)
217bc319 336
8c7c6e34
KH
337/* for encoding cft->private value on file */
338#define _MEM (0)
339#define _MEMSWAP (1)
9490ff27 340#define _OOM_TYPE (2)
8c7c6e34
KH
341#define MEMFILE_PRIVATE(x, val) (((x) << 16) | (val))
342#define MEMFILE_TYPE(val) (((val) >> 16) & 0xffff)
343#define MEMFILE_ATTR(val) ((val) & 0xffff)
9490ff27
KH
344/* Used for OOM nofiier */
345#define OOM_CONTROL (0)
8c7c6e34 346
75822b44
BS
347/*
348 * Reclaim flags for mem_cgroup_hierarchical_reclaim
349 */
350#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
351#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
352#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
353#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
4e416953
BS
354#define MEM_CGROUP_RECLAIM_SOFT_BIT 0x2
355#define MEM_CGROUP_RECLAIM_SOFT (1 << MEM_CGROUP_RECLAIM_SOFT_BIT)
75822b44 356
8c7c6e34
KH
357static void mem_cgroup_get(struct mem_cgroup *mem);
358static void mem_cgroup_put(struct mem_cgroup *mem);
7bcc1bb1 359static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem);
cdec2e42 360static void drain_all_stock_async(void);
8c7c6e34 361
f64c3f54
BS
362static struct mem_cgroup_per_zone *
363mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
364{
365 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
366}
367
d324236b
WF
368struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *mem)
369{
370 return &mem->css;
371}
372
f64c3f54
BS
373static struct mem_cgroup_per_zone *
374page_cgroup_zoneinfo(struct page_cgroup *pc)
375{
376 struct mem_cgroup *mem = pc->mem_cgroup;
377 int nid = page_cgroup_nid(pc);
378 int zid = page_cgroup_zid(pc);
379
380 if (!mem)
381 return NULL;
382
383 return mem_cgroup_zoneinfo(mem, nid, zid);
384}
385
386static struct mem_cgroup_tree_per_zone *
387soft_limit_tree_node_zone(int nid, int zid)
388{
389 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
390}
391
392static struct mem_cgroup_tree_per_zone *
393soft_limit_tree_from_page(struct page *page)
394{
395 int nid = page_to_nid(page);
396 int zid = page_zonenum(page);
397
398 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
399}
400
401static void
4e416953 402__mem_cgroup_insert_exceeded(struct mem_cgroup *mem,
f64c3f54 403 struct mem_cgroup_per_zone *mz,
ef8745c1
KH
404 struct mem_cgroup_tree_per_zone *mctz,
405 unsigned long long new_usage_in_excess)
f64c3f54
BS
406{
407 struct rb_node **p = &mctz->rb_root.rb_node;
408 struct rb_node *parent = NULL;
409 struct mem_cgroup_per_zone *mz_node;
410
411 if (mz->on_tree)
412 return;
413
ef8745c1
KH
414 mz->usage_in_excess = new_usage_in_excess;
415 if (!mz->usage_in_excess)
416 return;
f64c3f54
BS
417 while (*p) {
418 parent = *p;
419 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
420 tree_node);
421 if (mz->usage_in_excess < mz_node->usage_in_excess)
422 p = &(*p)->rb_left;
423 /*
424 * We can't avoid mem cgroups that are over their soft
425 * limit by the same amount
426 */
427 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
428 p = &(*p)->rb_right;
429 }
430 rb_link_node(&mz->tree_node, parent, p);
431 rb_insert_color(&mz->tree_node, &mctz->rb_root);
432 mz->on_tree = true;
4e416953
BS
433}
434
435static void
436__mem_cgroup_remove_exceeded(struct mem_cgroup *mem,
437 struct mem_cgroup_per_zone *mz,
438 struct mem_cgroup_tree_per_zone *mctz)
439{
440 if (!mz->on_tree)
441 return;
442 rb_erase(&mz->tree_node, &mctz->rb_root);
443 mz->on_tree = false;
444}
445
f64c3f54
BS
446static void
447mem_cgroup_remove_exceeded(struct mem_cgroup *mem,
448 struct mem_cgroup_per_zone *mz,
449 struct mem_cgroup_tree_per_zone *mctz)
450{
451 spin_lock(&mctz->lock);
4e416953 452 __mem_cgroup_remove_exceeded(mem, mz, mctz);
f64c3f54
BS
453 spin_unlock(&mctz->lock);
454}
455
f64c3f54
BS
456
457static void mem_cgroup_update_tree(struct mem_cgroup *mem, struct page *page)
458{
ef8745c1 459 unsigned long long excess;
f64c3f54
BS
460 struct mem_cgroup_per_zone *mz;
461 struct mem_cgroup_tree_per_zone *mctz;
4e649152
KH
462 int nid = page_to_nid(page);
463 int zid = page_zonenum(page);
f64c3f54
BS
464 mctz = soft_limit_tree_from_page(page);
465
466 /*
4e649152
KH
467 * Necessary to update all ancestors when hierarchy is used.
468 * because their event counter is not touched.
f64c3f54 469 */
4e649152
KH
470 for (; mem; mem = parent_mem_cgroup(mem)) {
471 mz = mem_cgroup_zoneinfo(mem, nid, zid);
ef8745c1 472 excess = res_counter_soft_limit_excess(&mem->res);
4e649152
KH
473 /*
474 * We have to update the tree if mz is on RB-tree or
475 * mem is over its softlimit.
476 */
ef8745c1 477 if (excess || mz->on_tree) {
4e649152
KH
478 spin_lock(&mctz->lock);
479 /* if on-tree, remove it */
480 if (mz->on_tree)
481 __mem_cgroup_remove_exceeded(mem, mz, mctz);
482 /*
ef8745c1
KH
483 * Insert again. mz->usage_in_excess will be updated.
484 * If excess is 0, no tree ops.
4e649152 485 */
ef8745c1 486 __mem_cgroup_insert_exceeded(mem, mz, mctz, excess);
4e649152
KH
487 spin_unlock(&mctz->lock);
488 }
f64c3f54
BS
489 }
490}
491
492static void mem_cgroup_remove_from_trees(struct mem_cgroup *mem)
493{
494 int node, zone;
495 struct mem_cgroup_per_zone *mz;
496 struct mem_cgroup_tree_per_zone *mctz;
497
498 for_each_node_state(node, N_POSSIBLE) {
499 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
500 mz = mem_cgroup_zoneinfo(mem, node, zone);
501 mctz = soft_limit_tree_node_zone(node, zone);
502 mem_cgroup_remove_exceeded(mem, mz, mctz);
503 }
504 }
505}
506
4e416953
BS
507static inline unsigned long mem_cgroup_get_excess(struct mem_cgroup *mem)
508{
509 return res_counter_soft_limit_excess(&mem->res) >> PAGE_SHIFT;
510}
511
512static struct mem_cgroup_per_zone *
513__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
514{
515 struct rb_node *rightmost = NULL;
26251eaf 516 struct mem_cgroup_per_zone *mz;
4e416953
BS
517
518retry:
26251eaf 519 mz = NULL;
4e416953
BS
520 rightmost = rb_last(&mctz->rb_root);
521 if (!rightmost)
522 goto done; /* Nothing to reclaim from */
523
524 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
525 /*
526 * Remove the node now but someone else can add it back,
527 * we will to add it back at the end of reclaim to its correct
528 * position in the tree.
529 */
530 __mem_cgroup_remove_exceeded(mz->mem, mz, mctz);
531 if (!res_counter_soft_limit_excess(&mz->mem->res) ||
532 !css_tryget(&mz->mem->css))
533 goto retry;
534done:
535 return mz;
536}
537
538static struct mem_cgroup_per_zone *
539mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
540{
541 struct mem_cgroup_per_zone *mz;
542
543 spin_lock(&mctz->lock);
544 mz = __mem_cgroup_largest_soft_limit_node(mctz);
545 spin_unlock(&mctz->lock);
546 return mz;
547}
548
711d3d2c
KH
549/*
550 * Implementation Note: reading percpu statistics for memcg.
551 *
552 * Both of vmstat[] and percpu_counter has threshold and do periodic
553 * synchronization to implement "quick" read. There are trade-off between
554 * reading cost and precision of value. Then, we may have a chance to implement
555 * a periodic synchronizion of counter in memcg's counter.
556 *
557 * But this _read() function is used for user interface now. The user accounts
558 * memory usage by memory cgroup and he _always_ requires exact value because
559 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
560 * have to visit all online cpus and make sum. So, for now, unnecessary
561 * synchronization is not implemented. (just implemented for cpu hotplug)
562 *
563 * If there are kernel internal actions which can make use of some not-exact
564 * value, and reading all cpu value can be performance bottleneck in some
565 * common workload, threashold and synchonization as vmstat[] should be
566 * implemented.
567 */
c62b1a3b
KH
568static s64 mem_cgroup_read_stat(struct mem_cgroup *mem,
569 enum mem_cgroup_stat_index idx)
570{
571 int cpu;
572 s64 val = 0;
573
711d3d2c
KH
574 get_online_cpus();
575 for_each_online_cpu(cpu)
c62b1a3b 576 val += per_cpu(mem->stat->count[idx], cpu);
711d3d2c
KH
577#ifdef CONFIG_HOTPLUG_CPU
578 spin_lock(&mem->pcp_counter_lock);
579 val += mem->nocpu_base.count[idx];
580 spin_unlock(&mem->pcp_counter_lock);
581#endif
582 put_online_cpus();
c62b1a3b
KH
583 return val;
584}
585
586static s64 mem_cgroup_local_usage(struct mem_cgroup *mem)
587{
588 s64 ret;
589
590 ret = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_RSS);
591 ret += mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_CACHE);
592 return ret;
593}
594
0c3e73e8
BS
595static void mem_cgroup_swap_statistics(struct mem_cgroup *mem,
596 bool charge)
597{
598 int val = (charge) ? 1 : -1;
c62b1a3b 599 this_cpu_add(mem->stat->count[MEM_CGROUP_STAT_SWAPOUT], val);
0c3e73e8
BS
600}
601
c05555b5 602static void mem_cgroup_charge_statistics(struct mem_cgroup *mem,
e401f176 603 bool file, int nr_pages)
d52aa412 604{
c62b1a3b
KH
605 preempt_disable();
606
e401f176
KH
607 if (file)
608 __this_cpu_add(mem->stat->count[MEM_CGROUP_STAT_CACHE], nr_pages);
d52aa412 609 else
e401f176 610 __this_cpu_add(mem->stat->count[MEM_CGROUP_STAT_RSS], nr_pages);
55e462b0 611
e401f176
KH
612 /* pagein of a big page is an event. So, ignore page size */
613 if (nr_pages > 0)
c62b1a3b 614 __this_cpu_inc(mem->stat->count[MEM_CGROUP_STAT_PGPGIN_COUNT]);
55e462b0 615 else
c62b1a3b 616 __this_cpu_inc(mem->stat->count[MEM_CGROUP_STAT_PGPGOUT_COUNT]);
e401f176
KH
617
618 __this_cpu_add(mem->stat->count[MEM_CGROUP_EVENTS], nr_pages);
2e72b634 619
c62b1a3b 620 preempt_enable();
6d12e2d8
KH
621}
622
14067bb3 623static unsigned long mem_cgroup_get_local_zonestat(struct mem_cgroup *mem,
b69408e8 624 enum lru_list idx)
6d12e2d8
KH
625{
626 int nid, zid;
627 struct mem_cgroup_per_zone *mz;
628 u64 total = 0;
629
630 for_each_online_node(nid)
631 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
632 mz = mem_cgroup_zoneinfo(mem, nid, zid);
633 total += MEM_CGROUP_ZSTAT(mz, idx);
634 }
635 return total;
d52aa412
KH
636}
637
d2265e6f
KH
638static bool __memcg_event_check(struct mem_cgroup *mem, int event_mask_shift)
639{
640 s64 val;
641
642 val = this_cpu_read(mem->stat->count[MEM_CGROUP_EVENTS]);
643
644 return !(val & ((1 << event_mask_shift) - 1));
645}
646
647/*
648 * Check events in order.
649 *
650 */
651static void memcg_check_events(struct mem_cgroup *mem, struct page *page)
652{
653 /* threshold event is triggered in finer grain than soft limit */
654 if (unlikely(__memcg_event_check(mem, THRESHOLDS_EVENTS_THRESH))) {
655 mem_cgroup_threshold(mem);
656 if (unlikely(__memcg_event_check(mem, SOFTLIMIT_EVENTS_THRESH)))
657 mem_cgroup_update_tree(mem, page);
658 }
659}
660
d5b69e38 661static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
8cdea7c0
BS
662{
663 return container_of(cgroup_subsys_state(cont,
664 mem_cgroup_subsys_id), struct mem_cgroup,
665 css);
666}
667
cf475ad2 668struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
78fb7466 669{
31a78f23
BS
670 /*
671 * mm_update_next_owner() may clear mm->owner to NULL
672 * if it races with swapoff, page migration, etc.
673 * So this can be called with p == NULL.
674 */
675 if (unlikely(!p))
676 return NULL;
677
78fb7466
PE
678 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
679 struct mem_cgroup, css);
680}
681
54595fe2
KH
682static struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
683{
684 struct mem_cgroup *mem = NULL;
0b7f569e
KH
685
686 if (!mm)
687 return NULL;
54595fe2
KH
688 /*
689 * Because we have no locks, mm->owner's may be being moved to other
690 * cgroup. We use css_tryget() here even if this looks
691 * pessimistic (rather than adding locks here).
692 */
693 rcu_read_lock();
694 do {
695 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
696 if (unlikely(!mem))
697 break;
698 } while (!css_tryget(&mem->css));
699 rcu_read_unlock();
700 return mem;
701}
702
7d74b06f
KH
703/* The caller has to guarantee "mem" exists before calling this */
704static struct mem_cgroup *mem_cgroup_start_loop(struct mem_cgroup *mem)
14067bb3 705{
711d3d2c
KH
706 struct cgroup_subsys_state *css;
707 int found;
708
709 if (!mem) /* ROOT cgroup has the smallest ID */
710 return root_mem_cgroup; /*css_put/get against root is ignored*/
711 if (!mem->use_hierarchy) {
712 if (css_tryget(&mem->css))
713 return mem;
714 return NULL;
715 }
716 rcu_read_lock();
717 /*
718 * searching a memory cgroup which has the smallest ID under given
719 * ROOT cgroup. (ID >= 1)
720 */
721 css = css_get_next(&mem_cgroup_subsys, 1, &mem->css, &found);
722 if (css && css_tryget(css))
723 mem = container_of(css, struct mem_cgroup, css);
724 else
725 mem = NULL;
726 rcu_read_unlock();
727 return mem;
7d74b06f
KH
728}
729
730static struct mem_cgroup *mem_cgroup_get_next(struct mem_cgroup *iter,
731 struct mem_cgroup *root,
732 bool cond)
733{
734 int nextid = css_id(&iter->css) + 1;
735 int found;
736 int hierarchy_used;
14067bb3 737 struct cgroup_subsys_state *css;
14067bb3 738
7d74b06f 739 hierarchy_used = iter->use_hierarchy;
14067bb3 740
7d74b06f 741 css_put(&iter->css);
711d3d2c
KH
742 /* If no ROOT, walk all, ignore hierarchy */
743 if (!cond || (root && !hierarchy_used))
7d74b06f 744 return NULL;
14067bb3 745
711d3d2c
KH
746 if (!root)
747 root = root_mem_cgroup;
748
7d74b06f
KH
749 do {
750 iter = NULL;
14067bb3 751 rcu_read_lock();
7d74b06f
KH
752
753 css = css_get_next(&mem_cgroup_subsys, nextid,
754 &root->css, &found);
14067bb3 755 if (css && css_tryget(css))
7d74b06f 756 iter = container_of(css, struct mem_cgroup, css);
14067bb3 757 rcu_read_unlock();
7d74b06f 758 /* If css is NULL, no more cgroups will be found */
14067bb3 759 nextid = found + 1;
7d74b06f 760 } while (css && !iter);
14067bb3 761
7d74b06f 762 return iter;
14067bb3 763}
7d74b06f
KH
764/*
765 * for_eacn_mem_cgroup_tree() for visiting all cgroup under tree. Please
766 * be careful that "break" loop is not allowed. We have reference count.
767 * Instead of that modify "cond" to be false and "continue" to exit the loop.
768 */
769#define for_each_mem_cgroup_tree_cond(iter, root, cond) \
770 for (iter = mem_cgroup_start_loop(root);\
771 iter != NULL;\
772 iter = mem_cgroup_get_next(iter, root, cond))
773
774#define for_each_mem_cgroup_tree(iter, root) \
775 for_each_mem_cgroup_tree_cond(iter, root, true)
776
711d3d2c
KH
777#define for_each_mem_cgroup_all(iter) \
778 for_each_mem_cgroup_tree_cond(iter, NULL, true)
779
14067bb3 780
4b3bde4c
BS
781static inline bool mem_cgroup_is_root(struct mem_cgroup *mem)
782{
783 return (mem == root_mem_cgroup);
784}
785
08e552c6
KH
786/*
787 * Following LRU functions are allowed to be used without PCG_LOCK.
788 * Operations are called by routine of global LRU independently from memcg.
789 * What we have to take care of here is validness of pc->mem_cgroup.
790 *
791 * Changes to pc->mem_cgroup happens when
792 * 1. charge
793 * 2. moving account
794 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
795 * It is added to LRU before charge.
796 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
797 * When moving account, the page is not on LRU. It's isolated.
798 */
4f98a2fe 799
08e552c6
KH
800void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru)
801{
802 struct page_cgroup *pc;
08e552c6 803 struct mem_cgroup_per_zone *mz;
6d12e2d8 804
f8d66542 805 if (mem_cgroup_disabled())
08e552c6
KH
806 return;
807 pc = lookup_page_cgroup(page);
808 /* can happen while we handle swapcache. */
4b3bde4c 809 if (!TestClearPageCgroupAcctLRU(pc))
08e552c6 810 return;
4b3bde4c 811 VM_BUG_ON(!pc->mem_cgroup);
544122e5
KH
812 /*
813 * We don't check PCG_USED bit. It's cleared when the "page" is finally
814 * removed from global LRU.
815 */
08e552c6 816 mz = page_cgroup_zoneinfo(pc);
b69408e8 817 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
4b3bde4c
BS
818 if (mem_cgroup_is_root(pc->mem_cgroup))
819 return;
820 VM_BUG_ON(list_empty(&pc->lru));
08e552c6 821 list_del_init(&pc->lru);
6d12e2d8
KH
822}
823
08e552c6 824void mem_cgroup_del_lru(struct page *page)
6d12e2d8 825{
08e552c6
KH
826 mem_cgroup_del_lru_list(page, page_lru(page));
827}
b69408e8 828
08e552c6
KH
829void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru)
830{
831 struct mem_cgroup_per_zone *mz;
832 struct page_cgroup *pc;
b69408e8 833
f8d66542 834 if (mem_cgroup_disabled())
08e552c6 835 return;
6d12e2d8 836
08e552c6 837 pc = lookup_page_cgroup(page);
bd112db8
DN
838 /*
839 * Used bit is set without atomic ops but after smp_wmb().
840 * For making pc->mem_cgroup visible, insert smp_rmb() here.
841 */
08e552c6 842 smp_rmb();
4b3bde4c
BS
843 /* unused or root page is not rotated. */
844 if (!PageCgroupUsed(pc) || mem_cgroup_is_root(pc->mem_cgroup))
08e552c6
KH
845 return;
846 mz = page_cgroup_zoneinfo(pc);
847 list_move(&pc->lru, &mz->lists[lru]);
6d12e2d8
KH
848}
849
08e552c6 850void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru)
66e1707b 851{
08e552c6
KH
852 struct page_cgroup *pc;
853 struct mem_cgroup_per_zone *mz;
6d12e2d8 854
f8d66542 855 if (mem_cgroup_disabled())
08e552c6
KH
856 return;
857 pc = lookup_page_cgroup(page);
4b3bde4c 858 VM_BUG_ON(PageCgroupAcctLRU(pc));
bd112db8
DN
859 /*
860 * Used bit is set without atomic ops but after smp_wmb().
861 * For making pc->mem_cgroup visible, insert smp_rmb() here.
862 */
08e552c6
KH
863 smp_rmb();
864 if (!PageCgroupUsed(pc))
894bc310 865 return;
b69408e8 866
08e552c6 867 mz = page_cgroup_zoneinfo(pc);
b69408e8 868 MEM_CGROUP_ZSTAT(mz, lru) += 1;
4b3bde4c
BS
869 SetPageCgroupAcctLRU(pc);
870 if (mem_cgroup_is_root(pc->mem_cgroup))
871 return;
08e552c6
KH
872 list_add(&pc->lru, &mz->lists[lru]);
873}
544122e5 874
08e552c6 875/*
544122e5
KH
876 * At handling SwapCache, pc->mem_cgroup may be changed while it's linked to
877 * lru because the page may.be reused after it's fully uncharged (because of
878 * SwapCache behavior).To handle that, unlink page_cgroup from LRU when charge
879 * it again. This function is only used to charge SwapCache. It's done under
880 * lock_page and expected that zone->lru_lock is never held.
08e552c6 881 */
544122e5 882static void mem_cgroup_lru_del_before_commit_swapcache(struct page *page)
08e552c6 883{
544122e5
KH
884 unsigned long flags;
885 struct zone *zone = page_zone(page);
886 struct page_cgroup *pc = lookup_page_cgroup(page);
887
888 spin_lock_irqsave(&zone->lru_lock, flags);
889 /*
890 * Forget old LRU when this page_cgroup is *not* used. This Used bit
891 * is guarded by lock_page() because the page is SwapCache.
892 */
893 if (!PageCgroupUsed(pc))
894 mem_cgroup_del_lru_list(page, page_lru(page));
895 spin_unlock_irqrestore(&zone->lru_lock, flags);
08e552c6
KH
896}
897
544122e5
KH
898static void mem_cgroup_lru_add_after_commit_swapcache(struct page *page)
899{
900 unsigned long flags;
901 struct zone *zone = page_zone(page);
902 struct page_cgroup *pc = lookup_page_cgroup(page);
903
904 spin_lock_irqsave(&zone->lru_lock, flags);
905 /* link when the page is linked to LRU but page_cgroup isn't */
4b3bde4c 906 if (PageLRU(page) && !PageCgroupAcctLRU(pc))
544122e5
KH
907 mem_cgroup_add_lru_list(page, page_lru(page));
908 spin_unlock_irqrestore(&zone->lru_lock, flags);
909}
910
911
08e552c6
KH
912void mem_cgroup_move_lists(struct page *page,
913 enum lru_list from, enum lru_list to)
914{
f8d66542 915 if (mem_cgroup_disabled())
08e552c6
KH
916 return;
917 mem_cgroup_del_lru_list(page, from);
918 mem_cgroup_add_lru_list(page, to);
66e1707b
BS
919}
920
4c4a2214
DR
921int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
922{
923 int ret;
0b7f569e 924 struct mem_cgroup *curr = NULL;
158e0a2d 925 struct task_struct *p;
4c4a2214 926
158e0a2d
KH
927 p = find_lock_task_mm(task);
928 if (!p)
929 return 0;
930 curr = try_get_mem_cgroup_from_mm(p->mm);
931 task_unlock(p);
0b7f569e
KH
932 if (!curr)
933 return 0;
d31f56db
DN
934 /*
935 * We should check use_hierarchy of "mem" not "curr". Because checking
936 * use_hierarchy of "curr" here make this function true if hierarchy is
937 * enabled in "curr" and "curr" is a child of "mem" in *cgroup*
938 * hierarchy(even if use_hierarchy is disabled in "mem").
939 */
940 if (mem->use_hierarchy)
0b7f569e
KH
941 ret = css_is_ancestor(&curr->css, &mem->css);
942 else
943 ret = (curr == mem);
944 css_put(&curr->css);
4c4a2214
DR
945 return ret;
946}
947
c772be93 948static int calc_inactive_ratio(struct mem_cgroup *memcg, unsigned long *present_pages)
14797e23
KM
949{
950 unsigned long active;
951 unsigned long inactive;
c772be93
KM
952 unsigned long gb;
953 unsigned long inactive_ratio;
14797e23 954
14067bb3
KH
955 inactive = mem_cgroup_get_local_zonestat(memcg, LRU_INACTIVE_ANON);
956 active = mem_cgroup_get_local_zonestat(memcg, LRU_ACTIVE_ANON);
14797e23 957
c772be93
KM
958 gb = (inactive + active) >> (30 - PAGE_SHIFT);
959 if (gb)
960 inactive_ratio = int_sqrt(10 * gb);
961 else
962 inactive_ratio = 1;
963
964 if (present_pages) {
965 present_pages[0] = inactive;
966 present_pages[1] = active;
967 }
968
969 return inactive_ratio;
970}
971
972int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg)
973{
974 unsigned long active;
975 unsigned long inactive;
976 unsigned long present_pages[2];
977 unsigned long inactive_ratio;
978
979 inactive_ratio = calc_inactive_ratio(memcg, present_pages);
980
981 inactive = present_pages[0];
982 active = present_pages[1];
983
984 if (inactive * inactive_ratio < active)
14797e23
KM
985 return 1;
986
987 return 0;
988}
989
56e49d21
RR
990int mem_cgroup_inactive_file_is_low(struct mem_cgroup *memcg)
991{
992 unsigned long active;
993 unsigned long inactive;
994
995 inactive = mem_cgroup_get_local_zonestat(memcg, LRU_INACTIVE_FILE);
996 active = mem_cgroup_get_local_zonestat(memcg, LRU_ACTIVE_FILE);
997
998 return (active > inactive);
999}
1000
a3d8e054
KM
1001unsigned long mem_cgroup_zone_nr_pages(struct mem_cgroup *memcg,
1002 struct zone *zone,
1003 enum lru_list lru)
1004{
13d7e3a2 1005 int nid = zone_to_nid(zone);
a3d8e054
KM
1006 int zid = zone_idx(zone);
1007 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
1008
1009 return MEM_CGROUP_ZSTAT(mz, lru);
1010}
1011
3e2f41f1
KM
1012struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg,
1013 struct zone *zone)
1014{
13d7e3a2 1015 int nid = zone_to_nid(zone);
3e2f41f1
KM
1016 int zid = zone_idx(zone);
1017 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
1018
1019 return &mz->reclaim_stat;
1020}
1021
1022struct zone_reclaim_stat *
1023mem_cgroup_get_reclaim_stat_from_page(struct page *page)
1024{
1025 struct page_cgroup *pc;
1026 struct mem_cgroup_per_zone *mz;
1027
1028 if (mem_cgroup_disabled())
1029 return NULL;
1030
1031 pc = lookup_page_cgroup(page);
bd112db8
DN
1032 /*
1033 * Used bit is set without atomic ops but after smp_wmb().
1034 * For making pc->mem_cgroup visible, insert smp_rmb() here.
1035 */
1036 smp_rmb();
1037 if (!PageCgroupUsed(pc))
1038 return NULL;
1039
3e2f41f1
KM
1040 mz = page_cgroup_zoneinfo(pc);
1041 if (!mz)
1042 return NULL;
1043
1044 return &mz->reclaim_stat;
1045}
1046
66e1707b
BS
1047unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
1048 struct list_head *dst,
1049 unsigned long *scanned, int order,
1050 int mode, struct zone *z,
1051 struct mem_cgroup *mem_cont,
4f98a2fe 1052 int active, int file)
66e1707b
BS
1053{
1054 unsigned long nr_taken = 0;
1055 struct page *page;
1056 unsigned long scan;
1057 LIST_HEAD(pc_list);
1058 struct list_head *src;
ff7283fa 1059 struct page_cgroup *pc, *tmp;
13d7e3a2 1060 int nid = zone_to_nid(z);
1ecaab2b
KH
1061 int zid = zone_idx(z);
1062 struct mem_cgroup_per_zone *mz;
b7c46d15 1063 int lru = LRU_FILE * file + active;
2ffebca6 1064 int ret;
66e1707b 1065
cf475ad2 1066 BUG_ON(!mem_cont);
1ecaab2b 1067 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
b69408e8 1068 src = &mz->lists[lru];
66e1707b 1069
ff7283fa
KH
1070 scan = 0;
1071 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
436c6541 1072 if (scan >= nr_to_scan)
ff7283fa 1073 break;
08e552c6
KH
1074
1075 page = pc->page;
52d4b9ac
KH
1076 if (unlikely(!PageCgroupUsed(pc)))
1077 continue;
436c6541 1078 if (unlikely(!PageLRU(page)))
ff7283fa 1079 continue;
ff7283fa 1080
436c6541 1081 scan++;
2ffebca6
KH
1082 ret = __isolate_lru_page(page, mode, file);
1083 switch (ret) {
1084 case 0:
66e1707b 1085 list_move(&page->lru, dst);
2ffebca6 1086 mem_cgroup_del_lru(page);
2c888cfb 1087 nr_taken += hpage_nr_pages(page);
2ffebca6
KH
1088 break;
1089 case -EBUSY:
1090 /* we don't affect global LRU but rotate in our LRU */
1091 mem_cgroup_rotate_lru_list(page, page_lru(page));
1092 break;
1093 default:
1094 break;
66e1707b
BS
1095 }
1096 }
1097
66e1707b 1098 *scanned = scan;
cc8e970c
KM
1099
1100 trace_mm_vmscan_memcg_isolate(0, nr_to_scan, scan, nr_taken,
1101 0, 0, 0, mode);
1102
66e1707b
BS
1103 return nr_taken;
1104}
1105
6d61ef40
BS
1106#define mem_cgroup_from_res_counter(counter, member) \
1107 container_of(counter, struct mem_cgroup, member)
1108
b85a96c0
DN
1109static bool mem_cgroup_check_under_limit(struct mem_cgroup *mem)
1110{
1111 if (do_swap_account) {
1112 if (res_counter_check_under_limit(&mem->res) &&
1113 res_counter_check_under_limit(&mem->memsw))
1114 return true;
1115 } else
1116 if (res_counter_check_under_limit(&mem->res))
1117 return true;
1118 return false;
1119}
1120
a7885eb8
KM
1121static unsigned int get_swappiness(struct mem_cgroup *memcg)
1122{
1123 struct cgroup *cgrp = memcg->css.cgroup;
1124 unsigned int swappiness;
1125
1126 /* root ? */
1127 if (cgrp->parent == NULL)
1128 return vm_swappiness;
1129
1130 spin_lock(&memcg->reclaim_param_lock);
1131 swappiness = memcg->swappiness;
1132 spin_unlock(&memcg->reclaim_param_lock);
1133
1134 return swappiness;
1135}
1136
32047e2a
KH
1137static void mem_cgroup_start_move(struct mem_cgroup *mem)
1138{
1139 int cpu;
1489ebad
KH
1140
1141 get_online_cpus();
1142 spin_lock(&mem->pcp_counter_lock);
1143 for_each_online_cpu(cpu)
32047e2a 1144 per_cpu(mem->stat->count[MEM_CGROUP_ON_MOVE], cpu) += 1;
1489ebad
KH
1145 mem->nocpu_base.count[MEM_CGROUP_ON_MOVE] += 1;
1146 spin_unlock(&mem->pcp_counter_lock);
1147 put_online_cpus();
32047e2a
KH
1148
1149 synchronize_rcu();
1150}
1151
1152static void mem_cgroup_end_move(struct mem_cgroup *mem)
1153{
1154 int cpu;
1155
1156 if (!mem)
1157 return;
1489ebad
KH
1158 get_online_cpus();
1159 spin_lock(&mem->pcp_counter_lock);
1160 for_each_online_cpu(cpu)
32047e2a 1161 per_cpu(mem->stat->count[MEM_CGROUP_ON_MOVE], cpu) -= 1;
1489ebad
KH
1162 mem->nocpu_base.count[MEM_CGROUP_ON_MOVE] -= 1;
1163 spin_unlock(&mem->pcp_counter_lock);
1164 put_online_cpus();
32047e2a
KH
1165}
1166/*
1167 * 2 routines for checking "mem" is under move_account() or not.
1168 *
1169 * mem_cgroup_stealed() - checking a cgroup is mc.from or not. This is used
1170 * for avoiding race in accounting. If true,
1171 * pc->mem_cgroup may be overwritten.
1172 *
1173 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1174 * under hierarchy of moving cgroups. This is for
1175 * waiting at hith-memory prressure caused by "move".
1176 */
1177
1178static bool mem_cgroup_stealed(struct mem_cgroup *mem)
1179{
1180 VM_BUG_ON(!rcu_read_lock_held());
1181 return this_cpu_read(mem->stat->count[MEM_CGROUP_ON_MOVE]) > 0;
1182}
4b534334
KH
1183
1184static bool mem_cgroup_under_move(struct mem_cgroup *mem)
1185{
2bd9bb20
KH
1186 struct mem_cgroup *from;
1187 struct mem_cgroup *to;
4b534334 1188 bool ret = false;
2bd9bb20
KH
1189 /*
1190 * Unlike task_move routines, we access mc.to, mc.from not under
1191 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1192 */
1193 spin_lock(&mc.lock);
1194 from = mc.from;
1195 to = mc.to;
1196 if (!from)
1197 goto unlock;
1198 if (from == mem || to == mem
1199 || (mem->use_hierarchy && css_is_ancestor(&from->css, &mem->css))
1200 || (mem->use_hierarchy && css_is_ancestor(&to->css, &mem->css)))
1201 ret = true;
1202unlock:
1203 spin_unlock(&mc.lock);
4b534334
KH
1204 return ret;
1205}
1206
1207static bool mem_cgroup_wait_acct_move(struct mem_cgroup *mem)
1208{
1209 if (mc.moving_task && current != mc.moving_task) {
1210 if (mem_cgroup_under_move(mem)) {
1211 DEFINE_WAIT(wait);
1212 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1213 /* moving charge context might have finished. */
1214 if (mc.moving_task)
1215 schedule();
1216 finish_wait(&mc.waitq, &wait);
1217 return true;
1218 }
1219 }
1220 return false;
1221}
1222
e222432b 1223/**
6a6135b6 1224 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
e222432b
BS
1225 * @memcg: The memory cgroup that went over limit
1226 * @p: Task that is going to be killed
1227 *
1228 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1229 * enabled
1230 */
1231void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1232{
1233 struct cgroup *task_cgrp;
1234 struct cgroup *mem_cgrp;
1235 /*
1236 * Need a buffer in BSS, can't rely on allocations. The code relies
1237 * on the assumption that OOM is serialized for memory controller.
1238 * If this assumption is broken, revisit this code.
1239 */
1240 static char memcg_name[PATH_MAX];
1241 int ret;
1242
d31f56db 1243 if (!memcg || !p)
e222432b
BS
1244 return;
1245
1246
1247 rcu_read_lock();
1248
1249 mem_cgrp = memcg->css.cgroup;
1250 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1251
1252 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1253 if (ret < 0) {
1254 /*
1255 * Unfortunately, we are unable to convert to a useful name
1256 * But we'll still print out the usage information
1257 */
1258 rcu_read_unlock();
1259 goto done;
1260 }
1261 rcu_read_unlock();
1262
1263 printk(KERN_INFO "Task in %s killed", memcg_name);
1264
1265 rcu_read_lock();
1266 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1267 if (ret < 0) {
1268 rcu_read_unlock();
1269 goto done;
1270 }
1271 rcu_read_unlock();
1272
1273 /*
1274 * Continues from above, so we don't need an KERN_ level
1275 */
1276 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1277done:
1278
1279 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1280 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1281 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1282 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1283 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1284 "failcnt %llu\n",
1285 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1286 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1287 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
1288}
1289
81d39c20
KH
1290/*
1291 * This function returns the number of memcg under hierarchy tree. Returns
1292 * 1(self count) if no children.
1293 */
1294static int mem_cgroup_count_children(struct mem_cgroup *mem)
1295{
1296 int num = 0;
7d74b06f
KH
1297 struct mem_cgroup *iter;
1298
1299 for_each_mem_cgroup_tree(iter, mem)
1300 num++;
81d39c20
KH
1301 return num;
1302}
1303
a63d83f4
DR
1304/*
1305 * Return the memory (and swap, if configured) limit for a memcg.
1306 */
1307u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
1308{
1309 u64 limit;
1310 u64 memsw;
1311
f3e8eb70
JW
1312 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1313 limit += total_swap_pages << PAGE_SHIFT;
1314
a63d83f4
DR
1315 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1316 /*
1317 * If memsw is finite and limits the amount of swap space available
1318 * to this memcg, return that limit.
1319 */
1320 return min(limit, memsw);
1321}
1322
6d61ef40 1323/*
04046e1a
KH
1324 * Visit the first child (need not be the first child as per the ordering
1325 * of the cgroup list, since we track last_scanned_child) of @mem and use
1326 * that to reclaim free pages from.
1327 */
1328static struct mem_cgroup *
1329mem_cgroup_select_victim(struct mem_cgroup *root_mem)
1330{
1331 struct mem_cgroup *ret = NULL;
1332 struct cgroup_subsys_state *css;
1333 int nextid, found;
1334
1335 if (!root_mem->use_hierarchy) {
1336 css_get(&root_mem->css);
1337 ret = root_mem;
1338 }
1339
1340 while (!ret) {
1341 rcu_read_lock();
1342 nextid = root_mem->last_scanned_child + 1;
1343 css = css_get_next(&mem_cgroup_subsys, nextid, &root_mem->css,
1344 &found);
1345 if (css && css_tryget(css))
1346 ret = container_of(css, struct mem_cgroup, css);
1347
1348 rcu_read_unlock();
1349 /* Updates scanning parameter */
1350 spin_lock(&root_mem->reclaim_param_lock);
1351 if (!css) {
1352 /* this means start scan from ID:1 */
1353 root_mem->last_scanned_child = 0;
1354 } else
1355 root_mem->last_scanned_child = found;
1356 spin_unlock(&root_mem->reclaim_param_lock);
1357 }
1358
1359 return ret;
1360}
1361
1362/*
1363 * Scan the hierarchy if needed to reclaim memory. We remember the last child
1364 * we reclaimed from, so that we don't end up penalizing one child extensively
1365 * based on its position in the children list.
6d61ef40
BS
1366 *
1367 * root_mem is the original ancestor that we've been reclaim from.
04046e1a
KH
1368 *
1369 * We give up and return to the caller when we visit root_mem twice.
1370 * (other groups can be removed while we're walking....)
81d39c20
KH
1371 *
1372 * If shrink==true, for avoiding to free too much, this returns immedieately.
6d61ef40
BS
1373 */
1374static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_mem,
4e416953 1375 struct zone *zone,
75822b44
BS
1376 gfp_t gfp_mask,
1377 unsigned long reclaim_options)
6d61ef40 1378{
04046e1a
KH
1379 struct mem_cgroup *victim;
1380 int ret, total = 0;
1381 int loop = 0;
75822b44
BS
1382 bool noswap = reclaim_options & MEM_CGROUP_RECLAIM_NOSWAP;
1383 bool shrink = reclaim_options & MEM_CGROUP_RECLAIM_SHRINK;
4e416953
BS
1384 bool check_soft = reclaim_options & MEM_CGROUP_RECLAIM_SOFT;
1385 unsigned long excess = mem_cgroup_get_excess(root_mem);
04046e1a 1386
22a668d7
KH
1387 /* If memsw_is_minimum==1, swap-out is of-no-use. */
1388 if (root_mem->memsw_is_minimum)
1389 noswap = true;
1390
4e416953 1391 while (1) {
04046e1a 1392 victim = mem_cgroup_select_victim(root_mem);
4e416953 1393 if (victim == root_mem) {
04046e1a 1394 loop++;
cdec2e42
KH
1395 if (loop >= 1)
1396 drain_all_stock_async();
4e416953
BS
1397 if (loop >= 2) {
1398 /*
1399 * If we have not been able to reclaim
1400 * anything, it might because there are
1401 * no reclaimable pages under this hierarchy
1402 */
1403 if (!check_soft || !total) {
1404 css_put(&victim->css);
1405 break;
1406 }
1407 /*
1408 * We want to do more targetted reclaim.
1409 * excess >> 2 is not to excessive so as to
1410 * reclaim too much, nor too less that we keep
1411 * coming back to reclaim from this cgroup
1412 */
1413 if (total >= (excess >> 2) ||
1414 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS)) {
1415 css_put(&victim->css);
1416 break;
1417 }
1418 }
1419 }
c62b1a3b 1420 if (!mem_cgroup_local_usage(victim)) {
04046e1a
KH
1421 /* this cgroup's local usage == 0 */
1422 css_put(&victim->css);
6d61ef40
BS
1423 continue;
1424 }
04046e1a 1425 /* we use swappiness of local cgroup */
4e416953
BS
1426 if (check_soft)
1427 ret = mem_cgroup_shrink_node_zone(victim, gfp_mask,
14fec796 1428 noswap, get_swappiness(victim), zone);
4e416953
BS
1429 else
1430 ret = try_to_free_mem_cgroup_pages(victim, gfp_mask,
1431 noswap, get_swappiness(victim));
04046e1a 1432 css_put(&victim->css);
81d39c20
KH
1433 /*
1434 * At shrinking usage, we can't check we should stop here or
1435 * reclaim more. It's depends on callers. last_scanned_child
1436 * will work enough for keeping fairness under tree.
1437 */
1438 if (shrink)
1439 return ret;
04046e1a 1440 total += ret;
4e416953
BS
1441 if (check_soft) {
1442 if (res_counter_check_under_soft_limit(&root_mem->res))
1443 return total;
1444 } else if (mem_cgroup_check_under_limit(root_mem))
04046e1a 1445 return 1 + total;
6d61ef40 1446 }
04046e1a 1447 return total;
6d61ef40
BS
1448}
1449
867578cb
KH
1450/*
1451 * Check OOM-Killer is already running under our hierarchy.
1452 * If someone is running, return false.
1453 */
1454static bool mem_cgroup_oom_lock(struct mem_cgroup *mem)
1455{
7d74b06f
KH
1456 int x, lock_count = 0;
1457 struct mem_cgroup *iter;
a636b327 1458
7d74b06f
KH
1459 for_each_mem_cgroup_tree(iter, mem) {
1460 x = atomic_inc_return(&iter->oom_lock);
1461 lock_count = max(x, lock_count);
1462 }
867578cb
KH
1463
1464 if (lock_count == 1)
1465 return true;
1466 return false;
a636b327 1467}
0b7f569e 1468
7d74b06f 1469static int mem_cgroup_oom_unlock(struct mem_cgroup *mem)
0b7f569e 1470{
7d74b06f
KH
1471 struct mem_cgroup *iter;
1472
867578cb
KH
1473 /*
1474 * When a new child is created while the hierarchy is under oom,
1475 * mem_cgroup_oom_lock() may not be called. We have to use
1476 * atomic_add_unless() here.
1477 */
7d74b06f
KH
1478 for_each_mem_cgroup_tree(iter, mem)
1479 atomic_add_unless(&iter->oom_lock, -1, 0);
0b7f569e
KH
1480 return 0;
1481}
1482
867578cb
KH
1483
1484static DEFINE_MUTEX(memcg_oom_mutex);
1485static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1486
dc98df5a
KH
1487struct oom_wait_info {
1488 struct mem_cgroup *mem;
1489 wait_queue_t wait;
1490};
1491
1492static int memcg_oom_wake_function(wait_queue_t *wait,
1493 unsigned mode, int sync, void *arg)
1494{
1495 struct mem_cgroup *wake_mem = (struct mem_cgroup *)arg;
1496 struct oom_wait_info *oom_wait_info;
1497
1498 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
1499
1500 if (oom_wait_info->mem == wake_mem)
1501 goto wakeup;
1502 /* if no hierarchy, no match */
1503 if (!oom_wait_info->mem->use_hierarchy || !wake_mem->use_hierarchy)
1504 return 0;
1505 /*
1506 * Both of oom_wait_info->mem and wake_mem are stable under us.
1507 * Then we can use css_is_ancestor without taking care of RCU.
1508 */
1509 if (!css_is_ancestor(&oom_wait_info->mem->css, &wake_mem->css) &&
1510 !css_is_ancestor(&wake_mem->css, &oom_wait_info->mem->css))
1511 return 0;
1512
1513wakeup:
1514 return autoremove_wake_function(wait, mode, sync, arg);
1515}
1516
1517static void memcg_wakeup_oom(struct mem_cgroup *mem)
1518{
1519 /* for filtering, pass "mem" as argument. */
1520 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, mem);
1521}
1522
3c11ecf4
KH
1523static void memcg_oom_recover(struct mem_cgroup *mem)
1524{
2bd9bb20 1525 if (mem && atomic_read(&mem->oom_lock))
3c11ecf4
KH
1526 memcg_wakeup_oom(mem);
1527}
1528
867578cb
KH
1529/*
1530 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1531 */
1532bool mem_cgroup_handle_oom(struct mem_cgroup *mem, gfp_t mask)
0b7f569e 1533{
dc98df5a 1534 struct oom_wait_info owait;
3c11ecf4 1535 bool locked, need_to_kill;
867578cb 1536
dc98df5a
KH
1537 owait.mem = mem;
1538 owait.wait.flags = 0;
1539 owait.wait.func = memcg_oom_wake_function;
1540 owait.wait.private = current;
1541 INIT_LIST_HEAD(&owait.wait.task_list);
3c11ecf4 1542 need_to_kill = true;
867578cb
KH
1543 /* At first, try to OOM lock hierarchy under mem.*/
1544 mutex_lock(&memcg_oom_mutex);
1545 locked = mem_cgroup_oom_lock(mem);
1546 /*
1547 * Even if signal_pending(), we can't quit charge() loop without
1548 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1549 * under OOM is always welcomed, use TASK_KILLABLE here.
1550 */
3c11ecf4
KH
1551 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
1552 if (!locked || mem->oom_kill_disable)
1553 need_to_kill = false;
1554 if (locked)
9490ff27 1555 mem_cgroup_oom_notify(mem);
867578cb
KH
1556 mutex_unlock(&memcg_oom_mutex);
1557
3c11ecf4
KH
1558 if (need_to_kill) {
1559 finish_wait(&memcg_oom_waitq, &owait.wait);
867578cb 1560 mem_cgroup_out_of_memory(mem, mask);
3c11ecf4 1561 } else {
867578cb 1562 schedule();
dc98df5a 1563 finish_wait(&memcg_oom_waitq, &owait.wait);
867578cb
KH
1564 }
1565 mutex_lock(&memcg_oom_mutex);
1566 mem_cgroup_oom_unlock(mem);
dc98df5a 1567 memcg_wakeup_oom(mem);
867578cb
KH
1568 mutex_unlock(&memcg_oom_mutex);
1569
1570 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1571 return false;
1572 /* Give chance to dying process */
1573 schedule_timeout(1);
1574 return true;
0b7f569e
KH
1575}
1576
d69b042f
BS
1577/*
1578 * Currently used to update mapped file statistics, but the routine can be
1579 * generalized to update other statistics as well.
32047e2a
KH
1580 *
1581 * Notes: Race condition
1582 *
1583 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1584 * it tends to be costly. But considering some conditions, we doesn't need
1585 * to do so _always_.
1586 *
1587 * Considering "charge", lock_page_cgroup() is not required because all
1588 * file-stat operations happen after a page is attached to radix-tree. There
1589 * are no race with "charge".
1590 *
1591 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1592 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1593 * if there are race with "uncharge". Statistics itself is properly handled
1594 * by flags.
1595 *
1596 * Considering "move", this is an only case we see a race. To make the race
1597 * small, we check MEM_CGROUP_ON_MOVE percpu value and detect there are
1598 * possibility of race condition. If there is, we take a lock.
d69b042f 1599 */
26174efd 1600
2a7106f2
GT
1601void mem_cgroup_update_page_stat(struct page *page,
1602 enum mem_cgroup_page_stat_item idx, int val)
d69b042f
BS
1603{
1604 struct mem_cgroup *mem;
32047e2a
KH
1605 struct page_cgroup *pc = lookup_page_cgroup(page);
1606 bool need_unlock = false;
dbd4ea78 1607 unsigned long uninitialized_var(flags);
d69b042f 1608
d69b042f
BS
1609 if (unlikely(!pc))
1610 return;
1611
32047e2a 1612 rcu_read_lock();
d69b042f 1613 mem = pc->mem_cgroup;
32047e2a
KH
1614 if (unlikely(!mem || !PageCgroupUsed(pc)))
1615 goto out;
1616 /* pc->mem_cgroup is unstable ? */
1617 if (unlikely(mem_cgroup_stealed(mem))) {
1618 /* take a lock against to access pc->mem_cgroup */
dbd4ea78 1619 move_lock_page_cgroup(pc, &flags);
32047e2a
KH
1620 need_unlock = true;
1621 mem = pc->mem_cgroup;
1622 if (!mem || !PageCgroupUsed(pc))
1623 goto out;
1624 }
26174efd 1625
26174efd 1626 switch (idx) {
2a7106f2 1627 case MEMCG_NR_FILE_MAPPED:
26174efd
KH
1628 if (val > 0)
1629 SetPageCgroupFileMapped(pc);
1630 else if (!page_mapped(page))
0c270f8f 1631 ClearPageCgroupFileMapped(pc);
2a7106f2 1632 idx = MEM_CGROUP_STAT_FILE_MAPPED;
26174efd
KH
1633 break;
1634 default:
1635 BUG();
8725d541 1636 }
d69b042f 1637
2a7106f2
GT
1638 this_cpu_add(mem->stat->count[idx], val);
1639
32047e2a
KH
1640out:
1641 if (unlikely(need_unlock))
dbd4ea78 1642 move_unlock_page_cgroup(pc, &flags);
32047e2a
KH
1643 rcu_read_unlock();
1644 return;
d69b042f 1645}
2a7106f2 1646EXPORT_SYMBOL(mem_cgroup_update_page_stat);
26174efd 1647
cdec2e42
KH
1648/*
1649 * size of first charge trial. "32" comes from vmscan.c's magic value.
1650 * TODO: maybe necessary to use big numbers in big irons.
1651 */
1652#define CHARGE_SIZE (32 * PAGE_SIZE)
1653struct memcg_stock_pcp {
1654 struct mem_cgroup *cached; /* this never be root cgroup */
1655 int charge;
1656 struct work_struct work;
1657};
1658static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
1659static atomic_t memcg_drain_count;
1660
1661/*
1662 * Try to consume stocked charge on this cpu. If success, PAGE_SIZE is consumed
1663 * from local stock and true is returned. If the stock is 0 or charges from a
1664 * cgroup which is not current target, returns false. This stock will be
1665 * refilled.
1666 */
1667static bool consume_stock(struct mem_cgroup *mem)
1668{
1669 struct memcg_stock_pcp *stock;
1670 bool ret = true;
1671
1672 stock = &get_cpu_var(memcg_stock);
1673 if (mem == stock->cached && stock->charge)
1674 stock->charge -= PAGE_SIZE;
1675 else /* need to call res_counter_charge */
1676 ret = false;
1677 put_cpu_var(memcg_stock);
1678 return ret;
1679}
1680
1681/*
1682 * Returns stocks cached in percpu to res_counter and reset cached information.
1683 */
1684static void drain_stock(struct memcg_stock_pcp *stock)
1685{
1686 struct mem_cgroup *old = stock->cached;
1687
1688 if (stock->charge) {
1689 res_counter_uncharge(&old->res, stock->charge);
1690 if (do_swap_account)
1691 res_counter_uncharge(&old->memsw, stock->charge);
1692 }
1693 stock->cached = NULL;
1694 stock->charge = 0;
1695}
1696
1697/*
1698 * This must be called under preempt disabled or must be called by
1699 * a thread which is pinned to local cpu.
1700 */
1701static void drain_local_stock(struct work_struct *dummy)
1702{
1703 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
1704 drain_stock(stock);
1705}
1706
1707/*
1708 * Cache charges(val) which is from res_counter, to local per_cpu area.
320cc51d 1709 * This will be consumed by consume_stock() function, later.
cdec2e42
KH
1710 */
1711static void refill_stock(struct mem_cgroup *mem, int val)
1712{
1713 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
1714
1715 if (stock->cached != mem) { /* reset if necessary */
1716 drain_stock(stock);
1717 stock->cached = mem;
1718 }
1719 stock->charge += val;
1720 put_cpu_var(memcg_stock);
1721}
1722
1723/*
1724 * Tries to drain stocked charges in other cpus. This function is asynchronous
1725 * and just put a work per cpu for draining localy on each cpu. Caller can
1726 * expects some charges will be back to res_counter later but cannot wait for
1727 * it.
1728 */
1729static void drain_all_stock_async(void)
1730{
1731 int cpu;
1732 /* This function is for scheduling "drain" in asynchronous way.
1733 * The result of "drain" is not directly handled by callers. Then,
1734 * if someone is calling drain, we don't have to call drain more.
1735 * Anyway, WORK_STRUCT_PENDING check in queue_work_on() will catch if
1736 * there is a race. We just do loose check here.
1737 */
1738 if (atomic_read(&memcg_drain_count))
1739 return;
1740 /* Notify other cpus that system-wide "drain" is running */
1741 atomic_inc(&memcg_drain_count);
1742 get_online_cpus();
1743 for_each_online_cpu(cpu) {
1744 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
1745 schedule_work_on(cpu, &stock->work);
1746 }
1747 put_online_cpus();
1748 atomic_dec(&memcg_drain_count);
1749 /* We don't wait for flush_work */
1750}
1751
1752/* This is a synchronous drain interface. */
1753static void drain_all_stock_sync(void)
1754{
1755 /* called when force_empty is called */
1756 atomic_inc(&memcg_drain_count);
1757 schedule_on_each_cpu(drain_local_stock);
1758 atomic_dec(&memcg_drain_count);
1759}
1760
711d3d2c
KH
1761/*
1762 * This function drains percpu counter value from DEAD cpu and
1763 * move it to local cpu. Note that this function can be preempted.
1764 */
1765static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *mem, int cpu)
1766{
1767 int i;
1768
1769 spin_lock(&mem->pcp_counter_lock);
1770 for (i = 0; i < MEM_CGROUP_STAT_DATA; i++) {
1771 s64 x = per_cpu(mem->stat->count[i], cpu);
1772
1773 per_cpu(mem->stat->count[i], cpu) = 0;
1774 mem->nocpu_base.count[i] += x;
1775 }
1489ebad
KH
1776 /* need to clear ON_MOVE value, works as a kind of lock. */
1777 per_cpu(mem->stat->count[MEM_CGROUP_ON_MOVE], cpu) = 0;
1778 spin_unlock(&mem->pcp_counter_lock);
1779}
1780
1781static void synchronize_mem_cgroup_on_move(struct mem_cgroup *mem, int cpu)
1782{
1783 int idx = MEM_CGROUP_ON_MOVE;
1784
1785 spin_lock(&mem->pcp_counter_lock);
1786 per_cpu(mem->stat->count[idx], cpu) = mem->nocpu_base.count[idx];
711d3d2c
KH
1787 spin_unlock(&mem->pcp_counter_lock);
1788}
1789
1790static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
cdec2e42
KH
1791 unsigned long action,
1792 void *hcpu)
1793{
1794 int cpu = (unsigned long)hcpu;
1795 struct memcg_stock_pcp *stock;
711d3d2c 1796 struct mem_cgroup *iter;
cdec2e42 1797
1489ebad
KH
1798 if ((action == CPU_ONLINE)) {
1799 for_each_mem_cgroup_all(iter)
1800 synchronize_mem_cgroup_on_move(iter, cpu);
1801 return NOTIFY_OK;
1802 }
1803
711d3d2c 1804 if ((action != CPU_DEAD) || action != CPU_DEAD_FROZEN)
cdec2e42 1805 return NOTIFY_OK;
711d3d2c
KH
1806
1807 for_each_mem_cgroup_all(iter)
1808 mem_cgroup_drain_pcp_counter(iter, cpu);
1809
cdec2e42
KH
1810 stock = &per_cpu(memcg_stock, cpu);
1811 drain_stock(stock);
1812 return NOTIFY_OK;
1813}
1814
4b534334
KH
1815
1816/* See __mem_cgroup_try_charge() for details */
1817enum {
1818 CHARGE_OK, /* success */
1819 CHARGE_RETRY, /* need to retry but retry is not bad */
1820 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
1821 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
1822 CHARGE_OOM_DIE, /* the current is killed because of OOM */
1823};
1824
1825static int __mem_cgroup_do_charge(struct mem_cgroup *mem, gfp_t gfp_mask,
1826 int csize, bool oom_check)
1827{
1828 struct mem_cgroup *mem_over_limit;
1829 struct res_counter *fail_res;
1830 unsigned long flags = 0;
1831 int ret;
1832
1833 ret = res_counter_charge(&mem->res, csize, &fail_res);
1834
1835 if (likely(!ret)) {
1836 if (!do_swap_account)
1837 return CHARGE_OK;
1838 ret = res_counter_charge(&mem->memsw, csize, &fail_res);
1839 if (likely(!ret))
1840 return CHARGE_OK;
1841
1842 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
1843 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
1844 } else
1845 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
1846
1847 if (csize > PAGE_SIZE) /* change csize and retry */
1848 return CHARGE_RETRY;
1849
1850 if (!(gfp_mask & __GFP_WAIT))
1851 return CHARGE_WOULDBLOCK;
1852
1853 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, NULL,
1854 gfp_mask, flags);
1855 /*
1856 * try_to_free_mem_cgroup_pages() might not give us a full
1857 * picture of reclaim. Some pages are reclaimed and might be
1858 * moved to swap cache or just unmapped from the cgroup.
1859 * Check the limit again to see if the reclaim reduced the
1860 * current usage of the cgroup before giving up
1861 */
1862 if (ret || mem_cgroup_check_under_limit(mem_over_limit))
1863 return CHARGE_RETRY;
1864
1865 /*
1866 * At task move, charge accounts can be doubly counted. So, it's
1867 * better to wait until the end of task_move if something is going on.
1868 */
1869 if (mem_cgroup_wait_acct_move(mem_over_limit))
1870 return CHARGE_RETRY;
1871
1872 /* If we don't need to call oom-killer at el, return immediately */
1873 if (!oom_check)
1874 return CHARGE_NOMEM;
1875 /* check OOM */
1876 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask))
1877 return CHARGE_OOM_DIE;
1878
1879 return CHARGE_RETRY;
1880}
1881
f817ed48
KH
1882/*
1883 * Unlike exported interface, "oom" parameter is added. if oom==true,
1884 * oom-killer can be invoked.
8a9f3ccd 1885 */
f817ed48 1886static int __mem_cgroup_try_charge(struct mm_struct *mm,
ec168510
AA
1887 gfp_t gfp_mask,
1888 struct mem_cgroup **memcg, bool oom,
1889 int page_size)
8a9f3ccd 1890{
4b534334
KH
1891 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
1892 struct mem_cgroup *mem = NULL;
1893 int ret;
ec168510 1894 int csize = max(CHARGE_SIZE, (unsigned long) page_size);
a636b327 1895
867578cb
KH
1896 /*
1897 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
1898 * in system level. So, allow to go ahead dying process in addition to
1899 * MEMDIE process.
1900 */
1901 if (unlikely(test_thread_flag(TIF_MEMDIE)
1902 || fatal_signal_pending(current)))
1903 goto bypass;
a636b327 1904
8a9f3ccd 1905 /*
3be91277
HD
1906 * We always charge the cgroup the mm_struct belongs to.
1907 * The mm_struct's mem_cgroup changes on task migration if the
8a9f3ccd
BS
1908 * thread group leader migrates. It's possible that mm is not
1909 * set, if so charge the init_mm (happens for pagecache usage).
1910 */
f75ca962
KH
1911 if (!*memcg && !mm)
1912 goto bypass;
1913again:
1914 if (*memcg) { /* css should be a valid one */
4b534334 1915 mem = *memcg;
f75ca962
KH
1916 VM_BUG_ON(css_is_removed(&mem->css));
1917 if (mem_cgroup_is_root(mem))
1918 goto done;
ec168510 1919 if (page_size == PAGE_SIZE && consume_stock(mem))
f75ca962 1920 goto done;
4b534334
KH
1921 css_get(&mem->css);
1922 } else {
f75ca962 1923 struct task_struct *p;
54595fe2 1924
f75ca962
KH
1925 rcu_read_lock();
1926 p = rcu_dereference(mm->owner);
f75ca962 1927 /*
ebb76ce1
KH
1928 * Because we don't have task_lock(), "p" can exit.
1929 * In that case, "mem" can point to root or p can be NULL with
1930 * race with swapoff. Then, we have small risk of mis-accouning.
1931 * But such kind of mis-account by race always happens because
1932 * we don't have cgroup_mutex(). It's overkill and we allo that
1933 * small race, here.
1934 * (*) swapoff at el will charge against mm-struct not against
1935 * task-struct. So, mm->owner can be NULL.
f75ca962
KH
1936 */
1937 mem = mem_cgroup_from_task(p);
ebb76ce1 1938 if (!mem || mem_cgroup_is_root(mem)) {
f75ca962
KH
1939 rcu_read_unlock();
1940 goto done;
1941 }
ec168510 1942 if (page_size == PAGE_SIZE && consume_stock(mem)) {
f75ca962
KH
1943 /*
1944 * It seems dagerous to access memcg without css_get().
1945 * But considering how consume_stok works, it's not
1946 * necessary. If consume_stock success, some charges
1947 * from this memcg are cached on this cpu. So, we
1948 * don't need to call css_get()/css_tryget() before
1949 * calling consume_stock().
1950 */
1951 rcu_read_unlock();
1952 goto done;
1953 }
1954 /* after here, we may be blocked. we need to get refcnt */
1955 if (!css_tryget(&mem->css)) {
1956 rcu_read_unlock();
1957 goto again;
1958 }
1959 rcu_read_unlock();
1960 }
8a9f3ccd 1961
4b534334
KH
1962 do {
1963 bool oom_check;
7a81b88c 1964
4b534334 1965 /* If killed, bypass charge */
f75ca962
KH
1966 if (fatal_signal_pending(current)) {
1967 css_put(&mem->css);
4b534334 1968 goto bypass;
f75ca962 1969 }
6d61ef40 1970
4b534334
KH
1971 oom_check = false;
1972 if (oom && !nr_oom_retries) {
1973 oom_check = true;
1974 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
cdec2e42 1975 }
66e1707b 1976
4b534334 1977 ret = __mem_cgroup_do_charge(mem, gfp_mask, csize, oom_check);
8033b97c 1978
4b534334
KH
1979 switch (ret) {
1980 case CHARGE_OK:
1981 break;
1982 case CHARGE_RETRY: /* not in OOM situation but retry */
ec168510 1983 csize = page_size;
f75ca962
KH
1984 css_put(&mem->css);
1985 mem = NULL;
1986 goto again;
4b534334 1987 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
f75ca962 1988 css_put(&mem->css);
4b534334
KH
1989 goto nomem;
1990 case CHARGE_NOMEM: /* OOM routine works */
f75ca962
KH
1991 if (!oom) {
1992 css_put(&mem->css);
867578cb 1993 goto nomem;
f75ca962 1994 }
4b534334
KH
1995 /* If oom, we never return -ENOMEM */
1996 nr_oom_retries--;
1997 break;
1998 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
f75ca962 1999 css_put(&mem->css);
867578cb 2000 goto bypass;
66e1707b 2001 }
4b534334
KH
2002 } while (ret != CHARGE_OK);
2003
ec168510
AA
2004 if (csize > page_size)
2005 refill_stock(mem, csize - page_size);
f75ca962 2006 css_put(&mem->css);
0c3e73e8 2007done:
f75ca962 2008 *memcg = mem;
7a81b88c
KH
2009 return 0;
2010nomem:
f75ca962 2011 *memcg = NULL;
7a81b88c 2012 return -ENOMEM;
867578cb
KH
2013bypass:
2014 *memcg = NULL;
2015 return 0;
7a81b88c 2016}
8a9f3ccd 2017
a3032a2c
DN
2018/*
2019 * Somemtimes we have to undo a charge we got by try_charge().
2020 * This function is for that and do uncharge, put css's refcnt.
2021 * gotten by try_charge().
2022 */
854ffa8d
DN
2023static void __mem_cgroup_cancel_charge(struct mem_cgroup *mem,
2024 unsigned long count)
a3032a2c
DN
2025{
2026 if (!mem_cgroup_is_root(mem)) {
854ffa8d 2027 res_counter_uncharge(&mem->res, PAGE_SIZE * count);
a3032a2c 2028 if (do_swap_account)
854ffa8d 2029 res_counter_uncharge(&mem->memsw, PAGE_SIZE * count);
a3032a2c 2030 }
854ffa8d
DN
2031}
2032
ec168510
AA
2033static void mem_cgroup_cancel_charge(struct mem_cgroup *mem,
2034 int page_size)
854ffa8d 2035{
ec168510 2036 __mem_cgroup_cancel_charge(mem, page_size >> PAGE_SHIFT);
a3032a2c
DN
2037}
2038
a3b2d692
KH
2039/*
2040 * A helper function to get mem_cgroup from ID. must be called under
2041 * rcu_read_lock(). The caller must check css_is_removed() or some if
2042 * it's concern. (dropping refcnt from swap can be called against removed
2043 * memcg.)
2044 */
2045static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2046{
2047 struct cgroup_subsys_state *css;
2048
2049 /* ID 0 is unused ID */
2050 if (!id)
2051 return NULL;
2052 css = css_lookup(&mem_cgroup_subsys, id);
2053 if (!css)
2054 return NULL;
2055 return container_of(css, struct mem_cgroup, css);
2056}
2057
e42d9d5d 2058struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
b5a84319 2059{
e42d9d5d 2060 struct mem_cgroup *mem = NULL;
3c776e64 2061 struct page_cgroup *pc;
a3b2d692 2062 unsigned short id;
b5a84319
KH
2063 swp_entry_t ent;
2064
3c776e64
DN
2065 VM_BUG_ON(!PageLocked(page));
2066
3c776e64 2067 pc = lookup_page_cgroup(page);
c0bd3f63 2068 lock_page_cgroup(pc);
a3b2d692 2069 if (PageCgroupUsed(pc)) {
3c776e64 2070 mem = pc->mem_cgroup;
a3b2d692
KH
2071 if (mem && !css_tryget(&mem->css))
2072 mem = NULL;
e42d9d5d 2073 } else if (PageSwapCache(page)) {
3c776e64 2074 ent.val = page_private(page);
a3b2d692
KH
2075 id = lookup_swap_cgroup(ent);
2076 rcu_read_lock();
2077 mem = mem_cgroup_lookup(id);
2078 if (mem && !css_tryget(&mem->css))
2079 mem = NULL;
2080 rcu_read_unlock();
3c776e64 2081 }
c0bd3f63 2082 unlock_page_cgroup(pc);
b5a84319
KH
2083 return mem;
2084}
2085
7a81b88c 2086/*
a5e924f5 2087 * commit a charge got by __mem_cgroup_try_charge() and makes page_cgroup to be
7a81b88c
KH
2088 * USED state. If already USED, uncharge and return.
2089 */
152c9ccb
DN
2090static void ____mem_cgroup_commit_charge(struct mem_cgroup *mem,
2091 struct page_cgroup *pc,
2092 enum charge_type ctype)
7a81b88c 2093{
8a9f3ccd 2094 pc->mem_cgroup = mem;
261fb61a
KH
2095 /*
2096 * We access a page_cgroup asynchronously without lock_page_cgroup().
2097 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2098 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2099 * before USED bit, we need memory barrier here.
2100 * See mem_cgroup_add_lru_list(), etc.
2101 */
08e552c6 2102 smp_wmb();
4b3bde4c
BS
2103 switch (ctype) {
2104 case MEM_CGROUP_CHARGE_TYPE_CACHE:
2105 case MEM_CGROUP_CHARGE_TYPE_SHMEM:
2106 SetPageCgroupCache(pc);
2107 SetPageCgroupUsed(pc);
2108 break;
2109 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
2110 ClearPageCgroupCache(pc);
2111 SetPageCgroupUsed(pc);
2112 break;
2113 default:
2114 break;
2115 }
3be91277 2116
e401f176 2117 mem_cgroup_charge_statistics(mem, PageCgroupCache(pc), 1);
152c9ccb
DN
2118}
2119
2120static void __mem_cgroup_commit_charge(struct mem_cgroup *mem,
2121 struct page_cgroup *pc,
2122 enum charge_type ctype,
2123 int page_size)
2124{
2125 int i;
2126 int count = page_size >> PAGE_SHIFT;
2127
2128 /* try_charge() can return NULL to *memcg, taking care of it. */
2129 if (!mem)
2130 return;
2131
2132 lock_page_cgroup(pc);
2133 if (unlikely(PageCgroupUsed(pc))) {
2134 unlock_page_cgroup(pc);
2135 mem_cgroup_cancel_charge(mem, page_size);
2136 return;
2137 }
2138
2139 /*
2140 * we don't need page_cgroup_lock about tail pages, becase they are not
2141 * accessed by any other context at this point.
2142 */
2143 for (i = 0; i < count; i++)
2144 ____mem_cgroup_commit_charge(mem, pc + i, ctype);
52d4b9ac 2145
52d4b9ac 2146 unlock_page_cgroup(pc);
430e4863
KH
2147 /*
2148 * "charge_statistics" updated event counter. Then, check it.
2149 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2150 * if they exceeds softlimit.
2151 */
d2265e6f 2152 memcg_check_events(mem, pc->page);
7a81b88c 2153}
66e1707b 2154
f817ed48 2155/**
57f9fd7d 2156 * __mem_cgroup_move_account - move account of the page
f817ed48
KH
2157 * @pc: page_cgroup of the page.
2158 * @from: mem_cgroup which the page is moved from.
2159 * @to: mem_cgroup which the page is moved to. @from != @to.
854ffa8d 2160 * @uncharge: whether we should call uncharge and css_put against @from.
f817ed48
KH
2161 *
2162 * The caller must confirm following.
08e552c6 2163 * - page is not on LRU (isolate_page() is useful.)
57f9fd7d 2164 * - the pc is locked, used, and ->mem_cgroup points to @from.
f817ed48 2165 *
854ffa8d
DN
2166 * This function doesn't do "charge" nor css_get to new cgroup. It should be
2167 * done by a caller(__mem_cgroup_try_charge would be usefull). If @uncharge is
2168 * true, this function does "uncharge" from old cgroup, but it doesn't if
2169 * @uncharge is false, so a caller should do "uncharge".
f817ed48
KH
2170 */
2171
57f9fd7d 2172static void __mem_cgroup_move_account(struct page_cgroup *pc,
854ffa8d 2173 struct mem_cgroup *from, struct mem_cgroup *to, bool uncharge)
f817ed48 2174{
f817ed48 2175 VM_BUG_ON(from == to);
08e552c6 2176 VM_BUG_ON(PageLRU(pc->page));
112bc2e1 2177 VM_BUG_ON(!page_is_cgroup_locked(pc));
57f9fd7d
DN
2178 VM_BUG_ON(!PageCgroupUsed(pc));
2179 VM_BUG_ON(pc->mem_cgroup != from);
f817ed48 2180
8725d541 2181 if (PageCgroupFileMapped(pc)) {
c62b1a3b
KH
2182 /* Update mapped_file data for mem_cgroup */
2183 preempt_disable();
2184 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2185 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2186 preempt_enable();
d69b042f 2187 }
e401f176 2188 mem_cgroup_charge_statistics(from, PageCgroupCache(pc), -1);
854ffa8d
DN
2189 if (uncharge)
2190 /* This is not "cancel", but cancel_charge does all we need. */
ec168510 2191 mem_cgroup_cancel_charge(from, PAGE_SIZE);
d69b042f 2192
854ffa8d 2193 /* caller should have done css_get */
08e552c6 2194 pc->mem_cgroup = to;
e401f176 2195 mem_cgroup_charge_statistics(to, PageCgroupCache(pc), 1);
88703267
KH
2196 /*
2197 * We charges against "to" which may not have any tasks. Then, "to"
2198 * can be under rmdir(). But in current implementation, caller of
4ffef5fe
DN
2199 * this function is just force_empty() and move charge, so it's
2200 * garanteed that "to" is never removed. So, we don't check rmdir
2201 * status here.
88703267 2202 */
57f9fd7d
DN
2203}
2204
2205/*
2206 * check whether the @pc is valid for moving account and call
2207 * __mem_cgroup_move_account()
2208 */
2209static int mem_cgroup_move_account(struct page_cgroup *pc,
854ffa8d 2210 struct mem_cgroup *from, struct mem_cgroup *to, bool uncharge)
57f9fd7d
DN
2211{
2212 int ret = -EINVAL;
dbd4ea78
KH
2213 unsigned long flags;
2214
57f9fd7d
DN
2215 lock_page_cgroup(pc);
2216 if (PageCgroupUsed(pc) && pc->mem_cgroup == from) {
dbd4ea78 2217 move_lock_page_cgroup(pc, &flags);
854ffa8d 2218 __mem_cgroup_move_account(pc, from, to, uncharge);
dbd4ea78 2219 move_unlock_page_cgroup(pc, &flags);
57f9fd7d
DN
2220 ret = 0;
2221 }
2222 unlock_page_cgroup(pc);
d2265e6f
KH
2223 /*
2224 * check events
2225 */
2226 memcg_check_events(to, pc->page);
2227 memcg_check_events(from, pc->page);
f817ed48
KH
2228 return ret;
2229}
2230
2231/*
2232 * move charges to its parent.
2233 */
2234
2235static int mem_cgroup_move_parent(struct page_cgroup *pc,
2236 struct mem_cgroup *child,
2237 gfp_t gfp_mask)
2238{
08e552c6 2239 struct page *page = pc->page;
f817ed48
KH
2240 struct cgroup *cg = child->css.cgroup;
2241 struct cgroup *pcg = cg->parent;
2242 struct mem_cgroup *parent;
f817ed48
KH
2243 int ret;
2244
2245 /* Is ROOT ? */
2246 if (!pcg)
2247 return -EINVAL;
2248
57f9fd7d
DN
2249 ret = -EBUSY;
2250 if (!get_page_unless_zero(page))
2251 goto out;
2252 if (isolate_lru_page(page))
2253 goto put;
08e552c6 2254
f817ed48 2255 parent = mem_cgroup_from_cont(pcg);
ec168510
AA
2256 ret = __mem_cgroup_try_charge(NULL, gfp_mask, &parent, false,
2257 PAGE_SIZE);
a636b327 2258 if (ret || !parent)
57f9fd7d 2259 goto put_back;
f817ed48 2260
854ffa8d
DN
2261 ret = mem_cgroup_move_account(pc, child, parent, true);
2262 if (ret)
ec168510 2263 mem_cgroup_cancel_charge(parent, PAGE_SIZE);
57f9fd7d 2264put_back:
08e552c6 2265 putback_lru_page(page);
57f9fd7d 2266put:
40d58138 2267 put_page(page);
57f9fd7d 2268out:
f817ed48
KH
2269 return ret;
2270}
2271
7a81b88c
KH
2272/*
2273 * Charge the memory controller for page usage.
2274 * Return
2275 * 0 if the charge was successful
2276 * < 0 if the cgroup is over its limit
2277 */
2278static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
73045c47 2279 gfp_t gfp_mask, enum charge_type ctype)
7a81b88c 2280{
73045c47 2281 struct mem_cgroup *mem = NULL;
7a81b88c
KH
2282 struct page_cgroup *pc;
2283 int ret;
ec168510
AA
2284 int page_size = PAGE_SIZE;
2285
37c2ac78 2286 if (PageTransHuge(page)) {
ec168510 2287 page_size <<= compound_order(page);
37c2ac78
AA
2288 VM_BUG_ON(!PageTransHuge(page));
2289 }
7a81b88c
KH
2290
2291 pc = lookup_page_cgroup(page);
2292 /* can happen at boot */
2293 if (unlikely(!pc))
2294 return 0;
2295 prefetchw(pc);
2296
ec168510 2297 ret = __mem_cgroup_try_charge(mm, gfp_mask, &mem, true, page_size);
a636b327 2298 if (ret || !mem)
7a81b88c
KH
2299 return ret;
2300
ec168510 2301 __mem_cgroup_commit_charge(mem, pc, ctype, page_size);
8a9f3ccd 2302 return 0;
8a9f3ccd
BS
2303}
2304
7a81b88c
KH
2305int mem_cgroup_newpage_charge(struct page *page,
2306 struct mm_struct *mm, gfp_t gfp_mask)
217bc319 2307{
f8d66542 2308 if (mem_cgroup_disabled())
cede86ac 2309 return 0;
69029cd5
KH
2310 /*
2311 * If already mapped, we don't have to account.
2312 * If page cache, page->mapping has address_space.
2313 * But page->mapping may have out-of-use anon_vma pointer,
2314 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
2315 * is NULL.
2316 */
2317 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
2318 return 0;
2319 if (unlikely(!mm))
2320 mm = &init_mm;
217bc319 2321 return mem_cgroup_charge_common(page, mm, gfp_mask,
73045c47 2322 MEM_CGROUP_CHARGE_TYPE_MAPPED);
217bc319
KH
2323}
2324
83aae4c7
DN
2325static void
2326__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
2327 enum charge_type ctype);
2328
e1a1cd59
BS
2329int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2330 gfp_t gfp_mask)
8697d331 2331{
b5a84319
KH
2332 int ret;
2333
f8d66542 2334 if (mem_cgroup_disabled())
cede86ac 2335 return 0;
52d4b9ac
KH
2336 if (PageCompound(page))
2337 return 0;
accf163e
KH
2338 /*
2339 * Corner case handling. This is called from add_to_page_cache()
2340 * in usual. But some FS (shmem) precharges this page before calling it
2341 * and call add_to_page_cache() with GFP_NOWAIT.
2342 *
2343 * For GFP_NOWAIT case, the page may be pre-charged before calling
2344 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
2345 * charge twice. (It works but has to pay a bit larger cost.)
b5a84319
KH
2346 * And when the page is SwapCache, it should take swap information
2347 * into account. This is under lock_page() now.
accf163e
KH
2348 */
2349 if (!(gfp_mask & __GFP_WAIT)) {
2350 struct page_cgroup *pc;
2351
52d4b9ac
KH
2352 pc = lookup_page_cgroup(page);
2353 if (!pc)
2354 return 0;
2355 lock_page_cgroup(pc);
2356 if (PageCgroupUsed(pc)) {
2357 unlock_page_cgroup(pc);
accf163e
KH
2358 return 0;
2359 }
52d4b9ac 2360 unlock_page_cgroup(pc);
accf163e
KH
2361 }
2362
73045c47 2363 if (unlikely(!mm))
8697d331 2364 mm = &init_mm;
accf163e 2365
c05555b5
KH
2366 if (page_is_file_cache(page))
2367 return mem_cgroup_charge_common(page, mm, gfp_mask,
73045c47 2368 MEM_CGROUP_CHARGE_TYPE_CACHE);
b5a84319 2369
83aae4c7
DN
2370 /* shmem */
2371 if (PageSwapCache(page)) {
73045c47
DN
2372 struct mem_cgroup *mem = NULL;
2373
83aae4c7
DN
2374 ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &mem);
2375 if (!ret)
2376 __mem_cgroup_commit_charge_swapin(page, mem,
2377 MEM_CGROUP_CHARGE_TYPE_SHMEM);
2378 } else
2379 ret = mem_cgroup_charge_common(page, mm, gfp_mask,
73045c47 2380 MEM_CGROUP_CHARGE_TYPE_SHMEM);
b5a84319 2381
b5a84319 2382 return ret;
e8589cc1
KH
2383}
2384
54595fe2
KH
2385/*
2386 * While swap-in, try_charge -> commit or cancel, the page is locked.
2387 * And when try_charge() successfully returns, one refcnt to memcg without
21ae2956 2388 * struct page_cgroup is acquired. This refcnt will be consumed by
54595fe2
KH
2389 * "commit()" or removed by "cancel()"
2390 */
8c7c6e34
KH
2391int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2392 struct page *page,
2393 gfp_t mask, struct mem_cgroup **ptr)
2394{
2395 struct mem_cgroup *mem;
54595fe2 2396 int ret;
8c7c6e34 2397
f8d66542 2398 if (mem_cgroup_disabled())
8c7c6e34
KH
2399 return 0;
2400
2401 if (!do_swap_account)
2402 goto charge_cur_mm;
8c7c6e34
KH
2403 /*
2404 * A racing thread's fault, or swapoff, may have already updated
407f9c8b
HD
2405 * the pte, and even removed page from swap cache: in those cases
2406 * do_swap_page()'s pte_same() test will fail; but there's also a
2407 * KSM case which does need to charge the page.
8c7c6e34
KH
2408 */
2409 if (!PageSwapCache(page))
407f9c8b 2410 goto charge_cur_mm;
e42d9d5d 2411 mem = try_get_mem_cgroup_from_page(page);
54595fe2
KH
2412 if (!mem)
2413 goto charge_cur_mm;
8c7c6e34 2414 *ptr = mem;
ec168510 2415 ret = __mem_cgroup_try_charge(NULL, mask, ptr, true, PAGE_SIZE);
54595fe2
KH
2416 css_put(&mem->css);
2417 return ret;
8c7c6e34
KH
2418charge_cur_mm:
2419 if (unlikely(!mm))
2420 mm = &init_mm;
ec168510 2421 return __mem_cgroup_try_charge(mm, mask, ptr, true, PAGE_SIZE);
8c7c6e34
KH
2422}
2423
83aae4c7
DN
2424static void
2425__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
2426 enum charge_type ctype)
7a81b88c
KH
2427{
2428 struct page_cgroup *pc;
2429
f8d66542 2430 if (mem_cgroup_disabled())
7a81b88c
KH
2431 return;
2432 if (!ptr)
2433 return;
88703267 2434 cgroup_exclude_rmdir(&ptr->css);
7a81b88c 2435 pc = lookup_page_cgroup(page);
544122e5 2436 mem_cgroup_lru_del_before_commit_swapcache(page);
ec168510 2437 __mem_cgroup_commit_charge(ptr, pc, ctype, PAGE_SIZE);
544122e5 2438 mem_cgroup_lru_add_after_commit_swapcache(page);
8c7c6e34
KH
2439 /*
2440 * Now swap is on-memory. This means this page may be
2441 * counted both as mem and swap....double count.
03f3c433
KH
2442 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2443 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2444 * may call delete_from_swap_cache() before reach here.
8c7c6e34 2445 */
03f3c433 2446 if (do_swap_account && PageSwapCache(page)) {
8c7c6e34 2447 swp_entry_t ent = {.val = page_private(page)};
a3b2d692 2448 unsigned short id;
8c7c6e34 2449 struct mem_cgroup *memcg;
a3b2d692
KH
2450
2451 id = swap_cgroup_record(ent, 0);
2452 rcu_read_lock();
2453 memcg = mem_cgroup_lookup(id);
8c7c6e34 2454 if (memcg) {
a3b2d692
KH
2455 /*
2456 * This recorded memcg can be obsolete one. So, avoid
2457 * calling css_tryget
2458 */
0c3e73e8 2459 if (!mem_cgroup_is_root(memcg))
4e649152 2460 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
0c3e73e8 2461 mem_cgroup_swap_statistics(memcg, false);
8c7c6e34
KH
2462 mem_cgroup_put(memcg);
2463 }
a3b2d692 2464 rcu_read_unlock();
8c7c6e34 2465 }
88703267
KH
2466 /*
2467 * At swapin, we may charge account against cgroup which has no tasks.
2468 * So, rmdir()->pre_destroy() can be called while we do this charge.
2469 * In that case, we need to call pre_destroy() again. check it here.
2470 */
2471 cgroup_release_and_wakeup_rmdir(&ptr->css);
7a81b88c
KH
2472}
2473
83aae4c7
DN
2474void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
2475{
2476 __mem_cgroup_commit_charge_swapin(page, ptr,
2477 MEM_CGROUP_CHARGE_TYPE_MAPPED);
2478}
2479
7a81b88c
KH
2480void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *mem)
2481{
f8d66542 2482 if (mem_cgroup_disabled())
7a81b88c
KH
2483 return;
2484 if (!mem)
2485 return;
ec168510 2486 mem_cgroup_cancel_charge(mem, PAGE_SIZE);
7a81b88c
KH
2487}
2488
569b846d 2489static void
ec168510
AA
2490__do_uncharge(struct mem_cgroup *mem, const enum charge_type ctype,
2491 int page_size)
569b846d
KH
2492{
2493 struct memcg_batch_info *batch = NULL;
2494 bool uncharge_memsw = true;
2495 /* If swapout, usage of swap doesn't decrease */
2496 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2497 uncharge_memsw = false;
569b846d
KH
2498
2499 batch = &current->memcg_batch;
2500 /*
2501 * In usual, we do css_get() when we remember memcg pointer.
2502 * But in this case, we keep res->usage until end of a series of
2503 * uncharges. Then, it's ok to ignore memcg's refcnt.
2504 */
2505 if (!batch->memcg)
2506 batch->memcg = mem;
3c11ecf4
KH
2507 /*
2508 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
2509 * In those cases, all pages freed continously can be expected to be in
2510 * the same cgroup and we have chance to coalesce uncharges.
2511 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
2512 * because we want to do uncharge as soon as possible.
2513 */
2514
2515 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
2516 goto direct_uncharge;
2517
ec168510
AA
2518 if (page_size != PAGE_SIZE)
2519 goto direct_uncharge;
2520
569b846d
KH
2521 /*
2522 * In typical case, batch->memcg == mem. This means we can
2523 * merge a series of uncharges to an uncharge of res_counter.
2524 * If not, we uncharge res_counter ony by one.
2525 */
2526 if (batch->memcg != mem)
2527 goto direct_uncharge;
2528 /* remember freed charge and uncharge it later */
2529 batch->bytes += PAGE_SIZE;
2530 if (uncharge_memsw)
2531 batch->memsw_bytes += PAGE_SIZE;
2532 return;
2533direct_uncharge:
ec168510 2534 res_counter_uncharge(&mem->res, page_size);
569b846d 2535 if (uncharge_memsw)
ec168510 2536 res_counter_uncharge(&mem->memsw, page_size);
3c11ecf4
KH
2537 if (unlikely(batch->memcg != mem))
2538 memcg_oom_recover(mem);
569b846d
KH
2539 return;
2540}
7a81b88c 2541
8a9f3ccd 2542/*
69029cd5 2543 * uncharge if !page_mapped(page)
8a9f3ccd 2544 */
8c7c6e34 2545static struct mem_cgroup *
69029cd5 2546__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
8a9f3ccd 2547{
152c9ccb
DN
2548 int i;
2549 int count;
8289546e 2550 struct page_cgroup *pc;
8c7c6e34 2551 struct mem_cgroup *mem = NULL;
ec168510 2552 int page_size = PAGE_SIZE;
8a9f3ccd 2553
f8d66542 2554 if (mem_cgroup_disabled())
8c7c6e34 2555 return NULL;
4077960e 2556
d13d1443 2557 if (PageSwapCache(page))
8c7c6e34 2558 return NULL;
d13d1443 2559
37c2ac78 2560 if (PageTransHuge(page)) {
ec168510 2561 page_size <<= compound_order(page);
37c2ac78
AA
2562 VM_BUG_ON(!PageTransHuge(page));
2563 }
ec168510 2564
152c9ccb 2565 count = page_size >> PAGE_SHIFT;
8697d331 2566 /*
3c541e14 2567 * Check if our page_cgroup is valid
8697d331 2568 */
52d4b9ac
KH
2569 pc = lookup_page_cgroup(page);
2570 if (unlikely(!pc || !PageCgroupUsed(pc)))
8c7c6e34 2571 return NULL;
b9c565d5 2572
52d4b9ac 2573 lock_page_cgroup(pc);
d13d1443 2574
8c7c6e34
KH
2575 mem = pc->mem_cgroup;
2576
d13d1443
KH
2577 if (!PageCgroupUsed(pc))
2578 goto unlock_out;
2579
2580 switch (ctype) {
2581 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
8a9478ca 2582 case MEM_CGROUP_CHARGE_TYPE_DROP:
ac39cf8c 2583 /* See mem_cgroup_prepare_migration() */
2584 if (page_mapped(page) || PageCgroupMigration(pc))
d13d1443
KH
2585 goto unlock_out;
2586 break;
2587 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
2588 if (!PageAnon(page)) { /* Shared memory */
2589 if (page->mapping && !page_is_file_cache(page))
2590 goto unlock_out;
2591 } else if (page_mapped(page)) /* Anon */
2592 goto unlock_out;
2593 break;
2594 default:
2595 break;
52d4b9ac 2596 }
d13d1443 2597
152c9ccb 2598 for (i = 0; i < count; i++)
e401f176 2599 mem_cgroup_charge_statistics(mem, PageCgroupCache(pc), -1);
04046e1a 2600
52d4b9ac 2601 ClearPageCgroupUsed(pc);
544122e5
KH
2602 /*
2603 * pc->mem_cgroup is not cleared here. It will be accessed when it's
2604 * freed from LRU. This is safe because uncharged page is expected not
2605 * to be reused (freed soon). Exception is SwapCache, it's handled by
2606 * special functions.
2607 */
b9c565d5 2608
52d4b9ac 2609 unlock_page_cgroup(pc);
f75ca962
KH
2610 /*
2611 * even after unlock, we have mem->res.usage here and this memcg
2612 * will never be freed.
2613 */
d2265e6f 2614 memcg_check_events(mem, page);
f75ca962
KH
2615 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
2616 mem_cgroup_swap_statistics(mem, true);
2617 mem_cgroup_get(mem);
2618 }
2619 if (!mem_cgroup_is_root(mem))
ec168510 2620 __do_uncharge(mem, ctype, page_size);
6d12e2d8 2621
8c7c6e34 2622 return mem;
d13d1443
KH
2623
2624unlock_out:
2625 unlock_page_cgroup(pc);
8c7c6e34 2626 return NULL;
3c541e14
BS
2627}
2628
69029cd5
KH
2629void mem_cgroup_uncharge_page(struct page *page)
2630{
52d4b9ac
KH
2631 /* early check. */
2632 if (page_mapped(page))
2633 return;
2634 if (page->mapping && !PageAnon(page))
2635 return;
69029cd5
KH
2636 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
2637}
2638
2639void mem_cgroup_uncharge_cache_page(struct page *page)
2640{
2641 VM_BUG_ON(page_mapped(page));
b7abea96 2642 VM_BUG_ON(page->mapping);
69029cd5
KH
2643 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
2644}
2645
569b846d
KH
2646/*
2647 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
2648 * In that cases, pages are freed continuously and we can expect pages
2649 * are in the same memcg. All these calls itself limits the number of
2650 * pages freed at once, then uncharge_start/end() is called properly.
2651 * This may be called prural(2) times in a context,
2652 */
2653
2654void mem_cgroup_uncharge_start(void)
2655{
2656 current->memcg_batch.do_batch++;
2657 /* We can do nest. */
2658 if (current->memcg_batch.do_batch == 1) {
2659 current->memcg_batch.memcg = NULL;
2660 current->memcg_batch.bytes = 0;
2661 current->memcg_batch.memsw_bytes = 0;
2662 }
2663}
2664
2665void mem_cgroup_uncharge_end(void)
2666{
2667 struct memcg_batch_info *batch = &current->memcg_batch;
2668
2669 if (!batch->do_batch)
2670 return;
2671
2672 batch->do_batch--;
2673 if (batch->do_batch) /* If stacked, do nothing. */
2674 return;
2675
2676 if (!batch->memcg)
2677 return;
2678 /*
2679 * This "batch->memcg" is valid without any css_get/put etc...
2680 * bacause we hide charges behind us.
2681 */
2682 if (batch->bytes)
2683 res_counter_uncharge(&batch->memcg->res, batch->bytes);
2684 if (batch->memsw_bytes)
2685 res_counter_uncharge(&batch->memcg->memsw, batch->memsw_bytes);
3c11ecf4 2686 memcg_oom_recover(batch->memcg);
569b846d
KH
2687 /* forget this pointer (for sanity check) */
2688 batch->memcg = NULL;
2689}
2690
e767e056 2691#ifdef CONFIG_SWAP
8c7c6e34 2692/*
e767e056 2693 * called after __delete_from_swap_cache() and drop "page" account.
8c7c6e34
KH
2694 * memcg information is recorded to swap_cgroup of "ent"
2695 */
8a9478ca
KH
2696void
2697mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
8c7c6e34
KH
2698{
2699 struct mem_cgroup *memcg;
8a9478ca
KH
2700 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
2701
2702 if (!swapout) /* this was a swap cache but the swap is unused ! */
2703 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
2704
2705 memcg = __mem_cgroup_uncharge_common(page, ctype);
8c7c6e34 2706
f75ca962
KH
2707 /*
2708 * record memcg information, if swapout && memcg != NULL,
2709 * mem_cgroup_get() was called in uncharge().
2710 */
2711 if (do_swap_account && swapout && memcg)
a3b2d692 2712 swap_cgroup_record(ent, css_id(&memcg->css));
8c7c6e34 2713}
e767e056 2714#endif
8c7c6e34
KH
2715
2716#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2717/*
2718 * called from swap_entry_free(). remove record in swap_cgroup and
2719 * uncharge "memsw" account.
2720 */
2721void mem_cgroup_uncharge_swap(swp_entry_t ent)
d13d1443 2722{
8c7c6e34 2723 struct mem_cgroup *memcg;
a3b2d692 2724 unsigned short id;
8c7c6e34
KH
2725
2726 if (!do_swap_account)
2727 return;
2728
a3b2d692
KH
2729 id = swap_cgroup_record(ent, 0);
2730 rcu_read_lock();
2731 memcg = mem_cgroup_lookup(id);
8c7c6e34 2732 if (memcg) {
a3b2d692
KH
2733 /*
2734 * We uncharge this because swap is freed.
2735 * This memcg can be obsolete one. We avoid calling css_tryget
2736 */
0c3e73e8 2737 if (!mem_cgroup_is_root(memcg))
4e649152 2738 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
0c3e73e8 2739 mem_cgroup_swap_statistics(memcg, false);
8c7c6e34
KH
2740 mem_cgroup_put(memcg);
2741 }
a3b2d692 2742 rcu_read_unlock();
d13d1443 2743}
02491447
DN
2744
2745/**
2746 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
2747 * @entry: swap entry to be moved
2748 * @from: mem_cgroup which the entry is moved from
2749 * @to: mem_cgroup which the entry is moved to
483c30b5 2750 * @need_fixup: whether we should fixup res_counters and refcounts.
02491447
DN
2751 *
2752 * It succeeds only when the swap_cgroup's record for this entry is the same
2753 * as the mem_cgroup's id of @from.
2754 *
2755 * Returns 0 on success, -EINVAL on failure.
2756 *
2757 * The caller must have charged to @to, IOW, called res_counter_charge() about
2758 * both res and memsw, and called css_get().
2759 */
2760static int mem_cgroup_move_swap_account(swp_entry_t entry,
483c30b5 2761 struct mem_cgroup *from, struct mem_cgroup *to, bool need_fixup)
02491447
DN
2762{
2763 unsigned short old_id, new_id;
2764
2765 old_id = css_id(&from->css);
2766 new_id = css_id(&to->css);
2767
2768 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
02491447 2769 mem_cgroup_swap_statistics(from, false);
483c30b5 2770 mem_cgroup_swap_statistics(to, true);
02491447 2771 /*
483c30b5
DN
2772 * This function is only called from task migration context now.
2773 * It postpones res_counter and refcount handling till the end
2774 * of task migration(mem_cgroup_clear_mc()) for performance
2775 * improvement. But we cannot postpone mem_cgroup_get(to)
2776 * because if the process that has been moved to @to does
2777 * swap-in, the refcount of @to might be decreased to 0.
02491447 2778 */
02491447 2779 mem_cgroup_get(to);
483c30b5
DN
2780 if (need_fixup) {
2781 if (!mem_cgroup_is_root(from))
2782 res_counter_uncharge(&from->memsw, PAGE_SIZE);
2783 mem_cgroup_put(from);
2784 /*
2785 * we charged both to->res and to->memsw, so we should
2786 * uncharge to->res.
2787 */
2788 if (!mem_cgroup_is_root(to))
2789 res_counter_uncharge(&to->res, PAGE_SIZE);
483c30b5 2790 }
02491447
DN
2791 return 0;
2792 }
2793 return -EINVAL;
2794}
2795#else
2796static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
483c30b5 2797 struct mem_cgroup *from, struct mem_cgroup *to, bool need_fixup)
02491447
DN
2798{
2799 return -EINVAL;
2800}
8c7c6e34 2801#endif
d13d1443 2802
ae41be37 2803/*
01b1ae63
KH
2804 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
2805 * page belongs to.
ae41be37 2806 */
ac39cf8c 2807int mem_cgroup_prepare_migration(struct page *page,
2808 struct page *newpage, struct mem_cgroup **ptr)
ae41be37
KH
2809{
2810 struct page_cgroup *pc;
e8589cc1 2811 struct mem_cgroup *mem = NULL;
ac39cf8c 2812 enum charge_type ctype;
e8589cc1 2813 int ret = 0;
8869b8f6 2814
ec168510 2815 VM_BUG_ON(PageTransHuge(page));
f8d66542 2816 if (mem_cgroup_disabled())
4077960e
BS
2817 return 0;
2818
52d4b9ac
KH
2819 pc = lookup_page_cgroup(page);
2820 lock_page_cgroup(pc);
2821 if (PageCgroupUsed(pc)) {
e8589cc1
KH
2822 mem = pc->mem_cgroup;
2823 css_get(&mem->css);
ac39cf8c 2824 /*
2825 * At migrating an anonymous page, its mapcount goes down
2826 * to 0 and uncharge() will be called. But, even if it's fully
2827 * unmapped, migration may fail and this page has to be
2828 * charged again. We set MIGRATION flag here and delay uncharge
2829 * until end_migration() is called
2830 *
2831 * Corner Case Thinking
2832 * A)
2833 * When the old page was mapped as Anon and it's unmap-and-freed
2834 * while migration was ongoing.
2835 * If unmap finds the old page, uncharge() of it will be delayed
2836 * until end_migration(). If unmap finds a new page, it's
2837 * uncharged when it make mapcount to be 1->0. If unmap code
2838 * finds swap_migration_entry, the new page will not be mapped
2839 * and end_migration() will find it(mapcount==0).
2840 *
2841 * B)
2842 * When the old page was mapped but migraion fails, the kernel
2843 * remaps it. A charge for it is kept by MIGRATION flag even
2844 * if mapcount goes down to 0. We can do remap successfully
2845 * without charging it again.
2846 *
2847 * C)
2848 * The "old" page is under lock_page() until the end of
2849 * migration, so, the old page itself will not be swapped-out.
2850 * If the new page is swapped out before end_migraton, our
2851 * hook to usual swap-out path will catch the event.
2852 */
2853 if (PageAnon(page))
2854 SetPageCgroupMigration(pc);
e8589cc1 2855 }
52d4b9ac 2856 unlock_page_cgroup(pc);
ac39cf8c 2857 /*
2858 * If the page is not charged at this point,
2859 * we return here.
2860 */
2861 if (!mem)
2862 return 0;
01b1ae63 2863
93d5c9be 2864 *ptr = mem;
ec168510 2865 ret = __mem_cgroup_try_charge(NULL, GFP_KERNEL, ptr, false, PAGE_SIZE);
ac39cf8c 2866 css_put(&mem->css);/* drop extra refcnt */
2867 if (ret || *ptr == NULL) {
2868 if (PageAnon(page)) {
2869 lock_page_cgroup(pc);
2870 ClearPageCgroupMigration(pc);
2871 unlock_page_cgroup(pc);
2872 /*
2873 * The old page may be fully unmapped while we kept it.
2874 */
2875 mem_cgroup_uncharge_page(page);
2876 }
2877 return -ENOMEM;
e8589cc1 2878 }
ac39cf8c 2879 /*
2880 * We charge new page before it's used/mapped. So, even if unlock_page()
2881 * is called before end_migration, we can catch all events on this new
2882 * page. In the case new page is migrated but not remapped, new page's
2883 * mapcount will be finally 0 and we call uncharge in end_migration().
2884 */
2885 pc = lookup_page_cgroup(newpage);
2886 if (PageAnon(page))
2887 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
2888 else if (page_is_file_cache(page))
2889 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
2890 else
2891 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
ec168510 2892 __mem_cgroup_commit_charge(mem, pc, ctype, PAGE_SIZE);
e8589cc1 2893 return ret;
ae41be37 2894}
8869b8f6 2895
69029cd5 2896/* remove redundant charge if migration failed*/
01b1ae63 2897void mem_cgroup_end_migration(struct mem_cgroup *mem,
50de1dd9 2898 struct page *oldpage, struct page *newpage, bool migration_ok)
ae41be37 2899{
ac39cf8c 2900 struct page *used, *unused;
01b1ae63 2901 struct page_cgroup *pc;
01b1ae63
KH
2902
2903 if (!mem)
2904 return;
ac39cf8c 2905 /* blocks rmdir() */
88703267 2906 cgroup_exclude_rmdir(&mem->css);
50de1dd9 2907 if (!migration_ok) {
ac39cf8c 2908 used = oldpage;
2909 unused = newpage;
01b1ae63 2910 } else {
ac39cf8c 2911 used = newpage;
01b1ae63
KH
2912 unused = oldpage;
2913 }
69029cd5 2914 /*
ac39cf8c 2915 * We disallowed uncharge of pages under migration because mapcount
2916 * of the page goes down to zero, temporarly.
2917 * Clear the flag and check the page should be charged.
01b1ae63 2918 */
ac39cf8c 2919 pc = lookup_page_cgroup(oldpage);
2920 lock_page_cgroup(pc);
2921 ClearPageCgroupMigration(pc);
2922 unlock_page_cgroup(pc);
01b1ae63 2923
ac39cf8c 2924 __mem_cgroup_uncharge_common(unused, MEM_CGROUP_CHARGE_TYPE_FORCE);
2925
01b1ae63 2926 /*
ac39cf8c 2927 * If a page is a file cache, radix-tree replacement is very atomic
2928 * and we can skip this check. When it was an Anon page, its mapcount
2929 * goes down to 0. But because we added MIGRATION flage, it's not
2930 * uncharged yet. There are several case but page->mapcount check
2931 * and USED bit check in mem_cgroup_uncharge_page() will do enough
2932 * check. (see prepare_charge() also)
69029cd5 2933 */
ac39cf8c 2934 if (PageAnon(used))
2935 mem_cgroup_uncharge_page(used);
88703267 2936 /*
ac39cf8c 2937 * At migration, we may charge account against cgroup which has no
2938 * tasks.
88703267
KH
2939 * So, rmdir()->pre_destroy() can be called while we do this charge.
2940 * In that case, we need to call pre_destroy() again. check it here.
2941 */
2942 cgroup_release_and_wakeup_rmdir(&mem->css);
ae41be37 2943}
78fb7466 2944
c9b0ed51 2945/*
ae3abae6
DN
2946 * A call to try to shrink memory usage on charge failure at shmem's swapin.
2947 * Calling hierarchical_reclaim is not enough because we should update
2948 * last_oom_jiffies to prevent pagefault_out_of_memory from invoking global OOM.
2949 * Moreover considering hierarchy, we should reclaim from the mem_over_limit,
2950 * not from the memcg which this page would be charged to.
2951 * try_charge_swapin does all of these works properly.
c9b0ed51 2952 */
ae3abae6 2953int mem_cgroup_shmem_charge_fallback(struct page *page,
b5a84319
KH
2954 struct mm_struct *mm,
2955 gfp_t gfp_mask)
c9b0ed51 2956{
b5a84319 2957 struct mem_cgroup *mem = NULL;
ae3abae6 2958 int ret;
c9b0ed51 2959
f8d66542 2960 if (mem_cgroup_disabled())
cede86ac 2961 return 0;
c9b0ed51 2962
ae3abae6
DN
2963 ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &mem);
2964 if (!ret)
2965 mem_cgroup_cancel_charge_swapin(mem); /* it does !mem check */
c9b0ed51 2966
ae3abae6 2967 return ret;
c9b0ed51
KH
2968}
2969
8c7c6e34
KH
2970static DEFINE_MUTEX(set_limit_mutex);
2971
d38d2a75 2972static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
8c7c6e34 2973 unsigned long long val)
628f4235 2974{
81d39c20 2975 int retry_count;
3c11ecf4 2976 u64 memswlimit, memlimit;
628f4235 2977 int ret = 0;
81d39c20
KH
2978 int children = mem_cgroup_count_children(memcg);
2979 u64 curusage, oldusage;
3c11ecf4 2980 int enlarge;
81d39c20
KH
2981
2982 /*
2983 * For keeping hierarchical_reclaim simple, how long we should retry
2984 * is depends on callers. We set our retry-count to be function
2985 * of # of children which we should visit in this loop.
2986 */
2987 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
2988
2989 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
628f4235 2990
3c11ecf4 2991 enlarge = 0;
8c7c6e34 2992 while (retry_count) {
628f4235
KH
2993 if (signal_pending(current)) {
2994 ret = -EINTR;
2995 break;
2996 }
8c7c6e34
KH
2997 /*
2998 * Rather than hide all in some function, I do this in
2999 * open coded manner. You see what this really does.
3000 * We have to guarantee mem->res.limit < mem->memsw.limit.
3001 */
3002 mutex_lock(&set_limit_mutex);
3003 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3004 if (memswlimit < val) {
3005 ret = -EINVAL;
3006 mutex_unlock(&set_limit_mutex);
628f4235
KH
3007 break;
3008 }
3c11ecf4
KH
3009
3010 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3011 if (memlimit < val)
3012 enlarge = 1;
3013
8c7c6e34 3014 ret = res_counter_set_limit(&memcg->res, val);
22a668d7
KH
3015 if (!ret) {
3016 if (memswlimit == val)
3017 memcg->memsw_is_minimum = true;
3018 else
3019 memcg->memsw_is_minimum = false;
3020 }
8c7c6e34
KH
3021 mutex_unlock(&set_limit_mutex);
3022
3023 if (!ret)
3024 break;
3025
aa20d489 3026 mem_cgroup_hierarchical_reclaim(memcg, NULL, GFP_KERNEL,
4e416953 3027 MEM_CGROUP_RECLAIM_SHRINK);
81d39c20
KH
3028 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3029 /* Usage is reduced ? */
3030 if (curusage >= oldusage)
3031 retry_count--;
3032 else
3033 oldusage = curusage;
8c7c6e34 3034 }
3c11ecf4
KH
3035 if (!ret && enlarge)
3036 memcg_oom_recover(memcg);
14797e23 3037
8c7c6e34
KH
3038 return ret;
3039}
3040
338c8431
LZ
3041static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3042 unsigned long long val)
8c7c6e34 3043{
81d39c20 3044 int retry_count;
3c11ecf4 3045 u64 memlimit, memswlimit, oldusage, curusage;
81d39c20
KH
3046 int children = mem_cgroup_count_children(memcg);
3047 int ret = -EBUSY;
3c11ecf4 3048 int enlarge = 0;
8c7c6e34 3049
81d39c20
KH
3050 /* see mem_cgroup_resize_res_limit */
3051 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3052 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
8c7c6e34
KH
3053 while (retry_count) {
3054 if (signal_pending(current)) {
3055 ret = -EINTR;
3056 break;
3057 }
3058 /*
3059 * Rather than hide all in some function, I do this in
3060 * open coded manner. You see what this really does.
3061 * We have to guarantee mem->res.limit < mem->memsw.limit.
3062 */
3063 mutex_lock(&set_limit_mutex);
3064 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3065 if (memlimit > val) {
3066 ret = -EINVAL;
3067 mutex_unlock(&set_limit_mutex);
3068 break;
3069 }
3c11ecf4
KH
3070 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3071 if (memswlimit < val)
3072 enlarge = 1;
8c7c6e34 3073 ret = res_counter_set_limit(&memcg->memsw, val);
22a668d7
KH
3074 if (!ret) {
3075 if (memlimit == val)
3076 memcg->memsw_is_minimum = true;
3077 else
3078 memcg->memsw_is_minimum = false;
3079 }
8c7c6e34
KH
3080 mutex_unlock(&set_limit_mutex);
3081
3082 if (!ret)
3083 break;
3084
4e416953 3085 mem_cgroup_hierarchical_reclaim(memcg, NULL, GFP_KERNEL,
75822b44
BS
3086 MEM_CGROUP_RECLAIM_NOSWAP |
3087 MEM_CGROUP_RECLAIM_SHRINK);
8c7c6e34 3088 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
81d39c20 3089 /* Usage is reduced ? */
8c7c6e34 3090 if (curusage >= oldusage)
628f4235 3091 retry_count--;
81d39c20
KH
3092 else
3093 oldusage = curusage;
628f4235 3094 }
3c11ecf4
KH
3095 if (!ret && enlarge)
3096 memcg_oom_recover(memcg);
628f4235
KH
3097 return ret;
3098}
3099
4e416953 3100unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
00918b6a 3101 gfp_t gfp_mask)
4e416953
BS
3102{
3103 unsigned long nr_reclaimed = 0;
3104 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3105 unsigned long reclaimed;
3106 int loop = 0;
3107 struct mem_cgroup_tree_per_zone *mctz;
ef8745c1 3108 unsigned long long excess;
4e416953
BS
3109
3110 if (order > 0)
3111 return 0;
3112
00918b6a 3113 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
4e416953
BS
3114 /*
3115 * This loop can run a while, specially if mem_cgroup's continuously
3116 * keep exceeding their soft limit and putting the system under
3117 * pressure
3118 */
3119 do {
3120 if (next_mz)
3121 mz = next_mz;
3122 else
3123 mz = mem_cgroup_largest_soft_limit_node(mctz);
3124 if (!mz)
3125 break;
3126
3127 reclaimed = mem_cgroup_hierarchical_reclaim(mz->mem, zone,
3128 gfp_mask,
3129 MEM_CGROUP_RECLAIM_SOFT);
3130 nr_reclaimed += reclaimed;
3131 spin_lock(&mctz->lock);
3132
3133 /*
3134 * If we failed to reclaim anything from this memory cgroup
3135 * it is time to move on to the next cgroup
3136 */
3137 next_mz = NULL;
3138 if (!reclaimed) {
3139 do {
3140 /*
3141 * Loop until we find yet another one.
3142 *
3143 * By the time we get the soft_limit lock
3144 * again, someone might have aded the
3145 * group back on the RB tree. Iterate to
3146 * make sure we get a different mem.
3147 * mem_cgroup_largest_soft_limit_node returns
3148 * NULL if no other cgroup is present on
3149 * the tree
3150 */
3151 next_mz =
3152 __mem_cgroup_largest_soft_limit_node(mctz);
3153 if (next_mz == mz) {
3154 css_put(&next_mz->mem->css);
3155 next_mz = NULL;
3156 } else /* next_mz == NULL or other memcg */
3157 break;
3158 } while (1);
3159 }
4e416953 3160 __mem_cgroup_remove_exceeded(mz->mem, mz, mctz);
ef8745c1 3161 excess = res_counter_soft_limit_excess(&mz->mem->res);
4e416953
BS
3162 /*
3163 * One school of thought says that we should not add
3164 * back the node to the tree if reclaim returns 0.
3165 * But our reclaim could return 0, simply because due
3166 * to priority we are exposing a smaller subset of
3167 * memory to reclaim from. Consider this as a longer
3168 * term TODO.
3169 */
ef8745c1
KH
3170 /* If excess == 0, no tree ops */
3171 __mem_cgroup_insert_exceeded(mz->mem, mz, mctz, excess);
4e416953
BS
3172 spin_unlock(&mctz->lock);
3173 css_put(&mz->mem->css);
3174 loop++;
3175 /*
3176 * Could not reclaim anything and there are no more
3177 * mem cgroups to try or we seem to be looping without
3178 * reclaiming anything.
3179 */
3180 if (!nr_reclaimed &&
3181 (next_mz == NULL ||
3182 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3183 break;
3184 } while (!nr_reclaimed);
3185 if (next_mz)
3186 css_put(&next_mz->mem->css);
3187 return nr_reclaimed;
3188}
3189
cc847582
KH
3190/*
3191 * This routine traverse page_cgroup in given list and drop them all.
cc847582
KH
3192 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
3193 */
f817ed48 3194static int mem_cgroup_force_empty_list(struct mem_cgroup *mem,
08e552c6 3195 int node, int zid, enum lru_list lru)
cc847582 3196{
08e552c6
KH
3197 struct zone *zone;
3198 struct mem_cgroup_per_zone *mz;
f817ed48 3199 struct page_cgroup *pc, *busy;
08e552c6 3200 unsigned long flags, loop;
072c56c1 3201 struct list_head *list;
f817ed48 3202 int ret = 0;
072c56c1 3203
08e552c6
KH
3204 zone = &NODE_DATA(node)->node_zones[zid];
3205 mz = mem_cgroup_zoneinfo(mem, node, zid);
b69408e8 3206 list = &mz->lists[lru];
cc847582 3207
f817ed48
KH
3208 loop = MEM_CGROUP_ZSTAT(mz, lru);
3209 /* give some margin against EBUSY etc...*/
3210 loop += 256;
3211 busy = NULL;
3212 while (loop--) {
3213 ret = 0;
08e552c6 3214 spin_lock_irqsave(&zone->lru_lock, flags);
f817ed48 3215 if (list_empty(list)) {
08e552c6 3216 spin_unlock_irqrestore(&zone->lru_lock, flags);
52d4b9ac 3217 break;
f817ed48
KH
3218 }
3219 pc = list_entry(list->prev, struct page_cgroup, lru);
3220 if (busy == pc) {
3221 list_move(&pc->lru, list);
648bcc77 3222 busy = NULL;
08e552c6 3223 spin_unlock_irqrestore(&zone->lru_lock, flags);
f817ed48
KH
3224 continue;
3225 }
08e552c6 3226 spin_unlock_irqrestore(&zone->lru_lock, flags);
f817ed48 3227
2c26fdd7 3228 ret = mem_cgroup_move_parent(pc, mem, GFP_KERNEL);
f817ed48 3229 if (ret == -ENOMEM)
52d4b9ac 3230 break;
f817ed48
KH
3231
3232 if (ret == -EBUSY || ret == -EINVAL) {
3233 /* found lock contention or "pc" is obsolete. */
3234 busy = pc;
3235 cond_resched();
3236 } else
3237 busy = NULL;
cc847582 3238 }
08e552c6 3239
f817ed48
KH
3240 if (!ret && !list_empty(list))
3241 return -EBUSY;
3242 return ret;
cc847582
KH
3243}
3244
3245/*
3246 * make mem_cgroup's charge to be 0 if there is no task.
3247 * This enables deleting this mem_cgroup.
3248 */
c1e862c1 3249static int mem_cgroup_force_empty(struct mem_cgroup *mem, bool free_all)
cc847582 3250{
f817ed48
KH
3251 int ret;
3252 int node, zid, shrink;
3253 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
c1e862c1 3254 struct cgroup *cgrp = mem->css.cgroup;
8869b8f6 3255
cc847582 3256 css_get(&mem->css);
f817ed48
KH
3257
3258 shrink = 0;
c1e862c1
KH
3259 /* should free all ? */
3260 if (free_all)
3261 goto try_to_free;
f817ed48 3262move_account:
fce66477 3263 do {
f817ed48 3264 ret = -EBUSY;
c1e862c1
KH
3265 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
3266 goto out;
3267 ret = -EINTR;
3268 if (signal_pending(current))
cc847582 3269 goto out;
52d4b9ac
KH
3270 /* This is for making all *used* pages to be on LRU. */
3271 lru_add_drain_all();
cdec2e42 3272 drain_all_stock_sync();
f817ed48 3273 ret = 0;
32047e2a 3274 mem_cgroup_start_move(mem);
299b4eaa 3275 for_each_node_state(node, N_HIGH_MEMORY) {
f817ed48 3276 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
b69408e8 3277 enum lru_list l;
f817ed48
KH
3278 for_each_lru(l) {
3279 ret = mem_cgroup_force_empty_list(mem,
08e552c6 3280 node, zid, l);
f817ed48
KH
3281 if (ret)
3282 break;
3283 }
1ecaab2b 3284 }
f817ed48
KH
3285 if (ret)
3286 break;
3287 }
32047e2a 3288 mem_cgroup_end_move(mem);
3c11ecf4 3289 memcg_oom_recover(mem);
f817ed48
KH
3290 /* it seems parent cgroup doesn't have enough mem */
3291 if (ret == -ENOMEM)
3292 goto try_to_free;
52d4b9ac 3293 cond_resched();
fce66477
DN
3294 /* "ret" should also be checked to ensure all lists are empty. */
3295 } while (mem->res.usage > 0 || ret);
cc847582
KH
3296out:
3297 css_put(&mem->css);
3298 return ret;
f817ed48
KH
3299
3300try_to_free:
c1e862c1
KH
3301 /* returns EBUSY if there is a task or if we come here twice. */
3302 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
f817ed48
KH
3303 ret = -EBUSY;
3304 goto out;
3305 }
c1e862c1
KH
3306 /* we call try-to-free pages for make this cgroup empty */
3307 lru_add_drain_all();
f817ed48
KH
3308 /* try to free all pages in this cgroup */
3309 shrink = 1;
3310 while (nr_retries && mem->res.usage > 0) {
3311 int progress;
c1e862c1
KH
3312
3313 if (signal_pending(current)) {
3314 ret = -EINTR;
3315 goto out;
3316 }
a7885eb8
KM
3317 progress = try_to_free_mem_cgroup_pages(mem, GFP_KERNEL,
3318 false, get_swappiness(mem));
c1e862c1 3319 if (!progress) {
f817ed48 3320 nr_retries--;
c1e862c1 3321 /* maybe some writeback is necessary */
8aa7e847 3322 congestion_wait(BLK_RW_ASYNC, HZ/10);
c1e862c1 3323 }
f817ed48
KH
3324
3325 }
08e552c6 3326 lru_add_drain();
f817ed48 3327 /* try move_account...there may be some *locked* pages. */
fce66477 3328 goto move_account;
cc847582
KH
3329}
3330
c1e862c1
KH
3331int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
3332{
3333 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3334}
3335
3336
18f59ea7
BS
3337static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3338{
3339 return mem_cgroup_from_cont(cont)->use_hierarchy;
3340}
3341
3342static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3343 u64 val)
3344{
3345 int retval = 0;
3346 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
3347 struct cgroup *parent = cont->parent;
3348 struct mem_cgroup *parent_mem = NULL;
3349
3350 if (parent)
3351 parent_mem = mem_cgroup_from_cont(parent);
3352
3353 cgroup_lock();
3354 /*
af901ca1 3355 * If parent's use_hierarchy is set, we can't make any modifications
18f59ea7
BS
3356 * in the child subtrees. If it is unset, then the change can
3357 * occur, provided the current cgroup has no children.
3358 *
3359 * For the root cgroup, parent_mem is NULL, we allow value to be
3360 * set if there are no children.
3361 */
3362 if ((!parent_mem || !parent_mem->use_hierarchy) &&
3363 (val == 1 || val == 0)) {
3364 if (list_empty(&cont->children))
3365 mem->use_hierarchy = val;
3366 else
3367 retval = -EBUSY;
3368 } else
3369 retval = -EINVAL;
3370 cgroup_unlock();
3371
3372 return retval;
3373}
3374
0c3e73e8 3375
7d74b06f
KH
3376static u64 mem_cgroup_get_recursive_idx_stat(struct mem_cgroup *mem,
3377 enum mem_cgroup_stat_index idx)
0c3e73e8 3378{
7d74b06f
KH
3379 struct mem_cgroup *iter;
3380 s64 val = 0;
0c3e73e8 3381
7d74b06f
KH
3382 /* each per cpu's value can be minus.Then, use s64 */
3383 for_each_mem_cgroup_tree(iter, mem)
3384 val += mem_cgroup_read_stat(iter, idx);
3385
3386 if (val < 0) /* race ? */
3387 val = 0;
3388 return val;
0c3e73e8
BS
3389}
3390
104f3928
KS
3391static inline u64 mem_cgroup_usage(struct mem_cgroup *mem, bool swap)
3392{
7d74b06f 3393 u64 val;
104f3928
KS
3394
3395 if (!mem_cgroup_is_root(mem)) {
3396 if (!swap)
3397 return res_counter_read_u64(&mem->res, RES_USAGE);
3398 else
3399 return res_counter_read_u64(&mem->memsw, RES_USAGE);
3400 }
3401
7d74b06f
KH
3402 val = mem_cgroup_get_recursive_idx_stat(mem, MEM_CGROUP_STAT_CACHE);
3403 val += mem_cgroup_get_recursive_idx_stat(mem, MEM_CGROUP_STAT_RSS);
104f3928 3404
7d74b06f
KH
3405 if (swap)
3406 val += mem_cgroup_get_recursive_idx_stat(mem,
3407 MEM_CGROUP_STAT_SWAPOUT);
104f3928
KS
3408
3409 return val << PAGE_SHIFT;
3410}
3411
2c3daa72 3412static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
8cdea7c0 3413{
8c7c6e34 3414 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
104f3928 3415 u64 val;
8c7c6e34
KH
3416 int type, name;
3417
3418 type = MEMFILE_TYPE(cft->private);
3419 name = MEMFILE_ATTR(cft->private);
3420 switch (type) {
3421 case _MEM:
104f3928
KS
3422 if (name == RES_USAGE)
3423 val = mem_cgroup_usage(mem, false);
3424 else
0c3e73e8 3425 val = res_counter_read_u64(&mem->res, name);
8c7c6e34
KH
3426 break;
3427 case _MEMSWAP:
104f3928
KS
3428 if (name == RES_USAGE)
3429 val = mem_cgroup_usage(mem, true);
3430 else
0c3e73e8 3431 val = res_counter_read_u64(&mem->memsw, name);
8c7c6e34
KH
3432 break;
3433 default:
3434 BUG();
3435 break;
3436 }
3437 return val;
8cdea7c0 3438}
628f4235
KH
3439/*
3440 * The user of this function is...
3441 * RES_LIMIT.
3442 */
856c13aa
PM
3443static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
3444 const char *buffer)
8cdea7c0 3445{
628f4235 3446 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
8c7c6e34 3447 int type, name;
628f4235
KH
3448 unsigned long long val;
3449 int ret;
3450
8c7c6e34
KH
3451 type = MEMFILE_TYPE(cft->private);
3452 name = MEMFILE_ATTR(cft->private);
3453 switch (name) {
628f4235 3454 case RES_LIMIT:
4b3bde4c
BS
3455 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3456 ret = -EINVAL;
3457 break;
3458 }
628f4235
KH
3459 /* This function does all necessary parse...reuse it */
3460 ret = res_counter_memparse_write_strategy(buffer, &val);
8c7c6e34
KH
3461 if (ret)
3462 break;
3463 if (type == _MEM)
628f4235 3464 ret = mem_cgroup_resize_limit(memcg, val);
8c7c6e34
KH
3465 else
3466 ret = mem_cgroup_resize_memsw_limit(memcg, val);
628f4235 3467 break;
296c81d8
BS
3468 case RES_SOFT_LIMIT:
3469 ret = res_counter_memparse_write_strategy(buffer, &val);
3470 if (ret)
3471 break;
3472 /*
3473 * For memsw, soft limits are hard to implement in terms
3474 * of semantics, for now, we support soft limits for
3475 * control without swap
3476 */
3477 if (type == _MEM)
3478 ret = res_counter_set_soft_limit(&memcg->res, val);
3479 else
3480 ret = -EINVAL;
3481 break;
628f4235
KH
3482 default:
3483 ret = -EINVAL; /* should be BUG() ? */
3484 break;
3485 }
3486 return ret;
8cdea7c0
BS
3487}
3488
fee7b548
KH
3489static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
3490 unsigned long long *mem_limit, unsigned long long *memsw_limit)
3491{
3492 struct cgroup *cgroup;
3493 unsigned long long min_limit, min_memsw_limit, tmp;
3494
3495 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3496 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3497 cgroup = memcg->css.cgroup;
3498 if (!memcg->use_hierarchy)
3499 goto out;
3500
3501 while (cgroup->parent) {
3502 cgroup = cgroup->parent;
3503 memcg = mem_cgroup_from_cont(cgroup);
3504 if (!memcg->use_hierarchy)
3505 break;
3506 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
3507 min_limit = min(min_limit, tmp);
3508 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3509 min_memsw_limit = min(min_memsw_limit, tmp);
3510 }
3511out:
3512 *mem_limit = min_limit;
3513 *memsw_limit = min_memsw_limit;
3514 return;
3515}
3516
29f2a4da 3517static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
c84872e1
PE
3518{
3519 struct mem_cgroup *mem;
8c7c6e34 3520 int type, name;
c84872e1
PE
3521
3522 mem = mem_cgroup_from_cont(cont);
8c7c6e34
KH
3523 type = MEMFILE_TYPE(event);
3524 name = MEMFILE_ATTR(event);
3525 switch (name) {
29f2a4da 3526 case RES_MAX_USAGE:
8c7c6e34
KH
3527 if (type == _MEM)
3528 res_counter_reset_max(&mem->res);
3529 else
3530 res_counter_reset_max(&mem->memsw);
29f2a4da
PE
3531 break;
3532 case RES_FAILCNT:
8c7c6e34
KH
3533 if (type == _MEM)
3534 res_counter_reset_failcnt(&mem->res);
3535 else
3536 res_counter_reset_failcnt(&mem->memsw);
29f2a4da
PE
3537 break;
3538 }
f64c3f54 3539
85cc59db 3540 return 0;
c84872e1
PE
3541}
3542
7dc74be0
DN
3543static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
3544 struct cftype *cft)
3545{
3546 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
3547}
3548
02491447 3549#ifdef CONFIG_MMU
7dc74be0
DN
3550static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
3551 struct cftype *cft, u64 val)
3552{
3553 struct mem_cgroup *mem = mem_cgroup_from_cont(cgrp);
3554
3555 if (val >= (1 << NR_MOVE_TYPE))
3556 return -EINVAL;
3557 /*
3558 * We check this value several times in both in can_attach() and
3559 * attach(), so we need cgroup lock to prevent this value from being
3560 * inconsistent.
3561 */
3562 cgroup_lock();
3563 mem->move_charge_at_immigrate = val;
3564 cgroup_unlock();
3565
3566 return 0;
3567}
02491447
DN
3568#else
3569static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
3570 struct cftype *cft, u64 val)
3571{
3572 return -ENOSYS;
3573}
3574#endif
7dc74be0 3575
14067bb3
KH
3576
3577/* For read statistics */
3578enum {
3579 MCS_CACHE,
3580 MCS_RSS,
d8046582 3581 MCS_FILE_MAPPED,
14067bb3
KH
3582 MCS_PGPGIN,
3583 MCS_PGPGOUT,
1dd3a273 3584 MCS_SWAP,
14067bb3
KH
3585 MCS_INACTIVE_ANON,
3586 MCS_ACTIVE_ANON,
3587 MCS_INACTIVE_FILE,
3588 MCS_ACTIVE_FILE,
3589 MCS_UNEVICTABLE,
3590 NR_MCS_STAT,
3591};
3592
3593struct mcs_total_stat {
3594 s64 stat[NR_MCS_STAT];
d2ceb9b7
KH
3595};
3596
14067bb3
KH
3597struct {
3598 char *local_name;
3599 char *total_name;
3600} memcg_stat_strings[NR_MCS_STAT] = {
3601 {"cache", "total_cache"},
3602 {"rss", "total_rss"},
d69b042f 3603 {"mapped_file", "total_mapped_file"},
14067bb3
KH
3604 {"pgpgin", "total_pgpgin"},
3605 {"pgpgout", "total_pgpgout"},
1dd3a273 3606 {"swap", "total_swap"},
14067bb3
KH
3607 {"inactive_anon", "total_inactive_anon"},
3608 {"active_anon", "total_active_anon"},
3609 {"inactive_file", "total_inactive_file"},
3610 {"active_file", "total_active_file"},
3611 {"unevictable", "total_unevictable"}
3612};
3613
3614
7d74b06f
KH
3615static void
3616mem_cgroup_get_local_stat(struct mem_cgroup *mem, struct mcs_total_stat *s)
14067bb3 3617{
14067bb3
KH
3618 s64 val;
3619
3620 /* per cpu stat */
c62b1a3b 3621 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_CACHE);
14067bb3 3622 s->stat[MCS_CACHE] += val * PAGE_SIZE;
c62b1a3b 3623 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_RSS);
14067bb3 3624 s->stat[MCS_RSS] += val * PAGE_SIZE;
c62b1a3b 3625 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_FILE_MAPPED);
d8046582 3626 s->stat[MCS_FILE_MAPPED] += val * PAGE_SIZE;
c62b1a3b 3627 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_PGPGIN_COUNT);
14067bb3 3628 s->stat[MCS_PGPGIN] += val;
c62b1a3b 3629 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_PGPGOUT_COUNT);
14067bb3 3630 s->stat[MCS_PGPGOUT] += val;
1dd3a273 3631 if (do_swap_account) {
c62b1a3b 3632 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_SWAPOUT);
1dd3a273
DN
3633 s->stat[MCS_SWAP] += val * PAGE_SIZE;
3634 }
14067bb3
KH
3635
3636 /* per zone stat */
3637 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_ANON);
3638 s->stat[MCS_INACTIVE_ANON] += val * PAGE_SIZE;
3639 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_ANON);
3640 s->stat[MCS_ACTIVE_ANON] += val * PAGE_SIZE;
3641 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_FILE);
3642 s->stat[MCS_INACTIVE_FILE] += val * PAGE_SIZE;
3643 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_FILE);
3644 s->stat[MCS_ACTIVE_FILE] += val * PAGE_SIZE;
3645 val = mem_cgroup_get_local_zonestat(mem, LRU_UNEVICTABLE);
3646 s->stat[MCS_UNEVICTABLE] += val * PAGE_SIZE;
14067bb3
KH
3647}
3648
3649static void
3650mem_cgroup_get_total_stat(struct mem_cgroup *mem, struct mcs_total_stat *s)
3651{
7d74b06f
KH
3652 struct mem_cgroup *iter;
3653
3654 for_each_mem_cgroup_tree(iter, mem)
3655 mem_cgroup_get_local_stat(iter, s);
14067bb3
KH
3656}
3657
c64745cf
PM
3658static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
3659 struct cgroup_map_cb *cb)
d2ceb9b7 3660{
d2ceb9b7 3661 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
14067bb3 3662 struct mcs_total_stat mystat;
d2ceb9b7
KH
3663 int i;
3664
14067bb3
KH
3665 memset(&mystat, 0, sizeof(mystat));
3666 mem_cgroup_get_local_stat(mem_cont, &mystat);
d2ceb9b7 3667
1dd3a273
DN
3668 for (i = 0; i < NR_MCS_STAT; i++) {
3669 if (i == MCS_SWAP && !do_swap_account)
3670 continue;
14067bb3 3671 cb->fill(cb, memcg_stat_strings[i].local_name, mystat.stat[i]);
1dd3a273 3672 }
7b854121 3673
14067bb3 3674 /* Hierarchical information */
fee7b548
KH
3675 {
3676 unsigned long long limit, memsw_limit;
3677 memcg_get_hierarchical_limit(mem_cont, &limit, &memsw_limit);
3678 cb->fill(cb, "hierarchical_memory_limit", limit);
3679 if (do_swap_account)
3680 cb->fill(cb, "hierarchical_memsw_limit", memsw_limit);
3681 }
7f016ee8 3682
14067bb3
KH
3683 memset(&mystat, 0, sizeof(mystat));
3684 mem_cgroup_get_total_stat(mem_cont, &mystat);
1dd3a273
DN
3685 for (i = 0; i < NR_MCS_STAT; i++) {
3686 if (i == MCS_SWAP && !do_swap_account)
3687 continue;
14067bb3 3688 cb->fill(cb, memcg_stat_strings[i].total_name, mystat.stat[i]);
1dd3a273 3689 }
14067bb3 3690
7f016ee8 3691#ifdef CONFIG_DEBUG_VM
c772be93 3692 cb->fill(cb, "inactive_ratio", calc_inactive_ratio(mem_cont, NULL));
7f016ee8
KM
3693
3694 {
3695 int nid, zid;
3696 struct mem_cgroup_per_zone *mz;
3697 unsigned long recent_rotated[2] = {0, 0};
3698 unsigned long recent_scanned[2] = {0, 0};
3699
3700 for_each_online_node(nid)
3701 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
3702 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
3703
3704 recent_rotated[0] +=
3705 mz->reclaim_stat.recent_rotated[0];
3706 recent_rotated[1] +=
3707 mz->reclaim_stat.recent_rotated[1];
3708 recent_scanned[0] +=
3709 mz->reclaim_stat.recent_scanned[0];
3710 recent_scanned[1] +=
3711 mz->reclaim_stat.recent_scanned[1];
3712 }
3713 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
3714 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
3715 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
3716 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
3717 }
3718#endif
3719
d2ceb9b7
KH
3720 return 0;
3721}
3722
a7885eb8
KM
3723static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
3724{
3725 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
3726
3727 return get_swappiness(memcg);
3728}
3729
3730static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
3731 u64 val)
3732{
3733 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
3734 struct mem_cgroup *parent;
068b38c1 3735
a7885eb8
KM
3736 if (val > 100)
3737 return -EINVAL;
3738
3739 if (cgrp->parent == NULL)
3740 return -EINVAL;
3741
3742 parent = mem_cgroup_from_cont(cgrp->parent);
068b38c1
LZ
3743
3744 cgroup_lock();
3745
a7885eb8
KM
3746 /* If under hierarchy, only empty-root can set this value */
3747 if ((parent->use_hierarchy) ||
068b38c1
LZ
3748 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
3749 cgroup_unlock();
a7885eb8 3750 return -EINVAL;
068b38c1 3751 }
a7885eb8
KM
3752
3753 spin_lock(&memcg->reclaim_param_lock);
3754 memcg->swappiness = val;
3755 spin_unlock(&memcg->reclaim_param_lock);
3756
068b38c1
LZ
3757 cgroup_unlock();
3758
a7885eb8
KM
3759 return 0;
3760}
3761
2e72b634
KS
3762static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
3763{
3764 struct mem_cgroup_threshold_ary *t;
3765 u64 usage;
3766 int i;
3767
3768 rcu_read_lock();
3769 if (!swap)
2c488db2 3770 t = rcu_dereference(memcg->thresholds.primary);
2e72b634 3771 else
2c488db2 3772 t = rcu_dereference(memcg->memsw_thresholds.primary);
2e72b634
KS
3773
3774 if (!t)
3775 goto unlock;
3776
3777 usage = mem_cgroup_usage(memcg, swap);
3778
3779 /*
3780 * current_threshold points to threshold just below usage.
3781 * If it's not true, a threshold was crossed after last
3782 * call of __mem_cgroup_threshold().
3783 */
5407a562 3784 i = t->current_threshold;
2e72b634
KS
3785
3786 /*
3787 * Iterate backward over array of thresholds starting from
3788 * current_threshold and check if a threshold is crossed.
3789 * If none of thresholds below usage is crossed, we read
3790 * only one element of the array here.
3791 */
3792 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
3793 eventfd_signal(t->entries[i].eventfd, 1);
3794
3795 /* i = current_threshold + 1 */
3796 i++;
3797
3798 /*
3799 * Iterate forward over array of thresholds starting from
3800 * current_threshold+1 and check if a threshold is crossed.
3801 * If none of thresholds above usage is crossed, we read
3802 * only one element of the array here.
3803 */
3804 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
3805 eventfd_signal(t->entries[i].eventfd, 1);
3806
3807 /* Update current_threshold */
5407a562 3808 t->current_threshold = i - 1;
2e72b634
KS
3809unlock:
3810 rcu_read_unlock();
3811}
3812
3813static void mem_cgroup_threshold(struct mem_cgroup *memcg)
3814{
ad4ca5f4
KS
3815 while (memcg) {
3816 __mem_cgroup_threshold(memcg, false);
3817 if (do_swap_account)
3818 __mem_cgroup_threshold(memcg, true);
3819
3820 memcg = parent_mem_cgroup(memcg);
3821 }
2e72b634
KS
3822}
3823
3824static int compare_thresholds(const void *a, const void *b)
3825{
3826 const struct mem_cgroup_threshold *_a = a;
3827 const struct mem_cgroup_threshold *_b = b;
3828
3829 return _a->threshold - _b->threshold;
3830}
3831
7d74b06f 3832static int mem_cgroup_oom_notify_cb(struct mem_cgroup *mem)
9490ff27
KH
3833{
3834 struct mem_cgroup_eventfd_list *ev;
3835
3836 list_for_each_entry(ev, &mem->oom_notify, list)
3837 eventfd_signal(ev->eventfd, 1);
3838 return 0;
3839}
3840
3841static void mem_cgroup_oom_notify(struct mem_cgroup *mem)
3842{
7d74b06f
KH
3843 struct mem_cgroup *iter;
3844
3845 for_each_mem_cgroup_tree(iter, mem)
3846 mem_cgroup_oom_notify_cb(iter);
9490ff27
KH
3847}
3848
3849static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
3850 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
2e72b634
KS
3851{
3852 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2c488db2
KS
3853 struct mem_cgroup_thresholds *thresholds;
3854 struct mem_cgroup_threshold_ary *new;
2e72b634
KS
3855 int type = MEMFILE_TYPE(cft->private);
3856 u64 threshold, usage;
2c488db2 3857 int i, size, ret;
2e72b634
KS
3858
3859 ret = res_counter_memparse_write_strategy(args, &threshold);
3860 if (ret)
3861 return ret;
3862
3863 mutex_lock(&memcg->thresholds_lock);
2c488db2 3864
2e72b634 3865 if (type == _MEM)
2c488db2 3866 thresholds = &memcg->thresholds;
2e72b634 3867 else if (type == _MEMSWAP)
2c488db2 3868 thresholds = &memcg->memsw_thresholds;
2e72b634
KS
3869 else
3870 BUG();
3871
3872 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
3873
3874 /* Check if a threshold crossed before adding a new one */
2c488db2 3875 if (thresholds->primary)
2e72b634
KS
3876 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
3877
2c488db2 3878 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
2e72b634
KS
3879
3880 /* Allocate memory for new array of thresholds */
2c488db2 3881 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
2e72b634 3882 GFP_KERNEL);
2c488db2 3883 if (!new) {
2e72b634
KS
3884 ret = -ENOMEM;
3885 goto unlock;
3886 }
2c488db2 3887 new->size = size;
2e72b634
KS
3888
3889 /* Copy thresholds (if any) to new array */
2c488db2
KS
3890 if (thresholds->primary) {
3891 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
2e72b634 3892 sizeof(struct mem_cgroup_threshold));
2c488db2
KS
3893 }
3894
2e72b634 3895 /* Add new threshold */
2c488db2
KS
3896 new->entries[size - 1].eventfd = eventfd;
3897 new->entries[size - 1].threshold = threshold;
2e72b634
KS
3898
3899 /* Sort thresholds. Registering of new threshold isn't time-critical */
2c488db2 3900 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
2e72b634
KS
3901 compare_thresholds, NULL);
3902
3903 /* Find current threshold */
2c488db2 3904 new->current_threshold = -1;
2e72b634 3905 for (i = 0; i < size; i++) {
2c488db2 3906 if (new->entries[i].threshold < usage) {
2e72b634 3907 /*
2c488db2
KS
3908 * new->current_threshold will not be used until
3909 * rcu_assign_pointer(), so it's safe to increment
2e72b634
KS
3910 * it here.
3911 */
2c488db2 3912 ++new->current_threshold;
2e72b634
KS
3913 }
3914 }
3915
2c488db2
KS
3916 /* Free old spare buffer and save old primary buffer as spare */
3917 kfree(thresholds->spare);
3918 thresholds->spare = thresholds->primary;
3919
3920 rcu_assign_pointer(thresholds->primary, new);
2e72b634 3921
907860ed 3922 /* To be sure that nobody uses thresholds */
2e72b634
KS
3923 synchronize_rcu();
3924
2e72b634
KS
3925unlock:
3926 mutex_unlock(&memcg->thresholds_lock);
3927
3928 return ret;
3929}
3930
907860ed 3931static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
9490ff27 3932 struct cftype *cft, struct eventfd_ctx *eventfd)
2e72b634
KS
3933{
3934 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2c488db2
KS
3935 struct mem_cgroup_thresholds *thresholds;
3936 struct mem_cgroup_threshold_ary *new;
2e72b634
KS
3937 int type = MEMFILE_TYPE(cft->private);
3938 u64 usage;
2c488db2 3939 int i, j, size;
2e72b634
KS
3940
3941 mutex_lock(&memcg->thresholds_lock);
3942 if (type == _MEM)
2c488db2 3943 thresholds = &memcg->thresholds;
2e72b634 3944 else if (type == _MEMSWAP)
2c488db2 3945 thresholds = &memcg->memsw_thresholds;
2e72b634
KS
3946 else
3947 BUG();
3948
3949 /*
3950 * Something went wrong if we trying to unregister a threshold
3951 * if we don't have thresholds
3952 */
3953 BUG_ON(!thresholds);
3954
3955 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
3956
3957 /* Check if a threshold crossed before removing */
3958 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
3959
3960 /* Calculate new number of threshold */
2c488db2
KS
3961 size = 0;
3962 for (i = 0; i < thresholds->primary->size; i++) {
3963 if (thresholds->primary->entries[i].eventfd != eventfd)
2e72b634
KS
3964 size++;
3965 }
3966
2c488db2 3967 new = thresholds->spare;
907860ed 3968
2e72b634
KS
3969 /* Set thresholds array to NULL if we don't have thresholds */
3970 if (!size) {
2c488db2
KS
3971 kfree(new);
3972 new = NULL;
907860ed 3973 goto swap_buffers;
2e72b634
KS
3974 }
3975
2c488db2 3976 new->size = size;
2e72b634
KS
3977
3978 /* Copy thresholds and find current threshold */
2c488db2
KS
3979 new->current_threshold = -1;
3980 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
3981 if (thresholds->primary->entries[i].eventfd == eventfd)
2e72b634
KS
3982 continue;
3983
2c488db2
KS
3984 new->entries[j] = thresholds->primary->entries[i];
3985 if (new->entries[j].threshold < usage) {
2e72b634 3986 /*
2c488db2 3987 * new->current_threshold will not be used
2e72b634
KS
3988 * until rcu_assign_pointer(), so it's safe to increment
3989 * it here.
3990 */
2c488db2 3991 ++new->current_threshold;
2e72b634
KS
3992 }
3993 j++;
3994 }
3995
907860ed 3996swap_buffers:
2c488db2
KS
3997 /* Swap primary and spare array */
3998 thresholds->spare = thresholds->primary;
3999 rcu_assign_pointer(thresholds->primary, new);
2e72b634 4000
907860ed 4001 /* To be sure that nobody uses thresholds */
2e72b634
KS
4002 synchronize_rcu();
4003
2e72b634 4004 mutex_unlock(&memcg->thresholds_lock);
2e72b634 4005}
c1e862c1 4006
9490ff27
KH
4007static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4008 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4009{
4010 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4011 struct mem_cgroup_eventfd_list *event;
4012 int type = MEMFILE_TYPE(cft->private);
4013
4014 BUG_ON(type != _OOM_TYPE);
4015 event = kmalloc(sizeof(*event), GFP_KERNEL);
4016 if (!event)
4017 return -ENOMEM;
4018
4019 mutex_lock(&memcg_oom_mutex);
4020
4021 event->eventfd = eventfd;
4022 list_add(&event->list, &memcg->oom_notify);
4023
4024 /* already in OOM ? */
4025 if (atomic_read(&memcg->oom_lock))
4026 eventfd_signal(eventfd, 1);
4027 mutex_unlock(&memcg_oom_mutex);
4028
4029 return 0;
4030}
4031
907860ed 4032static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
9490ff27
KH
4033 struct cftype *cft, struct eventfd_ctx *eventfd)
4034{
4035 struct mem_cgroup *mem = mem_cgroup_from_cont(cgrp);
4036 struct mem_cgroup_eventfd_list *ev, *tmp;
4037 int type = MEMFILE_TYPE(cft->private);
4038
4039 BUG_ON(type != _OOM_TYPE);
4040
4041 mutex_lock(&memcg_oom_mutex);
4042
4043 list_for_each_entry_safe(ev, tmp, &mem->oom_notify, list) {
4044 if (ev->eventfd == eventfd) {
4045 list_del(&ev->list);
4046 kfree(ev);
4047 }
4048 }
4049
4050 mutex_unlock(&memcg_oom_mutex);
9490ff27
KH
4051}
4052
3c11ecf4
KH
4053static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4054 struct cftype *cft, struct cgroup_map_cb *cb)
4055{
4056 struct mem_cgroup *mem = mem_cgroup_from_cont(cgrp);
4057
4058 cb->fill(cb, "oom_kill_disable", mem->oom_kill_disable);
4059
4060 if (atomic_read(&mem->oom_lock))
4061 cb->fill(cb, "under_oom", 1);
4062 else
4063 cb->fill(cb, "under_oom", 0);
4064 return 0;
4065}
4066
3c11ecf4
KH
4067static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4068 struct cftype *cft, u64 val)
4069{
4070 struct mem_cgroup *mem = mem_cgroup_from_cont(cgrp);
4071 struct mem_cgroup *parent;
4072
4073 /* cannot set to root cgroup and only 0 and 1 are allowed */
4074 if (!cgrp->parent || !((val == 0) || (val == 1)))
4075 return -EINVAL;
4076
4077 parent = mem_cgroup_from_cont(cgrp->parent);
4078
4079 cgroup_lock();
4080 /* oom-kill-disable is a flag for subhierarchy. */
4081 if ((parent->use_hierarchy) ||
4082 (mem->use_hierarchy && !list_empty(&cgrp->children))) {
4083 cgroup_unlock();
4084 return -EINVAL;
4085 }
4086 mem->oom_kill_disable = val;
4d845ebf
KH
4087 if (!val)
4088 memcg_oom_recover(mem);
3c11ecf4
KH
4089 cgroup_unlock();
4090 return 0;
4091}
4092
8cdea7c0
BS
4093static struct cftype mem_cgroup_files[] = {
4094 {
0eea1030 4095 .name = "usage_in_bytes",
8c7c6e34 4096 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
2c3daa72 4097 .read_u64 = mem_cgroup_read,
9490ff27
KH
4098 .register_event = mem_cgroup_usage_register_event,
4099 .unregister_event = mem_cgroup_usage_unregister_event,
8cdea7c0 4100 },
c84872e1
PE
4101 {
4102 .name = "max_usage_in_bytes",
8c7c6e34 4103 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
29f2a4da 4104 .trigger = mem_cgroup_reset,
c84872e1
PE
4105 .read_u64 = mem_cgroup_read,
4106 },
8cdea7c0 4107 {
0eea1030 4108 .name = "limit_in_bytes",
8c7c6e34 4109 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
856c13aa 4110 .write_string = mem_cgroup_write,
2c3daa72 4111 .read_u64 = mem_cgroup_read,
8cdea7c0 4112 },
296c81d8
BS
4113 {
4114 .name = "soft_limit_in_bytes",
4115 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4116 .write_string = mem_cgroup_write,
4117 .read_u64 = mem_cgroup_read,
4118 },
8cdea7c0
BS
4119 {
4120 .name = "failcnt",
8c7c6e34 4121 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
29f2a4da 4122 .trigger = mem_cgroup_reset,
2c3daa72 4123 .read_u64 = mem_cgroup_read,
8cdea7c0 4124 },
d2ceb9b7
KH
4125 {
4126 .name = "stat",
c64745cf 4127 .read_map = mem_control_stat_show,
d2ceb9b7 4128 },
c1e862c1
KH
4129 {
4130 .name = "force_empty",
4131 .trigger = mem_cgroup_force_empty_write,
4132 },
18f59ea7
BS
4133 {
4134 .name = "use_hierarchy",
4135 .write_u64 = mem_cgroup_hierarchy_write,
4136 .read_u64 = mem_cgroup_hierarchy_read,
4137 },
a7885eb8
KM
4138 {
4139 .name = "swappiness",
4140 .read_u64 = mem_cgroup_swappiness_read,
4141 .write_u64 = mem_cgroup_swappiness_write,
4142 },
7dc74be0
DN
4143 {
4144 .name = "move_charge_at_immigrate",
4145 .read_u64 = mem_cgroup_move_charge_read,
4146 .write_u64 = mem_cgroup_move_charge_write,
4147 },
9490ff27
KH
4148 {
4149 .name = "oom_control",
3c11ecf4
KH
4150 .read_map = mem_cgroup_oom_control_read,
4151 .write_u64 = mem_cgroup_oom_control_write,
9490ff27
KH
4152 .register_event = mem_cgroup_oom_register_event,
4153 .unregister_event = mem_cgroup_oom_unregister_event,
4154 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4155 },
8cdea7c0
BS
4156};
4157
8c7c6e34
KH
4158#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
4159static struct cftype memsw_cgroup_files[] = {
4160 {
4161 .name = "memsw.usage_in_bytes",
4162 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
4163 .read_u64 = mem_cgroup_read,
9490ff27
KH
4164 .register_event = mem_cgroup_usage_register_event,
4165 .unregister_event = mem_cgroup_usage_unregister_event,
8c7c6e34
KH
4166 },
4167 {
4168 .name = "memsw.max_usage_in_bytes",
4169 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4170 .trigger = mem_cgroup_reset,
4171 .read_u64 = mem_cgroup_read,
4172 },
4173 {
4174 .name = "memsw.limit_in_bytes",
4175 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4176 .write_string = mem_cgroup_write,
4177 .read_u64 = mem_cgroup_read,
4178 },
4179 {
4180 .name = "memsw.failcnt",
4181 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4182 .trigger = mem_cgroup_reset,
4183 .read_u64 = mem_cgroup_read,
4184 },
4185};
4186
4187static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
4188{
4189 if (!do_swap_account)
4190 return 0;
4191 return cgroup_add_files(cont, ss, memsw_cgroup_files,
4192 ARRAY_SIZE(memsw_cgroup_files));
4193};
4194#else
4195static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
4196{
4197 return 0;
4198}
4199#endif
4200
6d12e2d8
KH
4201static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
4202{
4203 struct mem_cgroup_per_node *pn;
1ecaab2b 4204 struct mem_cgroup_per_zone *mz;
b69408e8 4205 enum lru_list l;
41e3355d 4206 int zone, tmp = node;
1ecaab2b
KH
4207 /*
4208 * This routine is called against possible nodes.
4209 * But it's BUG to call kmalloc() against offline node.
4210 *
4211 * TODO: this routine can waste much memory for nodes which will
4212 * never be onlined. It's better to use memory hotplug callback
4213 * function.
4214 */
41e3355d
KH
4215 if (!node_state(node, N_NORMAL_MEMORY))
4216 tmp = -1;
17295c88 4217 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
6d12e2d8
KH
4218 if (!pn)
4219 return 1;
1ecaab2b 4220
6d12e2d8 4221 mem->info.nodeinfo[node] = pn;
1ecaab2b
KH
4222 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4223 mz = &pn->zoneinfo[zone];
b69408e8
CL
4224 for_each_lru(l)
4225 INIT_LIST_HEAD(&mz->lists[l]);
f64c3f54 4226 mz->usage_in_excess = 0;
4e416953
BS
4227 mz->on_tree = false;
4228 mz->mem = mem;
1ecaab2b 4229 }
6d12e2d8
KH
4230 return 0;
4231}
4232
1ecaab2b
KH
4233static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
4234{
4235 kfree(mem->info.nodeinfo[node]);
4236}
4237
33327948
KH
4238static struct mem_cgroup *mem_cgroup_alloc(void)
4239{
4240 struct mem_cgroup *mem;
c62b1a3b 4241 int size = sizeof(struct mem_cgroup);
33327948 4242
c62b1a3b 4243 /* Can be very big if MAX_NUMNODES is very big */
c8dad2bb 4244 if (size < PAGE_SIZE)
17295c88 4245 mem = kzalloc(size, GFP_KERNEL);
33327948 4246 else
17295c88 4247 mem = vzalloc(size);
33327948 4248
e7bbcdf3
DC
4249 if (!mem)
4250 return NULL;
4251
c62b1a3b 4252 mem->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
d2e61b8d
DC
4253 if (!mem->stat)
4254 goto out_free;
711d3d2c 4255 spin_lock_init(&mem->pcp_counter_lock);
33327948 4256 return mem;
d2e61b8d
DC
4257
4258out_free:
4259 if (size < PAGE_SIZE)
4260 kfree(mem);
4261 else
4262 vfree(mem);
4263 return NULL;
33327948
KH
4264}
4265
8c7c6e34
KH
4266/*
4267 * At destroying mem_cgroup, references from swap_cgroup can remain.
4268 * (scanning all at force_empty is too costly...)
4269 *
4270 * Instead of clearing all references at force_empty, we remember
4271 * the number of reference from swap_cgroup and free mem_cgroup when
4272 * it goes down to 0.
4273 *
8c7c6e34
KH
4274 * Removal of cgroup itself succeeds regardless of refs from swap.
4275 */
4276
a7ba0eef 4277static void __mem_cgroup_free(struct mem_cgroup *mem)
33327948 4278{
08e552c6
KH
4279 int node;
4280
f64c3f54 4281 mem_cgroup_remove_from_trees(mem);
04046e1a
KH
4282 free_css_id(&mem_cgroup_subsys, &mem->css);
4283
08e552c6
KH
4284 for_each_node_state(node, N_POSSIBLE)
4285 free_mem_cgroup_per_zone_info(mem, node);
4286
c62b1a3b
KH
4287 free_percpu(mem->stat);
4288 if (sizeof(struct mem_cgroup) < PAGE_SIZE)
33327948
KH
4289 kfree(mem);
4290 else
4291 vfree(mem);
4292}
4293
8c7c6e34
KH
4294static void mem_cgroup_get(struct mem_cgroup *mem)
4295{
4296 atomic_inc(&mem->refcnt);
4297}
4298
483c30b5 4299static void __mem_cgroup_put(struct mem_cgroup *mem, int count)
8c7c6e34 4300{
483c30b5 4301 if (atomic_sub_and_test(count, &mem->refcnt)) {
7bcc1bb1 4302 struct mem_cgroup *parent = parent_mem_cgroup(mem);
a7ba0eef 4303 __mem_cgroup_free(mem);
7bcc1bb1
DN
4304 if (parent)
4305 mem_cgroup_put(parent);
4306 }
8c7c6e34
KH
4307}
4308
483c30b5
DN
4309static void mem_cgroup_put(struct mem_cgroup *mem)
4310{
4311 __mem_cgroup_put(mem, 1);
4312}
4313
7bcc1bb1
DN
4314/*
4315 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4316 */
4317static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem)
4318{
4319 if (!mem->res.parent)
4320 return NULL;
4321 return mem_cgroup_from_res_counter(mem->res.parent, res);
4322}
33327948 4323
c077719b
KH
4324#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
4325static void __init enable_swap_cgroup(void)
4326{
f8d66542 4327 if (!mem_cgroup_disabled() && really_do_swap_account)
c077719b
KH
4328 do_swap_account = 1;
4329}
4330#else
4331static void __init enable_swap_cgroup(void)
4332{
4333}
4334#endif
4335
f64c3f54
BS
4336static int mem_cgroup_soft_limit_tree_init(void)
4337{
4338 struct mem_cgroup_tree_per_node *rtpn;
4339 struct mem_cgroup_tree_per_zone *rtpz;
4340 int tmp, node, zone;
4341
4342 for_each_node_state(node, N_POSSIBLE) {
4343 tmp = node;
4344 if (!node_state(node, N_NORMAL_MEMORY))
4345 tmp = -1;
4346 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
4347 if (!rtpn)
4348 return 1;
4349
4350 soft_limit_tree.rb_tree_per_node[node] = rtpn;
4351
4352 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4353 rtpz = &rtpn->rb_tree_per_zone[zone];
4354 rtpz->rb_root = RB_ROOT;
4355 spin_lock_init(&rtpz->lock);
4356 }
4357 }
4358 return 0;
4359}
4360
0eb253e2 4361static struct cgroup_subsys_state * __ref
8cdea7c0
BS
4362mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
4363{
28dbc4b6 4364 struct mem_cgroup *mem, *parent;
04046e1a 4365 long error = -ENOMEM;
6d12e2d8 4366 int node;
8cdea7c0 4367
c8dad2bb
JB
4368 mem = mem_cgroup_alloc();
4369 if (!mem)
04046e1a 4370 return ERR_PTR(error);
78fb7466 4371
6d12e2d8
KH
4372 for_each_node_state(node, N_POSSIBLE)
4373 if (alloc_mem_cgroup_per_zone_info(mem, node))
4374 goto free_out;
f64c3f54 4375
c077719b 4376 /* root ? */
28dbc4b6 4377 if (cont->parent == NULL) {
cdec2e42 4378 int cpu;
c077719b 4379 enable_swap_cgroup();
28dbc4b6 4380 parent = NULL;
4b3bde4c 4381 root_mem_cgroup = mem;
f64c3f54
BS
4382 if (mem_cgroup_soft_limit_tree_init())
4383 goto free_out;
cdec2e42
KH
4384 for_each_possible_cpu(cpu) {
4385 struct memcg_stock_pcp *stock =
4386 &per_cpu(memcg_stock, cpu);
4387 INIT_WORK(&stock->work, drain_local_stock);
4388 }
711d3d2c 4389 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
18f59ea7 4390 } else {
28dbc4b6 4391 parent = mem_cgroup_from_cont(cont->parent);
18f59ea7 4392 mem->use_hierarchy = parent->use_hierarchy;
3c11ecf4 4393 mem->oom_kill_disable = parent->oom_kill_disable;
18f59ea7 4394 }
28dbc4b6 4395
18f59ea7
BS
4396 if (parent && parent->use_hierarchy) {
4397 res_counter_init(&mem->res, &parent->res);
4398 res_counter_init(&mem->memsw, &parent->memsw);
7bcc1bb1
DN
4399 /*
4400 * We increment refcnt of the parent to ensure that we can
4401 * safely access it on res_counter_charge/uncharge.
4402 * This refcnt will be decremented when freeing this
4403 * mem_cgroup(see mem_cgroup_put).
4404 */
4405 mem_cgroup_get(parent);
18f59ea7
BS
4406 } else {
4407 res_counter_init(&mem->res, NULL);
4408 res_counter_init(&mem->memsw, NULL);
4409 }
04046e1a 4410 mem->last_scanned_child = 0;
2733c06a 4411 spin_lock_init(&mem->reclaim_param_lock);
9490ff27 4412 INIT_LIST_HEAD(&mem->oom_notify);
6d61ef40 4413
a7885eb8
KM
4414 if (parent)
4415 mem->swappiness = get_swappiness(parent);
a7ba0eef 4416 atomic_set(&mem->refcnt, 1);
7dc74be0 4417 mem->move_charge_at_immigrate = 0;
2e72b634 4418 mutex_init(&mem->thresholds_lock);
8cdea7c0 4419 return &mem->css;
6d12e2d8 4420free_out:
a7ba0eef 4421 __mem_cgroup_free(mem);
4b3bde4c 4422 root_mem_cgroup = NULL;
04046e1a 4423 return ERR_PTR(error);
8cdea7c0
BS
4424}
4425
ec64f515 4426static int mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
df878fb0
KH
4427 struct cgroup *cont)
4428{
4429 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
ec64f515
KH
4430
4431 return mem_cgroup_force_empty(mem, false);
df878fb0
KH
4432}
4433
8cdea7c0
BS
4434static void mem_cgroup_destroy(struct cgroup_subsys *ss,
4435 struct cgroup *cont)
4436{
c268e994 4437 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
c268e994 4438
c268e994 4439 mem_cgroup_put(mem);
8cdea7c0
BS
4440}
4441
4442static int mem_cgroup_populate(struct cgroup_subsys *ss,
4443 struct cgroup *cont)
4444{
8c7c6e34
KH
4445 int ret;
4446
4447 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
4448 ARRAY_SIZE(mem_cgroup_files));
4449
4450 if (!ret)
4451 ret = register_memsw_files(cont, ss);
4452 return ret;
8cdea7c0
BS
4453}
4454
02491447 4455#ifdef CONFIG_MMU
7dc74be0 4456/* Handlers for move charge at task migration. */
854ffa8d
DN
4457#define PRECHARGE_COUNT_AT_ONCE 256
4458static int mem_cgroup_do_precharge(unsigned long count)
7dc74be0 4459{
854ffa8d
DN
4460 int ret = 0;
4461 int batch_count = PRECHARGE_COUNT_AT_ONCE;
4ffef5fe
DN
4462 struct mem_cgroup *mem = mc.to;
4463
854ffa8d
DN
4464 if (mem_cgroup_is_root(mem)) {
4465 mc.precharge += count;
4466 /* we don't need css_get for root */
4467 return ret;
4468 }
4469 /* try to charge at once */
4470 if (count > 1) {
4471 struct res_counter *dummy;
4472 /*
4473 * "mem" cannot be under rmdir() because we've already checked
4474 * by cgroup_lock_live_cgroup() that it is not removed and we
4475 * are still under the same cgroup_mutex. So we can postpone
4476 * css_get().
4477 */
4478 if (res_counter_charge(&mem->res, PAGE_SIZE * count, &dummy))
4479 goto one_by_one;
4480 if (do_swap_account && res_counter_charge(&mem->memsw,
4481 PAGE_SIZE * count, &dummy)) {
4482 res_counter_uncharge(&mem->res, PAGE_SIZE * count);
4483 goto one_by_one;
4484 }
4485 mc.precharge += count;
854ffa8d
DN
4486 return ret;
4487 }
4488one_by_one:
4489 /* fall back to one by one charge */
4490 while (count--) {
4491 if (signal_pending(current)) {
4492 ret = -EINTR;
4493 break;
4494 }
4495 if (!batch_count--) {
4496 batch_count = PRECHARGE_COUNT_AT_ONCE;
4497 cond_resched();
4498 }
ec168510
AA
4499 ret = __mem_cgroup_try_charge(NULL, GFP_KERNEL, &mem, false,
4500 PAGE_SIZE);
854ffa8d
DN
4501 if (ret || !mem)
4502 /* mem_cgroup_clear_mc() will do uncharge later */
4503 return -ENOMEM;
4504 mc.precharge++;
4505 }
4ffef5fe
DN
4506 return ret;
4507}
4508
4509/**
4510 * is_target_pte_for_mc - check a pte whether it is valid for move charge
4511 * @vma: the vma the pte to be checked belongs
4512 * @addr: the address corresponding to the pte to be checked
4513 * @ptent: the pte to be checked
02491447 4514 * @target: the pointer the target page or swap ent will be stored(can be NULL)
4ffef5fe
DN
4515 *
4516 * Returns
4517 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
4518 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
4519 * move charge. if @target is not NULL, the page is stored in target->page
4520 * with extra refcnt got(Callers should handle it).
02491447
DN
4521 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
4522 * target for charge migration. if @target is not NULL, the entry is stored
4523 * in target->ent.
4ffef5fe
DN
4524 *
4525 * Called with pte lock held.
4526 */
4ffef5fe
DN
4527union mc_target {
4528 struct page *page;
02491447 4529 swp_entry_t ent;
4ffef5fe
DN
4530};
4531
4ffef5fe
DN
4532enum mc_target_type {
4533 MC_TARGET_NONE, /* not used */
4534 MC_TARGET_PAGE,
02491447 4535 MC_TARGET_SWAP,
4ffef5fe
DN
4536};
4537
90254a65
DN
4538static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
4539 unsigned long addr, pte_t ptent)
4ffef5fe 4540{
90254a65 4541 struct page *page = vm_normal_page(vma, addr, ptent);
4ffef5fe 4542
90254a65
DN
4543 if (!page || !page_mapped(page))
4544 return NULL;
4545 if (PageAnon(page)) {
4546 /* we don't move shared anon */
4547 if (!move_anon() || page_mapcount(page) > 2)
4548 return NULL;
87946a72
DN
4549 } else if (!move_file())
4550 /* we ignore mapcount for file pages */
90254a65
DN
4551 return NULL;
4552 if (!get_page_unless_zero(page))
4553 return NULL;
4554
4555 return page;
4556}
4557
4558static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
4559 unsigned long addr, pte_t ptent, swp_entry_t *entry)
4560{
4561 int usage_count;
4562 struct page *page = NULL;
4563 swp_entry_t ent = pte_to_swp_entry(ptent);
4564
4565 if (!move_anon() || non_swap_entry(ent))
4566 return NULL;
4567 usage_count = mem_cgroup_count_swap_user(ent, &page);
4568 if (usage_count > 1) { /* we don't move shared anon */
02491447
DN
4569 if (page)
4570 put_page(page);
90254a65 4571 return NULL;
02491447 4572 }
90254a65
DN
4573 if (do_swap_account)
4574 entry->val = ent.val;
4575
4576 return page;
4577}
4578
87946a72
DN
4579static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
4580 unsigned long addr, pte_t ptent, swp_entry_t *entry)
4581{
4582 struct page *page = NULL;
4583 struct inode *inode;
4584 struct address_space *mapping;
4585 pgoff_t pgoff;
4586
4587 if (!vma->vm_file) /* anonymous vma */
4588 return NULL;
4589 if (!move_file())
4590 return NULL;
4591
4592 inode = vma->vm_file->f_path.dentry->d_inode;
4593 mapping = vma->vm_file->f_mapping;
4594 if (pte_none(ptent))
4595 pgoff = linear_page_index(vma, addr);
4596 else /* pte_file(ptent) is true */
4597 pgoff = pte_to_pgoff(ptent);
4598
4599 /* page is moved even if it's not RSS of this task(page-faulted). */
4600 if (!mapping_cap_swap_backed(mapping)) { /* normal file */
4601 page = find_get_page(mapping, pgoff);
4602 } else { /* shmem/tmpfs file. we should take account of swap too. */
4603 swp_entry_t ent;
4604 mem_cgroup_get_shmem_target(inode, pgoff, &page, &ent);
4605 if (do_swap_account)
4606 entry->val = ent.val;
4607 }
4608
4609 return page;
4610}
4611
90254a65
DN
4612static int is_target_pte_for_mc(struct vm_area_struct *vma,
4613 unsigned long addr, pte_t ptent, union mc_target *target)
4614{
4615 struct page *page = NULL;
4616 struct page_cgroup *pc;
4617 int ret = 0;
4618 swp_entry_t ent = { .val = 0 };
4619
4620 if (pte_present(ptent))
4621 page = mc_handle_present_pte(vma, addr, ptent);
4622 else if (is_swap_pte(ptent))
4623 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
87946a72
DN
4624 else if (pte_none(ptent) || pte_file(ptent))
4625 page = mc_handle_file_pte(vma, addr, ptent, &ent);
90254a65
DN
4626
4627 if (!page && !ent.val)
4628 return 0;
02491447
DN
4629 if (page) {
4630 pc = lookup_page_cgroup(page);
4631 /*
4632 * Do only loose check w/o page_cgroup lock.
4633 * mem_cgroup_move_account() checks the pc is valid or not under
4634 * the lock.
4635 */
4636 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
4637 ret = MC_TARGET_PAGE;
4638 if (target)
4639 target->page = page;
4640 }
4641 if (!ret || !target)
4642 put_page(page);
4643 }
90254a65
DN
4644 /* There is a swap entry and a page doesn't exist or isn't charged */
4645 if (ent.val && !ret &&
7f0f1546
KH
4646 css_id(&mc.from->css) == lookup_swap_cgroup(ent)) {
4647 ret = MC_TARGET_SWAP;
4648 if (target)
4649 target->ent = ent;
4ffef5fe 4650 }
4ffef5fe
DN
4651 return ret;
4652}
4653
4654static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
4655 unsigned long addr, unsigned long end,
4656 struct mm_walk *walk)
4657{
4658 struct vm_area_struct *vma = walk->private;
4659 pte_t *pte;
4660 spinlock_t *ptl;
4661
ec168510 4662 VM_BUG_ON(pmd_trans_huge(*pmd));
4ffef5fe
DN
4663 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
4664 for (; addr != end; pte++, addr += PAGE_SIZE)
4665 if (is_target_pte_for_mc(vma, addr, *pte, NULL))
4666 mc.precharge++; /* increment precharge temporarily */
4667 pte_unmap_unlock(pte - 1, ptl);
4668 cond_resched();
4669
7dc74be0
DN
4670 return 0;
4671}
4672
4ffef5fe
DN
4673static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
4674{
4675 unsigned long precharge;
4676 struct vm_area_struct *vma;
4677
dfe076b0 4678 down_read(&mm->mmap_sem);
4ffef5fe
DN
4679 for (vma = mm->mmap; vma; vma = vma->vm_next) {
4680 struct mm_walk mem_cgroup_count_precharge_walk = {
4681 .pmd_entry = mem_cgroup_count_precharge_pte_range,
4682 .mm = mm,
4683 .private = vma,
4684 };
4685 if (is_vm_hugetlb_page(vma))
4686 continue;
4ffef5fe
DN
4687 walk_page_range(vma->vm_start, vma->vm_end,
4688 &mem_cgroup_count_precharge_walk);
4689 }
dfe076b0 4690 up_read(&mm->mmap_sem);
4ffef5fe
DN
4691
4692 precharge = mc.precharge;
4693 mc.precharge = 0;
4694
4695 return precharge;
4696}
4697
4ffef5fe
DN
4698static int mem_cgroup_precharge_mc(struct mm_struct *mm)
4699{
dfe076b0
DN
4700 unsigned long precharge = mem_cgroup_count_precharge(mm);
4701
4702 VM_BUG_ON(mc.moving_task);
4703 mc.moving_task = current;
4704 return mem_cgroup_do_precharge(precharge);
4ffef5fe
DN
4705}
4706
dfe076b0
DN
4707/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
4708static void __mem_cgroup_clear_mc(void)
4ffef5fe 4709{
2bd9bb20
KH
4710 struct mem_cgroup *from = mc.from;
4711 struct mem_cgroup *to = mc.to;
4712
4ffef5fe 4713 /* we must uncharge all the leftover precharges from mc.to */
854ffa8d
DN
4714 if (mc.precharge) {
4715 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
4716 mc.precharge = 0;
4717 }
4718 /*
4719 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
4720 * we must uncharge here.
4721 */
4722 if (mc.moved_charge) {
4723 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
4724 mc.moved_charge = 0;
4ffef5fe 4725 }
483c30b5
DN
4726 /* we must fixup refcnts and charges */
4727 if (mc.moved_swap) {
483c30b5
DN
4728 /* uncharge swap account from the old cgroup */
4729 if (!mem_cgroup_is_root(mc.from))
4730 res_counter_uncharge(&mc.from->memsw,
4731 PAGE_SIZE * mc.moved_swap);
4732 __mem_cgroup_put(mc.from, mc.moved_swap);
4733
4734 if (!mem_cgroup_is_root(mc.to)) {
4735 /*
4736 * we charged both to->res and to->memsw, so we should
4737 * uncharge to->res.
4738 */
4739 res_counter_uncharge(&mc.to->res,
4740 PAGE_SIZE * mc.moved_swap);
483c30b5
DN
4741 }
4742 /* we've already done mem_cgroup_get(mc.to) */
483c30b5
DN
4743 mc.moved_swap = 0;
4744 }
dfe076b0
DN
4745 memcg_oom_recover(from);
4746 memcg_oom_recover(to);
4747 wake_up_all(&mc.waitq);
4748}
4749
4750static void mem_cgroup_clear_mc(void)
4751{
4752 struct mem_cgroup *from = mc.from;
4753
4754 /*
4755 * we must clear moving_task before waking up waiters at the end of
4756 * task migration.
4757 */
4758 mc.moving_task = NULL;
4759 __mem_cgroup_clear_mc();
2bd9bb20 4760 spin_lock(&mc.lock);
4ffef5fe
DN
4761 mc.from = NULL;
4762 mc.to = NULL;
2bd9bb20 4763 spin_unlock(&mc.lock);
32047e2a 4764 mem_cgroup_end_move(from);
4ffef5fe
DN
4765}
4766
7dc74be0
DN
4767static int mem_cgroup_can_attach(struct cgroup_subsys *ss,
4768 struct cgroup *cgroup,
4769 struct task_struct *p,
4770 bool threadgroup)
4771{
4772 int ret = 0;
4773 struct mem_cgroup *mem = mem_cgroup_from_cont(cgroup);
4774
4775 if (mem->move_charge_at_immigrate) {
4776 struct mm_struct *mm;
4777 struct mem_cgroup *from = mem_cgroup_from_task(p);
4778
4779 VM_BUG_ON(from == mem);
4780
4781 mm = get_task_mm(p);
4782 if (!mm)
4783 return 0;
7dc74be0 4784 /* We move charges only when we move a owner of the mm */
4ffef5fe
DN
4785 if (mm->owner == p) {
4786 VM_BUG_ON(mc.from);
4787 VM_BUG_ON(mc.to);
4788 VM_BUG_ON(mc.precharge);
854ffa8d 4789 VM_BUG_ON(mc.moved_charge);
483c30b5 4790 VM_BUG_ON(mc.moved_swap);
32047e2a 4791 mem_cgroup_start_move(from);
2bd9bb20 4792 spin_lock(&mc.lock);
4ffef5fe
DN
4793 mc.from = from;
4794 mc.to = mem;
2bd9bb20 4795 spin_unlock(&mc.lock);
dfe076b0 4796 /* We set mc.moving_task later */
4ffef5fe
DN
4797
4798 ret = mem_cgroup_precharge_mc(mm);
4799 if (ret)
4800 mem_cgroup_clear_mc();
dfe076b0
DN
4801 }
4802 mmput(mm);
7dc74be0
DN
4803 }
4804 return ret;
4805}
4806
4807static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss,
4808 struct cgroup *cgroup,
4809 struct task_struct *p,
4810 bool threadgroup)
4811{
4ffef5fe 4812 mem_cgroup_clear_mc();
7dc74be0
DN
4813}
4814
4ffef5fe
DN
4815static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
4816 unsigned long addr, unsigned long end,
4817 struct mm_walk *walk)
7dc74be0 4818{
4ffef5fe
DN
4819 int ret = 0;
4820 struct vm_area_struct *vma = walk->private;
4821 pte_t *pte;
4822 spinlock_t *ptl;
4823
4824retry:
ec168510 4825 VM_BUG_ON(pmd_trans_huge(*pmd));
4ffef5fe
DN
4826 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
4827 for (; addr != end; addr += PAGE_SIZE) {
4828 pte_t ptent = *(pte++);
4829 union mc_target target;
4830 int type;
4831 struct page *page;
4832 struct page_cgroup *pc;
02491447 4833 swp_entry_t ent;
4ffef5fe
DN
4834
4835 if (!mc.precharge)
4836 break;
4837
4838 type = is_target_pte_for_mc(vma, addr, ptent, &target);
4839 switch (type) {
4840 case MC_TARGET_PAGE:
4841 page = target.page;
4842 if (isolate_lru_page(page))
4843 goto put;
4844 pc = lookup_page_cgroup(page);
854ffa8d
DN
4845 if (!mem_cgroup_move_account(pc,
4846 mc.from, mc.to, false)) {
4ffef5fe 4847 mc.precharge--;
854ffa8d
DN
4848 /* we uncharge from mc.from later. */
4849 mc.moved_charge++;
4ffef5fe
DN
4850 }
4851 putback_lru_page(page);
4852put: /* is_target_pte_for_mc() gets the page */
4853 put_page(page);
4854 break;
02491447
DN
4855 case MC_TARGET_SWAP:
4856 ent = target.ent;
483c30b5
DN
4857 if (!mem_cgroup_move_swap_account(ent,
4858 mc.from, mc.to, false)) {
02491447 4859 mc.precharge--;
483c30b5
DN
4860 /* we fixup refcnts and charges later. */
4861 mc.moved_swap++;
4862 }
02491447 4863 break;
4ffef5fe
DN
4864 default:
4865 break;
4866 }
4867 }
4868 pte_unmap_unlock(pte - 1, ptl);
4869 cond_resched();
4870
4871 if (addr != end) {
4872 /*
4873 * We have consumed all precharges we got in can_attach().
4874 * We try charge one by one, but don't do any additional
4875 * charges to mc.to if we have failed in charge once in attach()
4876 * phase.
4877 */
854ffa8d 4878 ret = mem_cgroup_do_precharge(1);
4ffef5fe
DN
4879 if (!ret)
4880 goto retry;
4881 }
4882
4883 return ret;
4884}
4885
4886static void mem_cgroup_move_charge(struct mm_struct *mm)
4887{
4888 struct vm_area_struct *vma;
4889
4890 lru_add_drain_all();
dfe076b0
DN
4891retry:
4892 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
4893 /*
4894 * Someone who are holding the mmap_sem might be waiting in
4895 * waitq. So we cancel all extra charges, wake up all waiters,
4896 * and retry. Because we cancel precharges, we might not be able
4897 * to move enough charges, but moving charge is a best-effort
4898 * feature anyway, so it wouldn't be a big problem.
4899 */
4900 __mem_cgroup_clear_mc();
4901 cond_resched();
4902 goto retry;
4903 }
4ffef5fe
DN
4904 for (vma = mm->mmap; vma; vma = vma->vm_next) {
4905 int ret;
4906 struct mm_walk mem_cgroup_move_charge_walk = {
4907 .pmd_entry = mem_cgroup_move_charge_pte_range,
4908 .mm = mm,
4909 .private = vma,
4910 };
4911 if (is_vm_hugetlb_page(vma))
4912 continue;
4ffef5fe
DN
4913 ret = walk_page_range(vma->vm_start, vma->vm_end,
4914 &mem_cgroup_move_charge_walk);
4915 if (ret)
4916 /*
4917 * means we have consumed all precharges and failed in
4918 * doing additional charge. Just abandon here.
4919 */
4920 break;
4921 }
dfe076b0 4922 up_read(&mm->mmap_sem);
7dc74be0
DN
4923}
4924
67e465a7
BS
4925static void mem_cgroup_move_task(struct cgroup_subsys *ss,
4926 struct cgroup *cont,
4927 struct cgroup *old_cont,
be367d09
BB
4928 struct task_struct *p,
4929 bool threadgroup)
67e465a7 4930{
dfe076b0
DN
4931 struct mm_struct *mm;
4932
4933 if (!mc.to)
4ffef5fe
DN
4934 /* no need to move charge */
4935 return;
4936
dfe076b0
DN
4937 mm = get_task_mm(p);
4938 if (mm) {
4939 mem_cgroup_move_charge(mm);
4940 mmput(mm);
4941 }
4ffef5fe 4942 mem_cgroup_clear_mc();
67e465a7 4943}
5cfb80a7
DN
4944#else /* !CONFIG_MMU */
4945static int mem_cgroup_can_attach(struct cgroup_subsys *ss,
4946 struct cgroup *cgroup,
4947 struct task_struct *p,
4948 bool threadgroup)
4949{
4950 return 0;
4951}
4952static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss,
4953 struct cgroup *cgroup,
4954 struct task_struct *p,
4955 bool threadgroup)
4956{
4957}
4958static void mem_cgroup_move_task(struct cgroup_subsys *ss,
4959 struct cgroup *cont,
4960 struct cgroup *old_cont,
4961 struct task_struct *p,
4962 bool threadgroup)
4963{
4964}
4965#endif
67e465a7 4966
8cdea7c0
BS
4967struct cgroup_subsys mem_cgroup_subsys = {
4968 .name = "memory",
4969 .subsys_id = mem_cgroup_subsys_id,
4970 .create = mem_cgroup_create,
df878fb0 4971 .pre_destroy = mem_cgroup_pre_destroy,
8cdea7c0
BS
4972 .destroy = mem_cgroup_destroy,
4973 .populate = mem_cgroup_populate,
7dc74be0
DN
4974 .can_attach = mem_cgroup_can_attach,
4975 .cancel_attach = mem_cgroup_cancel_attach,
67e465a7 4976 .attach = mem_cgroup_move_task,
6d12e2d8 4977 .early_init = 0,
04046e1a 4978 .use_id = 1,
8cdea7c0 4979};
c077719b
KH
4980
4981#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
a42c390c
MH
4982static int __init enable_swap_account(char *s)
4983{
4984 /* consider enabled if no parameter or 1 is given */
4985 if (!s || !strcmp(s, "1"))
4986 really_do_swap_account = 1;
4987 else if (!strcmp(s, "0"))
4988 really_do_swap_account = 0;
4989 return 1;
4990}
4991__setup("swapaccount", enable_swap_account);
c077719b
KH
4992
4993static int __init disable_swap_account(char *s)
4994{
a42c390c 4995 enable_swap_account("0");
c077719b
KH
4996 return 1;
4997}
4998__setup("noswapaccount", disable_swap_account);
4999#endif