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