]> git.ipfire.org Git - people/ms/linux.git/blame - mm/memcontrol.c
memcg: rework mem_cgroup_iter to use cgroup iterators
[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 *
7ae1e1d0
GC
13 * Kernel Memory Controller
14 * Copyright (C) 2012 Parallels Inc. and Google Inc.
15 * Authors: Glauber Costa and Suleiman Souhlal
16 *
8cdea7c0
BS
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 */
27
28#include <linux/res_counter.h>
29#include <linux/memcontrol.h>
30#include <linux/cgroup.h>
78fb7466 31#include <linux/mm.h>
4ffef5fe 32#include <linux/hugetlb.h>
d13d1443 33#include <linux/pagemap.h>
d52aa412 34#include <linux/smp.h>
8a9f3ccd 35#include <linux/page-flags.h>
66e1707b 36#include <linux/backing-dev.h>
8a9f3ccd
BS
37#include <linux/bit_spinlock.h>
38#include <linux/rcupdate.h>
e222432b 39#include <linux/limits.h>
b9e15baf 40#include <linux/export.h>
8c7c6e34 41#include <linux/mutex.h>
f64c3f54 42#include <linux/rbtree.h>
b6ac57d5 43#include <linux/slab.h>
66e1707b 44#include <linux/swap.h>
02491447 45#include <linux/swapops.h>
66e1707b 46#include <linux/spinlock.h>
2e72b634
KS
47#include <linux/eventfd.h>
48#include <linux/sort.h>
66e1707b 49#include <linux/fs.h>
d2ceb9b7 50#include <linux/seq_file.h>
33327948 51#include <linux/vmalloc.h>
b69408e8 52#include <linux/mm_inline.h>
52d4b9ac 53#include <linux/page_cgroup.h>
cdec2e42 54#include <linux/cpu.h>
158e0a2d 55#include <linux/oom.h>
08e552c6 56#include "internal.h"
d1a4c0b3 57#include <net/sock.h>
4bd2c1ee 58#include <net/ip.h>
d1a4c0b3 59#include <net/tcp_memcontrol.h>
8cdea7c0 60
8697d331
BS
61#include <asm/uaccess.h>
62
cc8e970c
KM
63#include <trace/events/vmscan.h>
64
a181b0e8 65struct cgroup_subsys mem_cgroup_subsys __read_mostly;
68ae564b
DR
66EXPORT_SYMBOL(mem_cgroup_subsys);
67
a181b0e8 68#define MEM_CGROUP_RECLAIM_RETRIES 5
6bbda35c 69static struct mem_cgroup *root_mem_cgroup __read_mostly;
8cdea7c0 70
c255a458 71#ifdef CONFIG_MEMCG_SWAP
338c8431 72/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
c077719b 73int do_swap_account __read_mostly;
a42c390c
MH
74
75/* for remember boot option*/
c255a458 76#ifdef CONFIG_MEMCG_SWAP_ENABLED
a42c390c
MH
77static int really_do_swap_account __initdata = 1;
78#else
79static int really_do_swap_account __initdata = 0;
80#endif
81
c077719b 82#else
a0db00fc 83#define do_swap_account 0
c077719b
KH
84#endif
85
86
d52aa412
KH
87/*
88 * Statistics for memory cgroup.
89 */
90enum mem_cgroup_stat_index {
91 /*
92 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
93 */
94 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
d69b042f 95 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
d8046582 96 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
bff6bb83 97 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
d52aa412
KH
98 MEM_CGROUP_STAT_NSTATS,
99};
100
af7c4b0e
JW
101static const char * const mem_cgroup_stat_names[] = {
102 "cache",
103 "rss",
104 "mapped_file",
105 "swap",
106};
107
e9f8974f
JW
108enum mem_cgroup_events_index {
109 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
110 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
456f998e
YH
111 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
112 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
e9f8974f
JW
113 MEM_CGROUP_EVENTS_NSTATS,
114};
af7c4b0e
JW
115
116static const char * const mem_cgroup_events_names[] = {
117 "pgpgin",
118 "pgpgout",
119 "pgfault",
120 "pgmajfault",
121};
122
58cf188e
SZ
123static const char * const mem_cgroup_lru_names[] = {
124 "inactive_anon",
125 "active_anon",
126 "inactive_file",
127 "active_file",
128 "unevictable",
129};
130
7a159cc9
JW
131/*
132 * Per memcg event counter is incremented at every pagein/pageout. With THP,
133 * it will be incremated by the number of pages. This counter is used for
134 * for trigger some periodic events. This is straightforward and better
135 * than using jiffies etc. to handle periodic memcg event.
136 */
137enum mem_cgroup_events_target {
138 MEM_CGROUP_TARGET_THRESH,
139 MEM_CGROUP_TARGET_SOFTLIMIT,
453a9bf3 140 MEM_CGROUP_TARGET_NUMAINFO,
7a159cc9
JW
141 MEM_CGROUP_NTARGETS,
142};
a0db00fc
KS
143#define THRESHOLDS_EVENTS_TARGET 128
144#define SOFTLIMIT_EVENTS_TARGET 1024
145#define NUMAINFO_EVENTS_TARGET 1024
e9f8974f 146
d52aa412 147struct mem_cgroup_stat_cpu {
7a159cc9 148 long count[MEM_CGROUP_STAT_NSTATS];
e9f8974f 149 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
13114716 150 unsigned long nr_page_events;
7a159cc9 151 unsigned long targets[MEM_CGROUP_NTARGETS];
d52aa412
KH
152};
153
527a5ec9 154struct mem_cgroup_reclaim_iter {
542f85f9
MH
155 /* last scanned hierarchy member with elevated css ref count */
156 struct mem_cgroup *last_visited;
527a5ec9
JW
157 /* scan generation, increased every round-trip */
158 unsigned int generation;
542f85f9
MH
159 /* lock to protect the position and generation */
160 spinlock_t iter_lock;
527a5ec9
JW
161};
162
6d12e2d8
KH
163/*
164 * per-zone information in memory controller.
165 */
6d12e2d8 166struct mem_cgroup_per_zone {
6290df54 167 struct lruvec lruvec;
1eb49272 168 unsigned long lru_size[NR_LRU_LISTS];
3e2f41f1 169
527a5ec9
JW
170 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
171
f64c3f54
BS
172 struct rb_node tree_node; /* RB tree node */
173 unsigned long long usage_in_excess;/* Set to the value by which */
174 /* the soft limit is exceeded*/
175 bool on_tree;
d79154bb 176 struct mem_cgroup *memcg; /* Back pointer, we cannot */
4e416953 177 /* use container_of */
6d12e2d8 178};
6d12e2d8
KH
179
180struct mem_cgroup_per_node {
181 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
182};
183
184struct mem_cgroup_lru_info {
45cf7ebd 185 struct mem_cgroup_per_node *nodeinfo[0];
6d12e2d8
KH
186};
187
f64c3f54
BS
188/*
189 * Cgroups above their limits are maintained in a RB-Tree, independent of
190 * their hierarchy representation
191 */
192
193struct mem_cgroup_tree_per_zone {
194 struct rb_root rb_root;
195 spinlock_t lock;
196};
197
198struct mem_cgroup_tree_per_node {
199 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
200};
201
202struct mem_cgroup_tree {
203 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
204};
205
206static struct mem_cgroup_tree soft_limit_tree __read_mostly;
207
2e72b634
KS
208struct mem_cgroup_threshold {
209 struct eventfd_ctx *eventfd;
210 u64 threshold;
211};
212
9490ff27 213/* For threshold */
2e72b634 214struct mem_cgroup_threshold_ary {
748dad36 215 /* An array index points to threshold just below or equal to usage. */
5407a562 216 int current_threshold;
2e72b634
KS
217 /* Size of entries[] */
218 unsigned int size;
219 /* Array of thresholds */
220 struct mem_cgroup_threshold entries[0];
221};
2c488db2
KS
222
223struct mem_cgroup_thresholds {
224 /* Primary thresholds array */
225 struct mem_cgroup_threshold_ary *primary;
226 /*
227 * Spare threshold array.
228 * This is needed to make mem_cgroup_unregister_event() "never fail".
229 * It must be able to store at least primary->size - 1 entries.
230 */
231 struct mem_cgroup_threshold_ary *spare;
232};
233
9490ff27
KH
234/* for OOM */
235struct mem_cgroup_eventfd_list {
236 struct list_head list;
237 struct eventfd_ctx *eventfd;
238};
2e72b634 239
c0ff4b85
R
240static void mem_cgroup_threshold(struct mem_cgroup *memcg);
241static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
2e72b634 242
8cdea7c0
BS
243/*
244 * The memory controller data structure. The memory controller controls both
245 * page cache and RSS per cgroup. We would eventually like to provide
246 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
247 * to help the administrator determine what knobs to tune.
248 *
249 * TODO: Add a water mark for the memory controller. Reclaim will begin when
8a9f3ccd
BS
250 * we hit the water mark. May be even add a low water mark, such that
251 * no reclaim occurs from a cgroup at it's low water mark, this is
252 * a feature that will be implemented much later in the future.
8cdea7c0
BS
253 */
254struct mem_cgroup {
255 struct cgroup_subsys_state css;
256 /*
257 * the counter to account for memory usage
258 */
259 struct res_counter res;
59927fb9
HD
260
261 union {
262 /*
263 * the counter to account for mem+swap usage.
264 */
265 struct res_counter memsw;
266
267 /*
268 * rcu_freeing is used only when freeing struct mem_cgroup,
269 * so put it into a union to avoid wasting more memory.
270 * It must be disjoint from the css field. It could be
271 * in a union with the res field, but res plays a much
272 * larger part in mem_cgroup life than memsw, and might
273 * be of interest, even at time of free, when debugging.
274 * So share rcu_head with the less interesting memsw.
275 */
276 struct rcu_head rcu_freeing;
277 /*
3afe36b1
GC
278 * We also need some space for a worker in deferred freeing.
279 * By the time we call it, rcu_freeing is no longer in use.
59927fb9
HD
280 */
281 struct work_struct work_freeing;
282 };
283
510fc4e1
GC
284 /*
285 * the counter to account for kernel memory usage.
286 */
287 struct res_counter kmem;
18f59ea7
BS
288 /*
289 * Should the accounting and control be hierarchical, per subtree?
290 */
291 bool use_hierarchy;
510fc4e1 292 unsigned long kmem_account_flags; /* See KMEM_ACCOUNTED_*, below */
79dfdacc
MH
293
294 bool oom_lock;
295 atomic_t under_oom;
296
8c7c6e34 297 atomic_t refcnt;
14797e23 298
1f4c025b 299 int swappiness;
3c11ecf4
KH
300 /* OOM-Killer disable */
301 int oom_kill_disable;
a7885eb8 302
22a668d7
KH
303 /* set when res.limit == memsw.limit */
304 bool memsw_is_minimum;
305
2e72b634
KS
306 /* protect arrays of thresholds */
307 struct mutex thresholds_lock;
308
309 /* thresholds for memory usage. RCU-protected */
2c488db2 310 struct mem_cgroup_thresholds thresholds;
907860ed 311
2e72b634 312 /* thresholds for mem+swap usage. RCU-protected */
2c488db2 313 struct mem_cgroup_thresholds memsw_thresholds;
907860ed 314
9490ff27
KH
315 /* For oom notifier event fd */
316 struct list_head oom_notify;
185efc0f 317
7dc74be0
DN
318 /*
319 * Should we move charges of a task when a task is moved into this
320 * mem_cgroup ? And what type of charges should we move ?
321 */
322 unsigned long move_charge_at_immigrate;
619d094b
KH
323 /*
324 * set > 0 if pages under this cgroup are moving to other cgroup.
325 */
326 atomic_t moving_account;
312734c0
KH
327 /* taken only while moving_account > 0 */
328 spinlock_t move_lock;
d52aa412 329 /*
c62b1a3b 330 * percpu counter.
d52aa412 331 */
3a7951b4 332 struct mem_cgroup_stat_cpu __percpu *stat;
711d3d2c
KH
333 /*
334 * used when a cpu is offlined or other synchronizations
335 * See mem_cgroup_read_stat().
336 */
337 struct mem_cgroup_stat_cpu nocpu_base;
338 spinlock_t pcp_counter_lock;
d1a4c0b3 339
4bd2c1ee 340#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
d1a4c0b3
GC
341 struct tcp_memcontrol tcp_mem;
342#endif
2633d7a0
GC
343#if defined(CONFIG_MEMCG_KMEM)
344 /* analogous to slab_common's slab_caches list. per-memcg */
345 struct list_head memcg_slab_caches;
346 /* Not a spinlock, we can take a lot of time walking the list */
347 struct mutex slab_caches_mutex;
348 /* Index in the kmem_cache->memcg_params->memcg_caches array */
349 int kmemcg_id;
350#endif
45cf7ebd
GC
351
352 int last_scanned_node;
353#if MAX_NUMNODES > 1
354 nodemask_t scan_nodes;
355 atomic_t numainfo_events;
356 atomic_t numainfo_updating;
357#endif
358 /*
359 * Per cgroup active and inactive list, similar to the
360 * per zone LRU lists.
361 *
362 * WARNING: This has to be the last element of the struct. Don't
363 * add new fields after this point.
364 */
365 struct mem_cgroup_lru_info info;
8cdea7c0
BS
366};
367
45cf7ebd
GC
368static size_t memcg_size(void)
369{
370 return sizeof(struct mem_cgroup) +
371 nr_node_ids * sizeof(struct mem_cgroup_per_node);
372}
373
510fc4e1
GC
374/* internal only representation about the status of kmem accounting. */
375enum {
376 KMEM_ACCOUNTED_ACTIVE = 0, /* accounted by this cgroup itself */
a8964b9b 377 KMEM_ACCOUNTED_ACTIVATED, /* static key enabled. */
7de37682 378 KMEM_ACCOUNTED_DEAD, /* dead memcg with pending kmem charges */
510fc4e1
GC
379};
380
a8964b9b
GC
381/* We account when limit is on, but only after call sites are patched */
382#define KMEM_ACCOUNTED_MASK \
383 ((1 << KMEM_ACCOUNTED_ACTIVE) | (1 << KMEM_ACCOUNTED_ACTIVATED))
510fc4e1
GC
384
385#ifdef CONFIG_MEMCG_KMEM
386static inline void memcg_kmem_set_active(struct mem_cgroup *memcg)
387{
388 set_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
389}
7de37682
GC
390
391static bool memcg_kmem_is_active(struct mem_cgroup *memcg)
392{
393 return test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
394}
395
a8964b9b
GC
396static void memcg_kmem_set_activated(struct mem_cgroup *memcg)
397{
398 set_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
399}
400
55007d84
GC
401static void memcg_kmem_clear_activated(struct mem_cgroup *memcg)
402{
403 clear_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
404}
405
7de37682
GC
406static void memcg_kmem_mark_dead(struct mem_cgroup *memcg)
407{
408 if (test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags))
409 set_bit(KMEM_ACCOUNTED_DEAD, &memcg->kmem_account_flags);
410}
411
412static bool memcg_kmem_test_and_clear_dead(struct mem_cgroup *memcg)
413{
414 return test_and_clear_bit(KMEM_ACCOUNTED_DEAD,
415 &memcg->kmem_account_flags);
416}
510fc4e1
GC
417#endif
418
7dc74be0
DN
419/* Stuffs for move charges at task migration. */
420/*
ee5e8472
GC
421 * Types of charges to be moved. "move_charge_at_immitgrate" and
422 * "immigrate_flags" are treated as a left-shifted bitmap of these types.
7dc74be0
DN
423 */
424enum move_type {
4ffef5fe 425 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
87946a72 426 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
7dc74be0
DN
427 NR_MOVE_TYPE,
428};
429
4ffef5fe
DN
430/* "mc" and its members are protected by cgroup_mutex */
431static struct move_charge_struct {
b1dd693e 432 spinlock_t lock; /* for from, to */
4ffef5fe
DN
433 struct mem_cgroup *from;
434 struct mem_cgroup *to;
ee5e8472 435 unsigned long immigrate_flags;
4ffef5fe 436 unsigned long precharge;
854ffa8d 437 unsigned long moved_charge;
483c30b5 438 unsigned long moved_swap;
8033b97c
DN
439 struct task_struct *moving_task; /* a task moving charges */
440 wait_queue_head_t waitq; /* a waitq for other context */
441} mc = {
2bd9bb20 442 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
8033b97c
DN
443 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
444};
4ffef5fe 445
90254a65
DN
446static bool move_anon(void)
447{
ee5e8472 448 return test_bit(MOVE_CHARGE_TYPE_ANON, &mc.immigrate_flags);
90254a65
DN
449}
450
87946a72
DN
451static bool move_file(void)
452{
ee5e8472 453 return test_bit(MOVE_CHARGE_TYPE_FILE, &mc.immigrate_flags);
87946a72
DN
454}
455
4e416953
BS
456/*
457 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
458 * limit reclaim to prevent infinite loops, if they ever occur.
459 */
a0db00fc
KS
460#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
461#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
4e416953 462
217bc319
KH
463enum charge_type {
464 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
41326c17 465 MEM_CGROUP_CHARGE_TYPE_ANON,
d13d1443 466 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
8a9478ca 467 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
c05555b5
KH
468 NR_CHARGE_TYPE,
469};
470
8c7c6e34 471/* for encoding cft->private value on file */
86ae53e1
GC
472enum res_type {
473 _MEM,
474 _MEMSWAP,
475 _OOM_TYPE,
510fc4e1 476 _KMEM,
86ae53e1
GC
477};
478
a0db00fc
KS
479#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
480#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
8c7c6e34 481#define MEMFILE_ATTR(val) ((val) & 0xffff)
9490ff27
KH
482/* Used for OOM nofiier */
483#define OOM_CONTROL (0)
8c7c6e34 484
75822b44
BS
485/*
486 * Reclaim flags for mem_cgroup_hierarchical_reclaim
487 */
488#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
489#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
490#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
491#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
492
0999821b
GC
493/*
494 * The memcg_create_mutex will be held whenever a new cgroup is created.
495 * As a consequence, any change that needs to protect against new child cgroups
496 * appearing has to hold it as well.
497 */
498static DEFINE_MUTEX(memcg_create_mutex);
499
c0ff4b85
R
500static void mem_cgroup_get(struct mem_cgroup *memcg);
501static void mem_cgroup_put(struct mem_cgroup *memcg);
e1aab161 502
b2145145
WL
503static inline
504struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
505{
506 return container_of(s, struct mem_cgroup, css);
507}
508
7ffc0edc
MH
509static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
510{
511 return (memcg == root_mem_cgroup);
512}
513
e1aab161 514/* Writing them here to avoid exposing memcg's inner layout */
4bd2c1ee 515#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
e1aab161 516
e1aab161
GC
517void sock_update_memcg(struct sock *sk)
518{
376be5ff 519 if (mem_cgroup_sockets_enabled) {
e1aab161 520 struct mem_cgroup *memcg;
3f134619 521 struct cg_proto *cg_proto;
e1aab161
GC
522
523 BUG_ON(!sk->sk_prot->proto_cgroup);
524
f3f511e1
GC
525 /* Socket cloning can throw us here with sk_cgrp already
526 * filled. It won't however, necessarily happen from
527 * process context. So the test for root memcg given
528 * the current task's memcg won't help us in this case.
529 *
530 * Respecting the original socket's memcg is a better
531 * decision in this case.
532 */
533 if (sk->sk_cgrp) {
534 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
535 mem_cgroup_get(sk->sk_cgrp->memcg);
536 return;
537 }
538
e1aab161
GC
539 rcu_read_lock();
540 memcg = mem_cgroup_from_task(current);
3f134619
GC
541 cg_proto = sk->sk_prot->proto_cgroup(memcg);
542 if (!mem_cgroup_is_root(memcg) && memcg_proto_active(cg_proto)) {
e1aab161 543 mem_cgroup_get(memcg);
3f134619 544 sk->sk_cgrp = cg_proto;
e1aab161
GC
545 }
546 rcu_read_unlock();
547 }
548}
549EXPORT_SYMBOL(sock_update_memcg);
550
551void sock_release_memcg(struct sock *sk)
552{
376be5ff 553 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
e1aab161
GC
554 struct mem_cgroup *memcg;
555 WARN_ON(!sk->sk_cgrp->memcg);
556 memcg = sk->sk_cgrp->memcg;
557 mem_cgroup_put(memcg);
558 }
559}
d1a4c0b3
GC
560
561struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
562{
563 if (!memcg || mem_cgroup_is_root(memcg))
564 return NULL;
565
566 return &memcg->tcp_mem.cg_proto;
567}
568EXPORT_SYMBOL(tcp_proto_cgroup);
e1aab161 569
3f134619
GC
570static void disarm_sock_keys(struct mem_cgroup *memcg)
571{
572 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
573 return;
574 static_key_slow_dec(&memcg_socket_limit_enabled);
575}
576#else
577static void disarm_sock_keys(struct mem_cgroup *memcg)
578{
579}
580#endif
581
a8964b9b 582#ifdef CONFIG_MEMCG_KMEM
55007d84
GC
583/*
584 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
585 * There are two main reasons for not using the css_id for this:
586 * 1) this works better in sparse environments, where we have a lot of memcgs,
587 * but only a few kmem-limited. Or also, if we have, for instance, 200
588 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
589 * 200 entry array for that.
590 *
591 * 2) In order not to violate the cgroup API, we would like to do all memory
592 * allocation in ->create(). At that point, we haven't yet allocated the
593 * css_id. Having a separate index prevents us from messing with the cgroup
594 * core for this
595 *
596 * The current size of the caches array is stored in
597 * memcg_limited_groups_array_size. It will double each time we have to
598 * increase it.
599 */
600static DEFINE_IDA(kmem_limited_groups);
749c5415
GC
601int memcg_limited_groups_array_size;
602
55007d84
GC
603/*
604 * MIN_SIZE is different than 1, because we would like to avoid going through
605 * the alloc/free process all the time. In a small machine, 4 kmem-limited
606 * cgroups is a reasonable guess. In the future, it could be a parameter or
607 * tunable, but that is strictly not necessary.
608 *
609 * MAX_SIZE should be as large as the number of css_ids. Ideally, we could get
610 * this constant directly from cgroup, but it is understandable that this is
611 * better kept as an internal representation in cgroup.c. In any case, the
612 * css_id space is not getting any smaller, and we don't have to necessarily
613 * increase ours as well if it increases.
614 */
615#define MEMCG_CACHES_MIN_SIZE 4
616#define MEMCG_CACHES_MAX_SIZE 65535
617
d7f25f8a
GC
618/*
619 * A lot of the calls to the cache allocation functions are expected to be
620 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
621 * conditional to this static branch, we'll have to allow modules that does
622 * kmem_cache_alloc and the such to see this symbol as well
623 */
a8964b9b 624struct static_key memcg_kmem_enabled_key;
d7f25f8a 625EXPORT_SYMBOL(memcg_kmem_enabled_key);
a8964b9b
GC
626
627static void disarm_kmem_keys(struct mem_cgroup *memcg)
628{
55007d84 629 if (memcg_kmem_is_active(memcg)) {
a8964b9b 630 static_key_slow_dec(&memcg_kmem_enabled_key);
55007d84
GC
631 ida_simple_remove(&kmem_limited_groups, memcg->kmemcg_id);
632 }
bea207c8
GC
633 /*
634 * This check can't live in kmem destruction function,
635 * since the charges will outlive the cgroup
636 */
637 WARN_ON(res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0);
a8964b9b
GC
638}
639#else
640static void disarm_kmem_keys(struct mem_cgroup *memcg)
641{
642}
643#endif /* CONFIG_MEMCG_KMEM */
644
645static void disarm_static_keys(struct mem_cgroup *memcg)
646{
647 disarm_sock_keys(memcg);
648 disarm_kmem_keys(memcg);
649}
650
c0ff4b85 651static void drain_all_stock_async(struct mem_cgroup *memcg);
8c7c6e34 652
f64c3f54 653static struct mem_cgroup_per_zone *
c0ff4b85 654mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
f64c3f54 655{
45cf7ebd 656 VM_BUG_ON((unsigned)nid >= nr_node_ids);
c0ff4b85 657 return &memcg->info.nodeinfo[nid]->zoneinfo[zid];
f64c3f54
BS
658}
659
c0ff4b85 660struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
d324236b 661{
c0ff4b85 662 return &memcg->css;
d324236b
WF
663}
664
f64c3f54 665static struct mem_cgroup_per_zone *
c0ff4b85 666page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
f64c3f54 667{
97a6c37b
JW
668 int nid = page_to_nid(page);
669 int zid = page_zonenum(page);
f64c3f54 670
c0ff4b85 671 return mem_cgroup_zoneinfo(memcg, nid, zid);
f64c3f54
BS
672}
673
674static struct mem_cgroup_tree_per_zone *
675soft_limit_tree_node_zone(int nid, int zid)
676{
677 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
678}
679
680static struct mem_cgroup_tree_per_zone *
681soft_limit_tree_from_page(struct page *page)
682{
683 int nid = page_to_nid(page);
684 int zid = page_zonenum(page);
685
686 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
687}
688
689static void
c0ff4b85 690__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
f64c3f54 691 struct mem_cgroup_per_zone *mz,
ef8745c1
KH
692 struct mem_cgroup_tree_per_zone *mctz,
693 unsigned long long new_usage_in_excess)
f64c3f54
BS
694{
695 struct rb_node **p = &mctz->rb_root.rb_node;
696 struct rb_node *parent = NULL;
697 struct mem_cgroup_per_zone *mz_node;
698
699 if (mz->on_tree)
700 return;
701
ef8745c1
KH
702 mz->usage_in_excess = new_usage_in_excess;
703 if (!mz->usage_in_excess)
704 return;
f64c3f54
BS
705 while (*p) {
706 parent = *p;
707 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
708 tree_node);
709 if (mz->usage_in_excess < mz_node->usage_in_excess)
710 p = &(*p)->rb_left;
711 /*
712 * We can't avoid mem cgroups that are over their soft
713 * limit by the same amount
714 */
715 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
716 p = &(*p)->rb_right;
717 }
718 rb_link_node(&mz->tree_node, parent, p);
719 rb_insert_color(&mz->tree_node, &mctz->rb_root);
720 mz->on_tree = true;
4e416953
BS
721}
722
723static void
c0ff4b85 724__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
4e416953
BS
725 struct mem_cgroup_per_zone *mz,
726 struct mem_cgroup_tree_per_zone *mctz)
727{
728 if (!mz->on_tree)
729 return;
730 rb_erase(&mz->tree_node, &mctz->rb_root);
731 mz->on_tree = false;
732}
733
f64c3f54 734static void
c0ff4b85 735mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
f64c3f54
BS
736 struct mem_cgroup_per_zone *mz,
737 struct mem_cgroup_tree_per_zone *mctz)
738{
739 spin_lock(&mctz->lock);
c0ff4b85 740 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
f64c3f54
BS
741 spin_unlock(&mctz->lock);
742}
743
f64c3f54 744
c0ff4b85 745static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
f64c3f54 746{
ef8745c1 747 unsigned long long excess;
f64c3f54
BS
748 struct mem_cgroup_per_zone *mz;
749 struct mem_cgroup_tree_per_zone *mctz;
4e649152
KH
750 int nid = page_to_nid(page);
751 int zid = page_zonenum(page);
f64c3f54
BS
752 mctz = soft_limit_tree_from_page(page);
753
754 /*
4e649152
KH
755 * Necessary to update all ancestors when hierarchy is used.
756 * because their event counter is not touched.
f64c3f54 757 */
c0ff4b85
R
758 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
759 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
760 excess = res_counter_soft_limit_excess(&memcg->res);
4e649152
KH
761 /*
762 * We have to update the tree if mz is on RB-tree or
763 * mem is over its softlimit.
764 */
ef8745c1 765 if (excess || mz->on_tree) {
4e649152
KH
766 spin_lock(&mctz->lock);
767 /* if on-tree, remove it */
768 if (mz->on_tree)
c0ff4b85 769 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
4e649152 770 /*
ef8745c1
KH
771 * Insert again. mz->usage_in_excess will be updated.
772 * If excess is 0, no tree ops.
4e649152 773 */
c0ff4b85 774 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
4e649152
KH
775 spin_unlock(&mctz->lock);
776 }
f64c3f54
BS
777 }
778}
779
c0ff4b85 780static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
f64c3f54
BS
781{
782 int node, zone;
783 struct mem_cgroup_per_zone *mz;
784 struct mem_cgroup_tree_per_zone *mctz;
785
3ed28fa1 786 for_each_node(node) {
f64c3f54 787 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
c0ff4b85 788 mz = mem_cgroup_zoneinfo(memcg, node, zone);
f64c3f54 789 mctz = soft_limit_tree_node_zone(node, zone);
c0ff4b85 790 mem_cgroup_remove_exceeded(memcg, mz, mctz);
f64c3f54
BS
791 }
792 }
793}
794
4e416953
BS
795static struct mem_cgroup_per_zone *
796__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
797{
798 struct rb_node *rightmost = NULL;
26251eaf 799 struct mem_cgroup_per_zone *mz;
4e416953
BS
800
801retry:
26251eaf 802 mz = NULL;
4e416953
BS
803 rightmost = rb_last(&mctz->rb_root);
804 if (!rightmost)
805 goto done; /* Nothing to reclaim from */
806
807 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
808 /*
809 * Remove the node now but someone else can add it back,
810 * we will to add it back at the end of reclaim to its correct
811 * position in the tree.
812 */
d79154bb
HD
813 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
814 if (!res_counter_soft_limit_excess(&mz->memcg->res) ||
815 !css_tryget(&mz->memcg->css))
4e416953
BS
816 goto retry;
817done:
818 return mz;
819}
820
821static struct mem_cgroup_per_zone *
822mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
823{
824 struct mem_cgroup_per_zone *mz;
825
826 spin_lock(&mctz->lock);
827 mz = __mem_cgroup_largest_soft_limit_node(mctz);
828 spin_unlock(&mctz->lock);
829 return mz;
830}
831
711d3d2c
KH
832/*
833 * Implementation Note: reading percpu statistics for memcg.
834 *
835 * Both of vmstat[] and percpu_counter has threshold and do periodic
836 * synchronization to implement "quick" read. There are trade-off between
837 * reading cost and precision of value. Then, we may have a chance to implement
838 * a periodic synchronizion of counter in memcg's counter.
839 *
840 * But this _read() function is used for user interface now. The user accounts
841 * memory usage by memory cgroup and he _always_ requires exact value because
842 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
843 * have to visit all online cpus and make sum. So, for now, unnecessary
844 * synchronization is not implemented. (just implemented for cpu hotplug)
845 *
846 * If there are kernel internal actions which can make use of some not-exact
847 * value, and reading all cpu value can be performance bottleneck in some
848 * common workload, threashold and synchonization as vmstat[] should be
849 * implemented.
850 */
c0ff4b85 851static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
7a159cc9 852 enum mem_cgroup_stat_index idx)
c62b1a3b 853{
7a159cc9 854 long val = 0;
c62b1a3b 855 int cpu;
c62b1a3b 856
711d3d2c
KH
857 get_online_cpus();
858 for_each_online_cpu(cpu)
c0ff4b85 859 val += per_cpu(memcg->stat->count[idx], cpu);
711d3d2c 860#ifdef CONFIG_HOTPLUG_CPU
c0ff4b85
R
861 spin_lock(&memcg->pcp_counter_lock);
862 val += memcg->nocpu_base.count[idx];
863 spin_unlock(&memcg->pcp_counter_lock);
711d3d2c
KH
864#endif
865 put_online_cpus();
c62b1a3b
KH
866 return val;
867}
868
c0ff4b85 869static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
0c3e73e8
BS
870 bool charge)
871{
872 int val = (charge) ? 1 : -1;
bff6bb83 873 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
0c3e73e8
BS
874}
875
c0ff4b85 876static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
e9f8974f
JW
877 enum mem_cgroup_events_index idx)
878{
879 unsigned long val = 0;
880 int cpu;
881
882 for_each_online_cpu(cpu)
c0ff4b85 883 val += per_cpu(memcg->stat->events[idx], cpu);
e9f8974f 884#ifdef CONFIG_HOTPLUG_CPU
c0ff4b85
R
885 spin_lock(&memcg->pcp_counter_lock);
886 val += memcg->nocpu_base.events[idx];
887 spin_unlock(&memcg->pcp_counter_lock);
e9f8974f
JW
888#endif
889 return val;
890}
891
c0ff4b85 892static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
b2402857 893 bool anon, int nr_pages)
d52aa412 894{
c62b1a3b
KH
895 preempt_disable();
896
b2402857
KH
897 /*
898 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
899 * counted as CACHE even if it's on ANON LRU.
900 */
901 if (anon)
902 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
c0ff4b85 903 nr_pages);
d52aa412 904 else
b2402857 905 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
c0ff4b85 906 nr_pages);
55e462b0 907
e401f176
KH
908 /* pagein of a big page is an event. So, ignore page size */
909 if (nr_pages > 0)
c0ff4b85 910 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
3751d604 911 else {
c0ff4b85 912 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
3751d604
KH
913 nr_pages = -nr_pages; /* for event */
914 }
e401f176 915
13114716 916 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
2e72b634 917
c62b1a3b 918 preempt_enable();
6d12e2d8
KH
919}
920
bb2a0de9 921unsigned long
4d7dcca2 922mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
074291fe
KK
923{
924 struct mem_cgroup_per_zone *mz;
925
926 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
927 return mz->lru_size[lru];
928}
929
930static unsigned long
c0ff4b85 931mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
bb2a0de9 932 unsigned int lru_mask)
889976db
YH
933{
934 struct mem_cgroup_per_zone *mz;
f156ab93 935 enum lru_list lru;
bb2a0de9
KH
936 unsigned long ret = 0;
937
c0ff4b85 938 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
bb2a0de9 939
f156ab93
HD
940 for_each_lru(lru) {
941 if (BIT(lru) & lru_mask)
942 ret += mz->lru_size[lru];
bb2a0de9
KH
943 }
944 return ret;
945}
946
947static unsigned long
c0ff4b85 948mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
bb2a0de9
KH
949 int nid, unsigned int lru_mask)
950{
889976db
YH
951 u64 total = 0;
952 int zid;
953
bb2a0de9 954 for (zid = 0; zid < MAX_NR_ZONES; zid++)
c0ff4b85
R
955 total += mem_cgroup_zone_nr_lru_pages(memcg,
956 nid, zid, lru_mask);
bb2a0de9 957
889976db
YH
958 return total;
959}
bb2a0de9 960
c0ff4b85 961static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
bb2a0de9 962 unsigned int lru_mask)
6d12e2d8 963{
889976db 964 int nid;
6d12e2d8
KH
965 u64 total = 0;
966
31aaea4a 967 for_each_node_state(nid, N_MEMORY)
c0ff4b85 968 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
6d12e2d8 969 return total;
d52aa412
KH
970}
971
f53d7ce3
JW
972static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
973 enum mem_cgroup_events_target target)
7a159cc9
JW
974{
975 unsigned long val, next;
976
13114716 977 val = __this_cpu_read(memcg->stat->nr_page_events);
4799401f 978 next = __this_cpu_read(memcg->stat->targets[target]);
7a159cc9 979 /* from time_after() in jiffies.h */
f53d7ce3
JW
980 if ((long)next - (long)val < 0) {
981 switch (target) {
982 case MEM_CGROUP_TARGET_THRESH:
983 next = val + THRESHOLDS_EVENTS_TARGET;
984 break;
985 case MEM_CGROUP_TARGET_SOFTLIMIT:
986 next = val + SOFTLIMIT_EVENTS_TARGET;
987 break;
988 case MEM_CGROUP_TARGET_NUMAINFO:
989 next = val + NUMAINFO_EVENTS_TARGET;
990 break;
991 default:
992 break;
993 }
994 __this_cpu_write(memcg->stat->targets[target], next);
995 return true;
7a159cc9 996 }
f53d7ce3 997 return false;
d2265e6f
KH
998}
999
1000/*
1001 * Check events in order.
1002 *
1003 */
c0ff4b85 1004static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
d2265e6f 1005{
4799401f 1006 preempt_disable();
d2265e6f 1007 /* threshold event is triggered in finer grain than soft limit */
f53d7ce3
JW
1008 if (unlikely(mem_cgroup_event_ratelimit(memcg,
1009 MEM_CGROUP_TARGET_THRESH))) {
82b3f2a7
AM
1010 bool do_softlimit;
1011 bool do_numainfo __maybe_unused;
f53d7ce3
JW
1012
1013 do_softlimit = mem_cgroup_event_ratelimit(memcg,
1014 MEM_CGROUP_TARGET_SOFTLIMIT);
1015#if MAX_NUMNODES > 1
1016 do_numainfo = mem_cgroup_event_ratelimit(memcg,
1017 MEM_CGROUP_TARGET_NUMAINFO);
1018#endif
1019 preempt_enable();
1020
c0ff4b85 1021 mem_cgroup_threshold(memcg);
f53d7ce3 1022 if (unlikely(do_softlimit))
c0ff4b85 1023 mem_cgroup_update_tree(memcg, page);
453a9bf3 1024#if MAX_NUMNODES > 1
f53d7ce3 1025 if (unlikely(do_numainfo))
c0ff4b85 1026 atomic_inc(&memcg->numainfo_events);
453a9bf3 1027#endif
f53d7ce3
JW
1028 } else
1029 preempt_enable();
d2265e6f
KH
1030}
1031
d1a4c0b3 1032struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
8cdea7c0 1033{
b2145145
WL
1034 return mem_cgroup_from_css(
1035 cgroup_subsys_state(cont, mem_cgroup_subsys_id));
8cdea7c0
BS
1036}
1037
cf475ad2 1038struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
78fb7466 1039{
31a78f23
BS
1040 /*
1041 * mm_update_next_owner() may clear mm->owner to NULL
1042 * if it races with swapoff, page migration, etc.
1043 * So this can be called with p == NULL.
1044 */
1045 if (unlikely(!p))
1046 return NULL;
1047
b2145145 1048 return mem_cgroup_from_css(task_subsys_state(p, mem_cgroup_subsys_id));
78fb7466
PE
1049}
1050
a433658c 1051struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
54595fe2 1052{
c0ff4b85 1053 struct mem_cgroup *memcg = NULL;
0b7f569e
KH
1054
1055 if (!mm)
1056 return NULL;
54595fe2
KH
1057 /*
1058 * Because we have no locks, mm->owner's may be being moved to other
1059 * cgroup. We use css_tryget() here even if this looks
1060 * pessimistic (rather than adding locks here).
1061 */
1062 rcu_read_lock();
1063 do {
c0ff4b85
R
1064 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1065 if (unlikely(!memcg))
54595fe2 1066 break;
c0ff4b85 1067 } while (!css_tryget(&memcg->css));
54595fe2 1068 rcu_read_unlock();
c0ff4b85 1069 return memcg;
54595fe2
KH
1070}
1071
5660048c
JW
1072/**
1073 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1074 * @root: hierarchy root
1075 * @prev: previously returned memcg, NULL on first invocation
1076 * @reclaim: cookie for shared reclaim walks, NULL for full walks
1077 *
1078 * Returns references to children of the hierarchy below @root, or
1079 * @root itself, or %NULL after a full round-trip.
1080 *
1081 * Caller must pass the return value in @prev on subsequent
1082 * invocations for reference counting, or use mem_cgroup_iter_break()
1083 * to cancel a hierarchy walk before the round-trip is complete.
1084 *
1085 * Reclaimers can specify a zone and a priority level in @reclaim to
1086 * divide up the memcgs in the hierarchy among all concurrent
1087 * reclaimers operating on the same zone and priority.
1088 */
1089struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
1090 struct mem_cgroup *prev,
1091 struct mem_cgroup_reclaim_cookie *reclaim)
14067bb3 1092{
9f3a0d09 1093 struct mem_cgroup *memcg = NULL;
542f85f9 1094 struct mem_cgroup *last_visited = NULL;
711d3d2c 1095
5660048c
JW
1096 if (mem_cgroup_disabled())
1097 return NULL;
1098
9f3a0d09
JW
1099 if (!root)
1100 root = root_mem_cgroup;
7d74b06f 1101
9f3a0d09 1102 if (prev && !reclaim)
542f85f9 1103 last_visited = prev;
14067bb3 1104
9f3a0d09
JW
1105 if (!root->use_hierarchy && root != root_mem_cgroup) {
1106 if (prev)
c40046f3 1107 goto out_css_put;
9f3a0d09
JW
1108 return root;
1109 }
14067bb3 1110
542f85f9 1111 rcu_read_lock();
9f3a0d09 1112 while (!memcg) {
527a5ec9 1113 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
542f85f9 1114 struct cgroup_subsys_state *css = NULL;
711d3d2c 1115
527a5ec9
JW
1116 if (reclaim) {
1117 int nid = zone_to_nid(reclaim->zone);
1118 int zid = zone_idx(reclaim->zone);
1119 struct mem_cgroup_per_zone *mz;
1120
1121 mz = mem_cgroup_zoneinfo(root, nid, zid);
1122 iter = &mz->reclaim_iter[reclaim->priority];
542f85f9
MH
1123 spin_lock(&iter->iter_lock);
1124 last_visited = iter->last_visited;
1125 if (prev && reclaim->generation != iter->generation) {
1126 if (last_visited) {
1127 css_put(&last_visited->css);
1128 iter->last_visited = NULL;
1129 }
1130 spin_unlock(&iter->iter_lock);
1131 goto out_unlock;
1132 }
527a5ec9 1133 }
7d74b06f 1134
542f85f9
MH
1135 /*
1136 * Root is not visited by cgroup iterators so it needs an
1137 * explicit visit.
1138 */
1139 if (!last_visited) {
1140 css = &root->css;
1141 } else {
1142 struct cgroup *prev_cgroup, *next_cgroup;
1143
1144 prev_cgroup = (last_visited == root) ? NULL
1145 : last_visited->css.cgroup;
1146 next_cgroup = cgroup_next_descendant_pre(prev_cgroup,
1147 root->css.cgroup);
1148 if (next_cgroup)
1149 css = cgroup_subsys_state(next_cgroup,
1150 mem_cgroup_subsys_id);
1151 }
1152
1153 /*
1154 * Even if we found a group we have to make sure it is alive.
1155 * css && !memcg means that the groups should be skipped and
1156 * we should continue the tree walk.
1157 * last_visited css is safe to use because it is protected by
1158 * css_get and the tree walk is rcu safe.
1159 */
1160 if (css == &root->css || (css && css_tryget(css)))
1161 memcg = mem_cgroup_from_css(css);
14067bb3 1162
527a5ec9 1163 if (reclaim) {
542f85f9
MH
1164 struct mem_cgroup *curr = memcg;
1165
1166 if (last_visited)
1167 css_put(&last_visited->css);
1168
1169 if (css && !memcg)
1170 curr = mem_cgroup_from_css(css);
1171
1172 /* make sure that the cached memcg is not removed */
1173 if (curr)
1174 css_get(&curr->css);
1175 iter->last_visited = curr;
1176
527a5ec9
JW
1177 if (!css)
1178 iter->generation++;
1179 else if (!prev && memcg)
1180 reclaim->generation = iter->generation;
542f85f9
MH
1181 spin_unlock(&iter->iter_lock);
1182 } else if (css && !memcg) {
1183 last_visited = mem_cgroup_from_css(css);
527a5ec9 1184 }
9f3a0d09
JW
1185
1186 if (prev && !css)
542f85f9 1187 goto out_unlock;
9f3a0d09 1188 }
542f85f9
MH
1189out_unlock:
1190 rcu_read_unlock();
c40046f3
MH
1191out_css_put:
1192 if (prev && prev != root)
1193 css_put(&prev->css);
1194
9f3a0d09 1195 return memcg;
14067bb3 1196}
7d74b06f 1197
5660048c
JW
1198/**
1199 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1200 * @root: hierarchy root
1201 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1202 */
1203void mem_cgroup_iter_break(struct mem_cgroup *root,
1204 struct mem_cgroup *prev)
9f3a0d09
JW
1205{
1206 if (!root)
1207 root = root_mem_cgroup;
1208 if (prev && prev != root)
1209 css_put(&prev->css);
1210}
7d74b06f 1211
9f3a0d09
JW
1212/*
1213 * Iteration constructs for visiting all cgroups (under a tree). If
1214 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1215 * be used for reference counting.
1216 */
1217#define for_each_mem_cgroup_tree(iter, root) \
527a5ec9 1218 for (iter = mem_cgroup_iter(root, NULL, NULL); \
9f3a0d09 1219 iter != NULL; \
527a5ec9 1220 iter = mem_cgroup_iter(root, iter, NULL))
711d3d2c 1221
9f3a0d09 1222#define for_each_mem_cgroup(iter) \
527a5ec9 1223 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
9f3a0d09 1224 iter != NULL; \
527a5ec9 1225 iter = mem_cgroup_iter(NULL, iter, NULL))
14067bb3 1226
68ae564b 1227void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
456f998e 1228{
c0ff4b85 1229 struct mem_cgroup *memcg;
456f998e 1230
456f998e 1231 rcu_read_lock();
c0ff4b85
R
1232 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1233 if (unlikely(!memcg))
456f998e
YH
1234 goto out;
1235
1236 switch (idx) {
456f998e 1237 case PGFAULT:
0e574a93
JW
1238 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1239 break;
1240 case PGMAJFAULT:
1241 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
456f998e
YH
1242 break;
1243 default:
1244 BUG();
1245 }
1246out:
1247 rcu_read_unlock();
1248}
68ae564b 1249EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
456f998e 1250
925b7673
JW
1251/**
1252 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1253 * @zone: zone of the wanted lruvec
fa9add64 1254 * @memcg: memcg of the wanted lruvec
925b7673
JW
1255 *
1256 * Returns the lru list vector holding pages for the given @zone and
1257 * @mem. This can be the global zone lruvec, if the memory controller
1258 * is disabled.
1259 */
1260struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1261 struct mem_cgroup *memcg)
1262{
1263 struct mem_cgroup_per_zone *mz;
bea8c150 1264 struct lruvec *lruvec;
925b7673 1265
bea8c150
HD
1266 if (mem_cgroup_disabled()) {
1267 lruvec = &zone->lruvec;
1268 goto out;
1269 }
925b7673
JW
1270
1271 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
bea8c150
HD
1272 lruvec = &mz->lruvec;
1273out:
1274 /*
1275 * Since a node can be onlined after the mem_cgroup was created,
1276 * we have to be prepared to initialize lruvec->zone here;
1277 * and if offlined then reonlined, we need to reinitialize it.
1278 */
1279 if (unlikely(lruvec->zone != zone))
1280 lruvec->zone = zone;
1281 return lruvec;
925b7673
JW
1282}
1283
08e552c6
KH
1284/*
1285 * Following LRU functions are allowed to be used without PCG_LOCK.
1286 * Operations are called by routine of global LRU independently from memcg.
1287 * What we have to take care of here is validness of pc->mem_cgroup.
1288 *
1289 * Changes to pc->mem_cgroup happens when
1290 * 1. charge
1291 * 2. moving account
1292 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1293 * It is added to LRU before charge.
1294 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1295 * When moving account, the page is not on LRU. It's isolated.
1296 */
4f98a2fe 1297
925b7673 1298/**
fa9add64 1299 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
925b7673 1300 * @page: the page
fa9add64 1301 * @zone: zone of the page
925b7673 1302 */
fa9add64 1303struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
08e552c6 1304{
08e552c6 1305 struct mem_cgroup_per_zone *mz;
925b7673
JW
1306 struct mem_cgroup *memcg;
1307 struct page_cgroup *pc;
bea8c150 1308 struct lruvec *lruvec;
6d12e2d8 1309
bea8c150
HD
1310 if (mem_cgroup_disabled()) {
1311 lruvec = &zone->lruvec;
1312 goto out;
1313 }
925b7673 1314
08e552c6 1315 pc = lookup_page_cgroup(page);
38c5d72f 1316 memcg = pc->mem_cgroup;
7512102c
HD
1317
1318 /*
fa9add64 1319 * Surreptitiously switch any uncharged offlist page to root:
7512102c
HD
1320 * an uncharged page off lru does nothing to secure
1321 * its former mem_cgroup from sudden removal.
1322 *
1323 * Our caller holds lru_lock, and PageCgroupUsed is updated
1324 * under page_cgroup lock: between them, they make all uses
1325 * of pc->mem_cgroup safe.
1326 */
fa9add64 1327 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
7512102c
HD
1328 pc->mem_cgroup = memcg = root_mem_cgroup;
1329
925b7673 1330 mz = page_cgroup_zoneinfo(memcg, page);
bea8c150
HD
1331 lruvec = &mz->lruvec;
1332out:
1333 /*
1334 * Since a node can be onlined after the mem_cgroup was created,
1335 * we have to be prepared to initialize lruvec->zone here;
1336 * and if offlined then reonlined, we need to reinitialize it.
1337 */
1338 if (unlikely(lruvec->zone != zone))
1339 lruvec->zone = zone;
1340 return lruvec;
08e552c6 1341}
b69408e8 1342
925b7673 1343/**
fa9add64
HD
1344 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1345 * @lruvec: mem_cgroup per zone lru vector
1346 * @lru: index of lru list the page is sitting on
1347 * @nr_pages: positive when adding or negative when removing
925b7673 1348 *
fa9add64
HD
1349 * This function must be called when a page is added to or removed from an
1350 * lru list.
3f58a829 1351 */
fa9add64
HD
1352void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1353 int nr_pages)
3f58a829
MK
1354{
1355 struct mem_cgroup_per_zone *mz;
fa9add64 1356 unsigned long *lru_size;
3f58a829
MK
1357
1358 if (mem_cgroup_disabled())
1359 return;
1360
fa9add64
HD
1361 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1362 lru_size = mz->lru_size + lru;
1363 *lru_size += nr_pages;
1364 VM_BUG_ON((long)(*lru_size) < 0);
08e552c6 1365}
544122e5 1366
3e92041d 1367/*
c0ff4b85 1368 * Checks whether given mem is same or in the root_mem_cgroup's
3e92041d
MH
1369 * hierarchy subtree
1370 */
c3ac9a8a
JW
1371bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1372 struct mem_cgroup *memcg)
3e92041d 1373{
91c63734
JW
1374 if (root_memcg == memcg)
1375 return true;
3a981f48 1376 if (!root_memcg->use_hierarchy || !memcg)
91c63734 1377 return false;
c3ac9a8a
JW
1378 return css_is_ancestor(&memcg->css, &root_memcg->css);
1379}
1380
1381static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1382 struct mem_cgroup *memcg)
1383{
1384 bool ret;
1385
91c63734 1386 rcu_read_lock();
c3ac9a8a 1387 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
91c63734
JW
1388 rcu_read_unlock();
1389 return ret;
3e92041d
MH
1390}
1391
c0ff4b85 1392int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *memcg)
4c4a2214
DR
1393{
1394 int ret;
0b7f569e 1395 struct mem_cgroup *curr = NULL;
158e0a2d 1396 struct task_struct *p;
4c4a2214 1397
158e0a2d 1398 p = find_lock_task_mm(task);
de077d22
DR
1399 if (p) {
1400 curr = try_get_mem_cgroup_from_mm(p->mm);
1401 task_unlock(p);
1402 } else {
1403 /*
1404 * All threads may have already detached their mm's, but the oom
1405 * killer still needs to detect if they have already been oom
1406 * killed to prevent needlessly killing additional tasks.
1407 */
1408 task_lock(task);
1409 curr = mem_cgroup_from_task(task);
1410 if (curr)
1411 css_get(&curr->css);
1412 task_unlock(task);
1413 }
0b7f569e
KH
1414 if (!curr)
1415 return 0;
d31f56db 1416 /*
c0ff4b85 1417 * We should check use_hierarchy of "memcg" not "curr". Because checking
d31f56db 1418 * use_hierarchy of "curr" here make this function true if hierarchy is
c0ff4b85
R
1419 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1420 * hierarchy(even if use_hierarchy is disabled in "memcg").
d31f56db 1421 */
c0ff4b85 1422 ret = mem_cgroup_same_or_subtree(memcg, curr);
0b7f569e 1423 css_put(&curr->css);
4c4a2214
DR
1424 return ret;
1425}
1426
c56d5c7d 1427int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
14797e23 1428{
9b272977 1429 unsigned long inactive_ratio;
14797e23 1430 unsigned long inactive;
9b272977 1431 unsigned long active;
c772be93 1432 unsigned long gb;
14797e23 1433
4d7dcca2
HD
1434 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1435 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
14797e23 1436
c772be93
KM
1437 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1438 if (gb)
1439 inactive_ratio = int_sqrt(10 * gb);
1440 else
1441 inactive_ratio = 1;
1442
9b272977 1443 return inactive * inactive_ratio < active;
14797e23
KM
1444}
1445
6d61ef40
BS
1446#define mem_cgroup_from_res_counter(counter, member) \
1447 container_of(counter, struct mem_cgroup, member)
1448
19942822 1449/**
9d11ea9f 1450 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
dad7557e 1451 * @memcg: the memory cgroup
19942822 1452 *
9d11ea9f 1453 * Returns the maximum amount of memory @mem can be charged with, in
7ec99d62 1454 * pages.
19942822 1455 */
c0ff4b85 1456static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
19942822 1457{
9d11ea9f
JW
1458 unsigned long long margin;
1459
c0ff4b85 1460 margin = res_counter_margin(&memcg->res);
9d11ea9f 1461 if (do_swap_account)
c0ff4b85 1462 margin = min(margin, res_counter_margin(&memcg->memsw));
7ec99d62 1463 return margin >> PAGE_SHIFT;
19942822
JW
1464}
1465
1f4c025b 1466int mem_cgroup_swappiness(struct mem_cgroup *memcg)
a7885eb8
KM
1467{
1468 struct cgroup *cgrp = memcg->css.cgroup;
a7885eb8
KM
1469
1470 /* root ? */
1471 if (cgrp->parent == NULL)
1472 return vm_swappiness;
1473
bf1ff263 1474 return memcg->swappiness;
a7885eb8
KM
1475}
1476
619d094b
KH
1477/*
1478 * memcg->moving_account is used for checking possibility that some thread is
1479 * calling move_account(). When a thread on CPU-A starts moving pages under
1480 * a memcg, other threads should check memcg->moving_account under
1481 * rcu_read_lock(), like this:
1482 *
1483 * CPU-A CPU-B
1484 * rcu_read_lock()
1485 * memcg->moving_account+1 if (memcg->mocing_account)
1486 * take heavy locks.
1487 * synchronize_rcu() update something.
1488 * rcu_read_unlock()
1489 * start move here.
1490 */
4331f7d3
KH
1491
1492/* for quick checking without looking up memcg */
1493atomic_t memcg_moving __read_mostly;
1494
c0ff4b85 1495static void mem_cgroup_start_move(struct mem_cgroup *memcg)
32047e2a 1496{
4331f7d3 1497 atomic_inc(&memcg_moving);
619d094b 1498 atomic_inc(&memcg->moving_account);
32047e2a
KH
1499 synchronize_rcu();
1500}
1501
c0ff4b85 1502static void mem_cgroup_end_move(struct mem_cgroup *memcg)
32047e2a 1503{
619d094b
KH
1504 /*
1505 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1506 * We check NULL in callee rather than caller.
1507 */
4331f7d3
KH
1508 if (memcg) {
1509 atomic_dec(&memcg_moving);
619d094b 1510 atomic_dec(&memcg->moving_account);
4331f7d3 1511 }
32047e2a 1512}
619d094b 1513
32047e2a
KH
1514/*
1515 * 2 routines for checking "mem" is under move_account() or not.
1516 *
13fd1dd9
AM
1517 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1518 * is used for avoiding races in accounting. If true,
32047e2a
KH
1519 * pc->mem_cgroup may be overwritten.
1520 *
1521 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1522 * under hierarchy of moving cgroups. This is for
1523 * waiting at hith-memory prressure caused by "move".
1524 */
1525
13fd1dd9 1526static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
32047e2a
KH
1527{
1528 VM_BUG_ON(!rcu_read_lock_held());
619d094b 1529 return atomic_read(&memcg->moving_account) > 0;
32047e2a 1530}
4b534334 1531
c0ff4b85 1532static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
4b534334 1533{
2bd9bb20
KH
1534 struct mem_cgroup *from;
1535 struct mem_cgroup *to;
4b534334 1536 bool ret = false;
2bd9bb20
KH
1537 /*
1538 * Unlike task_move routines, we access mc.to, mc.from not under
1539 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1540 */
1541 spin_lock(&mc.lock);
1542 from = mc.from;
1543 to = mc.to;
1544 if (!from)
1545 goto unlock;
3e92041d 1546
c0ff4b85
R
1547 ret = mem_cgroup_same_or_subtree(memcg, from)
1548 || mem_cgroup_same_or_subtree(memcg, to);
2bd9bb20
KH
1549unlock:
1550 spin_unlock(&mc.lock);
4b534334
KH
1551 return ret;
1552}
1553
c0ff4b85 1554static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
4b534334
KH
1555{
1556 if (mc.moving_task && current != mc.moving_task) {
c0ff4b85 1557 if (mem_cgroup_under_move(memcg)) {
4b534334
KH
1558 DEFINE_WAIT(wait);
1559 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1560 /* moving charge context might have finished. */
1561 if (mc.moving_task)
1562 schedule();
1563 finish_wait(&mc.waitq, &wait);
1564 return true;
1565 }
1566 }
1567 return false;
1568}
1569
312734c0
KH
1570/*
1571 * Take this lock when
1572 * - a code tries to modify page's memcg while it's USED.
1573 * - a code tries to modify page state accounting in a memcg.
13fd1dd9 1574 * see mem_cgroup_stolen(), too.
312734c0
KH
1575 */
1576static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1577 unsigned long *flags)
1578{
1579 spin_lock_irqsave(&memcg->move_lock, *flags);
1580}
1581
1582static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1583 unsigned long *flags)
1584{
1585 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1586}
1587
58cf188e 1588#define K(x) ((x) << (PAGE_SHIFT-10))
e222432b 1589/**
58cf188e 1590 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
e222432b
BS
1591 * @memcg: The memory cgroup that went over limit
1592 * @p: Task that is going to be killed
1593 *
1594 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1595 * enabled
1596 */
1597void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1598{
1599 struct cgroup *task_cgrp;
1600 struct cgroup *mem_cgrp;
1601 /*
1602 * Need a buffer in BSS, can't rely on allocations. The code relies
1603 * on the assumption that OOM is serialized for memory controller.
1604 * If this assumption is broken, revisit this code.
1605 */
1606 static char memcg_name[PATH_MAX];
1607 int ret;
58cf188e
SZ
1608 struct mem_cgroup *iter;
1609 unsigned int i;
e222432b 1610
58cf188e 1611 if (!p)
e222432b
BS
1612 return;
1613
e222432b
BS
1614 rcu_read_lock();
1615
1616 mem_cgrp = memcg->css.cgroup;
1617 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1618
1619 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1620 if (ret < 0) {
1621 /*
1622 * Unfortunately, we are unable to convert to a useful name
1623 * But we'll still print out the usage information
1624 */
1625 rcu_read_unlock();
1626 goto done;
1627 }
1628 rcu_read_unlock();
1629
d045197f 1630 pr_info("Task in %s killed", memcg_name);
e222432b
BS
1631
1632 rcu_read_lock();
1633 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1634 if (ret < 0) {
1635 rcu_read_unlock();
1636 goto done;
1637 }
1638 rcu_read_unlock();
1639
1640 /*
1641 * Continues from above, so we don't need an KERN_ level
1642 */
d045197f 1643 pr_cont(" as a result of limit of %s\n", memcg_name);
e222432b
BS
1644done:
1645
d045197f 1646 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
e222432b
BS
1647 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1648 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1649 res_counter_read_u64(&memcg->res, RES_FAILCNT));
d045197f 1650 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
e222432b
BS
1651 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1652 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1653 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
d045197f 1654 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
510fc4e1
GC
1655 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1656 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1657 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
58cf188e
SZ
1658
1659 for_each_mem_cgroup_tree(iter, memcg) {
1660 pr_info("Memory cgroup stats");
1661
1662 rcu_read_lock();
1663 ret = cgroup_path(iter->css.cgroup, memcg_name, PATH_MAX);
1664 if (!ret)
1665 pr_cont(" for %s", memcg_name);
1666 rcu_read_unlock();
1667 pr_cont(":");
1668
1669 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1670 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1671 continue;
1672 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1673 K(mem_cgroup_read_stat(iter, i)));
1674 }
1675
1676 for (i = 0; i < NR_LRU_LISTS; i++)
1677 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1678 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1679
1680 pr_cont("\n");
1681 }
e222432b
BS
1682}
1683
81d39c20
KH
1684/*
1685 * This function returns the number of memcg under hierarchy tree. Returns
1686 * 1(self count) if no children.
1687 */
c0ff4b85 1688static int mem_cgroup_count_children(struct mem_cgroup *memcg)
81d39c20
KH
1689{
1690 int num = 0;
7d74b06f
KH
1691 struct mem_cgroup *iter;
1692
c0ff4b85 1693 for_each_mem_cgroup_tree(iter, memcg)
7d74b06f 1694 num++;
81d39c20
KH
1695 return num;
1696}
1697
a63d83f4
DR
1698/*
1699 * Return the memory (and swap, if configured) limit for a memcg.
1700 */
9cbb78bb 1701static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
a63d83f4
DR
1702{
1703 u64 limit;
a63d83f4 1704
f3e8eb70 1705 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
f3e8eb70 1706
a63d83f4 1707 /*
9a5a8f19 1708 * Do not consider swap space if we cannot swap due to swappiness
a63d83f4 1709 */
9a5a8f19
MH
1710 if (mem_cgroup_swappiness(memcg)) {
1711 u64 memsw;
1712
1713 limit += total_swap_pages << PAGE_SHIFT;
1714 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1715
1716 /*
1717 * If memsw is finite and limits the amount of swap space
1718 * available to this memcg, return that limit.
1719 */
1720 limit = min(limit, memsw);
1721 }
1722
1723 return limit;
a63d83f4
DR
1724}
1725
19965460
DR
1726static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1727 int order)
9cbb78bb
DR
1728{
1729 struct mem_cgroup *iter;
1730 unsigned long chosen_points = 0;
1731 unsigned long totalpages;
1732 unsigned int points = 0;
1733 struct task_struct *chosen = NULL;
1734
876aafbf
DR
1735 /*
1736 * If current has a pending SIGKILL, then automatically select it. The
1737 * goal is to allow it to allocate so that it may quickly exit and free
1738 * its memory.
1739 */
1740 if (fatal_signal_pending(current)) {
1741 set_thread_flag(TIF_MEMDIE);
1742 return;
1743 }
1744
1745 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
9cbb78bb
DR
1746 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1747 for_each_mem_cgroup_tree(iter, memcg) {
1748 struct cgroup *cgroup = iter->css.cgroup;
1749 struct cgroup_iter it;
1750 struct task_struct *task;
1751
1752 cgroup_iter_start(cgroup, &it);
1753 while ((task = cgroup_iter_next(cgroup, &it))) {
1754 switch (oom_scan_process_thread(task, totalpages, NULL,
1755 false)) {
1756 case OOM_SCAN_SELECT:
1757 if (chosen)
1758 put_task_struct(chosen);
1759 chosen = task;
1760 chosen_points = ULONG_MAX;
1761 get_task_struct(chosen);
1762 /* fall through */
1763 case OOM_SCAN_CONTINUE:
1764 continue;
1765 case OOM_SCAN_ABORT:
1766 cgroup_iter_end(cgroup, &it);
1767 mem_cgroup_iter_break(memcg, iter);
1768 if (chosen)
1769 put_task_struct(chosen);
1770 return;
1771 case OOM_SCAN_OK:
1772 break;
1773 };
1774 points = oom_badness(task, memcg, NULL, totalpages);
1775 if (points > chosen_points) {
1776 if (chosen)
1777 put_task_struct(chosen);
1778 chosen = task;
1779 chosen_points = points;
1780 get_task_struct(chosen);
1781 }
1782 }
1783 cgroup_iter_end(cgroup, &it);
1784 }
1785
1786 if (!chosen)
1787 return;
1788 points = chosen_points * 1000 / totalpages;
9cbb78bb
DR
1789 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1790 NULL, "Memory cgroup out of memory");
9cbb78bb
DR
1791}
1792
5660048c
JW
1793static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1794 gfp_t gfp_mask,
1795 unsigned long flags)
1796{
1797 unsigned long total = 0;
1798 bool noswap = false;
1799 int loop;
1800
1801 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1802 noswap = true;
1803 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1804 noswap = true;
1805
1806 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1807 if (loop)
1808 drain_all_stock_async(memcg);
1809 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1810 /*
1811 * Allow limit shrinkers, which are triggered directly
1812 * by userspace, to catch signals and stop reclaim
1813 * after minimal progress, regardless of the margin.
1814 */
1815 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1816 break;
1817 if (mem_cgroup_margin(memcg))
1818 break;
1819 /*
1820 * If nothing was reclaimed after two attempts, there
1821 * may be no reclaimable pages in this hierarchy.
1822 */
1823 if (loop && !total)
1824 break;
1825 }
1826 return total;
1827}
1828
4d0c066d
KH
1829/**
1830 * test_mem_cgroup_node_reclaimable
dad7557e 1831 * @memcg: the target memcg
4d0c066d
KH
1832 * @nid: the node ID to be checked.
1833 * @noswap : specify true here if the user wants flle only information.
1834 *
1835 * This function returns whether the specified memcg contains any
1836 * reclaimable pages on a node. Returns true if there are any reclaimable
1837 * pages in the node.
1838 */
c0ff4b85 1839static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
4d0c066d
KH
1840 int nid, bool noswap)
1841{
c0ff4b85 1842 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
4d0c066d
KH
1843 return true;
1844 if (noswap || !total_swap_pages)
1845 return false;
c0ff4b85 1846 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
4d0c066d
KH
1847 return true;
1848 return false;
1849
1850}
889976db
YH
1851#if MAX_NUMNODES > 1
1852
1853/*
1854 * Always updating the nodemask is not very good - even if we have an empty
1855 * list or the wrong list here, we can start from some node and traverse all
1856 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1857 *
1858 */
c0ff4b85 1859static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
889976db
YH
1860{
1861 int nid;
453a9bf3
KH
1862 /*
1863 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1864 * pagein/pageout changes since the last update.
1865 */
c0ff4b85 1866 if (!atomic_read(&memcg->numainfo_events))
453a9bf3 1867 return;
c0ff4b85 1868 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
889976db
YH
1869 return;
1870
889976db 1871 /* make a nodemask where this memcg uses memory from */
31aaea4a 1872 memcg->scan_nodes = node_states[N_MEMORY];
889976db 1873
31aaea4a 1874 for_each_node_mask(nid, node_states[N_MEMORY]) {
889976db 1875
c0ff4b85
R
1876 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1877 node_clear(nid, memcg->scan_nodes);
889976db 1878 }
453a9bf3 1879
c0ff4b85
R
1880 atomic_set(&memcg->numainfo_events, 0);
1881 atomic_set(&memcg->numainfo_updating, 0);
889976db
YH
1882}
1883
1884/*
1885 * Selecting a node where we start reclaim from. Because what we need is just
1886 * reducing usage counter, start from anywhere is O,K. Considering
1887 * memory reclaim from current node, there are pros. and cons.
1888 *
1889 * Freeing memory from current node means freeing memory from a node which
1890 * we'll use or we've used. So, it may make LRU bad. And if several threads
1891 * hit limits, it will see a contention on a node. But freeing from remote
1892 * node means more costs for memory reclaim because of memory latency.
1893 *
1894 * Now, we use round-robin. Better algorithm is welcomed.
1895 */
c0ff4b85 1896int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
889976db
YH
1897{
1898 int node;
1899
c0ff4b85
R
1900 mem_cgroup_may_update_nodemask(memcg);
1901 node = memcg->last_scanned_node;
889976db 1902
c0ff4b85 1903 node = next_node(node, memcg->scan_nodes);
889976db 1904 if (node == MAX_NUMNODES)
c0ff4b85 1905 node = first_node(memcg->scan_nodes);
889976db
YH
1906 /*
1907 * We call this when we hit limit, not when pages are added to LRU.
1908 * No LRU may hold pages because all pages are UNEVICTABLE or
1909 * memcg is too small and all pages are not on LRU. In that case,
1910 * we use curret node.
1911 */
1912 if (unlikely(node == MAX_NUMNODES))
1913 node = numa_node_id();
1914
c0ff4b85 1915 memcg->last_scanned_node = node;
889976db
YH
1916 return node;
1917}
1918
4d0c066d
KH
1919/*
1920 * Check all nodes whether it contains reclaimable pages or not.
1921 * For quick scan, we make use of scan_nodes. This will allow us to skip
1922 * unused nodes. But scan_nodes is lazily updated and may not cotain
1923 * enough new information. We need to do double check.
1924 */
6bbda35c 1925static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
4d0c066d
KH
1926{
1927 int nid;
1928
1929 /*
1930 * quick check...making use of scan_node.
1931 * We can skip unused nodes.
1932 */
c0ff4b85
R
1933 if (!nodes_empty(memcg->scan_nodes)) {
1934 for (nid = first_node(memcg->scan_nodes);
4d0c066d 1935 nid < MAX_NUMNODES;
c0ff4b85 1936 nid = next_node(nid, memcg->scan_nodes)) {
4d0c066d 1937
c0ff4b85 1938 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
4d0c066d
KH
1939 return true;
1940 }
1941 }
1942 /*
1943 * Check rest of nodes.
1944 */
31aaea4a 1945 for_each_node_state(nid, N_MEMORY) {
c0ff4b85 1946 if (node_isset(nid, memcg->scan_nodes))
4d0c066d 1947 continue;
c0ff4b85 1948 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
4d0c066d
KH
1949 return true;
1950 }
1951 return false;
1952}
1953
889976db 1954#else
c0ff4b85 1955int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
889976db
YH
1956{
1957 return 0;
1958}
4d0c066d 1959
6bbda35c 1960static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
4d0c066d 1961{
c0ff4b85 1962 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
4d0c066d 1963}
889976db
YH
1964#endif
1965
5660048c
JW
1966static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1967 struct zone *zone,
1968 gfp_t gfp_mask,
1969 unsigned long *total_scanned)
6d61ef40 1970{
9f3a0d09 1971 struct mem_cgroup *victim = NULL;
5660048c 1972 int total = 0;
04046e1a 1973 int loop = 0;
9d11ea9f 1974 unsigned long excess;
185efc0f 1975 unsigned long nr_scanned;
527a5ec9
JW
1976 struct mem_cgroup_reclaim_cookie reclaim = {
1977 .zone = zone,
1978 .priority = 0,
1979 };
9d11ea9f 1980
c0ff4b85 1981 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
04046e1a 1982
4e416953 1983 while (1) {
527a5ec9 1984 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
9f3a0d09 1985 if (!victim) {
04046e1a 1986 loop++;
4e416953
BS
1987 if (loop >= 2) {
1988 /*
1989 * If we have not been able to reclaim
1990 * anything, it might because there are
1991 * no reclaimable pages under this hierarchy
1992 */
5660048c 1993 if (!total)
4e416953 1994 break;
4e416953 1995 /*
25985edc 1996 * We want to do more targeted reclaim.
4e416953
BS
1997 * excess >> 2 is not to excessive so as to
1998 * reclaim too much, nor too less that we keep
1999 * coming back to reclaim from this cgroup
2000 */
2001 if (total >= (excess >> 2) ||
9f3a0d09 2002 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
4e416953 2003 break;
4e416953 2004 }
9f3a0d09 2005 continue;
4e416953 2006 }
5660048c 2007 if (!mem_cgroup_reclaimable(victim, false))
6d61ef40 2008 continue;
5660048c
JW
2009 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
2010 zone, &nr_scanned);
2011 *total_scanned += nr_scanned;
2012 if (!res_counter_soft_limit_excess(&root_memcg->res))
9f3a0d09 2013 break;
6d61ef40 2014 }
9f3a0d09 2015 mem_cgroup_iter_break(root_memcg, victim);
04046e1a 2016 return total;
6d61ef40
BS
2017}
2018
867578cb
KH
2019/*
2020 * Check OOM-Killer is already running under our hierarchy.
2021 * If someone is running, return false.
1af8efe9 2022 * Has to be called with memcg_oom_lock
867578cb 2023 */
c0ff4b85 2024static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
867578cb 2025{
79dfdacc 2026 struct mem_cgroup *iter, *failed = NULL;
a636b327 2027
9f3a0d09 2028 for_each_mem_cgroup_tree(iter, memcg) {
23751be0 2029 if (iter->oom_lock) {
79dfdacc
MH
2030 /*
2031 * this subtree of our hierarchy is already locked
2032 * so we cannot give a lock.
2033 */
79dfdacc 2034 failed = iter;
9f3a0d09
JW
2035 mem_cgroup_iter_break(memcg, iter);
2036 break;
23751be0
JW
2037 } else
2038 iter->oom_lock = true;
7d74b06f 2039 }
867578cb 2040
79dfdacc 2041 if (!failed)
23751be0 2042 return true;
79dfdacc
MH
2043
2044 /*
2045 * OK, we failed to lock the whole subtree so we have to clean up
2046 * what we set up to the failing subtree
2047 */
9f3a0d09 2048 for_each_mem_cgroup_tree(iter, memcg) {
79dfdacc 2049 if (iter == failed) {
9f3a0d09
JW
2050 mem_cgroup_iter_break(memcg, iter);
2051 break;
79dfdacc
MH
2052 }
2053 iter->oom_lock = false;
2054 }
23751be0 2055 return false;
a636b327 2056}
0b7f569e 2057
79dfdacc 2058/*
1af8efe9 2059 * Has to be called with memcg_oom_lock
79dfdacc 2060 */
c0ff4b85 2061static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
0b7f569e 2062{
7d74b06f
KH
2063 struct mem_cgroup *iter;
2064
c0ff4b85 2065 for_each_mem_cgroup_tree(iter, memcg)
79dfdacc
MH
2066 iter->oom_lock = false;
2067 return 0;
2068}
2069
c0ff4b85 2070static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
79dfdacc
MH
2071{
2072 struct mem_cgroup *iter;
2073
c0ff4b85 2074 for_each_mem_cgroup_tree(iter, memcg)
79dfdacc
MH
2075 atomic_inc(&iter->under_oom);
2076}
2077
c0ff4b85 2078static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
79dfdacc
MH
2079{
2080 struct mem_cgroup *iter;
2081
867578cb
KH
2082 /*
2083 * When a new child is created while the hierarchy is under oom,
2084 * mem_cgroup_oom_lock() may not be called. We have to use
2085 * atomic_add_unless() here.
2086 */
c0ff4b85 2087 for_each_mem_cgroup_tree(iter, memcg)
79dfdacc 2088 atomic_add_unless(&iter->under_oom, -1, 0);
0b7f569e
KH
2089}
2090
1af8efe9 2091static DEFINE_SPINLOCK(memcg_oom_lock);
867578cb
KH
2092static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
2093
dc98df5a 2094struct oom_wait_info {
d79154bb 2095 struct mem_cgroup *memcg;
dc98df5a
KH
2096 wait_queue_t wait;
2097};
2098
2099static int memcg_oom_wake_function(wait_queue_t *wait,
2100 unsigned mode, int sync, void *arg)
2101{
d79154bb
HD
2102 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
2103 struct mem_cgroup *oom_wait_memcg;
dc98df5a
KH
2104 struct oom_wait_info *oom_wait_info;
2105
2106 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
d79154bb 2107 oom_wait_memcg = oom_wait_info->memcg;
dc98df5a 2108
dc98df5a 2109 /*
d79154bb 2110 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
dc98df5a
KH
2111 * Then we can use css_is_ancestor without taking care of RCU.
2112 */
c0ff4b85
R
2113 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
2114 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
dc98df5a 2115 return 0;
dc98df5a
KH
2116 return autoremove_wake_function(wait, mode, sync, arg);
2117}
2118
c0ff4b85 2119static void memcg_wakeup_oom(struct mem_cgroup *memcg)
dc98df5a 2120{
c0ff4b85
R
2121 /* for filtering, pass "memcg" as argument. */
2122 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
dc98df5a
KH
2123}
2124
c0ff4b85 2125static void memcg_oom_recover(struct mem_cgroup *memcg)
3c11ecf4 2126{
c0ff4b85
R
2127 if (memcg && atomic_read(&memcg->under_oom))
2128 memcg_wakeup_oom(memcg);
3c11ecf4
KH
2129}
2130
867578cb
KH
2131/*
2132 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
2133 */
6bbda35c
KS
2134static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
2135 int order)
0b7f569e 2136{
dc98df5a 2137 struct oom_wait_info owait;
3c11ecf4 2138 bool locked, need_to_kill;
867578cb 2139
d79154bb 2140 owait.memcg = memcg;
dc98df5a
KH
2141 owait.wait.flags = 0;
2142 owait.wait.func = memcg_oom_wake_function;
2143 owait.wait.private = current;
2144 INIT_LIST_HEAD(&owait.wait.task_list);
3c11ecf4 2145 need_to_kill = true;
c0ff4b85 2146 mem_cgroup_mark_under_oom(memcg);
79dfdacc 2147
c0ff4b85 2148 /* At first, try to OOM lock hierarchy under memcg.*/
1af8efe9 2149 spin_lock(&memcg_oom_lock);
c0ff4b85 2150 locked = mem_cgroup_oom_lock(memcg);
867578cb
KH
2151 /*
2152 * Even if signal_pending(), we can't quit charge() loop without
2153 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
2154 * under OOM is always welcomed, use TASK_KILLABLE here.
2155 */
3c11ecf4 2156 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
c0ff4b85 2157 if (!locked || memcg->oom_kill_disable)
3c11ecf4
KH
2158 need_to_kill = false;
2159 if (locked)
c0ff4b85 2160 mem_cgroup_oom_notify(memcg);
1af8efe9 2161 spin_unlock(&memcg_oom_lock);
867578cb 2162
3c11ecf4
KH
2163 if (need_to_kill) {
2164 finish_wait(&memcg_oom_waitq, &owait.wait);
e845e199 2165 mem_cgroup_out_of_memory(memcg, mask, order);
3c11ecf4 2166 } else {
867578cb 2167 schedule();
dc98df5a 2168 finish_wait(&memcg_oom_waitq, &owait.wait);
867578cb 2169 }
1af8efe9 2170 spin_lock(&memcg_oom_lock);
79dfdacc 2171 if (locked)
c0ff4b85
R
2172 mem_cgroup_oom_unlock(memcg);
2173 memcg_wakeup_oom(memcg);
1af8efe9 2174 spin_unlock(&memcg_oom_lock);
867578cb 2175
c0ff4b85 2176 mem_cgroup_unmark_under_oom(memcg);
79dfdacc 2177
867578cb
KH
2178 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
2179 return false;
2180 /* Give chance to dying process */
715a5ee8 2181 schedule_timeout_uninterruptible(1);
867578cb 2182 return true;
0b7f569e
KH
2183}
2184
d69b042f
BS
2185/*
2186 * Currently used to update mapped file statistics, but the routine can be
2187 * generalized to update other statistics as well.
32047e2a
KH
2188 *
2189 * Notes: Race condition
2190 *
2191 * We usually use page_cgroup_lock() for accessing page_cgroup member but
2192 * it tends to be costly. But considering some conditions, we doesn't need
2193 * to do so _always_.
2194 *
2195 * Considering "charge", lock_page_cgroup() is not required because all
2196 * file-stat operations happen after a page is attached to radix-tree. There
2197 * are no race with "charge".
2198 *
2199 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2200 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2201 * if there are race with "uncharge". Statistics itself is properly handled
2202 * by flags.
2203 *
2204 * Considering "move", this is an only case we see a race. To make the race
619d094b
KH
2205 * small, we check mm->moving_account and detect there are possibility of race
2206 * If there is, we take a lock.
d69b042f 2207 */
26174efd 2208
89c06bd5
KH
2209void __mem_cgroup_begin_update_page_stat(struct page *page,
2210 bool *locked, unsigned long *flags)
2211{
2212 struct mem_cgroup *memcg;
2213 struct page_cgroup *pc;
2214
2215 pc = lookup_page_cgroup(page);
2216again:
2217 memcg = pc->mem_cgroup;
2218 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2219 return;
2220 /*
2221 * If this memory cgroup is not under account moving, we don't
da92c47d 2222 * need to take move_lock_mem_cgroup(). Because we already hold
89c06bd5 2223 * rcu_read_lock(), any calls to move_account will be delayed until
13fd1dd9 2224 * rcu_read_unlock() if mem_cgroup_stolen() == true.
89c06bd5 2225 */
13fd1dd9 2226 if (!mem_cgroup_stolen(memcg))
89c06bd5
KH
2227 return;
2228
2229 move_lock_mem_cgroup(memcg, flags);
2230 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2231 move_unlock_mem_cgroup(memcg, flags);
2232 goto again;
2233 }
2234 *locked = true;
2235}
2236
2237void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2238{
2239 struct page_cgroup *pc = lookup_page_cgroup(page);
2240
2241 /*
2242 * It's guaranteed that pc->mem_cgroup never changes while
2243 * lock is held because a routine modifies pc->mem_cgroup
da92c47d 2244 * should take move_lock_mem_cgroup().
89c06bd5
KH
2245 */
2246 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2247}
2248
2a7106f2
GT
2249void mem_cgroup_update_page_stat(struct page *page,
2250 enum mem_cgroup_page_stat_item idx, int val)
d69b042f 2251{
c0ff4b85 2252 struct mem_cgroup *memcg;
32047e2a 2253 struct page_cgroup *pc = lookup_page_cgroup(page);
dbd4ea78 2254 unsigned long uninitialized_var(flags);
d69b042f 2255
cfa44946 2256 if (mem_cgroup_disabled())
d69b042f 2257 return;
89c06bd5 2258
c0ff4b85
R
2259 memcg = pc->mem_cgroup;
2260 if (unlikely(!memcg || !PageCgroupUsed(pc)))
89c06bd5 2261 return;
26174efd 2262
26174efd 2263 switch (idx) {
2a7106f2 2264 case MEMCG_NR_FILE_MAPPED:
2a7106f2 2265 idx = MEM_CGROUP_STAT_FILE_MAPPED;
26174efd
KH
2266 break;
2267 default:
2268 BUG();
8725d541 2269 }
d69b042f 2270
c0ff4b85 2271 this_cpu_add(memcg->stat->count[idx], val);
d69b042f 2272}
26174efd 2273
cdec2e42
KH
2274/*
2275 * size of first charge trial. "32" comes from vmscan.c's magic value.
2276 * TODO: maybe necessary to use big numbers in big irons.
2277 */
7ec99d62 2278#define CHARGE_BATCH 32U
cdec2e42
KH
2279struct memcg_stock_pcp {
2280 struct mem_cgroup *cached; /* this never be root cgroup */
11c9ea4e 2281 unsigned int nr_pages;
cdec2e42 2282 struct work_struct work;
26fe6168 2283 unsigned long flags;
a0db00fc 2284#define FLUSHING_CACHED_CHARGE 0
cdec2e42
KH
2285};
2286static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
9f50fad6 2287static DEFINE_MUTEX(percpu_charge_mutex);
cdec2e42 2288
a0956d54
SS
2289/**
2290 * consume_stock: Try to consume stocked charge on this cpu.
2291 * @memcg: memcg to consume from.
2292 * @nr_pages: how many pages to charge.
2293 *
2294 * The charges will only happen if @memcg matches the current cpu's memcg
2295 * stock, and at least @nr_pages are available in that stock. Failure to
2296 * service an allocation will refill the stock.
2297 *
2298 * returns true if successful, false otherwise.
cdec2e42 2299 */
a0956d54 2300static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
cdec2e42
KH
2301{
2302 struct memcg_stock_pcp *stock;
2303 bool ret = true;
2304
a0956d54
SS
2305 if (nr_pages > CHARGE_BATCH)
2306 return false;
2307
cdec2e42 2308 stock = &get_cpu_var(memcg_stock);
a0956d54
SS
2309 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2310 stock->nr_pages -= nr_pages;
cdec2e42
KH
2311 else /* need to call res_counter_charge */
2312 ret = false;
2313 put_cpu_var(memcg_stock);
2314 return ret;
2315}
2316
2317/*
2318 * Returns stocks cached in percpu to res_counter and reset cached information.
2319 */
2320static void drain_stock(struct memcg_stock_pcp *stock)
2321{
2322 struct mem_cgroup *old = stock->cached;
2323
11c9ea4e
JW
2324 if (stock->nr_pages) {
2325 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2326
2327 res_counter_uncharge(&old->res, bytes);
cdec2e42 2328 if (do_swap_account)
11c9ea4e
JW
2329 res_counter_uncharge(&old->memsw, bytes);
2330 stock->nr_pages = 0;
cdec2e42
KH
2331 }
2332 stock->cached = NULL;
cdec2e42
KH
2333}
2334
2335/*
2336 * This must be called under preempt disabled or must be called by
2337 * a thread which is pinned to local cpu.
2338 */
2339static void drain_local_stock(struct work_struct *dummy)
2340{
2341 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2342 drain_stock(stock);
26fe6168 2343 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
cdec2e42
KH
2344}
2345
e4777496
MH
2346static void __init memcg_stock_init(void)
2347{
2348 int cpu;
2349
2350 for_each_possible_cpu(cpu) {
2351 struct memcg_stock_pcp *stock =
2352 &per_cpu(memcg_stock, cpu);
2353 INIT_WORK(&stock->work, drain_local_stock);
2354 }
2355}
2356
cdec2e42
KH
2357/*
2358 * Cache charges(val) which is from res_counter, to local per_cpu area.
320cc51d 2359 * This will be consumed by consume_stock() function, later.
cdec2e42 2360 */
c0ff4b85 2361static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
cdec2e42
KH
2362{
2363 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2364
c0ff4b85 2365 if (stock->cached != memcg) { /* reset if necessary */
cdec2e42 2366 drain_stock(stock);
c0ff4b85 2367 stock->cached = memcg;
cdec2e42 2368 }
11c9ea4e 2369 stock->nr_pages += nr_pages;
cdec2e42
KH
2370 put_cpu_var(memcg_stock);
2371}
2372
2373/*
c0ff4b85 2374 * Drains all per-CPU charge caches for given root_memcg resp. subtree
d38144b7
MH
2375 * of the hierarchy under it. sync flag says whether we should block
2376 * until the work is done.
cdec2e42 2377 */
c0ff4b85 2378static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
cdec2e42 2379{
26fe6168 2380 int cpu, curcpu;
d38144b7 2381
cdec2e42 2382 /* Notify other cpus that system-wide "drain" is running */
cdec2e42 2383 get_online_cpus();
5af12d0e 2384 curcpu = get_cpu();
cdec2e42
KH
2385 for_each_online_cpu(cpu) {
2386 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
c0ff4b85 2387 struct mem_cgroup *memcg;
26fe6168 2388
c0ff4b85
R
2389 memcg = stock->cached;
2390 if (!memcg || !stock->nr_pages)
26fe6168 2391 continue;
c0ff4b85 2392 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
3e92041d 2393 continue;
d1a05b69
MH
2394 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2395 if (cpu == curcpu)
2396 drain_local_stock(&stock->work);
2397 else
2398 schedule_work_on(cpu, &stock->work);
2399 }
cdec2e42 2400 }
5af12d0e 2401 put_cpu();
d38144b7
MH
2402
2403 if (!sync)
2404 goto out;
2405
2406 for_each_online_cpu(cpu) {
2407 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
9f50fad6 2408 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
d38144b7
MH
2409 flush_work(&stock->work);
2410 }
2411out:
cdec2e42 2412 put_online_cpus();
d38144b7
MH
2413}
2414
2415/*
2416 * Tries to drain stocked charges in other cpus. This function is asynchronous
2417 * and just put a work per cpu for draining localy on each cpu. Caller can
2418 * expects some charges will be back to res_counter later but cannot wait for
2419 * it.
2420 */
c0ff4b85 2421static void drain_all_stock_async(struct mem_cgroup *root_memcg)
d38144b7 2422{
9f50fad6
MH
2423 /*
2424 * If someone calls draining, avoid adding more kworker runs.
2425 */
2426 if (!mutex_trylock(&percpu_charge_mutex))
2427 return;
c0ff4b85 2428 drain_all_stock(root_memcg, false);
9f50fad6 2429 mutex_unlock(&percpu_charge_mutex);
cdec2e42
KH
2430}
2431
2432/* This is a synchronous drain interface. */
c0ff4b85 2433static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
cdec2e42
KH
2434{
2435 /* called when force_empty is called */
9f50fad6 2436 mutex_lock(&percpu_charge_mutex);
c0ff4b85 2437 drain_all_stock(root_memcg, true);
9f50fad6 2438 mutex_unlock(&percpu_charge_mutex);
cdec2e42
KH
2439}
2440
711d3d2c
KH
2441/*
2442 * This function drains percpu counter value from DEAD cpu and
2443 * move it to local cpu. Note that this function can be preempted.
2444 */
c0ff4b85 2445static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
711d3d2c
KH
2446{
2447 int i;
2448
c0ff4b85 2449 spin_lock(&memcg->pcp_counter_lock);
6104621d 2450 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
c0ff4b85 2451 long x = per_cpu(memcg->stat->count[i], cpu);
711d3d2c 2452
c0ff4b85
R
2453 per_cpu(memcg->stat->count[i], cpu) = 0;
2454 memcg->nocpu_base.count[i] += x;
711d3d2c 2455 }
e9f8974f 2456 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
c0ff4b85 2457 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
e9f8974f 2458
c0ff4b85
R
2459 per_cpu(memcg->stat->events[i], cpu) = 0;
2460 memcg->nocpu_base.events[i] += x;
e9f8974f 2461 }
c0ff4b85 2462 spin_unlock(&memcg->pcp_counter_lock);
711d3d2c
KH
2463}
2464
2465static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
cdec2e42
KH
2466 unsigned long action,
2467 void *hcpu)
2468{
2469 int cpu = (unsigned long)hcpu;
2470 struct memcg_stock_pcp *stock;
711d3d2c 2471 struct mem_cgroup *iter;
cdec2e42 2472
619d094b 2473 if (action == CPU_ONLINE)
1489ebad 2474 return NOTIFY_OK;
1489ebad 2475
d833049b 2476 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
cdec2e42 2477 return NOTIFY_OK;
711d3d2c 2478
9f3a0d09 2479 for_each_mem_cgroup(iter)
711d3d2c
KH
2480 mem_cgroup_drain_pcp_counter(iter, cpu);
2481
cdec2e42
KH
2482 stock = &per_cpu(memcg_stock, cpu);
2483 drain_stock(stock);
2484 return NOTIFY_OK;
2485}
2486
4b534334
KH
2487
2488/* See __mem_cgroup_try_charge() for details */
2489enum {
2490 CHARGE_OK, /* success */
2491 CHARGE_RETRY, /* need to retry but retry is not bad */
2492 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2493 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2494 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2495};
2496
c0ff4b85 2497static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
4c9c5359
SS
2498 unsigned int nr_pages, unsigned int min_pages,
2499 bool oom_check)
4b534334 2500{
7ec99d62 2501 unsigned long csize = nr_pages * PAGE_SIZE;
4b534334
KH
2502 struct mem_cgroup *mem_over_limit;
2503 struct res_counter *fail_res;
2504 unsigned long flags = 0;
2505 int ret;
2506
c0ff4b85 2507 ret = res_counter_charge(&memcg->res, csize, &fail_res);
4b534334
KH
2508
2509 if (likely(!ret)) {
2510 if (!do_swap_account)
2511 return CHARGE_OK;
c0ff4b85 2512 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
4b534334
KH
2513 if (likely(!ret))
2514 return CHARGE_OK;
2515
c0ff4b85 2516 res_counter_uncharge(&memcg->res, csize);
4b534334
KH
2517 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2518 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2519 } else
2520 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
9221edb7 2521 /*
9221edb7
JW
2522 * Never reclaim on behalf of optional batching, retry with a
2523 * single page instead.
2524 */
4c9c5359 2525 if (nr_pages > min_pages)
4b534334
KH
2526 return CHARGE_RETRY;
2527
2528 if (!(gfp_mask & __GFP_WAIT))
2529 return CHARGE_WOULDBLOCK;
2530
4c9c5359
SS
2531 if (gfp_mask & __GFP_NORETRY)
2532 return CHARGE_NOMEM;
2533
5660048c 2534 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
7ec99d62 2535 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
19942822 2536 return CHARGE_RETRY;
4b534334 2537 /*
19942822
JW
2538 * Even though the limit is exceeded at this point, reclaim
2539 * may have been able to free some pages. Retry the charge
2540 * before killing the task.
2541 *
2542 * Only for regular pages, though: huge pages are rather
2543 * unlikely to succeed so close to the limit, and we fall back
2544 * to regular pages anyway in case of failure.
4b534334 2545 */
4c9c5359 2546 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
4b534334
KH
2547 return CHARGE_RETRY;
2548
2549 /*
2550 * At task move, charge accounts can be doubly counted. So, it's
2551 * better to wait until the end of task_move if something is going on.
2552 */
2553 if (mem_cgroup_wait_acct_move(mem_over_limit))
2554 return CHARGE_RETRY;
2555
2556 /* If we don't need to call oom-killer at el, return immediately */
2557 if (!oom_check)
2558 return CHARGE_NOMEM;
2559 /* check OOM */
e845e199 2560 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
4b534334
KH
2561 return CHARGE_OOM_DIE;
2562
2563 return CHARGE_RETRY;
2564}
2565
f817ed48 2566/*
38c5d72f
KH
2567 * __mem_cgroup_try_charge() does
2568 * 1. detect memcg to be charged against from passed *mm and *ptr,
2569 * 2. update res_counter
2570 * 3. call memory reclaim if necessary.
2571 *
2572 * In some special case, if the task is fatal, fatal_signal_pending() or
2573 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2574 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2575 * as possible without any hazards. 2: all pages should have a valid
2576 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2577 * pointer, that is treated as a charge to root_mem_cgroup.
2578 *
2579 * So __mem_cgroup_try_charge() will return
2580 * 0 ... on success, filling *ptr with a valid memcg pointer.
2581 * -ENOMEM ... charge failure because of resource limits.
2582 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2583 *
2584 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2585 * the oom-killer can be invoked.
8a9f3ccd 2586 */
f817ed48 2587static int __mem_cgroup_try_charge(struct mm_struct *mm,
ec168510 2588 gfp_t gfp_mask,
7ec99d62 2589 unsigned int nr_pages,
c0ff4b85 2590 struct mem_cgroup **ptr,
7ec99d62 2591 bool oom)
8a9f3ccd 2592{
7ec99d62 2593 unsigned int batch = max(CHARGE_BATCH, nr_pages);
4b534334 2594 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
c0ff4b85 2595 struct mem_cgroup *memcg = NULL;
4b534334 2596 int ret;
a636b327 2597
867578cb
KH
2598 /*
2599 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2600 * in system level. So, allow to go ahead dying process in addition to
2601 * MEMDIE process.
2602 */
2603 if (unlikely(test_thread_flag(TIF_MEMDIE)
2604 || fatal_signal_pending(current)))
2605 goto bypass;
a636b327 2606
8a9f3ccd 2607 /*
3be91277
HD
2608 * We always charge the cgroup the mm_struct belongs to.
2609 * The mm_struct's mem_cgroup changes on task migration if the
8a9f3ccd 2610 * thread group leader migrates. It's possible that mm is not
24467cac 2611 * set, if so charge the root memcg (happens for pagecache usage).
8a9f3ccd 2612 */
c0ff4b85 2613 if (!*ptr && !mm)
38c5d72f 2614 *ptr = root_mem_cgroup;
f75ca962 2615again:
c0ff4b85
R
2616 if (*ptr) { /* css should be a valid one */
2617 memcg = *ptr;
c0ff4b85 2618 if (mem_cgroup_is_root(memcg))
f75ca962 2619 goto done;
a0956d54 2620 if (consume_stock(memcg, nr_pages))
f75ca962 2621 goto done;
c0ff4b85 2622 css_get(&memcg->css);
4b534334 2623 } else {
f75ca962 2624 struct task_struct *p;
54595fe2 2625
f75ca962
KH
2626 rcu_read_lock();
2627 p = rcu_dereference(mm->owner);
f75ca962 2628 /*
ebb76ce1 2629 * Because we don't have task_lock(), "p" can exit.
c0ff4b85 2630 * In that case, "memcg" can point to root or p can be NULL with
ebb76ce1
KH
2631 * race with swapoff. Then, we have small risk of mis-accouning.
2632 * But such kind of mis-account by race always happens because
2633 * we don't have cgroup_mutex(). It's overkill and we allo that
2634 * small race, here.
2635 * (*) swapoff at el will charge against mm-struct not against
2636 * task-struct. So, mm->owner can be NULL.
f75ca962 2637 */
c0ff4b85 2638 memcg = mem_cgroup_from_task(p);
38c5d72f
KH
2639 if (!memcg)
2640 memcg = root_mem_cgroup;
2641 if (mem_cgroup_is_root(memcg)) {
f75ca962
KH
2642 rcu_read_unlock();
2643 goto done;
2644 }
a0956d54 2645 if (consume_stock(memcg, nr_pages)) {
f75ca962
KH
2646 /*
2647 * It seems dagerous to access memcg without css_get().
2648 * But considering how consume_stok works, it's not
2649 * necessary. If consume_stock success, some charges
2650 * from this memcg are cached on this cpu. So, we
2651 * don't need to call css_get()/css_tryget() before
2652 * calling consume_stock().
2653 */
2654 rcu_read_unlock();
2655 goto done;
2656 }
2657 /* after here, we may be blocked. we need to get refcnt */
c0ff4b85 2658 if (!css_tryget(&memcg->css)) {
f75ca962
KH
2659 rcu_read_unlock();
2660 goto again;
2661 }
2662 rcu_read_unlock();
2663 }
8a9f3ccd 2664
4b534334
KH
2665 do {
2666 bool oom_check;
7a81b88c 2667
4b534334 2668 /* If killed, bypass charge */
f75ca962 2669 if (fatal_signal_pending(current)) {
c0ff4b85 2670 css_put(&memcg->css);
4b534334 2671 goto bypass;
f75ca962 2672 }
6d61ef40 2673
4b534334
KH
2674 oom_check = false;
2675 if (oom && !nr_oom_retries) {
2676 oom_check = true;
2677 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
cdec2e42 2678 }
66e1707b 2679
4c9c5359
SS
2680 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, nr_pages,
2681 oom_check);
4b534334
KH
2682 switch (ret) {
2683 case CHARGE_OK:
2684 break;
2685 case CHARGE_RETRY: /* not in OOM situation but retry */
7ec99d62 2686 batch = nr_pages;
c0ff4b85
R
2687 css_put(&memcg->css);
2688 memcg = NULL;
f75ca962 2689 goto again;
4b534334 2690 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
c0ff4b85 2691 css_put(&memcg->css);
4b534334
KH
2692 goto nomem;
2693 case CHARGE_NOMEM: /* OOM routine works */
f75ca962 2694 if (!oom) {
c0ff4b85 2695 css_put(&memcg->css);
867578cb 2696 goto nomem;
f75ca962 2697 }
4b534334
KH
2698 /* If oom, we never return -ENOMEM */
2699 nr_oom_retries--;
2700 break;
2701 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
c0ff4b85 2702 css_put(&memcg->css);
867578cb 2703 goto bypass;
66e1707b 2704 }
4b534334
KH
2705 } while (ret != CHARGE_OK);
2706
7ec99d62 2707 if (batch > nr_pages)
c0ff4b85
R
2708 refill_stock(memcg, batch - nr_pages);
2709 css_put(&memcg->css);
0c3e73e8 2710done:
c0ff4b85 2711 *ptr = memcg;
7a81b88c
KH
2712 return 0;
2713nomem:
c0ff4b85 2714 *ptr = NULL;
7a81b88c 2715 return -ENOMEM;
867578cb 2716bypass:
38c5d72f
KH
2717 *ptr = root_mem_cgroup;
2718 return -EINTR;
7a81b88c 2719}
8a9f3ccd 2720
a3032a2c
DN
2721/*
2722 * Somemtimes we have to undo a charge we got by try_charge().
2723 * This function is for that and do uncharge, put css's refcnt.
2724 * gotten by try_charge().
2725 */
c0ff4b85 2726static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
e7018b8d 2727 unsigned int nr_pages)
a3032a2c 2728{
c0ff4b85 2729 if (!mem_cgroup_is_root(memcg)) {
e7018b8d
JW
2730 unsigned long bytes = nr_pages * PAGE_SIZE;
2731
c0ff4b85 2732 res_counter_uncharge(&memcg->res, bytes);
a3032a2c 2733 if (do_swap_account)
c0ff4b85 2734 res_counter_uncharge(&memcg->memsw, bytes);
a3032a2c 2735 }
854ffa8d
DN
2736}
2737
d01dd17f
KH
2738/*
2739 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2740 * This is useful when moving usage to parent cgroup.
2741 */
2742static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2743 unsigned int nr_pages)
2744{
2745 unsigned long bytes = nr_pages * PAGE_SIZE;
2746
2747 if (mem_cgroup_is_root(memcg))
2748 return;
2749
2750 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2751 if (do_swap_account)
2752 res_counter_uncharge_until(&memcg->memsw,
2753 memcg->memsw.parent, bytes);
2754}
2755
a3b2d692
KH
2756/*
2757 * A helper function to get mem_cgroup from ID. must be called under
e9316080
TH
2758 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2759 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2760 * called against removed memcg.)
a3b2d692
KH
2761 */
2762static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2763{
2764 struct cgroup_subsys_state *css;
2765
2766 /* ID 0 is unused ID */
2767 if (!id)
2768 return NULL;
2769 css = css_lookup(&mem_cgroup_subsys, id);
2770 if (!css)
2771 return NULL;
b2145145 2772 return mem_cgroup_from_css(css);
a3b2d692
KH
2773}
2774
e42d9d5d 2775struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
b5a84319 2776{
c0ff4b85 2777 struct mem_cgroup *memcg = NULL;
3c776e64 2778 struct page_cgroup *pc;
a3b2d692 2779 unsigned short id;
b5a84319
KH
2780 swp_entry_t ent;
2781
3c776e64
DN
2782 VM_BUG_ON(!PageLocked(page));
2783
3c776e64 2784 pc = lookup_page_cgroup(page);
c0bd3f63 2785 lock_page_cgroup(pc);
a3b2d692 2786 if (PageCgroupUsed(pc)) {
c0ff4b85
R
2787 memcg = pc->mem_cgroup;
2788 if (memcg && !css_tryget(&memcg->css))
2789 memcg = NULL;
e42d9d5d 2790 } else if (PageSwapCache(page)) {
3c776e64 2791 ent.val = page_private(page);
9fb4b7cc 2792 id = lookup_swap_cgroup_id(ent);
a3b2d692 2793 rcu_read_lock();
c0ff4b85
R
2794 memcg = mem_cgroup_lookup(id);
2795 if (memcg && !css_tryget(&memcg->css))
2796 memcg = NULL;
a3b2d692 2797 rcu_read_unlock();
3c776e64 2798 }
c0bd3f63 2799 unlock_page_cgroup(pc);
c0ff4b85 2800 return memcg;
b5a84319
KH
2801}
2802
c0ff4b85 2803static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
5564e88b 2804 struct page *page,
7ec99d62 2805 unsigned int nr_pages,
9ce70c02
HD
2806 enum charge_type ctype,
2807 bool lrucare)
7a81b88c 2808{
ce587e65 2809 struct page_cgroup *pc = lookup_page_cgroup(page);
9ce70c02 2810 struct zone *uninitialized_var(zone);
fa9add64 2811 struct lruvec *lruvec;
9ce70c02 2812 bool was_on_lru = false;
b2402857 2813 bool anon;
9ce70c02 2814
ca3e0214 2815 lock_page_cgroup(pc);
90deb788 2816 VM_BUG_ON(PageCgroupUsed(pc));
ca3e0214
KH
2817 /*
2818 * we don't need page_cgroup_lock about tail pages, becase they are not
2819 * accessed by any other context at this point.
2820 */
9ce70c02
HD
2821
2822 /*
2823 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2824 * may already be on some other mem_cgroup's LRU. Take care of it.
2825 */
2826 if (lrucare) {
2827 zone = page_zone(page);
2828 spin_lock_irq(&zone->lru_lock);
2829 if (PageLRU(page)) {
fa9add64 2830 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
9ce70c02 2831 ClearPageLRU(page);
fa9add64 2832 del_page_from_lru_list(page, lruvec, page_lru(page));
9ce70c02
HD
2833 was_on_lru = true;
2834 }
2835 }
2836
c0ff4b85 2837 pc->mem_cgroup = memcg;
261fb61a
KH
2838 /*
2839 * We access a page_cgroup asynchronously without lock_page_cgroup().
2840 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2841 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2842 * before USED bit, we need memory barrier here.
2843 * See mem_cgroup_add_lru_list(), etc.
2844 */
08e552c6 2845 smp_wmb();
b2402857 2846 SetPageCgroupUsed(pc);
3be91277 2847
9ce70c02
HD
2848 if (lrucare) {
2849 if (was_on_lru) {
fa9add64 2850 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
9ce70c02
HD
2851 VM_BUG_ON(PageLRU(page));
2852 SetPageLRU(page);
fa9add64 2853 add_page_to_lru_list(page, lruvec, page_lru(page));
9ce70c02
HD
2854 }
2855 spin_unlock_irq(&zone->lru_lock);
2856 }
2857
41326c17 2858 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
b2402857
KH
2859 anon = true;
2860 else
2861 anon = false;
2862
2863 mem_cgroup_charge_statistics(memcg, anon, nr_pages);
52d4b9ac 2864 unlock_page_cgroup(pc);
9ce70c02 2865
430e4863
KH
2866 /*
2867 * "charge_statistics" updated event counter. Then, check it.
2868 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2869 * if they exceeds softlimit.
2870 */
c0ff4b85 2871 memcg_check_events(memcg, page);
7a81b88c 2872}
66e1707b 2873
7cf27982
GC
2874static DEFINE_MUTEX(set_limit_mutex);
2875
7ae1e1d0
GC
2876#ifdef CONFIG_MEMCG_KMEM
2877static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2878{
2879 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2880 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2881}
2882
1f458cbf
GC
2883/*
2884 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2885 * in the memcg_cache_params struct.
2886 */
2887static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2888{
2889 struct kmem_cache *cachep;
2890
2891 VM_BUG_ON(p->is_root_cache);
2892 cachep = p->root_cache;
2893 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2894}
2895
749c5415
GC
2896#ifdef CONFIG_SLABINFO
2897static int mem_cgroup_slabinfo_read(struct cgroup *cont, struct cftype *cft,
2898 struct seq_file *m)
2899{
2900 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
2901 struct memcg_cache_params *params;
2902
2903 if (!memcg_can_account_kmem(memcg))
2904 return -EIO;
2905
2906 print_slabinfo_header(m);
2907
2908 mutex_lock(&memcg->slab_caches_mutex);
2909 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2910 cache_show(memcg_params_to_cache(params), m);
2911 mutex_unlock(&memcg->slab_caches_mutex);
2912
2913 return 0;
2914}
2915#endif
2916
7ae1e1d0
GC
2917static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2918{
2919 struct res_counter *fail_res;
2920 struct mem_cgroup *_memcg;
2921 int ret = 0;
2922 bool may_oom;
2923
2924 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2925 if (ret)
2926 return ret;
2927
2928 /*
2929 * Conditions under which we can wait for the oom_killer. Those are
2930 * the same conditions tested by the core page allocator
2931 */
2932 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2933
2934 _memcg = memcg;
2935 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2936 &_memcg, may_oom);
2937
2938 if (ret == -EINTR) {
2939 /*
2940 * __mem_cgroup_try_charge() chosed to bypass to root due to
2941 * OOM kill or fatal signal. Since our only options are to
2942 * either fail the allocation or charge it to this cgroup, do
2943 * it as a temporary condition. But we can't fail. From a
2944 * kmem/slab perspective, the cache has already been selected,
2945 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2946 * our minds.
2947 *
2948 * This condition will only trigger if the task entered
2949 * memcg_charge_kmem in a sane state, but was OOM-killed during
2950 * __mem_cgroup_try_charge() above. Tasks that were already
2951 * dying when the allocation triggers should have been already
2952 * directed to the root cgroup in memcontrol.h
2953 */
2954 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2955 if (do_swap_account)
2956 res_counter_charge_nofail(&memcg->memsw, size,
2957 &fail_res);
2958 ret = 0;
2959 } else if (ret)
2960 res_counter_uncharge(&memcg->kmem, size);
2961
2962 return ret;
2963}
2964
2965static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2966{
7ae1e1d0
GC
2967 res_counter_uncharge(&memcg->res, size);
2968 if (do_swap_account)
2969 res_counter_uncharge(&memcg->memsw, size);
7de37682
GC
2970
2971 /* Not down to 0 */
2972 if (res_counter_uncharge(&memcg->kmem, size))
2973 return;
2974
2975 if (memcg_kmem_test_and_clear_dead(memcg))
2976 mem_cgroup_put(memcg);
7ae1e1d0
GC
2977}
2978
2633d7a0
GC
2979void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2980{
2981 if (!memcg)
2982 return;
2983
2984 mutex_lock(&memcg->slab_caches_mutex);
2985 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2986 mutex_unlock(&memcg->slab_caches_mutex);
2987}
2988
2989/*
2990 * helper for acessing a memcg's index. It will be used as an index in the
2991 * child cache array in kmem_cache, and also to derive its name. This function
2992 * will return -1 when this is not a kmem-limited memcg.
2993 */
2994int memcg_cache_id(struct mem_cgroup *memcg)
2995{
2996 return memcg ? memcg->kmemcg_id : -1;
2997}
2998
55007d84
GC
2999/*
3000 * This ends up being protected by the set_limit mutex, during normal
3001 * operation, because that is its main call site.
3002 *
3003 * But when we create a new cache, we can call this as well if its parent
3004 * is kmem-limited. That will have to hold set_limit_mutex as well.
3005 */
3006int memcg_update_cache_sizes(struct mem_cgroup *memcg)
3007{
3008 int num, ret;
3009
3010 num = ida_simple_get(&kmem_limited_groups,
3011 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
3012 if (num < 0)
3013 return num;
3014 /*
3015 * After this point, kmem_accounted (that we test atomically in
3016 * the beginning of this conditional), is no longer 0. This
3017 * guarantees only one process will set the following boolean
3018 * to true. We don't need test_and_set because we're protected
3019 * by the set_limit_mutex anyway.
3020 */
3021 memcg_kmem_set_activated(memcg);
3022
3023 ret = memcg_update_all_caches(num+1);
3024 if (ret) {
3025 ida_simple_remove(&kmem_limited_groups, num);
3026 memcg_kmem_clear_activated(memcg);
3027 return ret;
3028 }
3029
3030 memcg->kmemcg_id = num;
3031 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
3032 mutex_init(&memcg->slab_caches_mutex);
3033 return 0;
3034}
3035
3036static size_t memcg_caches_array_size(int num_groups)
3037{
3038 ssize_t size;
3039 if (num_groups <= 0)
3040 return 0;
3041
3042 size = 2 * num_groups;
3043 if (size < MEMCG_CACHES_MIN_SIZE)
3044 size = MEMCG_CACHES_MIN_SIZE;
3045 else if (size > MEMCG_CACHES_MAX_SIZE)
3046 size = MEMCG_CACHES_MAX_SIZE;
3047
3048 return size;
3049}
3050
3051/*
3052 * We should update the current array size iff all caches updates succeed. This
3053 * can only be done from the slab side. The slab mutex needs to be held when
3054 * calling this.
3055 */
3056void memcg_update_array_size(int num)
3057{
3058 if (num > memcg_limited_groups_array_size)
3059 memcg_limited_groups_array_size = memcg_caches_array_size(num);
3060}
3061
15cf17d2
KK
3062static void kmem_cache_destroy_work_func(struct work_struct *w);
3063
55007d84
GC
3064int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
3065{
3066 struct memcg_cache_params *cur_params = s->memcg_params;
3067
3068 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
3069
3070 if (num_groups > memcg_limited_groups_array_size) {
3071 int i;
3072 ssize_t size = memcg_caches_array_size(num_groups);
3073
3074 size *= sizeof(void *);
3075 size += sizeof(struct memcg_cache_params);
3076
3077 s->memcg_params = kzalloc(size, GFP_KERNEL);
3078 if (!s->memcg_params) {
3079 s->memcg_params = cur_params;
3080 return -ENOMEM;
3081 }
3082
15cf17d2
KK
3083 INIT_WORK(&s->memcg_params->destroy,
3084 kmem_cache_destroy_work_func);
55007d84
GC
3085 s->memcg_params->is_root_cache = true;
3086
3087 /*
3088 * There is the chance it will be bigger than
3089 * memcg_limited_groups_array_size, if we failed an allocation
3090 * in a cache, in which case all caches updated before it, will
3091 * have a bigger array.
3092 *
3093 * But if that is the case, the data after
3094 * memcg_limited_groups_array_size is certainly unused
3095 */
3096 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3097 if (!cur_params->memcg_caches[i])
3098 continue;
3099 s->memcg_params->memcg_caches[i] =
3100 cur_params->memcg_caches[i];
3101 }
3102
3103 /*
3104 * Ideally, we would wait until all caches succeed, and only
3105 * then free the old one. But this is not worth the extra
3106 * pointer per-cache we'd have to have for this.
3107 *
3108 * It is not a big deal if some caches are left with a size
3109 * bigger than the others. And all updates will reset this
3110 * anyway.
3111 */
3112 kfree(cur_params);
3113 }
3114 return 0;
3115}
3116
943a451a
GC
3117int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3118 struct kmem_cache *root_cache)
2633d7a0
GC
3119{
3120 size_t size = sizeof(struct memcg_cache_params);
3121
3122 if (!memcg_kmem_enabled())
3123 return 0;
3124
55007d84
GC
3125 if (!memcg)
3126 size += memcg_limited_groups_array_size * sizeof(void *);
3127
2633d7a0
GC
3128 s->memcg_params = kzalloc(size, GFP_KERNEL);
3129 if (!s->memcg_params)
3130 return -ENOMEM;
3131
15cf17d2
KK
3132 INIT_WORK(&s->memcg_params->destroy,
3133 kmem_cache_destroy_work_func);
943a451a 3134 if (memcg) {
2633d7a0 3135 s->memcg_params->memcg = memcg;
943a451a 3136 s->memcg_params->root_cache = root_cache;
4ba902b5
GC
3137 } else
3138 s->memcg_params->is_root_cache = true;
3139
2633d7a0
GC
3140 return 0;
3141}
3142
3143void memcg_release_cache(struct kmem_cache *s)
3144{
d7f25f8a
GC
3145 struct kmem_cache *root;
3146 struct mem_cgroup *memcg;
3147 int id;
3148
3149 /*
3150 * This happens, for instance, when a root cache goes away before we
3151 * add any memcg.
3152 */
3153 if (!s->memcg_params)
3154 return;
3155
3156 if (s->memcg_params->is_root_cache)
3157 goto out;
3158
3159 memcg = s->memcg_params->memcg;
3160 id = memcg_cache_id(memcg);
3161
3162 root = s->memcg_params->root_cache;
3163 root->memcg_params->memcg_caches[id] = NULL;
3164 mem_cgroup_put(memcg);
3165
3166 mutex_lock(&memcg->slab_caches_mutex);
3167 list_del(&s->memcg_params->list);
3168 mutex_unlock(&memcg->slab_caches_mutex);
3169
3170out:
2633d7a0
GC
3171 kfree(s->memcg_params);
3172}
3173
0e9d92f2
GC
3174/*
3175 * During the creation a new cache, we need to disable our accounting mechanism
3176 * altogether. This is true even if we are not creating, but rather just
3177 * enqueing new caches to be created.
3178 *
3179 * This is because that process will trigger allocations; some visible, like
3180 * explicit kmallocs to auxiliary data structures, name strings and internal
3181 * cache structures; some well concealed, like INIT_WORK() that can allocate
3182 * objects during debug.
3183 *
3184 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3185 * to it. This may not be a bounded recursion: since the first cache creation
3186 * failed to complete (waiting on the allocation), we'll just try to create the
3187 * cache again, failing at the same point.
3188 *
3189 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3190 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3191 * inside the following two functions.
3192 */
3193static inline void memcg_stop_kmem_account(void)
3194{
3195 VM_BUG_ON(!current->mm);
3196 current->memcg_kmem_skip_account++;
3197}
3198
3199static inline void memcg_resume_kmem_account(void)
3200{
3201 VM_BUG_ON(!current->mm);
3202 current->memcg_kmem_skip_account--;
3203}
3204
1f458cbf
GC
3205static void kmem_cache_destroy_work_func(struct work_struct *w)
3206{
3207 struct kmem_cache *cachep;
3208 struct memcg_cache_params *p;
3209
3210 p = container_of(w, struct memcg_cache_params, destroy);
3211
3212 cachep = memcg_params_to_cache(p);
3213
22933152
GC
3214 /*
3215 * If we get down to 0 after shrink, we could delete right away.
3216 * However, memcg_release_pages() already puts us back in the workqueue
3217 * in that case. If we proceed deleting, we'll get a dangling
3218 * reference, and removing the object from the workqueue in that case
3219 * is unnecessary complication. We are not a fast path.
3220 *
3221 * Note that this case is fundamentally different from racing with
3222 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3223 * kmem_cache_shrink, not only we would be reinserting a dead cache
3224 * into the queue, but doing so from inside the worker racing to
3225 * destroy it.
3226 *
3227 * So if we aren't down to zero, we'll just schedule a worker and try
3228 * again
3229 */
3230 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3231 kmem_cache_shrink(cachep);
3232 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3233 return;
3234 } else
1f458cbf
GC
3235 kmem_cache_destroy(cachep);
3236}
3237
3238void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3239{
3240 if (!cachep->memcg_params->dead)
3241 return;
3242
22933152
GC
3243 /*
3244 * There are many ways in which we can get here.
3245 *
3246 * We can get to a memory-pressure situation while the delayed work is
3247 * still pending to run. The vmscan shrinkers can then release all
3248 * cache memory and get us to destruction. If this is the case, we'll
3249 * be executed twice, which is a bug (the second time will execute over
3250 * bogus data). In this case, cancelling the work should be fine.
3251 *
3252 * But we can also get here from the worker itself, if
3253 * kmem_cache_shrink is enough to shake all the remaining objects and
3254 * get the page count to 0. In this case, we'll deadlock if we try to
3255 * cancel the work (the worker runs with an internal lock held, which
3256 * is the same lock we would hold for cancel_work_sync().)
3257 *
3258 * Since we can't possibly know who got us here, just refrain from
3259 * running if there is already work pending
3260 */
3261 if (work_pending(&cachep->memcg_params->destroy))
3262 return;
1f458cbf
GC
3263 /*
3264 * We have to defer the actual destroying to a workqueue, because
3265 * we might currently be in a context that cannot sleep.
3266 */
3267 schedule_work(&cachep->memcg_params->destroy);
3268}
3269
d7f25f8a
GC
3270static char *memcg_cache_name(struct mem_cgroup *memcg, struct kmem_cache *s)
3271{
3272 char *name;
3273 struct dentry *dentry;
3274
3275 rcu_read_lock();
3276 dentry = rcu_dereference(memcg->css.cgroup->dentry);
3277 rcu_read_unlock();
3278
3279 BUG_ON(dentry == NULL);
3280
3281 name = kasprintf(GFP_KERNEL, "%s(%d:%s)", s->name,
3282 memcg_cache_id(memcg), dentry->d_name.name);
3283
3284 return name;
3285}
3286
3287static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3288 struct kmem_cache *s)
3289{
3290 char *name;
3291 struct kmem_cache *new;
3292
3293 name = memcg_cache_name(memcg, s);
3294 if (!name)
3295 return NULL;
3296
3297 new = kmem_cache_create_memcg(memcg, name, s->object_size, s->align,
943a451a 3298 (s->flags & ~SLAB_PANIC), s->ctor, s);
d7f25f8a 3299
d79923fa
GC
3300 if (new)
3301 new->allocflags |= __GFP_KMEMCG;
3302
d7f25f8a
GC
3303 kfree(name);
3304 return new;
3305}
3306
3307/*
3308 * This lock protects updaters, not readers. We want readers to be as fast as
3309 * they can, and they will either see NULL or a valid cache value. Our model
3310 * allow them to see NULL, in which case the root memcg will be selected.
3311 *
3312 * We need this lock because multiple allocations to the same cache from a non
3313 * will span more than one worker. Only one of them can create the cache.
3314 */
3315static DEFINE_MUTEX(memcg_cache_mutex);
3316static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3317 struct kmem_cache *cachep)
3318{
3319 struct kmem_cache *new_cachep;
3320 int idx;
3321
3322 BUG_ON(!memcg_can_account_kmem(memcg));
3323
3324 idx = memcg_cache_id(memcg);
3325
3326 mutex_lock(&memcg_cache_mutex);
3327 new_cachep = cachep->memcg_params->memcg_caches[idx];
3328 if (new_cachep)
3329 goto out;
3330
3331 new_cachep = kmem_cache_dup(memcg, cachep);
d7f25f8a
GC
3332 if (new_cachep == NULL) {
3333 new_cachep = cachep;
3334 goto out;
3335 }
3336
3337 mem_cgroup_get(memcg);
1f458cbf 3338 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
d7f25f8a
GC
3339
3340 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3341 /*
3342 * the readers won't lock, make sure everybody sees the updated value,
3343 * so they won't put stuff in the queue again for no reason
3344 */
3345 wmb();
3346out:
3347 mutex_unlock(&memcg_cache_mutex);
3348 return new_cachep;
3349}
3350
7cf27982
GC
3351void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3352{
3353 struct kmem_cache *c;
3354 int i;
3355
3356 if (!s->memcg_params)
3357 return;
3358 if (!s->memcg_params->is_root_cache)
3359 return;
3360
3361 /*
3362 * If the cache is being destroyed, we trust that there is no one else
3363 * requesting objects from it. Even if there are, the sanity checks in
3364 * kmem_cache_destroy should caught this ill-case.
3365 *
3366 * Still, we don't want anyone else freeing memcg_caches under our
3367 * noses, which can happen if a new memcg comes to life. As usual,
3368 * we'll take the set_limit_mutex to protect ourselves against this.
3369 */
3370 mutex_lock(&set_limit_mutex);
3371 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3372 c = s->memcg_params->memcg_caches[i];
3373 if (!c)
3374 continue;
3375
3376 /*
3377 * We will now manually delete the caches, so to avoid races
3378 * we need to cancel all pending destruction workers and
3379 * proceed with destruction ourselves.
3380 *
3381 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3382 * and that could spawn the workers again: it is likely that
3383 * the cache still have active pages until this very moment.
3384 * This would lead us back to mem_cgroup_destroy_cache.
3385 *
3386 * But that will not execute at all if the "dead" flag is not
3387 * set, so flip it down to guarantee we are in control.
3388 */
3389 c->memcg_params->dead = false;
22933152 3390 cancel_work_sync(&c->memcg_params->destroy);
7cf27982
GC
3391 kmem_cache_destroy(c);
3392 }
3393 mutex_unlock(&set_limit_mutex);
3394}
3395
d7f25f8a
GC
3396struct create_work {
3397 struct mem_cgroup *memcg;
3398 struct kmem_cache *cachep;
3399 struct work_struct work;
3400};
3401
1f458cbf
GC
3402static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3403{
3404 struct kmem_cache *cachep;
3405 struct memcg_cache_params *params;
3406
3407 if (!memcg_kmem_is_active(memcg))
3408 return;
3409
3410 mutex_lock(&memcg->slab_caches_mutex);
3411 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3412 cachep = memcg_params_to_cache(params);
3413 cachep->memcg_params->dead = true;
1f458cbf
GC
3414 schedule_work(&cachep->memcg_params->destroy);
3415 }
3416 mutex_unlock(&memcg->slab_caches_mutex);
3417}
3418
d7f25f8a
GC
3419static void memcg_create_cache_work_func(struct work_struct *w)
3420{
3421 struct create_work *cw;
3422
3423 cw = container_of(w, struct create_work, work);
3424 memcg_create_kmem_cache(cw->memcg, cw->cachep);
3425 /* Drop the reference gotten when we enqueued. */
3426 css_put(&cw->memcg->css);
3427 kfree(cw);
3428}
3429
3430/*
3431 * Enqueue the creation of a per-memcg kmem_cache.
3432 * Called with rcu_read_lock.
3433 */
0e9d92f2
GC
3434static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3435 struct kmem_cache *cachep)
d7f25f8a
GC
3436{
3437 struct create_work *cw;
3438
3439 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
3440 if (cw == NULL)
3441 return;
3442
3443 /* The corresponding put will be done in the workqueue. */
3444 if (!css_tryget(&memcg->css)) {
3445 kfree(cw);
3446 return;
3447 }
3448
3449 cw->memcg = memcg;
3450 cw->cachep = cachep;
3451
3452 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3453 schedule_work(&cw->work);
3454}
3455
0e9d92f2
GC
3456static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3457 struct kmem_cache *cachep)
3458{
3459 /*
3460 * We need to stop accounting when we kmalloc, because if the
3461 * corresponding kmalloc cache is not yet created, the first allocation
3462 * in __memcg_create_cache_enqueue will recurse.
3463 *
3464 * However, it is better to enclose the whole function. Depending on
3465 * the debugging options enabled, INIT_WORK(), for instance, can
3466 * trigger an allocation. This too, will make us recurse. Because at
3467 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3468 * the safest choice is to do it like this, wrapping the whole function.
3469 */
3470 memcg_stop_kmem_account();
3471 __memcg_create_cache_enqueue(memcg, cachep);
3472 memcg_resume_kmem_account();
3473}
d7f25f8a
GC
3474/*
3475 * Return the kmem_cache we're supposed to use for a slab allocation.
3476 * We try to use the current memcg's version of the cache.
3477 *
3478 * If the cache does not exist yet, if we are the first user of it,
3479 * we either create it immediately, if possible, or create it asynchronously
3480 * in a workqueue.
3481 * In the latter case, we will let the current allocation go through with
3482 * the original cache.
3483 *
3484 * Can't be called in interrupt context or from kernel threads.
3485 * This function needs to be called with rcu_read_lock() held.
3486 */
3487struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3488 gfp_t gfp)
3489{
3490 struct mem_cgroup *memcg;
3491 int idx;
3492
3493 VM_BUG_ON(!cachep->memcg_params);
3494 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3495
0e9d92f2
GC
3496 if (!current->mm || current->memcg_kmem_skip_account)
3497 return cachep;
3498
d7f25f8a
GC
3499 rcu_read_lock();
3500 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
3501 rcu_read_unlock();
3502
3503 if (!memcg_can_account_kmem(memcg))
3504 return cachep;
3505
3506 idx = memcg_cache_id(memcg);
3507
3508 /*
3509 * barrier to mare sure we're always seeing the up to date value. The
3510 * code updating memcg_caches will issue a write barrier to match this.
3511 */
3512 read_barrier_depends();
3513 if (unlikely(cachep->memcg_params->memcg_caches[idx] == NULL)) {
3514 /*
3515 * If we are in a safe context (can wait, and not in interrupt
3516 * context), we could be be predictable and return right away.
3517 * This would guarantee that the allocation being performed
3518 * already belongs in the new cache.
3519 *
3520 * However, there are some clashes that can arrive from locking.
3521 * For instance, because we acquire the slab_mutex while doing
3522 * kmem_cache_dup, this means no further allocation could happen
3523 * with the slab_mutex held.
3524 *
3525 * Also, because cache creation issue get_online_cpus(), this
3526 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3527 * that ends up reversed during cpu hotplug. (cpuset allocates
3528 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3529 * better to defer everything.
3530 */
3531 memcg_create_cache_enqueue(memcg, cachep);
3532 return cachep;
3533 }
3534
3535 return cachep->memcg_params->memcg_caches[idx];
3536}
3537EXPORT_SYMBOL(__memcg_kmem_get_cache);
3538
7ae1e1d0
GC
3539/*
3540 * We need to verify if the allocation against current->mm->owner's memcg is
3541 * possible for the given order. But the page is not allocated yet, so we'll
3542 * need a further commit step to do the final arrangements.
3543 *
3544 * It is possible for the task to switch cgroups in this mean time, so at
3545 * commit time, we can't rely on task conversion any longer. We'll then use
3546 * the handle argument to return to the caller which cgroup we should commit
3547 * against. We could also return the memcg directly and avoid the pointer
3548 * passing, but a boolean return value gives better semantics considering
3549 * the compiled-out case as well.
3550 *
3551 * Returning true means the allocation is possible.
3552 */
3553bool
3554__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3555{
3556 struct mem_cgroup *memcg;
3557 int ret;
3558
3559 *_memcg = NULL;
3560 memcg = try_get_mem_cgroup_from_mm(current->mm);
3561
3562 /*
3563 * very rare case described in mem_cgroup_from_task. Unfortunately there
3564 * isn't much we can do without complicating this too much, and it would
3565 * be gfp-dependent anyway. Just let it go
3566 */
3567 if (unlikely(!memcg))
3568 return true;
3569
3570 if (!memcg_can_account_kmem(memcg)) {
3571 css_put(&memcg->css);
3572 return true;
3573 }
3574
7ae1e1d0
GC
3575 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3576 if (!ret)
3577 *_memcg = memcg;
7ae1e1d0
GC
3578
3579 css_put(&memcg->css);
3580 return (ret == 0);
3581}
3582
3583void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3584 int order)
3585{
3586 struct page_cgroup *pc;
3587
3588 VM_BUG_ON(mem_cgroup_is_root(memcg));
3589
3590 /* The page allocation failed. Revert */
3591 if (!page) {
3592 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
7ae1e1d0
GC
3593 return;
3594 }
3595
3596 pc = lookup_page_cgroup(page);
3597 lock_page_cgroup(pc);
3598 pc->mem_cgroup = memcg;
3599 SetPageCgroupUsed(pc);
3600 unlock_page_cgroup(pc);
3601}
3602
3603void __memcg_kmem_uncharge_pages(struct page *page, int order)
3604{
3605 struct mem_cgroup *memcg = NULL;
3606 struct page_cgroup *pc;
3607
3608
3609 pc = lookup_page_cgroup(page);
3610 /*
3611 * Fast unlocked return. Theoretically might have changed, have to
3612 * check again after locking.
3613 */
3614 if (!PageCgroupUsed(pc))
3615 return;
3616
3617 lock_page_cgroup(pc);
3618 if (PageCgroupUsed(pc)) {
3619 memcg = pc->mem_cgroup;
3620 ClearPageCgroupUsed(pc);
3621 }
3622 unlock_page_cgroup(pc);
3623
3624 /*
3625 * We trust that only if there is a memcg associated with the page, it
3626 * is a valid allocation
3627 */
3628 if (!memcg)
3629 return;
3630
3631 VM_BUG_ON(mem_cgroup_is_root(memcg));
3632 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
7ae1e1d0 3633}
1f458cbf
GC
3634#else
3635static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3636{
3637}
7ae1e1d0
GC
3638#endif /* CONFIG_MEMCG_KMEM */
3639
ca3e0214
KH
3640#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3641
a0db00fc 3642#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
ca3e0214
KH
3643/*
3644 * Because tail pages are not marked as "used", set it. We're under
e94c8a9c
KH
3645 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3646 * charge/uncharge will be never happen and move_account() is done under
3647 * compound_lock(), so we don't have to take care of races.
ca3e0214 3648 */
e94c8a9c 3649void mem_cgroup_split_huge_fixup(struct page *head)
ca3e0214
KH
3650{
3651 struct page_cgroup *head_pc = lookup_page_cgroup(head);
e94c8a9c
KH
3652 struct page_cgroup *pc;
3653 int i;
ca3e0214 3654
3d37c4a9
KH
3655 if (mem_cgroup_disabled())
3656 return;
e94c8a9c
KH
3657 for (i = 1; i < HPAGE_PMD_NR; i++) {
3658 pc = head_pc + i;
3659 pc->mem_cgroup = head_pc->mem_cgroup;
3660 smp_wmb();/* see __commit_charge() */
e94c8a9c
KH
3661 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3662 }
ca3e0214 3663}
12d27107 3664#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
ca3e0214 3665
f817ed48 3666/**
de3638d9 3667 * mem_cgroup_move_account - move account of the page
5564e88b 3668 * @page: the page
7ec99d62 3669 * @nr_pages: number of regular pages (>1 for huge pages)
f817ed48
KH
3670 * @pc: page_cgroup of the page.
3671 * @from: mem_cgroup which the page is moved from.
3672 * @to: mem_cgroup which the page is moved to. @from != @to.
3673 *
3674 * The caller must confirm following.
08e552c6 3675 * - page is not on LRU (isolate_page() is useful.)
7ec99d62 3676 * - compound_lock is held when nr_pages > 1
f817ed48 3677 *
2f3479b1
KH
3678 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3679 * from old cgroup.
f817ed48 3680 */
7ec99d62
JW
3681static int mem_cgroup_move_account(struct page *page,
3682 unsigned int nr_pages,
3683 struct page_cgroup *pc,
3684 struct mem_cgroup *from,
2f3479b1 3685 struct mem_cgroup *to)
f817ed48 3686{
de3638d9
JW
3687 unsigned long flags;
3688 int ret;
b2402857 3689 bool anon = PageAnon(page);
987eba66 3690
f817ed48 3691 VM_BUG_ON(from == to);
5564e88b 3692 VM_BUG_ON(PageLRU(page));
de3638d9
JW
3693 /*
3694 * The page is isolated from LRU. So, collapse function
3695 * will not handle this page. But page splitting can happen.
3696 * Do this check under compound_page_lock(). The caller should
3697 * hold it.
3698 */
3699 ret = -EBUSY;
7ec99d62 3700 if (nr_pages > 1 && !PageTransHuge(page))
de3638d9
JW
3701 goto out;
3702
3703 lock_page_cgroup(pc);
3704
3705 ret = -EINVAL;
3706 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3707 goto unlock;
3708
312734c0 3709 move_lock_mem_cgroup(from, &flags);
f817ed48 3710
2ff76f11 3711 if (!anon && page_mapped(page)) {
c62b1a3b
KH
3712 /* Update mapped_file data for mem_cgroup */
3713 preempt_disable();
3714 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3715 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3716 preempt_enable();
d69b042f 3717 }
b2402857 3718 mem_cgroup_charge_statistics(from, anon, -nr_pages);
d69b042f 3719
854ffa8d 3720 /* caller should have done css_get */
08e552c6 3721 pc->mem_cgroup = to;
b2402857 3722 mem_cgroup_charge_statistics(to, anon, nr_pages);
312734c0 3723 move_unlock_mem_cgroup(from, &flags);
de3638d9
JW
3724 ret = 0;
3725unlock:
57f9fd7d 3726 unlock_page_cgroup(pc);
d2265e6f
KH
3727 /*
3728 * check events
3729 */
5564e88b
JW
3730 memcg_check_events(to, page);
3731 memcg_check_events(from, page);
de3638d9 3732out:
f817ed48
KH
3733 return ret;
3734}
3735
2ef37d3f
MH
3736/**
3737 * mem_cgroup_move_parent - moves page to the parent group
3738 * @page: the page to move
3739 * @pc: page_cgroup of the page
3740 * @child: page's cgroup
3741 *
3742 * move charges to its parent or the root cgroup if the group has no
3743 * parent (aka use_hierarchy==0).
3744 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3745 * mem_cgroup_move_account fails) the failure is always temporary and
3746 * it signals a race with a page removal/uncharge or migration. In the
3747 * first case the page is on the way out and it will vanish from the LRU
3748 * on the next attempt and the call should be retried later.
3749 * Isolation from the LRU fails only if page has been isolated from
3750 * the LRU since we looked at it and that usually means either global
3751 * reclaim or migration going on. The page will either get back to the
3752 * LRU or vanish.
3753 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3754 * (!PageCgroupUsed) or moved to a different group. The page will
3755 * disappear in the next attempt.
f817ed48 3756 */
5564e88b
JW
3757static int mem_cgroup_move_parent(struct page *page,
3758 struct page_cgroup *pc,
6068bf01 3759 struct mem_cgroup *child)
f817ed48 3760{
f817ed48 3761 struct mem_cgroup *parent;
7ec99d62 3762 unsigned int nr_pages;
4be4489f 3763 unsigned long uninitialized_var(flags);
f817ed48
KH
3764 int ret;
3765
d8423011 3766 VM_BUG_ON(mem_cgroup_is_root(child));
f817ed48 3767
57f9fd7d
DN
3768 ret = -EBUSY;
3769 if (!get_page_unless_zero(page))
3770 goto out;
3771 if (isolate_lru_page(page))
3772 goto put;
52dbb905 3773
7ec99d62 3774 nr_pages = hpage_nr_pages(page);
08e552c6 3775
cc926f78
KH
3776 parent = parent_mem_cgroup(child);
3777 /*
3778 * If no parent, move charges to root cgroup.
3779 */
3780 if (!parent)
3781 parent = root_mem_cgroup;
f817ed48 3782
2ef37d3f
MH
3783 if (nr_pages > 1) {
3784 VM_BUG_ON(!PageTransHuge(page));
987eba66 3785 flags = compound_lock_irqsave(page);
2ef37d3f 3786 }
987eba66 3787
cc926f78 3788 ret = mem_cgroup_move_account(page, nr_pages,
2f3479b1 3789 pc, child, parent);
cc926f78
KH
3790 if (!ret)
3791 __mem_cgroup_cancel_local_charge(child, nr_pages);
8dba474f 3792
7ec99d62 3793 if (nr_pages > 1)
987eba66 3794 compound_unlock_irqrestore(page, flags);
08e552c6 3795 putback_lru_page(page);
57f9fd7d 3796put:
40d58138 3797 put_page(page);
57f9fd7d 3798out:
f817ed48
KH
3799 return ret;
3800}
3801
7a81b88c
KH
3802/*
3803 * Charge the memory controller for page usage.
3804 * Return
3805 * 0 if the charge was successful
3806 * < 0 if the cgroup is over its limit
3807 */
3808static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
73045c47 3809 gfp_t gfp_mask, enum charge_type ctype)
7a81b88c 3810{
c0ff4b85 3811 struct mem_cgroup *memcg = NULL;
7ec99d62 3812 unsigned int nr_pages = 1;
8493ae43 3813 bool oom = true;
7a81b88c 3814 int ret;
ec168510 3815
37c2ac78 3816 if (PageTransHuge(page)) {
7ec99d62 3817 nr_pages <<= compound_order(page);
37c2ac78 3818 VM_BUG_ON(!PageTransHuge(page));
8493ae43
JW
3819 /*
3820 * Never OOM-kill a process for a huge page. The
3821 * fault handler will fall back to regular pages.
3822 */
3823 oom = false;
37c2ac78 3824 }
7a81b88c 3825
c0ff4b85 3826 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
38c5d72f 3827 if (ret == -ENOMEM)
7a81b88c 3828 return ret;
ce587e65 3829 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
8a9f3ccd 3830 return 0;
8a9f3ccd
BS
3831}
3832
7a81b88c
KH
3833int mem_cgroup_newpage_charge(struct page *page,
3834 struct mm_struct *mm, gfp_t gfp_mask)
217bc319 3835{
f8d66542 3836 if (mem_cgroup_disabled())
cede86ac 3837 return 0;
7a0524cf
JW
3838 VM_BUG_ON(page_mapped(page));
3839 VM_BUG_ON(page->mapping && !PageAnon(page));
3840 VM_BUG_ON(!mm);
217bc319 3841 return mem_cgroup_charge_common(page, mm, gfp_mask,
41326c17 3842 MEM_CGROUP_CHARGE_TYPE_ANON);
217bc319
KH
3843}
3844
54595fe2
KH
3845/*
3846 * While swap-in, try_charge -> commit or cancel, the page is locked.
3847 * And when try_charge() successfully returns, one refcnt to memcg without
21ae2956 3848 * struct page_cgroup is acquired. This refcnt will be consumed by
54595fe2
KH
3849 * "commit()" or removed by "cancel()"
3850 */
0435a2fd
JW
3851static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3852 struct page *page,
3853 gfp_t mask,
3854 struct mem_cgroup **memcgp)
8c7c6e34 3855{
c0ff4b85 3856 struct mem_cgroup *memcg;
90deb788 3857 struct page_cgroup *pc;
54595fe2 3858 int ret;
8c7c6e34 3859
90deb788
JW
3860 pc = lookup_page_cgroup(page);
3861 /*
3862 * Every swap fault against a single page tries to charge the
3863 * page, bail as early as possible. shmem_unuse() encounters
3864 * already charged pages, too. The USED bit is protected by
3865 * the page lock, which serializes swap cache removal, which
3866 * in turn serializes uncharging.
3867 */
3868 if (PageCgroupUsed(pc))
3869 return 0;
8c7c6e34
KH
3870 if (!do_swap_account)
3871 goto charge_cur_mm;
c0ff4b85
R
3872 memcg = try_get_mem_cgroup_from_page(page);
3873 if (!memcg)
54595fe2 3874 goto charge_cur_mm;
72835c86
JW
3875 *memcgp = memcg;
3876 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
c0ff4b85 3877 css_put(&memcg->css);
38c5d72f
KH
3878 if (ret == -EINTR)
3879 ret = 0;
54595fe2 3880 return ret;
8c7c6e34 3881charge_cur_mm:
38c5d72f
KH
3882 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3883 if (ret == -EINTR)
3884 ret = 0;
3885 return ret;
8c7c6e34
KH
3886}
3887
0435a2fd
JW
3888int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3889 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3890{
3891 *memcgp = NULL;
3892 if (mem_cgroup_disabled())
3893 return 0;
bdf4f4d2
JW
3894 /*
3895 * A racing thread's fault, or swapoff, may have already
3896 * updated the pte, and even removed page from swap cache: in
3897 * those cases unuse_pte()'s pte_same() test will fail; but
3898 * there's also a KSM case which does need to charge the page.
3899 */
3900 if (!PageSwapCache(page)) {
3901 int ret;
3902
3903 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3904 if (ret == -EINTR)
3905 ret = 0;
3906 return ret;
3907 }
0435a2fd
JW
3908 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3909}
3910
827a03d2
JW
3911void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3912{
3913 if (mem_cgroup_disabled())
3914 return;
3915 if (!memcg)
3916 return;
3917 __mem_cgroup_cancel_charge(memcg, 1);
3918}
3919
83aae4c7 3920static void
72835c86 3921__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
83aae4c7 3922 enum charge_type ctype)
7a81b88c 3923{
f8d66542 3924 if (mem_cgroup_disabled())
7a81b88c 3925 return;
72835c86 3926 if (!memcg)
7a81b88c 3927 return;
5a6475a4 3928
ce587e65 3929 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
8c7c6e34
KH
3930 /*
3931 * Now swap is on-memory. This means this page may be
3932 * counted both as mem and swap....double count.
03f3c433
KH
3933 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3934 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3935 * may call delete_from_swap_cache() before reach here.
8c7c6e34 3936 */
03f3c433 3937 if (do_swap_account && PageSwapCache(page)) {
8c7c6e34 3938 swp_entry_t ent = {.val = page_private(page)};
86493009 3939 mem_cgroup_uncharge_swap(ent);
8c7c6e34 3940 }
7a81b88c
KH
3941}
3942
72835c86
JW
3943void mem_cgroup_commit_charge_swapin(struct page *page,
3944 struct mem_cgroup *memcg)
83aae4c7 3945{
72835c86 3946 __mem_cgroup_commit_charge_swapin(page, memcg,
41326c17 3947 MEM_CGROUP_CHARGE_TYPE_ANON);
83aae4c7
DN
3948}
3949
827a03d2
JW
3950int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3951 gfp_t gfp_mask)
7a81b88c 3952{
827a03d2
JW
3953 struct mem_cgroup *memcg = NULL;
3954 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3955 int ret;
3956
f8d66542 3957 if (mem_cgroup_disabled())
827a03d2
JW
3958 return 0;
3959 if (PageCompound(page))
3960 return 0;
3961
827a03d2
JW
3962 if (!PageSwapCache(page))
3963 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3964 else { /* page is swapcache/shmem */
0435a2fd
JW
3965 ret = __mem_cgroup_try_charge_swapin(mm, page,
3966 gfp_mask, &memcg);
827a03d2
JW
3967 if (!ret)
3968 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3969 }
3970 return ret;
7a81b88c
KH
3971}
3972
c0ff4b85 3973static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
7ec99d62
JW
3974 unsigned int nr_pages,
3975 const enum charge_type ctype)
569b846d
KH
3976{
3977 struct memcg_batch_info *batch = NULL;
3978 bool uncharge_memsw = true;
7ec99d62 3979
569b846d
KH
3980 /* If swapout, usage of swap doesn't decrease */
3981 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3982 uncharge_memsw = false;
569b846d
KH
3983
3984 batch = &current->memcg_batch;
3985 /*
3986 * In usual, we do css_get() when we remember memcg pointer.
3987 * But in this case, we keep res->usage until end of a series of
3988 * uncharges. Then, it's ok to ignore memcg's refcnt.
3989 */
3990 if (!batch->memcg)
c0ff4b85 3991 batch->memcg = memcg;
3c11ecf4
KH
3992 /*
3993 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
25985edc 3994 * In those cases, all pages freed continuously can be expected to be in
3c11ecf4
KH
3995 * the same cgroup and we have chance to coalesce uncharges.
3996 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3997 * because we want to do uncharge as soon as possible.
3998 */
3999
4000 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
4001 goto direct_uncharge;
4002
7ec99d62 4003 if (nr_pages > 1)
ec168510
AA
4004 goto direct_uncharge;
4005
569b846d
KH
4006 /*
4007 * In typical case, batch->memcg == mem. This means we can
4008 * merge a series of uncharges to an uncharge of res_counter.
4009 * If not, we uncharge res_counter ony by one.
4010 */
c0ff4b85 4011 if (batch->memcg != memcg)
569b846d
KH
4012 goto direct_uncharge;
4013 /* remember freed charge and uncharge it later */
7ffd4ca7 4014 batch->nr_pages++;
569b846d 4015 if (uncharge_memsw)
7ffd4ca7 4016 batch->memsw_nr_pages++;
569b846d
KH
4017 return;
4018direct_uncharge:
c0ff4b85 4019 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
569b846d 4020 if (uncharge_memsw)
c0ff4b85
R
4021 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
4022 if (unlikely(batch->memcg != memcg))
4023 memcg_oom_recover(memcg);
569b846d 4024}
7a81b88c 4025
8a9f3ccd 4026/*
69029cd5 4027 * uncharge if !page_mapped(page)
8a9f3ccd 4028 */
8c7c6e34 4029static struct mem_cgroup *
0030f535
JW
4030__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
4031 bool end_migration)
8a9f3ccd 4032{
c0ff4b85 4033 struct mem_cgroup *memcg = NULL;
7ec99d62
JW
4034 unsigned int nr_pages = 1;
4035 struct page_cgroup *pc;
b2402857 4036 bool anon;
8a9f3ccd 4037
f8d66542 4038 if (mem_cgroup_disabled())
8c7c6e34 4039 return NULL;
4077960e 4040
0c59b89c 4041 VM_BUG_ON(PageSwapCache(page));
d13d1443 4042
37c2ac78 4043 if (PageTransHuge(page)) {
7ec99d62 4044 nr_pages <<= compound_order(page);
37c2ac78
AA
4045 VM_BUG_ON(!PageTransHuge(page));
4046 }
8697d331 4047 /*
3c541e14 4048 * Check if our page_cgroup is valid
8697d331 4049 */
52d4b9ac 4050 pc = lookup_page_cgroup(page);
cfa44946 4051 if (unlikely(!PageCgroupUsed(pc)))
8c7c6e34 4052 return NULL;
b9c565d5 4053
52d4b9ac 4054 lock_page_cgroup(pc);
d13d1443 4055
c0ff4b85 4056 memcg = pc->mem_cgroup;
8c7c6e34 4057
d13d1443
KH
4058 if (!PageCgroupUsed(pc))
4059 goto unlock_out;
4060
b2402857
KH
4061 anon = PageAnon(page);
4062
d13d1443 4063 switch (ctype) {
41326c17 4064 case MEM_CGROUP_CHARGE_TYPE_ANON:
2ff76f11
KH
4065 /*
4066 * Generally PageAnon tells if it's the anon statistics to be
4067 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4068 * used before page reached the stage of being marked PageAnon.
4069 */
b2402857
KH
4070 anon = true;
4071 /* fallthrough */
8a9478ca 4072 case MEM_CGROUP_CHARGE_TYPE_DROP:
ac39cf8c 4073 /* See mem_cgroup_prepare_migration() */
0030f535
JW
4074 if (page_mapped(page))
4075 goto unlock_out;
4076 /*
4077 * Pages under migration may not be uncharged. But
4078 * end_migration() /must/ be the one uncharging the
4079 * unused post-migration page and so it has to call
4080 * here with the migration bit still set. See the
4081 * res_counter handling below.
4082 */
4083 if (!end_migration && PageCgroupMigration(pc))
d13d1443
KH
4084 goto unlock_out;
4085 break;
4086 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4087 if (!PageAnon(page)) { /* Shared memory */
4088 if (page->mapping && !page_is_file_cache(page))
4089 goto unlock_out;
4090 } else if (page_mapped(page)) /* Anon */
4091 goto unlock_out;
4092 break;
4093 default:
4094 break;
52d4b9ac 4095 }
d13d1443 4096
b2402857 4097 mem_cgroup_charge_statistics(memcg, anon, -nr_pages);
04046e1a 4098
52d4b9ac 4099 ClearPageCgroupUsed(pc);
544122e5
KH
4100 /*
4101 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4102 * freed from LRU. This is safe because uncharged page is expected not
4103 * to be reused (freed soon). Exception is SwapCache, it's handled by
4104 * special functions.
4105 */
b9c565d5 4106
52d4b9ac 4107 unlock_page_cgroup(pc);
f75ca962 4108 /*
c0ff4b85 4109 * even after unlock, we have memcg->res.usage here and this memcg
f75ca962
KH
4110 * will never be freed.
4111 */
c0ff4b85 4112 memcg_check_events(memcg, page);
f75ca962 4113 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
c0ff4b85
R
4114 mem_cgroup_swap_statistics(memcg, true);
4115 mem_cgroup_get(memcg);
f75ca962 4116 }
0030f535
JW
4117 /*
4118 * Migration does not charge the res_counter for the
4119 * replacement page, so leave it alone when phasing out the
4120 * page that is unused after the migration.
4121 */
4122 if (!end_migration && !mem_cgroup_is_root(memcg))
c0ff4b85 4123 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
6d12e2d8 4124
c0ff4b85 4125 return memcg;
d13d1443
KH
4126
4127unlock_out:
4128 unlock_page_cgroup(pc);
8c7c6e34 4129 return NULL;
3c541e14
BS
4130}
4131
69029cd5
KH
4132void mem_cgroup_uncharge_page(struct page *page)
4133{
52d4b9ac
KH
4134 /* early check. */
4135 if (page_mapped(page))
4136 return;
40f23a21 4137 VM_BUG_ON(page->mapping && !PageAnon(page));
0c59b89c
JW
4138 if (PageSwapCache(page))
4139 return;
0030f535 4140 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
69029cd5
KH
4141}
4142
4143void mem_cgroup_uncharge_cache_page(struct page *page)
4144{
4145 VM_BUG_ON(page_mapped(page));
b7abea96 4146 VM_BUG_ON(page->mapping);
0030f535 4147 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
69029cd5
KH
4148}
4149
569b846d
KH
4150/*
4151 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4152 * In that cases, pages are freed continuously and we can expect pages
4153 * are in the same memcg. All these calls itself limits the number of
4154 * pages freed at once, then uncharge_start/end() is called properly.
4155 * This may be called prural(2) times in a context,
4156 */
4157
4158void mem_cgroup_uncharge_start(void)
4159{
4160 current->memcg_batch.do_batch++;
4161 /* We can do nest. */
4162 if (current->memcg_batch.do_batch == 1) {
4163 current->memcg_batch.memcg = NULL;
7ffd4ca7
JW
4164 current->memcg_batch.nr_pages = 0;
4165 current->memcg_batch.memsw_nr_pages = 0;
569b846d
KH
4166 }
4167}
4168
4169void mem_cgroup_uncharge_end(void)
4170{
4171 struct memcg_batch_info *batch = &current->memcg_batch;
4172
4173 if (!batch->do_batch)
4174 return;
4175
4176 batch->do_batch--;
4177 if (batch->do_batch) /* If stacked, do nothing. */
4178 return;
4179
4180 if (!batch->memcg)
4181 return;
4182 /*
4183 * This "batch->memcg" is valid without any css_get/put etc...
4184 * bacause we hide charges behind us.
4185 */
7ffd4ca7
JW
4186 if (batch->nr_pages)
4187 res_counter_uncharge(&batch->memcg->res,
4188 batch->nr_pages * PAGE_SIZE);
4189 if (batch->memsw_nr_pages)
4190 res_counter_uncharge(&batch->memcg->memsw,
4191 batch->memsw_nr_pages * PAGE_SIZE);
3c11ecf4 4192 memcg_oom_recover(batch->memcg);
569b846d
KH
4193 /* forget this pointer (for sanity check) */
4194 batch->memcg = NULL;
4195}
4196
e767e056 4197#ifdef CONFIG_SWAP
8c7c6e34 4198/*
e767e056 4199 * called after __delete_from_swap_cache() and drop "page" account.
8c7c6e34
KH
4200 * memcg information is recorded to swap_cgroup of "ent"
4201 */
8a9478ca
KH
4202void
4203mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
8c7c6e34
KH
4204{
4205 struct mem_cgroup *memcg;
8a9478ca
KH
4206 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
4207
4208 if (!swapout) /* this was a swap cache but the swap is unused ! */
4209 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4210
0030f535 4211 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
8c7c6e34 4212
f75ca962
KH
4213 /*
4214 * record memcg information, if swapout && memcg != NULL,
4215 * mem_cgroup_get() was called in uncharge().
4216 */
4217 if (do_swap_account && swapout && memcg)
a3b2d692 4218 swap_cgroup_record(ent, css_id(&memcg->css));
8c7c6e34 4219}
e767e056 4220#endif
8c7c6e34 4221
c255a458 4222#ifdef CONFIG_MEMCG_SWAP
8c7c6e34
KH
4223/*
4224 * called from swap_entry_free(). remove record in swap_cgroup and
4225 * uncharge "memsw" account.
4226 */
4227void mem_cgroup_uncharge_swap(swp_entry_t ent)
d13d1443 4228{
8c7c6e34 4229 struct mem_cgroup *memcg;
a3b2d692 4230 unsigned short id;
8c7c6e34
KH
4231
4232 if (!do_swap_account)
4233 return;
4234
a3b2d692
KH
4235 id = swap_cgroup_record(ent, 0);
4236 rcu_read_lock();
4237 memcg = mem_cgroup_lookup(id);
8c7c6e34 4238 if (memcg) {
a3b2d692
KH
4239 /*
4240 * We uncharge this because swap is freed.
4241 * This memcg can be obsolete one. We avoid calling css_tryget
4242 */
0c3e73e8 4243 if (!mem_cgroup_is_root(memcg))
4e649152 4244 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
0c3e73e8 4245 mem_cgroup_swap_statistics(memcg, false);
8c7c6e34
KH
4246 mem_cgroup_put(memcg);
4247 }
a3b2d692 4248 rcu_read_unlock();
d13d1443 4249}
02491447
DN
4250
4251/**
4252 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4253 * @entry: swap entry to be moved
4254 * @from: mem_cgroup which the entry is moved from
4255 * @to: mem_cgroup which the entry is moved to
4256 *
4257 * It succeeds only when the swap_cgroup's record for this entry is the same
4258 * as the mem_cgroup's id of @from.
4259 *
4260 * Returns 0 on success, -EINVAL on failure.
4261 *
4262 * The caller must have charged to @to, IOW, called res_counter_charge() about
4263 * both res and memsw, and called css_get().
4264 */
4265static int mem_cgroup_move_swap_account(swp_entry_t entry,
e91cbb42 4266 struct mem_cgroup *from, struct mem_cgroup *to)
02491447
DN
4267{
4268 unsigned short old_id, new_id;
4269
4270 old_id = css_id(&from->css);
4271 new_id = css_id(&to->css);
4272
4273 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
02491447 4274 mem_cgroup_swap_statistics(from, false);
483c30b5 4275 mem_cgroup_swap_statistics(to, true);
02491447 4276 /*
483c30b5
DN
4277 * This function is only called from task migration context now.
4278 * It postpones res_counter and refcount handling till the end
4279 * of task migration(mem_cgroup_clear_mc()) for performance
4280 * improvement. But we cannot postpone mem_cgroup_get(to)
4281 * because if the process that has been moved to @to does
4282 * swap-in, the refcount of @to might be decreased to 0.
02491447 4283 */
02491447 4284 mem_cgroup_get(to);
02491447
DN
4285 return 0;
4286 }
4287 return -EINVAL;
4288}
4289#else
4290static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
e91cbb42 4291 struct mem_cgroup *from, struct mem_cgroup *to)
02491447
DN
4292{
4293 return -EINVAL;
4294}
8c7c6e34 4295#endif
d13d1443 4296
ae41be37 4297/*
01b1ae63
KH
4298 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4299 * page belongs to.
ae41be37 4300 */
0030f535
JW
4301void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4302 struct mem_cgroup **memcgp)
ae41be37 4303{
c0ff4b85 4304 struct mem_cgroup *memcg = NULL;
b32967ff 4305 unsigned int nr_pages = 1;
7ec99d62 4306 struct page_cgroup *pc;
ac39cf8c 4307 enum charge_type ctype;
8869b8f6 4308
72835c86 4309 *memcgp = NULL;
56039efa 4310
f8d66542 4311 if (mem_cgroup_disabled())
0030f535 4312 return;
4077960e 4313
b32967ff
MG
4314 if (PageTransHuge(page))
4315 nr_pages <<= compound_order(page);
4316
52d4b9ac
KH
4317 pc = lookup_page_cgroup(page);
4318 lock_page_cgroup(pc);
4319 if (PageCgroupUsed(pc)) {
c0ff4b85
R
4320 memcg = pc->mem_cgroup;
4321 css_get(&memcg->css);
ac39cf8c
AM
4322 /*
4323 * At migrating an anonymous page, its mapcount goes down
4324 * to 0 and uncharge() will be called. But, even if it's fully
4325 * unmapped, migration may fail and this page has to be
4326 * charged again. We set MIGRATION flag here and delay uncharge
4327 * until end_migration() is called
4328 *
4329 * Corner Case Thinking
4330 * A)
4331 * When the old page was mapped as Anon and it's unmap-and-freed
4332 * while migration was ongoing.
4333 * If unmap finds the old page, uncharge() of it will be delayed
4334 * until end_migration(). If unmap finds a new page, it's
4335 * uncharged when it make mapcount to be 1->0. If unmap code
4336 * finds swap_migration_entry, the new page will not be mapped
4337 * and end_migration() will find it(mapcount==0).
4338 *
4339 * B)
4340 * When the old page was mapped but migraion fails, the kernel
4341 * remaps it. A charge for it is kept by MIGRATION flag even
4342 * if mapcount goes down to 0. We can do remap successfully
4343 * without charging it again.
4344 *
4345 * C)
4346 * The "old" page is under lock_page() until the end of
4347 * migration, so, the old page itself will not be swapped-out.
4348 * If the new page is swapped out before end_migraton, our
4349 * hook to usual swap-out path will catch the event.
4350 */
4351 if (PageAnon(page))
4352 SetPageCgroupMigration(pc);
e8589cc1 4353 }
52d4b9ac 4354 unlock_page_cgroup(pc);
ac39cf8c
AM
4355 /*
4356 * If the page is not charged at this point,
4357 * we return here.
4358 */
c0ff4b85 4359 if (!memcg)
0030f535 4360 return;
01b1ae63 4361
72835c86 4362 *memcgp = memcg;
ac39cf8c
AM
4363 /*
4364 * We charge new page before it's used/mapped. So, even if unlock_page()
4365 * is called before end_migration, we can catch all events on this new
4366 * page. In the case new page is migrated but not remapped, new page's
4367 * mapcount will be finally 0 and we call uncharge in end_migration().
4368 */
ac39cf8c 4369 if (PageAnon(page))
41326c17 4370 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
ac39cf8c 4371 else
62ba7442 4372 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
0030f535
JW
4373 /*
4374 * The page is committed to the memcg, but it's not actually
4375 * charged to the res_counter since we plan on replacing the
4376 * old one and only one page is going to be left afterwards.
4377 */
b32967ff 4378 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
ae41be37 4379}
8869b8f6 4380
69029cd5 4381/* remove redundant charge if migration failed*/
c0ff4b85 4382void mem_cgroup_end_migration(struct mem_cgroup *memcg,
50de1dd9 4383 struct page *oldpage, struct page *newpage, bool migration_ok)
ae41be37 4384{
ac39cf8c 4385 struct page *used, *unused;
01b1ae63 4386 struct page_cgroup *pc;
b2402857 4387 bool anon;
01b1ae63 4388
c0ff4b85 4389 if (!memcg)
01b1ae63 4390 return;
b25ed609 4391
50de1dd9 4392 if (!migration_ok) {
ac39cf8c
AM
4393 used = oldpage;
4394 unused = newpage;
01b1ae63 4395 } else {
ac39cf8c 4396 used = newpage;
01b1ae63
KH
4397 unused = oldpage;
4398 }
0030f535 4399 anon = PageAnon(used);
7d188958
JW
4400 __mem_cgroup_uncharge_common(unused,
4401 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4402 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4403 true);
0030f535 4404 css_put(&memcg->css);
69029cd5 4405 /*
ac39cf8c
AM
4406 * We disallowed uncharge of pages under migration because mapcount
4407 * of the page goes down to zero, temporarly.
4408 * Clear the flag and check the page should be charged.
01b1ae63 4409 */
ac39cf8c
AM
4410 pc = lookup_page_cgroup(oldpage);
4411 lock_page_cgroup(pc);
4412 ClearPageCgroupMigration(pc);
4413 unlock_page_cgroup(pc);
ac39cf8c 4414
01b1ae63 4415 /*
ac39cf8c
AM
4416 * If a page is a file cache, radix-tree replacement is very atomic
4417 * and we can skip this check. When it was an Anon page, its mapcount
4418 * goes down to 0. But because we added MIGRATION flage, it's not
4419 * uncharged yet. There are several case but page->mapcount check
4420 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4421 * check. (see prepare_charge() also)
69029cd5 4422 */
b2402857 4423 if (anon)
ac39cf8c 4424 mem_cgroup_uncharge_page(used);
ae41be37 4425}
78fb7466 4426
ab936cbc
KH
4427/*
4428 * At replace page cache, newpage is not under any memcg but it's on
4429 * LRU. So, this function doesn't touch res_counter but handles LRU
4430 * in correct way. Both pages are locked so we cannot race with uncharge.
4431 */
4432void mem_cgroup_replace_page_cache(struct page *oldpage,
4433 struct page *newpage)
4434{
bde05d1c 4435 struct mem_cgroup *memcg = NULL;
ab936cbc 4436 struct page_cgroup *pc;
ab936cbc 4437 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
ab936cbc
KH
4438
4439 if (mem_cgroup_disabled())
4440 return;
4441
4442 pc = lookup_page_cgroup(oldpage);
4443 /* fix accounting on old pages */
4444 lock_page_cgroup(pc);
bde05d1c
HD
4445 if (PageCgroupUsed(pc)) {
4446 memcg = pc->mem_cgroup;
4447 mem_cgroup_charge_statistics(memcg, false, -1);
4448 ClearPageCgroupUsed(pc);
4449 }
ab936cbc
KH
4450 unlock_page_cgroup(pc);
4451
bde05d1c
HD
4452 /*
4453 * When called from shmem_replace_page(), in some cases the
4454 * oldpage has already been charged, and in some cases not.
4455 */
4456 if (!memcg)
4457 return;
ab936cbc
KH
4458 /*
4459 * Even if newpage->mapping was NULL before starting replacement,
4460 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4461 * LRU while we overwrite pc->mem_cgroup.
4462 */
ce587e65 4463 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
ab936cbc
KH
4464}
4465
f212ad7c
DN
4466#ifdef CONFIG_DEBUG_VM
4467static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4468{
4469 struct page_cgroup *pc;
4470
4471 pc = lookup_page_cgroup(page);
cfa44946
JW
4472 /*
4473 * Can be NULL while feeding pages into the page allocator for
4474 * the first time, i.e. during boot or memory hotplug;
4475 * or when mem_cgroup_disabled().
4476 */
f212ad7c
DN
4477 if (likely(pc) && PageCgroupUsed(pc))
4478 return pc;
4479 return NULL;
4480}
4481
4482bool mem_cgroup_bad_page_check(struct page *page)
4483{
4484 if (mem_cgroup_disabled())
4485 return false;
4486
4487 return lookup_page_cgroup_used(page) != NULL;
4488}
4489
4490void mem_cgroup_print_bad_page(struct page *page)
4491{
4492 struct page_cgroup *pc;
4493
4494 pc = lookup_page_cgroup_used(page);
4495 if (pc) {
d045197f
AM
4496 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4497 pc, pc->flags, pc->mem_cgroup);
f212ad7c
DN
4498 }
4499}
4500#endif
4501
d38d2a75 4502static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
8c7c6e34 4503 unsigned long long val)
628f4235 4504{
81d39c20 4505 int retry_count;
3c11ecf4 4506 u64 memswlimit, memlimit;
628f4235 4507 int ret = 0;
81d39c20
KH
4508 int children = mem_cgroup_count_children(memcg);
4509 u64 curusage, oldusage;
3c11ecf4 4510 int enlarge;
81d39c20
KH
4511
4512 /*
4513 * For keeping hierarchical_reclaim simple, how long we should retry
4514 * is depends on callers. We set our retry-count to be function
4515 * of # of children which we should visit in this loop.
4516 */
4517 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4518
4519 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
628f4235 4520
3c11ecf4 4521 enlarge = 0;
8c7c6e34 4522 while (retry_count) {
628f4235
KH
4523 if (signal_pending(current)) {
4524 ret = -EINTR;
4525 break;
4526 }
8c7c6e34
KH
4527 /*
4528 * Rather than hide all in some function, I do this in
4529 * open coded manner. You see what this really does.
aaad153e 4530 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
8c7c6e34
KH
4531 */
4532 mutex_lock(&set_limit_mutex);
4533 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4534 if (memswlimit < val) {
4535 ret = -EINVAL;
4536 mutex_unlock(&set_limit_mutex);
628f4235
KH
4537 break;
4538 }
3c11ecf4
KH
4539
4540 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4541 if (memlimit < val)
4542 enlarge = 1;
4543
8c7c6e34 4544 ret = res_counter_set_limit(&memcg->res, val);
22a668d7
KH
4545 if (!ret) {
4546 if (memswlimit == val)
4547 memcg->memsw_is_minimum = true;
4548 else
4549 memcg->memsw_is_minimum = false;
4550 }
8c7c6e34
KH
4551 mutex_unlock(&set_limit_mutex);
4552
4553 if (!ret)
4554 break;
4555
5660048c
JW
4556 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4557 MEM_CGROUP_RECLAIM_SHRINK);
81d39c20
KH
4558 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4559 /* Usage is reduced ? */
4560 if (curusage >= oldusage)
4561 retry_count--;
4562 else
4563 oldusage = curusage;
8c7c6e34 4564 }
3c11ecf4
KH
4565 if (!ret && enlarge)
4566 memcg_oom_recover(memcg);
14797e23 4567
8c7c6e34
KH
4568 return ret;
4569}
4570
338c8431
LZ
4571static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4572 unsigned long long val)
8c7c6e34 4573{
81d39c20 4574 int retry_count;
3c11ecf4 4575 u64 memlimit, memswlimit, oldusage, curusage;
81d39c20
KH
4576 int children = mem_cgroup_count_children(memcg);
4577 int ret = -EBUSY;
3c11ecf4 4578 int enlarge = 0;
8c7c6e34 4579
81d39c20
KH
4580 /* see mem_cgroup_resize_res_limit */
4581 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
4582 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
8c7c6e34
KH
4583 while (retry_count) {
4584 if (signal_pending(current)) {
4585 ret = -EINTR;
4586 break;
4587 }
4588 /*
4589 * Rather than hide all in some function, I do this in
4590 * open coded manner. You see what this really does.
aaad153e 4591 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
8c7c6e34
KH
4592 */
4593 mutex_lock(&set_limit_mutex);
4594 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4595 if (memlimit > val) {
4596 ret = -EINVAL;
4597 mutex_unlock(&set_limit_mutex);
4598 break;
4599 }
3c11ecf4
KH
4600 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4601 if (memswlimit < val)
4602 enlarge = 1;
8c7c6e34 4603 ret = res_counter_set_limit(&memcg->memsw, val);
22a668d7
KH
4604 if (!ret) {
4605 if (memlimit == val)
4606 memcg->memsw_is_minimum = true;
4607 else
4608 memcg->memsw_is_minimum = false;
4609 }
8c7c6e34
KH
4610 mutex_unlock(&set_limit_mutex);
4611
4612 if (!ret)
4613 break;
4614
5660048c
JW
4615 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4616 MEM_CGROUP_RECLAIM_NOSWAP |
4617 MEM_CGROUP_RECLAIM_SHRINK);
8c7c6e34 4618 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
81d39c20 4619 /* Usage is reduced ? */
8c7c6e34 4620 if (curusage >= oldusage)
628f4235 4621 retry_count--;
81d39c20
KH
4622 else
4623 oldusage = curusage;
628f4235 4624 }
3c11ecf4
KH
4625 if (!ret && enlarge)
4626 memcg_oom_recover(memcg);
628f4235
KH
4627 return ret;
4628}
4629
4e416953 4630unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
0ae5e89c
YH
4631 gfp_t gfp_mask,
4632 unsigned long *total_scanned)
4e416953
BS
4633{
4634 unsigned long nr_reclaimed = 0;
4635 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
4636 unsigned long reclaimed;
4637 int loop = 0;
4638 struct mem_cgroup_tree_per_zone *mctz;
ef8745c1 4639 unsigned long long excess;
0ae5e89c 4640 unsigned long nr_scanned;
4e416953
BS
4641
4642 if (order > 0)
4643 return 0;
4644
00918b6a 4645 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
4e416953
BS
4646 /*
4647 * This loop can run a while, specially if mem_cgroup's continuously
4648 * keep exceeding their soft limit and putting the system under
4649 * pressure
4650 */
4651 do {
4652 if (next_mz)
4653 mz = next_mz;
4654 else
4655 mz = mem_cgroup_largest_soft_limit_node(mctz);
4656 if (!mz)
4657 break;
4658
0ae5e89c 4659 nr_scanned = 0;
d79154bb 4660 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
5660048c 4661 gfp_mask, &nr_scanned);
4e416953 4662 nr_reclaimed += reclaimed;
0ae5e89c 4663 *total_scanned += nr_scanned;
4e416953
BS
4664 spin_lock(&mctz->lock);
4665
4666 /*
4667 * If we failed to reclaim anything from this memory cgroup
4668 * it is time to move on to the next cgroup
4669 */
4670 next_mz = NULL;
4671 if (!reclaimed) {
4672 do {
4673 /*
4674 * Loop until we find yet another one.
4675 *
4676 * By the time we get the soft_limit lock
4677 * again, someone might have aded the
4678 * group back on the RB tree. Iterate to
4679 * make sure we get a different mem.
4680 * mem_cgroup_largest_soft_limit_node returns
4681 * NULL if no other cgroup is present on
4682 * the tree
4683 */
4684 next_mz =
4685 __mem_cgroup_largest_soft_limit_node(mctz);
39cc98f1 4686 if (next_mz == mz)
d79154bb 4687 css_put(&next_mz->memcg->css);
39cc98f1 4688 else /* next_mz == NULL or other memcg */
4e416953
BS
4689 break;
4690 } while (1);
4691 }
d79154bb
HD
4692 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
4693 excess = res_counter_soft_limit_excess(&mz->memcg->res);
4e416953
BS
4694 /*
4695 * One school of thought says that we should not add
4696 * back the node to the tree if reclaim returns 0.
4697 * But our reclaim could return 0, simply because due
4698 * to priority we are exposing a smaller subset of
4699 * memory to reclaim from. Consider this as a longer
4700 * term TODO.
4701 */
ef8745c1 4702 /* If excess == 0, no tree ops */
d79154bb 4703 __mem_cgroup_insert_exceeded(mz->memcg, mz, mctz, excess);
4e416953 4704 spin_unlock(&mctz->lock);
d79154bb 4705 css_put(&mz->memcg->css);
4e416953
BS
4706 loop++;
4707 /*
4708 * Could not reclaim anything and there are no more
4709 * mem cgroups to try or we seem to be looping without
4710 * reclaiming anything.
4711 */
4712 if (!nr_reclaimed &&
4713 (next_mz == NULL ||
4714 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
4715 break;
4716 } while (!nr_reclaimed);
4717 if (next_mz)
d79154bb 4718 css_put(&next_mz->memcg->css);
4e416953
BS
4719 return nr_reclaimed;
4720}
4721
2ef37d3f
MH
4722/**
4723 * mem_cgroup_force_empty_list - clears LRU of a group
4724 * @memcg: group to clear
4725 * @node: NUMA node
4726 * @zid: zone id
4727 * @lru: lru to to clear
4728 *
3c935d18 4729 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
2ef37d3f
MH
4730 * reclaim the pages page themselves - pages are moved to the parent (or root)
4731 * group.
cc847582 4732 */
2ef37d3f 4733static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
08e552c6 4734 int node, int zid, enum lru_list lru)
cc847582 4735{
bea8c150 4736 struct lruvec *lruvec;
2ef37d3f 4737 unsigned long flags;
072c56c1 4738 struct list_head *list;
925b7673
JW
4739 struct page *busy;
4740 struct zone *zone;
072c56c1 4741
08e552c6 4742 zone = &NODE_DATA(node)->node_zones[zid];
bea8c150
HD
4743 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4744 list = &lruvec->lists[lru];
cc847582 4745
f817ed48 4746 busy = NULL;
2ef37d3f 4747 do {
925b7673 4748 struct page_cgroup *pc;
5564e88b
JW
4749 struct page *page;
4750
08e552c6 4751 spin_lock_irqsave(&zone->lru_lock, flags);
f817ed48 4752 if (list_empty(list)) {
08e552c6 4753 spin_unlock_irqrestore(&zone->lru_lock, flags);
52d4b9ac 4754 break;
f817ed48 4755 }
925b7673
JW
4756 page = list_entry(list->prev, struct page, lru);
4757 if (busy == page) {
4758 list_move(&page->lru, list);
648bcc77 4759 busy = NULL;
08e552c6 4760 spin_unlock_irqrestore(&zone->lru_lock, flags);
f817ed48
KH
4761 continue;
4762 }
08e552c6 4763 spin_unlock_irqrestore(&zone->lru_lock, flags);
f817ed48 4764
925b7673 4765 pc = lookup_page_cgroup(page);
5564e88b 4766
3c935d18 4767 if (mem_cgroup_move_parent(page, pc, memcg)) {
f817ed48 4768 /* found lock contention or "pc" is obsolete. */
925b7673 4769 busy = page;
f817ed48
KH
4770 cond_resched();
4771 } else
4772 busy = NULL;
2ef37d3f 4773 } while (!list_empty(list));
cc847582
KH
4774}
4775
4776/*
c26251f9
MH
4777 * make mem_cgroup's charge to be 0 if there is no task by moving
4778 * all the charges and pages to the parent.
cc847582 4779 * This enables deleting this mem_cgroup.
c26251f9
MH
4780 *
4781 * Caller is responsible for holding css reference on the memcg.
cc847582 4782 */
ab5196c2 4783static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
cc847582 4784{
c26251f9 4785 int node, zid;
bea207c8 4786 u64 usage;
f817ed48 4787
fce66477 4788 do {
52d4b9ac
KH
4789 /* This is for making all *used* pages to be on LRU. */
4790 lru_add_drain_all();
c0ff4b85 4791 drain_all_stock_sync(memcg);
c0ff4b85 4792 mem_cgroup_start_move(memcg);
31aaea4a 4793 for_each_node_state(node, N_MEMORY) {
2ef37d3f 4794 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
f156ab93
HD
4795 enum lru_list lru;
4796 for_each_lru(lru) {
2ef37d3f 4797 mem_cgroup_force_empty_list(memcg,
f156ab93 4798 node, zid, lru);
f817ed48 4799 }
1ecaab2b 4800 }
f817ed48 4801 }
c0ff4b85
R
4802 mem_cgroup_end_move(memcg);
4803 memcg_oom_recover(memcg);
52d4b9ac 4804 cond_resched();
f817ed48 4805
2ef37d3f 4806 /*
bea207c8
GC
4807 * Kernel memory may not necessarily be trackable to a specific
4808 * process. So they are not migrated, and therefore we can't
4809 * expect their value to drop to 0 here.
4810 * Having res filled up with kmem only is enough.
4811 *
2ef37d3f
MH
4812 * This is a safety check because mem_cgroup_force_empty_list
4813 * could have raced with mem_cgroup_replace_page_cache callers
4814 * so the lru seemed empty but the page could have been added
4815 * right after the check. RES_USAGE should be safe as we always
4816 * charge before adding to the LRU.
4817 */
bea207c8
GC
4818 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4819 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4820 } while (usage > 0);
c26251f9
MH
4821}
4822
b5f99b53
GC
4823/*
4824 * This mainly exists for tests during the setting of set of use_hierarchy.
4825 * Since this is the very setting we are changing, the current hierarchy value
4826 * is meaningless
4827 */
4828static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4829{
4830 struct cgroup *pos;
4831
4832 /* bounce at first found */
4833 cgroup_for_each_child(pos, memcg->css.cgroup)
4834 return true;
4835 return false;
4836}
4837
4838/*
0999821b
GC
4839 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4840 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
b5f99b53
GC
4841 * from mem_cgroup_count_children(), in the sense that we don't really care how
4842 * many children we have; we only need to know if we have any. It also counts
4843 * any memcg without hierarchy as infertile.
4844 */
4845static inline bool memcg_has_children(struct mem_cgroup *memcg)
4846{
4847 return memcg->use_hierarchy && __memcg_has_children(memcg);
4848}
4849
c26251f9
MH
4850/*
4851 * Reclaims as many pages from the given memcg as possible and moves
4852 * the rest to the parent.
4853 *
4854 * Caller is responsible for holding css reference for memcg.
4855 */
4856static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4857{
4858 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4859 struct cgroup *cgrp = memcg->css.cgroup;
f817ed48 4860
c1e862c1 4861 /* returns EBUSY if there is a task or if we come here twice. */
c26251f9
MH
4862 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4863 return -EBUSY;
4864
c1e862c1
KH
4865 /* we call try-to-free pages for make this cgroup empty */
4866 lru_add_drain_all();
f817ed48 4867 /* try to free all pages in this cgroup */
569530fb 4868 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
f817ed48 4869 int progress;
c1e862c1 4870
c26251f9
MH
4871 if (signal_pending(current))
4872 return -EINTR;
4873
c0ff4b85 4874 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
185efc0f 4875 false);
c1e862c1 4876 if (!progress) {
f817ed48 4877 nr_retries--;
c1e862c1 4878 /* maybe some writeback is necessary */
8aa7e847 4879 congestion_wait(BLK_RW_ASYNC, HZ/10);
c1e862c1 4880 }
f817ed48
KH
4881
4882 }
08e552c6 4883 lru_add_drain();
ab5196c2
MH
4884 mem_cgroup_reparent_charges(memcg);
4885
4886 return 0;
cc847582
KH
4887}
4888
6bbda35c 4889static int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
c1e862c1 4890{
c26251f9
MH
4891 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
4892 int ret;
4893
d8423011
MH
4894 if (mem_cgroup_is_root(memcg))
4895 return -EINVAL;
c26251f9
MH
4896 css_get(&memcg->css);
4897 ret = mem_cgroup_force_empty(memcg);
4898 css_put(&memcg->css);
4899
4900 return ret;
c1e862c1
KH
4901}
4902
4903
18f59ea7
BS
4904static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
4905{
4906 return mem_cgroup_from_cont(cont)->use_hierarchy;
4907}
4908
4909static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
4910 u64 val)
4911{
4912 int retval = 0;
c0ff4b85 4913 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
18f59ea7 4914 struct cgroup *parent = cont->parent;
c0ff4b85 4915 struct mem_cgroup *parent_memcg = NULL;
18f59ea7
BS
4916
4917 if (parent)
c0ff4b85 4918 parent_memcg = mem_cgroup_from_cont(parent);
18f59ea7 4919
0999821b 4920 mutex_lock(&memcg_create_mutex);
567fb435
GC
4921
4922 if (memcg->use_hierarchy == val)
4923 goto out;
4924
18f59ea7 4925 /*
af901ca1 4926 * If parent's use_hierarchy is set, we can't make any modifications
18f59ea7
BS
4927 * in the child subtrees. If it is unset, then the change can
4928 * occur, provided the current cgroup has no children.
4929 *
4930 * For the root cgroup, parent_mem is NULL, we allow value to be
4931 * set if there are no children.
4932 */
c0ff4b85 4933 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
18f59ea7 4934 (val == 1 || val == 0)) {
b5f99b53 4935 if (!__memcg_has_children(memcg))
c0ff4b85 4936 memcg->use_hierarchy = val;
18f59ea7
BS
4937 else
4938 retval = -EBUSY;
4939 } else
4940 retval = -EINVAL;
567fb435
GC
4941
4942out:
0999821b 4943 mutex_unlock(&memcg_create_mutex);
18f59ea7
BS
4944
4945 return retval;
4946}
4947
0c3e73e8 4948
c0ff4b85 4949static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
7a159cc9 4950 enum mem_cgroup_stat_index idx)
0c3e73e8 4951{
7d74b06f 4952 struct mem_cgroup *iter;
7a159cc9 4953 long val = 0;
0c3e73e8 4954
7a159cc9 4955 /* Per-cpu values can be negative, use a signed accumulator */
c0ff4b85 4956 for_each_mem_cgroup_tree(iter, memcg)
7d74b06f
KH
4957 val += mem_cgroup_read_stat(iter, idx);
4958
4959 if (val < 0) /* race ? */
4960 val = 0;
4961 return val;
0c3e73e8
BS
4962}
4963
c0ff4b85 4964static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
104f3928 4965{
7d74b06f 4966 u64 val;
104f3928 4967
c0ff4b85 4968 if (!mem_cgroup_is_root(memcg)) {
104f3928 4969 if (!swap)
65c64ce8 4970 return res_counter_read_u64(&memcg->res, RES_USAGE);
104f3928 4971 else
65c64ce8 4972 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
104f3928
KS
4973 }
4974
c0ff4b85
R
4975 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4976 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
104f3928 4977
7d74b06f 4978 if (swap)
bff6bb83 4979 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
104f3928
KS
4980
4981 return val << PAGE_SHIFT;
4982}
4983
af36f906
TH
4984static ssize_t mem_cgroup_read(struct cgroup *cont, struct cftype *cft,
4985 struct file *file, char __user *buf,
4986 size_t nbytes, loff_t *ppos)
8cdea7c0 4987{
c0ff4b85 4988 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
af36f906 4989 char str[64];
104f3928 4990 u64 val;
86ae53e1
GC
4991 int name, len;
4992 enum res_type type;
8c7c6e34
KH
4993
4994 type = MEMFILE_TYPE(cft->private);
4995 name = MEMFILE_ATTR(cft->private);
af36f906
TH
4996
4997 if (!do_swap_account && type == _MEMSWAP)
4998 return -EOPNOTSUPP;
4999
8c7c6e34
KH
5000 switch (type) {
5001 case _MEM:
104f3928 5002 if (name == RES_USAGE)
c0ff4b85 5003 val = mem_cgroup_usage(memcg, false);
104f3928 5004 else
c0ff4b85 5005 val = res_counter_read_u64(&memcg->res, name);
8c7c6e34
KH
5006 break;
5007 case _MEMSWAP:
104f3928 5008 if (name == RES_USAGE)
c0ff4b85 5009 val = mem_cgroup_usage(memcg, true);
104f3928 5010 else
c0ff4b85 5011 val = res_counter_read_u64(&memcg->memsw, name);
8c7c6e34 5012 break;
510fc4e1
GC
5013 case _KMEM:
5014 val = res_counter_read_u64(&memcg->kmem, name);
5015 break;
8c7c6e34
KH
5016 default:
5017 BUG();
8c7c6e34 5018 }
af36f906
TH
5019
5020 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
5021 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
8cdea7c0 5022}
510fc4e1
GC
5023
5024static int memcg_update_kmem_limit(struct cgroup *cont, u64 val)
5025{
5026 int ret = -EINVAL;
5027#ifdef CONFIG_MEMCG_KMEM
5028 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
5029 /*
5030 * For simplicity, we won't allow this to be disabled. It also can't
5031 * be changed if the cgroup has children already, or if tasks had
5032 * already joined.
5033 *
5034 * If tasks join before we set the limit, a person looking at
5035 * kmem.usage_in_bytes will have no way to determine when it took
5036 * place, which makes the value quite meaningless.
5037 *
5038 * After it first became limited, changes in the value of the limit are
5039 * of course permitted.
510fc4e1 5040 */
0999821b 5041 mutex_lock(&memcg_create_mutex);
510fc4e1
GC
5042 mutex_lock(&set_limit_mutex);
5043 if (!memcg->kmem_account_flags && val != RESOURCE_MAX) {
b5f99b53 5044 if (cgroup_task_count(cont) || memcg_has_children(memcg)) {
510fc4e1
GC
5045 ret = -EBUSY;
5046 goto out;
5047 }
5048 ret = res_counter_set_limit(&memcg->kmem, val);
5049 VM_BUG_ON(ret);
5050
55007d84
GC
5051 ret = memcg_update_cache_sizes(memcg);
5052 if (ret) {
5053 res_counter_set_limit(&memcg->kmem, RESOURCE_MAX);
5054 goto out;
5055 }
692e89ab
GC
5056 static_key_slow_inc(&memcg_kmem_enabled_key);
5057 /*
5058 * setting the active bit after the inc will guarantee no one
5059 * starts accounting before all call sites are patched
5060 */
5061 memcg_kmem_set_active(memcg);
5062
7de37682
GC
5063 /*
5064 * kmem charges can outlive the cgroup. In the case of slab
5065 * pages, for instance, a page contain objects from various
5066 * processes, so it is unfeasible to migrate them away. We
5067 * need to reference count the memcg because of that.
5068 */
5069 mem_cgroup_get(memcg);
510fc4e1
GC
5070 } else
5071 ret = res_counter_set_limit(&memcg->kmem, val);
5072out:
5073 mutex_unlock(&set_limit_mutex);
0999821b 5074 mutex_unlock(&memcg_create_mutex);
510fc4e1
GC
5075#endif
5076 return ret;
5077}
5078
6d043990 5079#ifdef CONFIG_MEMCG_KMEM
55007d84 5080static int memcg_propagate_kmem(struct mem_cgroup *memcg)
510fc4e1 5081{
55007d84 5082 int ret = 0;
510fc4e1
GC
5083 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
5084 if (!parent)
55007d84
GC
5085 goto out;
5086
510fc4e1 5087 memcg->kmem_account_flags = parent->kmem_account_flags;
a8964b9b
GC
5088 /*
5089 * When that happen, we need to disable the static branch only on those
5090 * memcgs that enabled it. To achieve this, we would be forced to
5091 * complicate the code by keeping track of which memcgs were the ones
5092 * that actually enabled limits, and which ones got it from its
5093 * parents.
5094 *
5095 * It is a lot simpler just to do static_key_slow_inc() on every child
5096 * that is accounted.
5097 */
55007d84
GC
5098 if (!memcg_kmem_is_active(memcg))
5099 goto out;
5100
5101 /*
5102 * destroy(), called if we fail, will issue static_key_slow_inc() and
5103 * mem_cgroup_put() if kmem is enabled. We have to either call them
5104 * unconditionally, or clear the KMEM_ACTIVE flag. I personally find
5105 * this more consistent, since it always leads to the same destroy path
5106 */
5107 mem_cgroup_get(memcg);
5108 static_key_slow_inc(&memcg_kmem_enabled_key);
5109
5110 mutex_lock(&set_limit_mutex);
5111 ret = memcg_update_cache_sizes(memcg);
5112 mutex_unlock(&set_limit_mutex);
55007d84
GC
5113out:
5114 return ret;
510fc4e1 5115}
6d043990 5116#endif /* CONFIG_MEMCG_KMEM */
510fc4e1 5117
628f4235
KH
5118/*
5119 * The user of this function is...
5120 * RES_LIMIT.
5121 */
856c13aa
PM
5122static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
5123 const char *buffer)
8cdea7c0 5124{
628f4235 5125 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
86ae53e1
GC
5126 enum res_type type;
5127 int name;
628f4235
KH
5128 unsigned long long val;
5129 int ret;
5130
8c7c6e34
KH
5131 type = MEMFILE_TYPE(cft->private);
5132 name = MEMFILE_ATTR(cft->private);
af36f906
TH
5133
5134 if (!do_swap_account && type == _MEMSWAP)
5135 return -EOPNOTSUPP;
5136
8c7c6e34 5137 switch (name) {
628f4235 5138 case RES_LIMIT:
4b3bde4c
BS
5139 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
5140 ret = -EINVAL;
5141 break;
5142 }
628f4235
KH
5143 /* This function does all necessary parse...reuse it */
5144 ret = res_counter_memparse_write_strategy(buffer, &val);
8c7c6e34
KH
5145 if (ret)
5146 break;
5147 if (type == _MEM)
628f4235 5148 ret = mem_cgroup_resize_limit(memcg, val);
510fc4e1 5149 else if (type == _MEMSWAP)
8c7c6e34 5150 ret = mem_cgroup_resize_memsw_limit(memcg, val);
510fc4e1
GC
5151 else if (type == _KMEM)
5152 ret = memcg_update_kmem_limit(cont, val);
5153 else
5154 return -EINVAL;
628f4235 5155 break;
296c81d8
BS
5156 case RES_SOFT_LIMIT:
5157 ret = res_counter_memparse_write_strategy(buffer, &val);
5158 if (ret)
5159 break;
5160 /*
5161 * For memsw, soft limits are hard to implement in terms
5162 * of semantics, for now, we support soft limits for
5163 * control without swap
5164 */
5165 if (type == _MEM)
5166 ret = res_counter_set_soft_limit(&memcg->res, val);
5167 else
5168 ret = -EINVAL;
5169 break;
628f4235
KH
5170 default:
5171 ret = -EINVAL; /* should be BUG() ? */
5172 break;
5173 }
5174 return ret;
8cdea7c0
BS
5175}
5176
fee7b548
KH
5177static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5178 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5179{
5180 struct cgroup *cgroup;
5181 unsigned long long min_limit, min_memsw_limit, tmp;
5182
5183 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5184 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5185 cgroup = memcg->css.cgroup;
5186 if (!memcg->use_hierarchy)
5187 goto out;
5188
5189 while (cgroup->parent) {
5190 cgroup = cgroup->parent;
5191 memcg = mem_cgroup_from_cont(cgroup);
5192 if (!memcg->use_hierarchy)
5193 break;
5194 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5195 min_limit = min(min_limit, tmp);
5196 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5197 min_memsw_limit = min(min_memsw_limit, tmp);
5198 }
5199out:
5200 *mem_limit = min_limit;
5201 *memsw_limit = min_memsw_limit;
fee7b548
KH
5202}
5203
29f2a4da 5204static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
c84872e1 5205{
af36f906 5206 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
86ae53e1
GC
5207 int name;
5208 enum res_type type;
c84872e1 5209
8c7c6e34
KH
5210 type = MEMFILE_TYPE(event);
5211 name = MEMFILE_ATTR(event);
af36f906
TH
5212
5213 if (!do_swap_account && type == _MEMSWAP)
5214 return -EOPNOTSUPP;
5215
8c7c6e34 5216 switch (name) {
29f2a4da 5217 case RES_MAX_USAGE:
8c7c6e34 5218 if (type == _MEM)
c0ff4b85 5219 res_counter_reset_max(&memcg->res);
510fc4e1 5220 else if (type == _MEMSWAP)
c0ff4b85 5221 res_counter_reset_max(&memcg->memsw);
510fc4e1
GC
5222 else if (type == _KMEM)
5223 res_counter_reset_max(&memcg->kmem);
5224 else
5225 return -EINVAL;
29f2a4da
PE
5226 break;
5227 case RES_FAILCNT:
8c7c6e34 5228 if (type == _MEM)
c0ff4b85 5229 res_counter_reset_failcnt(&memcg->res);
510fc4e1 5230 else if (type == _MEMSWAP)
c0ff4b85 5231 res_counter_reset_failcnt(&memcg->memsw);
510fc4e1
GC
5232 else if (type == _KMEM)
5233 res_counter_reset_failcnt(&memcg->kmem);
5234 else
5235 return -EINVAL;
29f2a4da
PE
5236 break;
5237 }
f64c3f54 5238
85cc59db 5239 return 0;
c84872e1
PE
5240}
5241
7dc74be0
DN
5242static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
5243 struct cftype *cft)
5244{
5245 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
5246}
5247
02491447 5248#ifdef CONFIG_MMU
7dc74be0
DN
5249static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
5250 struct cftype *cft, u64 val)
5251{
c0ff4b85 5252 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
7dc74be0
DN
5253
5254 if (val >= (1 << NR_MOVE_TYPE))
5255 return -EINVAL;
ee5e8472 5256
7dc74be0 5257 /*
ee5e8472
GC
5258 * No kind of locking is needed in here, because ->can_attach() will
5259 * check this value once in the beginning of the process, and then carry
5260 * on with stale data. This means that changes to this value will only
5261 * affect task migrations starting after the change.
7dc74be0 5262 */
c0ff4b85 5263 memcg->move_charge_at_immigrate = val;
7dc74be0
DN
5264 return 0;
5265}
02491447
DN
5266#else
5267static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
5268 struct cftype *cft, u64 val)
5269{
5270 return -ENOSYS;
5271}
5272#endif
7dc74be0 5273
406eb0c9 5274#ifdef CONFIG_NUMA
ab215884 5275static int memcg_numa_stat_show(struct cgroup *cont, struct cftype *cft,
fada52ca 5276 struct seq_file *m)
406eb0c9
YH
5277{
5278 int nid;
5279 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5280 unsigned long node_nr;
d79154bb 5281 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
406eb0c9 5282
d79154bb 5283 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
406eb0c9 5284 seq_printf(m, "total=%lu", total_nr);
31aaea4a 5285 for_each_node_state(nid, N_MEMORY) {
d79154bb 5286 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
406eb0c9
YH
5287 seq_printf(m, " N%d=%lu", nid, node_nr);
5288 }
5289 seq_putc(m, '\n');
5290
d79154bb 5291 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
406eb0c9 5292 seq_printf(m, "file=%lu", file_nr);
31aaea4a 5293 for_each_node_state(nid, N_MEMORY) {
d79154bb 5294 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
bb2a0de9 5295 LRU_ALL_FILE);
406eb0c9
YH
5296 seq_printf(m, " N%d=%lu", nid, node_nr);
5297 }
5298 seq_putc(m, '\n');
5299
d79154bb 5300 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
406eb0c9 5301 seq_printf(m, "anon=%lu", anon_nr);
31aaea4a 5302 for_each_node_state(nid, N_MEMORY) {
d79154bb 5303 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
bb2a0de9 5304 LRU_ALL_ANON);
406eb0c9
YH
5305 seq_printf(m, " N%d=%lu", nid, node_nr);
5306 }
5307 seq_putc(m, '\n');
5308
d79154bb 5309 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
406eb0c9 5310 seq_printf(m, "unevictable=%lu", unevictable_nr);
31aaea4a 5311 for_each_node_state(nid, N_MEMORY) {
d79154bb 5312 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
bb2a0de9 5313 BIT(LRU_UNEVICTABLE));
406eb0c9
YH
5314 seq_printf(m, " N%d=%lu", nid, node_nr);
5315 }
5316 seq_putc(m, '\n');
5317 return 0;
5318}
5319#endif /* CONFIG_NUMA */
5320
af7c4b0e
JW
5321static inline void mem_cgroup_lru_names_not_uptodate(void)
5322{
5323 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5324}
5325
ab215884 5326static int memcg_stat_show(struct cgroup *cont, struct cftype *cft,
78ccf5b5 5327 struct seq_file *m)
d2ceb9b7 5328{
d79154bb 5329 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
af7c4b0e
JW
5330 struct mem_cgroup *mi;
5331 unsigned int i;
406eb0c9 5332
af7c4b0e 5333 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
bff6bb83 5334 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1dd3a273 5335 continue;
af7c4b0e
JW
5336 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5337 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
1dd3a273 5338 }
7b854121 5339
af7c4b0e
JW
5340 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5341 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5342 mem_cgroup_read_events(memcg, i));
5343
5344 for (i = 0; i < NR_LRU_LISTS; i++)
5345 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5346 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5347
14067bb3 5348 /* Hierarchical information */
fee7b548
KH
5349 {
5350 unsigned long long limit, memsw_limit;
d79154bb 5351 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
78ccf5b5 5352 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
fee7b548 5353 if (do_swap_account)
78ccf5b5
JW
5354 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5355 memsw_limit);
fee7b548 5356 }
7f016ee8 5357
af7c4b0e
JW
5358 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5359 long long val = 0;
5360
bff6bb83 5361 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1dd3a273 5362 continue;
af7c4b0e
JW
5363 for_each_mem_cgroup_tree(mi, memcg)
5364 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5365 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5366 }
5367
5368 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5369 unsigned long long val = 0;
5370
5371 for_each_mem_cgroup_tree(mi, memcg)
5372 val += mem_cgroup_read_events(mi, i);
5373 seq_printf(m, "total_%s %llu\n",
5374 mem_cgroup_events_names[i], val);
5375 }
5376
5377 for (i = 0; i < NR_LRU_LISTS; i++) {
5378 unsigned long long val = 0;
5379
5380 for_each_mem_cgroup_tree(mi, memcg)
5381 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5382 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
1dd3a273 5383 }
14067bb3 5384
7f016ee8 5385#ifdef CONFIG_DEBUG_VM
7f016ee8
KM
5386 {
5387 int nid, zid;
5388 struct mem_cgroup_per_zone *mz;
89abfab1 5389 struct zone_reclaim_stat *rstat;
7f016ee8
KM
5390 unsigned long recent_rotated[2] = {0, 0};
5391 unsigned long recent_scanned[2] = {0, 0};
5392
5393 for_each_online_node(nid)
5394 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
d79154bb 5395 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
89abfab1 5396 rstat = &mz->lruvec.reclaim_stat;
7f016ee8 5397
89abfab1
HD
5398 recent_rotated[0] += rstat->recent_rotated[0];
5399 recent_rotated[1] += rstat->recent_rotated[1];
5400 recent_scanned[0] += rstat->recent_scanned[0];
5401 recent_scanned[1] += rstat->recent_scanned[1];
7f016ee8 5402 }
78ccf5b5
JW
5403 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5404 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5405 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5406 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
7f016ee8
KM
5407 }
5408#endif
5409
d2ceb9b7
KH
5410 return 0;
5411}
5412
a7885eb8
KM
5413static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
5414{
5415 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
5416
1f4c025b 5417 return mem_cgroup_swappiness(memcg);
a7885eb8
KM
5418}
5419
5420static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
5421 u64 val)
5422{
5423 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
5424 struct mem_cgroup *parent;
068b38c1 5425
a7885eb8
KM
5426 if (val > 100)
5427 return -EINVAL;
5428
5429 if (cgrp->parent == NULL)
5430 return -EINVAL;
5431
5432 parent = mem_cgroup_from_cont(cgrp->parent);
068b38c1 5433
0999821b 5434 mutex_lock(&memcg_create_mutex);
068b38c1 5435
a7885eb8 5436 /* If under hierarchy, only empty-root can set this value */
b5f99b53 5437 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
0999821b 5438 mutex_unlock(&memcg_create_mutex);
a7885eb8 5439 return -EINVAL;
068b38c1 5440 }
a7885eb8 5441
a7885eb8 5442 memcg->swappiness = val;
a7885eb8 5443
0999821b 5444 mutex_unlock(&memcg_create_mutex);
068b38c1 5445
a7885eb8
KM
5446 return 0;
5447}
5448
2e72b634
KS
5449static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5450{
5451 struct mem_cgroup_threshold_ary *t;
5452 u64 usage;
5453 int i;
5454
5455 rcu_read_lock();
5456 if (!swap)
2c488db2 5457 t = rcu_dereference(memcg->thresholds.primary);
2e72b634 5458 else
2c488db2 5459 t = rcu_dereference(memcg->memsw_thresholds.primary);
2e72b634
KS
5460
5461 if (!t)
5462 goto unlock;
5463
5464 usage = mem_cgroup_usage(memcg, swap);
5465
5466 /*
748dad36 5467 * current_threshold points to threshold just below or equal to usage.
2e72b634
KS
5468 * If it's not true, a threshold was crossed after last
5469 * call of __mem_cgroup_threshold().
5470 */
5407a562 5471 i = t->current_threshold;
2e72b634
KS
5472
5473 /*
5474 * Iterate backward over array of thresholds starting from
5475 * current_threshold and check if a threshold is crossed.
5476 * If none of thresholds below usage is crossed, we read
5477 * only one element of the array here.
5478 */
5479 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5480 eventfd_signal(t->entries[i].eventfd, 1);
5481
5482 /* i = current_threshold + 1 */
5483 i++;
5484
5485 /*
5486 * Iterate forward over array of thresholds starting from
5487 * current_threshold+1 and check if a threshold is crossed.
5488 * If none of thresholds above usage is crossed, we read
5489 * only one element of the array here.
5490 */
5491 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5492 eventfd_signal(t->entries[i].eventfd, 1);
5493
5494 /* Update current_threshold */
5407a562 5495 t->current_threshold = i - 1;
2e72b634
KS
5496unlock:
5497 rcu_read_unlock();
5498}
5499
5500static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5501{
ad4ca5f4
KS
5502 while (memcg) {
5503 __mem_cgroup_threshold(memcg, false);
5504 if (do_swap_account)
5505 __mem_cgroup_threshold(memcg, true);
5506
5507 memcg = parent_mem_cgroup(memcg);
5508 }
2e72b634
KS
5509}
5510
5511static int compare_thresholds(const void *a, const void *b)
5512{
5513 const struct mem_cgroup_threshold *_a = a;
5514 const struct mem_cgroup_threshold *_b = b;
5515
5516 return _a->threshold - _b->threshold;
5517}
5518
c0ff4b85 5519static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
9490ff27
KH
5520{
5521 struct mem_cgroup_eventfd_list *ev;
5522
c0ff4b85 5523 list_for_each_entry(ev, &memcg->oom_notify, list)
9490ff27
KH
5524 eventfd_signal(ev->eventfd, 1);
5525 return 0;
5526}
5527
c0ff4b85 5528static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
9490ff27 5529{
7d74b06f
KH
5530 struct mem_cgroup *iter;
5531
c0ff4b85 5532 for_each_mem_cgroup_tree(iter, memcg)
7d74b06f 5533 mem_cgroup_oom_notify_cb(iter);
9490ff27
KH
5534}
5535
5536static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
5537 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
2e72b634
KS
5538{
5539 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2c488db2
KS
5540 struct mem_cgroup_thresholds *thresholds;
5541 struct mem_cgroup_threshold_ary *new;
86ae53e1 5542 enum res_type type = MEMFILE_TYPE(cft->private);
2e72b634 5543 u64 threshold, usage;
2c488db2 5544 int i, size, ret;
2e72b634
KS
5545
5546 ret = res_counter_memparse_write_strategy(args, &threshold);
5547 if (ret)
5548 return ret;
5549
5550 mutex_lock(&memcg->thresholds_lock);
2c488db2 5551
2e72b634 5552 if (type == _MEM)
2c488db2 5553 thresholds = &memcg->thresholds;
2e72b634 5554 else if (type == _MEMSWAP)
2c488db2 5555 thresholds = &memcg->memsw_thresholds;
2e72b634
KS
5556 else
5557 BUG();
5558
5559 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5560
5561 /* Check if a threshold crossed before adding a new one */
2c488db2 5562 if (thresholds->primary)
2e72b634
KS
5563 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5564
2c488db2 5565 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
2e72b634
KS
5566
5567 /* Allocate memory for new array of thresholds */
2c488db2 5568 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
2e72b634 5569 GFP_KERNEL);
2c488db2 5570 if (!new) {
2e72b634
KS
5571 ret = -ENOMEM;
5572 goto unlock;
5573 }
2c488db2 5574 new->size = size;
2e72b634
KS
5575
5576 /* Copy thresholds (if any) to new array */
2c488db2
KS
5577 if (thresholds->primary) {
5578 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
2e72b634 5579 sizeof(struct mem_cgroup_threshold));
2c488db2
KS
5580 }
5581
2e72b634 5582 /* Add new threshold */
2c488db2
KS
5583 new->entries[size - 1].eventfd = eventfd;
5584 new->entries[size - 1].threshold = threshold;
2e72b634
KS
5585
5586 /* Sort thresholds. Registering of new threshold isn't time-critical */
2c488db2 5587 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
2e72b634
KS
5588 compare_thresholds, NULL);
5589
5590 /* Find current threshold */
2c488db2 5591 new->current_threshold = -1;
2e72b634 5592 for (i = 0; i < size; i++) {
748dad36 5593 if (new->entries[i].threshold <= usage) {
2e72b634 5594 /*
2c488db2
KS
5595 * new->current_threshold will not be used until
5596 * rcu_assign_pointer(), so it's safe to increment
2e72b634
KS
5597 * it here.
5598 */
2c488db2 5599 ++new->current_threshold;
748dad36
SZ
5600 } else
5601 break;
2e72b634
KS
5602 }
5603
2c488db2
KS
5604 /* Free old spare buffer and save old primary buffer as spare */
5605 kfree(thresholds->spare);
5606 thresholds->spare = thresholds->primary;
5607
5608 rcu_assign_pointer(thresholds->primary, new);
2e72b634 5609
907860ed 5610 /* To be sure that nobody uses thresholds */
2e72b634
KS
5611 synchronize_rcu();
5612
2e72b634
KS
5613unlock:
5614 mutex_unlock(&memcg->thresholds_lock);
5615
5616 return ret;
5617}
5618
907860ed 5619static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
9490ff27 5620 struct cftype *cft, struct eventfd_ctx *eventfd)
2e72b634
KS
5621{
5622 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
2c488db2
KS
5623 struct mem_cgroup_thresholds *thresholds;
5624 struct mem_cgroup_threshold_ary *new;
86ae53e1 5625 enum res_type type = MEMFILE_TYPE(cft->private);
2e72b634 5626 u64 usage;
2c488db2 5627 int i, j, size;
2e72b634
KS
5628
5629 mutex_lock(&memcg->thresholds_lock);
5630 if (type == _MEM)
2c488db2 5631 thresholds = &memcg->thresholds;
2e72b634 5632 else if (type == _MEMSWAP)
2c488db2 5633 thresholds = &memcg->memsw_thresholds;
2e72b634
KS
5634 else
5635 BUG();
5636
371528ca
AV
5637 if (!thresholds->primary)
5638 goto unlock;
5639
2e72b634
KS
5640 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5641
5642 /* Check if a threshold crossed before removing */
5643 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5644
5645 /* Calculate new number of threshold */
2c488db2
KS
5646 size = 0;
5647 for (i = 0; i < thresholds->primary->size; i++) {
5648 if (thresholds->primary->entries[i].eventfd != eventfd)
2e72b634
KS
5649 size++;
5650 }
5651
2c488db2 5652 new = thresholds->spare;
907860ed 5653
2e72b634
KS
5654 /* Set thresholds array to NULL if we don't have thresholds */
5655 if (!size) {
2c488db2
KS
5656 kfree(new);
5657 new = NULL;
907860ed 5658 goto swap_buffers;
2e72b634
KS
5659 }
5660
2c488db2 5661 new->size = size;
2e72b634
KS
5662
5663 /* Copy thresholds and find current threshold */
2c488db2
KS
5664 new->current_threshold = -1;
5665 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5666 if (thresholds->primary->entries[i].eventfd == eventfd)
2e72b634
KS
5667 continue;
5668
2c488db2 5669 new->entries[j] = thresholds->primary->entries[i];
748dad36 5670 if (new->entries[j].threshold <= usage) {
2e72b634 5671 /*
2c488db2 5672 * new->current_threshold will not be used
2e72b634
KS
5673 * until rcu_assign_pointer(), so it's safe to increment
5674 * it here.
5675 */
2c488db2 5676 ++new->current_threshold;
2e72b634
KS
5677 }
5678 j++;
5679 }
5680
907860ed 5681swap_buffers:
2c488db2
KS
5682 /* Swap primary and spare array */
5683 thresholds->spare = thresholds->primary;
8c757763
SZ
5684 /* If all events are unregistered, free the spare array */
5685 if (!new) {
5686 kfree(thresholds->spare);
5687 thresholds->spare = NULL;
5688 }
5689
2c488db2 5690 rcu_assign_pointer(thresholds->primary, new);
2e72b634 5691
907860ed 5692 /* To be sure that nobody uses thresholds */
2e72b634 5693 synchronize_rcu();
371528ca 5694unlock:
2e72b634 5695 mutex_unlock(&memcg->thresholds_lock);
2e72b634 5696}
c1e862c1 5697
9490ff27
KH
5698static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
5699 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5700{
5701 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
5702 struct mem_cgroup_eventfd_list *event;
86ae53e1 5703 enum res_type type = MEMFILE_TYPE(cft->private);
9490ff27
KH
5704
5705 BUG_ON(type != _OOM_TYPE);
5706 event = kmalloc(sizeof(*event), GFP_KERNEL);
5707 if (!event)
5708 return -ENOMEM;
5709
1af8efe9 5710 spin_lock(&memcg_oom_lock);
9490ff27
KH
5711
5712 event->eventfd = eventfd;
5713 list_add(&event->list, &memcg->oom_notify);
5714
5715 /* already in OOM ? */
79dfdacc 5716 if (atomic_read(&memcg->under_oom))
9490ff27 5717 eventfd_signal(eventfd, 1);
1af8efe9 5718 spin_unlock(&memcg_oom_lock);
9490ff27
KH
5719
5720 return 0;
5721}
5722
907860ed 5723static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
9490ff27
KH
5724 struct cftype *cft, struct eventfd_ctx *eventfd)
5725{
c0ff4b85 5726 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
9490ff27 5727 struct mem_cgroup_eventfd_list *ev, *tmp;
86ae53e1 5728 enum res_type type = MEMFILE_TYPE(cft->private);
9490ff27
KH
5729
5730 BUG_ON(type != _OOM_TYPE);
5731
1af8efe9 5732 spin_lock(&memcg_oom_lock);
9490ff27 5733
c0ff4b85 5734 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
9490ff27
KH
5735 if (ev->eventfd == eventfd) {
5736 list_del(&ev->list);
5737 kfree(ev);
5738 }
5739 }
5740
1af8efe9 5741 spin_unlock(&memcg_oom_lock);
9490ff27
KH
5742}
5743
3c11ecf4
KH
5744static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
5745 struct cftype *cft, struct cgroup_map_cb *cb)
5746{
c0ff4b85 5747 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
3c11ecf4 5748
c0ff4b85 5749 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
3c11ecf4 5750
c0ff4b85 5751 if (atomic_read(&memcg->under_oom))
3c11ecf4
KH
5752 cb->fill(cb, "under_oom", 1);
5753 else
5754 cb->fill(cb, "under_oom", 0);
5755 return 0;
5756}
5757
3c11ecf4
KH
5758static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
5759 struct cftype *cft, u64 val)
5760{
c0ff4b85 5761 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
3c11ecf4
KH
5762 struct mem_cgroup *parent;
5763
5764 /* cannot set to root cgroup and only 0 and 1 are allowed */
5765 if (!cgrp->parent || !((val == 0) || (val == 1)))
5766 return -EINVAL;
5767
5768 parent = mem_cgroup_from_cont(cgrp->parent);
5769
0999821b 5770 mutex_lock(&memcg_create_mutex);
3c11ecf4 5771 /* oom-kill-disable is a flag for subhierarchy. */
b5f99b53 5772 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
0999821b 5773 mutex_unlock(&memcg_create_mutex);
3c11ecf4
KH
5774 return -EINVAL;
5775 }
c0ff4b85 5776 memcg->oom_kill_disable = val;
4d845ebf 5777 if (!val)
c0ff4b85 5778 memcg_oom_recover(memcg);
0999821b 5779 mutex_unlock(&memcg_create_mutex);
3c11ecf4
KH
5780 return 0;
5781}
5782
c255a458 5783#ifdef CONFIG_MEMCG_KMEM
cbe128e3 5784static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
e5671dfa 5785{
55007d84
GC
5786 int ret;
5787
2633d7a0 5788 memcg->kmemcg_id = -1;
55007d84
GC
5789 ret = memcg_propagate_kmem(memcg);
5790 if (ret)
5791 return ret;
2633d7a0 5792
1d62e436 5793 return mem_cgroup_sockets_init(memcg, ss);
e5671dfa
GC
5794};
5795
1d62e436 5796static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
d1a4c0b3 5797{
1d62e436 5798 mem_cgroup_sockets_destroy(memcg);
7de37682
GC
5799
5800 memcg_kmem_mark_dead(memcg);
5801
5802 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5803 return;
5804
5805 /*
5806 * Charges already down to 0, undo mem_cgroup_get() done in the charge
5807 * path here, being careful not to race with memcg_uncharge_kmem: it is
5808 * possible that the charges went down to 0 between mark_dead and the
5809 * res_counter read, so in that case, we don't need the put
5810 */
5811 if (memcg_kmem_test_and_clear_dead(memcg))
5812 mem_cgroup_put(memcg);
d1a4c0b3 5813}
e5671dfa 5814#else
cbe128e3 5815static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
e5671dfa
GC
5816{
5817 return 0;
5818}
d1a4c0b3 5819
1d62e436 5820static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
d1a4c0b3
GC
5821{
5822}
e5671dfa
GC
5823#endif
5824
8cdea7c0
BS
5825static struct cftype mem_cgroup_files[] = {
5826 {
0eea1030 5827 .name = "usage_in_bytes",
8c7c6e34 5828 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
af36f906 5829 .read = mem_cgroup_read,
9490ff27
KH
5830 .register_event = mem_cgroup_usage_register_event,
5831 .unregister_event = mem_cgroup_usage_unregister_event,
8cdea7c0 5832 },
c84872e1
PE
5833 {
5834 .name = "max_usage_in_bytes",
8c7c6e34 5835 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
29f2a4da 5836 .trigger = mem_cgroup_reset,
af36f906 5837 .read = mem_cgroup_read,
c84872e1 5838 },
8cdea7c0 5839 {
0eea1030 5840 .name = "limit_in_bytes",
8c7c6e34 5841 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
856c13aa 5842 .write_string = mem_cgroup_write,
af36f906 5843 .read = mem_cgroup_read,
8cdea7c0 5844 },
296c81d8
BS
5845 {
5846 .name = "soft_limit_in_bytes",
5847 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5848 .write_string = mem_cgroup_write,
af36f906 5849 .read = mem_cgroup_read,
296c81d8 5850 },
8cdea7c0
BS
5851 {
5852 .name = "failcnt",
8c7c6e34 5853 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
29f2a4da 5854 .trigger = mem_cgroup_reset,
af36f906 5855 .read = mem_cgroup_read,
8cdea7c0 5856 },
d2ceb9b7
KH
5857 {
5858 .name = "stat",
ab215884 5859 .read_seq_string = memcg_stat_show,
d2ceb9b7 5860 },
c1e862c1
KH
5861 {
5862 .name = "force_empty",
5863 .trigger = mem_cgroup_force_empty_write,
5864 },
18f59ea7
BS
5865 {
5866 .name = "use_hierarchy",
5867 .write_u64 = mem_cgroup_hierarchy_write,
5868 .read_u64 = mem_cgroup_hierarchy_read,
5869 },
a7885eb8
KM
5870 {
5871 .name = "swappiness",
5872 .read_u64 = mem_cgroup_swappiness_read,
5873 .write_u64 = mem_cgroup_swappiness_write,
5874 },
7dc74be0
DN
5875 {
5876 .name = "move_charge_at_immigrate",
5877 .read_u64 = mem_cgroup_move_charge_read,
5878 .write_u64 = mem_cgroup_move_charge_write,
5879 },
9490ff27
KH
5880 {
5881 .name = "oom_control",
3c11ecf4
KH
5882 .read_map = mem_cgroup_oom_control_read,
5883 .write_u64 = mem_cgroup_oom_control_write,
9490ff27
KH
5884 .register_event = mem_cgroup_oom_register_event,
5885 .unregister_event = mem_cgroup_oom_unregister_event,
5886 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5887 },
406eb0c9
YH
5888#ifdef CONFIG_NUMA
5889 {
5890 .name = "numa_stat",
ab215884 5891 .read_seq_string = memcg_numa_stat_show,
406eb0c9
YH
5892 },
5893#endif
510fc4e1
GC
5894#ifdef CONFIG_MEMCG_KMEM
5895 {
5896 .name = "kmem.limit_in_bytes",
5897 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5898 .write_string = mem_cgroup_write,
5899 .read = mem_cgroup_read,
5900 },
5901 {
5902 .name = "kmem.usage_in_bytes",
5903 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5904 .read = mem_cgroup_read,
5905 },
5906 {
5907 .name = "kmem.failcnt",
5908 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5909 .trigger = mem_cgroup_reset,
5910 .read = mem_cgroup_read,
5911 },
5912 {
5913 .name = "kmem.max_usage_in_bytes",
5914 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5915 .trigger = mem_cgroup_reset,
5916 .read = mem_cgroup_read,
5917 },
749c5415
GC
5918#ifdef CONFIG_SLABINFO
5919 {
5920 .name = "kmem.slabinfo",
5921 .read_seq_string = mem_cgroup_slabinfo_read,
5922 },
5923#endif
8c7c6e34 5924#endif
6bc10349 5925 { }, /* terminate */
af36f906 5926};
8c7c6e34 5927
2d11085e
MH
5928#ifdef CONFIG_MEMCG_SWAP
5929static struct cftype memsw_cgroup_files[] = {
5930 {
5931 .name = "memsw.usage_in_bytes",
5932 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5933 .read = mem_cgroup_read,
5934 .register_event = mem_cgroup_usage_register_event,
5935 .unregister_event = mem_cgroup_usage_unregister_event,
5936 },
5937 {
5938 .name = "memsw.max_usage_in_bytes",
5939 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5940 .trigger = mem_cgroup_reset,
5941 .read = mem_cgroup_read,
5942 },
5943 {
5944 .name = "memsw.limit_in_bytes",
5945 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5946 .write_string = mem_cgroup_write,
5947 .read = mem_cgroup_read,
5948 },
5949 {
5950 .name = "memsw.failcnt",
5951 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5952 .trigger = mem_cgroup_reset,
5953 .read = mem_cgroup_read,
5954 },
5955 { }, /* terminate */
5956};
5957#endif
c0ff4b85 5958static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
6d12e2d8
KH
5959{
5960 struct mem_cgroup_per_node *pn;
1ecaab2b 5961 struct mem_cgroup_per_zone *mz;
41e3355d 5962 int zone, tmp = node;
1ecaab2b
KH
5963 /*
5964 * This routine is called against possible nodes.
5965 * But it's BUG to call kmalloc() against offline node.
5966 *
5967 * TODO: this routine can waste much memory for nodes which will
5968 * never be onlined. It's better to use memory hotplug callback
5969 * function.
5970 */
41e3355d
KH
5971 if (!node_state(node, N_NORMAL_MEMORY))
5972 tmp = -1;
17295c88 5973 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
6d12e2d8
KH
5974 if (!pn)
5975 return 1;
1ecaab2b 5976
1ecaab2b 5977 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
542f85f9
MH
5978 int prio;
5979
1ecaab2b 5980 mz = &pn->zoneinfo[zone];
bea8c150 5981 lruvec_init(&mz->lruvec);
542f85f9
MH
5982 for (prio = 0; prio < DEF_PRIORITY + 1; prio++)
5983 spin_lock_init(&mz->reclaim_iter[prio].iter_lock);
f64c3f54 5984 mz->usage_in_excess = 0;
4e416953 5985 mz->on_tree = false;
d79154bb 5986 mz->memcg = memcg;
1ecaab2b 5987 }
0a619e58 5988 memcg->info.nodeinfo[node] = pn;
6d12e2d8
KH
5989 return 0;
5990}
5991
c0ff4b85 5992static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
1ecaab2b 5993{
c0ff4b85 5994 kfree(memcg->info.nodeinfo[node]);
1ecaab2b
KH
5995}
5996
33327948
KH
5997static struct mem_cgroup *mem_cgroup_alloc(void)
5998{
d79154bb 5999 struct mem_cgroup *memcg;
45cf7ebd 6000 size_t size = memcg_size();
33327948 6001
45cf7ebd 6002 /* Can be very big if nr_node_ids is very big */
c8dad2bb 6003 if (size < PAGE_SIZE)
d79154bb 6004 memcg = kzalloc(size, GFP_KERNEL);
33327948 6005 else
d79154bb 6006 memcg = vzalloc(size);
33327948 6007
d79154bb 6008 if (!memcg)
e7bbcdf3
DC
6009 return NULL;
6010
d79154bb
HD
6011 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
6012 if (!memcg->stat)
d2e61b8d 6013 goto out_free;
d79154bb
HD
6014 spin_lock_init(&memcg->pcp_counter_lock);
6015 return memcg;
d2e61b8d
DC
6016
6017out_free:
6018 if (size < PAGE_SIZE)
d79154bb 6019 kfree(memcg);
d2e61b8d 6020 else
d79154bb 6021 vfree(memcg);
d2e61b8d 6022 return NULL;
33327948
KH
6023}
6024
59927fb9 6025/*
c8b2a36f
GC
6026 * At destroying mem_cgroup, references from swap_cgroup can remain.
6027 * (scanning all at force_empty is too costly...)
6028 *
6029 * Instead of clearing all references at force_empty, we remember
6030 * the number of reference from swap_cgroup and free mem_cgroup when
6031 * it goes down to 0.
6032 *
6033 * Removal of cgroup itself succeeds regardless of refs from swap.
59927fb9 6034 */
c8b2a36f
GC
6035
6036static void __mem_cgroup_free(struct mem_cgroup *memcg)
59927fb9 6037{
c8b2a36f 6038 int node;
45cf7ebd 6039 size_t size = memcg_size();
59927fb9 6040
c8b2a36f
GC
6041 mem_cgroup_remove_from_trees(memcg);
6042 free_css_id(&mem_cgroup_subsys, &memcg->css);
6043
6044 for_each_node(node)
6045 free_mem_cgroup_per_zone_info(memcg, node);
6046
6047 free_percpu(memcg->stat);
6048
3f134619
GC
6049 /*
6050 * We need to make sure that (at least for now), the jump label
6051 * destruction code runs outside of the cgroup lock. This is because
6052 * get_online_cpus(), which is called from the static_branch update,
6053 * can't be called inside the cgroup_lock. cpusets are the ones
6054 * enforcing this dependency, so if they ever change, we might as well.
6055 *
6056 * schedule_work() will guarantee this happens. Be careful if you need
6057 * to move this code around, and make sure it is outside
6058 * the cgroup_lock.
6059 */
a8964b9b 6060 disarm_static_keys(memcg);
3afe36b1
GC
6061 if (size < PAGE_SIZE)
6062 kfree(memcg);
6063 else
6064 vfree(memcg);
59927fb9 6065}
3afe36b1 6066
59927fb9 6067
8c7c6e34 6068/*
c8b2a36f
GC
6069 * Helpers for freeing a kmalloc()ed/vzalloc()ed mem_cgroup by RCU,
6070 * but in process context. The work_freeing structure is overlaid
6071 * on the rcu_freeing structure, which itself is overlaid on memsw.
8c7c6e34 6072 */
c8b2a36f 6073static void free_work(struct work_struct *work)
33327948 6074{
c8b2a36f 6075 struct mem_cgroup *memcg;
08e552c6 6076
c8b2a36f
GC
6077 memcg = container_of(work, struct mem_cgroup, work_freeing);
6078 __mem_cgroup_free(memcg);
6079}
04046e1a 6080
c8b2a36f
GC
6081static void free_rcu(struct rcu_head *rcu_head)
6082{
6083 struct mem_cgroup *memcg;
08e552c6 6084
c8b2a36f
GC
6085 memcg = container_of(rcu_head, struct mem_cgroup, rcu_freeing);
6086 INIT_WORK(&memcg->work_freeing, free_work);
6087 schedule_work(&memcg->work_freeing);
33327948
KH
6088}
6089
c0ff4b85 6090static void mem_cgroup_get(struct mem_cgroup *memcg)
8c7c6e34 6091{
c0ff4b85 6092 atomic_inc(&memcg->refcnt);
8c7c6e34
KH
6093}
6094
c0ff4b85 6095static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
8c7c6e34 6096{
c0ff4b85
R
6097 if (atomic_sub_and_test(count, &memcg->refcnt)) {
6098 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
c8b2a36f 6099 call_rcu(&memcg->rcu_freeing, free_rcu);
7bcc1bb1
DN
6100 if (parent)
6101 mem_cgroup_put(parent);
6102 }
8c7c6e34
KH
6103}
6104
c0ff4b85 6105static void mem_cgroup_put(struct mem_cgroup *memcg)
483c30b5 6106{
c0ff4b85 6107 __mem_cgroup_put(memcg, 1);
483c30b5
DN
6108}
6109
7bcc1bb1
DN
6110/*
6111 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
6112 */
e1aab161 6113struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
7bcc1bb1 6114{
c0ff4b85 6115 if (!memcg->res.parent)
7bcc1bb1 6116 return NULL;
c0ff4b85 6117 return mem_cgroup_from_res_counter(memcg->res.parent, res);
7bcc1bb1 6118}
e1aab161 6119EXPORT_SYMBOL(parent_mem_cgroup);
33327948 6120
8787a1df 6121static void __init mem_cgroup_soft_limit_tree_init(void)
f64c3f54
BS
6122{
6123 struct mem_cgroup_tree_per_node *rtpn;
6124 struct mem_cgroup_tree_per_zone *rtpz;
6125 int tmp, node, zone;
6126
3ed28fa1 6127 for_each_node(node) {
f64c3f54
BS
6128 tmp = node;
6129 if (!node_state(node, N_NORMAL_MEMORY))
6130 tmp = -1;
6131 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
8787a1df 6132 BUG_ON(!rtpn);
f64c3f54
BS
6133
6134 soft_limit_tree.rb_tree_per_node[node] = rtpn;
6135
6136 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
6137 rtpz = &rtpn->rb_tree_per_zone[zone];
6138 rtpz->rb_root = RB_ROOT;
6139 spin_lock_init(&rtpz->lock);
6140 }
6141 }
f64c3f54
BS
6142}
6143
0eb253e2 6144static struct cgroup_subsys_state * __ref
92fb9748 6145mem_cgroup_css_alloc(struct cgroup *cont)
8cdea7c0 6146{
d142e3e6 6147 struct mem_cgroup *memcg;
04046e1a 6148 long error = -ENOMEM;
6d12e2d8 6149 int node;
8cdea7c0 6150
c0ff4b85
R
6151 memcg = mem_cgroup_alloc();
6152 if (!memcg)
04046e1a 6153 return ERR_PTR(error);
78fb7466 6154
3ed28fa1 6155 for_each_node(node)
c0ff4b85 6156 if (alloc_mem_cgroup_per_zone_info(memcg, node))
6d12e2d8 6157 goto free_out;
f64c3f54 6158
c077719b 6159 /* root ? */
28dbc4b6 6160 if (cont->parent == NULL) {
a41c58a6 6161 root_mem_cgroup = memcg;
d142e3e6
GC
6162 res_counter_init(&memcg->res, NULL);
6163 res_counter_init(&memcg->memsw, NULL);
6164 res_counter_init(&memcg->kmem, NULL);
18f59ea7 6165 }
28dbc4b6 6166
d142e3e6
GC
6167 memcg->last_scanned_node = MAX_NUMNODES;
6168 INIT_LIST_HEAD(&memcg->oom_notify);
6169 atomic_set(&memcg->refcnt, 1);
6170 memcg->move_charge_at_immigrate = 0;
6171 mutex_init(&memcg->thresholds_lock);
6172 spin_lock_init(&memcg->move_lock);
6173
6174 return &memcg->css;
6175
6176free_out:
6177 __mem_cgroup_free(memcg);
6178 return ERR_PTR(error);
6179}
6180
6181static int
6182mem_cgroup_css_online(struct cgroup *cont)
6183{
6184 struct mem_cgroup *memcg, *parent;
6185 int error = 0;
6186
6187 if (!cont->parent)
6188 return 0;
6189
0999821b 6190 mutex_lock(&memcg_create_mutex);
d142e3e6
GC
6191 memcg = mem_cgroup_from_cont(cont);
6192 parent = mem_cgroup_from_cont(cont->parent);
6193
6194 memcg->use_hierarchy = parent->use_hierarchy;
6195 memcg->oom_kill_disable = parent->oom_kill_disable;
6196 memcg->swappiness = mem_cgroup_swappiness(parent);
6197
6198 if (parent->use_hierarchy) {
c0ff4b85
R
6199 res_counter_init(&memcg->res, &parent->res);
6200 res_counter_init(&memcg->memsw, &parent->memsw);
510fc4e1 6201 res_counter_init(&memcg->kmem, &parent->kmem);
55007d84 6202
7bcc1bb1
DN
6203 /*
6204 * We increment refcnt of the parent to ensure that we can
6205 * safely access it on res_counter_charge/uncharge.
6206 * This refcnt will be decremented when freeing this
6207 * mem_cgroup(see mem_cgroup_put).
6208 */
6209 mem_cgroup_get(parent);
18f59ea7 6210 } else {
c0ff4b85
R
6211 res_counter_init(&memcg->res, NULL);
6212 res_counter_init(&memcg->memsw, NULL);
510fc4e1 6213 res_counter_init(&memcg->kmem, NULL);
8c7f6edb
TH
6214 /*
6215 * Deeper hierachy with use_hierarchy == false doesn't make
6216 * much sense so let cgroup subsystem know about this
6217 * unfortunate state in our controller.
6218 */
d142e3e6 6219 if (parent != root_mem_cgroup)
8c7f6edb 6220 mem_cgroup_subsys.broken_hierarchy = true;
18f59ea7 6221 }
cbe128e3
GC
6222
6223 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
0999821b 6224 mutex_unlock(&memcg_create_mutex);
cbe128e3
GC
6225 if (error) {
6226 /*
6227 * We call put now because our (and parent's) refcnts
6228 * are already in place. mem_cgroup_put() will internally
6229 * call __mem_cgroup_free, so return directly
6230 */
6231 mem_cgroup_put(memcg);
e4715f01
GC
6232 if (parent->use_hierarchy)
6233 mem_cgroup_put(parent);
cbe128e3 6234 }
d142e3e6 6235 return error;
8cdea7c0
BS
6236}
6237
92fb9748 6238static void mem_cgroup_css_offline(struct cgroup *cont)
df878fb0 6239{
c0ff4b85 6240 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
ec64f515 6241
ab5196c2 6242 mem_cgroup_reparent_charges(memcg);
1f458cbf 6243 mem_cgroup_destroy_all_caches(memcg);
df878fb0
KH
6244}
6245
92fb9748 6246static void mem_cgroup_css_free(struct cgroup *cont)
8cdea7c0 6247{
c0ff4b85 6248 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
c268e994 6249
1d62e436 6250 kmem_cgroup_destroy(memcg);
d1a4c0b3 6251
c0ff4b85 6252 mem_cgroup_put(memcg);
8cdea7c0
BS
6253}
6254
02491447 6255#ifdef CONFIG_MMU
7dc74be0 6256/* Handlers for move charge at task migration. */
854ffa8d
DN
6257#define PRECHARGE_COUNT_AT_ONCE 256
6258static int mem_cgroup_do_precharge(unsigned long count)
7dc74be0 6259{
854ffa8d
DN
6260 int ret = 0;
6261 int batch_count = PRECHARGE_COUNT_AT_ONCE;
c0ff4b85 6262 struct mem_cgroup *memcg = mc.to;
4ffef5fe 6263
c0ff4b85 6264 if (mem_cgroup_is_root(memcg)) {
854ffa8d
DN
6265 mc.precharge += count;
6266 /* we don't need css_get for root */
6267 return ret;
6268 }
6269 /* try to charge at once */
6270 if (count > 1) {
6271 struct res_counter *dummy;
6272 /*
c0ff4b85 6273 * "memcg" cannot be under rmdir() because we've already checked
854ffa8d
DN
6274 * by cgroup_lock_live_cgroup() that it is not removed and we
6275 * are still under the same cgroup_mutex. So we can postpone
6276 * css_get().
6277 */
c0ff4b85 6278 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
854ffa8d 6279 goto one_by_one;
c0ff4b85 6280 if (do_swap_account && res_counter_charge(&memcg->memsw,
854ffa8d 6281 PAGE_SIZE * count, &dummy)) {
c0ff4b85 6282 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
854ffa8d
DN
6283 goto one_by_one;
6284 }
6285 mc.precharge += count;
854ffa8d
DN
6286 return ret;
6287 }
6288one_by_one:
6289 /* fall back to one by one charge */
6290 while (count--) {
6291 if (signal_pending(current)) {
6292 ret = -EINTR;
6293 break;
6294 }
6295 if (!batch_count--) {
6296 batch_count = PRECHARGE_COUNT_AT_ONCE;
6297 cond_resched();
6298 }
c0ff4b85
R
6299 ret = __mem_cgroup_try_charge(NULL,
6300 GFP_KERNEL, 1, &memcg, false);
38c5d72f 6301 if (ret)
854ffa8d 6302 /* mem_cgroup_clear_mc() will do uncharge later */
38c5d72f 6303 return ret;
854ffa8d
DN
6304 mc.precharge++;
6305 }
4ffef5fe
DN
6306 return ret;
6307}
6308
6309/**
8d32ff84 6310 * get_mctgt_type - get target type of moving charge
4ffef5fe
DN
6311 * @vma: the vma the pte to be checked belongs
6312 * @addr: the address corresponding to the pte to be checked
6313 * @ptent: the pte to be checked
02491447 6314 * @target: the pointer the target page or swap ent will be stored(can be NULL)
4ffef5fe
DN
6315 *
6316 * Returns
6317 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6318 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6319 * move charge. if @target is not NULL, the page is stored in target->page
6320 * with extra refcnt got(Callers should handle it).
02491447
DN
6321 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6322 * target for charge migration. if @target is not NULL, the entry is stored
6323 * in target->ent.
4ffef5fe
DN
6324 *
6325 * Called with pte lock held.
6326 */
4ffef5fe
DN
6327union mc_target {
6328 struct page *page;
02491447 6329 swp_entry_t ent;
4ffef5fe
DN
6330};
6331
4ffef5fe 6332enum mc_target_type {
8d32ff84 6333 MC_TARGET_NONE = 0,
4ffef5fe 6334 MC_TARGET_PAGE,
02491447 6335 MC_TARGET_SWAP,
4ffef5fe
DN
6336};
6337
90254a65
DN
6338static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6339 unsigned long addr, pte_t ptent)
4ffef5fe 6340{
90254a65 6341 struct page *page = vm_normal_page(vma, addr, ptent);
4ffef5fe 6342
90254a65
DN
6343 if (!page || !page_mapped(page))
6344 return NULL;
6345 if (PageAnon(page)) {
6346 /* we don't move shared anon */
4b91355e 6347 if (!move_anon())
90254a65 6348 return NULL;
87946a72
DN
6349 } else if (!move_file())
6350 /* we ignore mapcount for file pages */
90254a65
DN
6351 return NULL;
6352 if (!get_page_unless_zero(page))
6353 return NULL;
6354
6355 return page;
6356}
6357
4b91355e 6358#ifdef CONFIG_SWAP
90254a65
DN
6359static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6360 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6361{
90254a65
DN
6362 struct page *page = NULL;
6363 swp_entry_t ent = pte_to_swp_entry(ptent);
6364
6365 if (!move_anon() || non_swap_entry(ent))
6366 return NULL;
4b91355e
KH
6367 /*
6368 * Because lookup_swap_cache() updates some statistics counter,
6369 * we call find_get_page() with swapper_space directly.
6370 */
33806f06 6371 page = find_get_page(swap_address_space(ent), ent.val);
90254a65
DN
6372 if (do_swap_account)
6373 entry->val = ent.val;
6374
6375 return page;
6376}
4b91355e
KH
6377#else
6378static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6379 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6380{
6381 return NULL;
6382}
6383#endif
90254a65 6384
87946a72
DN
6385static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6386 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6387{
6388 struct page *page = NULL;
87946a72
DN
6389 struct address_space *mapping;
6390 pgoff_t pgoff;
6391
6392 if (!vma->vm_file) /* anonymous vma */
6393 return NULL;
6394 if (!move_file())
6395 return NULL;
6396
87946a72
DN
6397 mapping = vma->vm_file->f_mapping;
6398 if (pte_none(ptent))
6399 pgoff = linear_page_index(vma, addr);
6400 else /* pte_file(ptent) is true */
6401 pgoff = pte_to_pgoff(ptent);
6402
6403 /* page is moved even if it's not RSS of this task(page-faulted). */
aa3b1895
HD
6404 page = find_get_page(mapping, pgoff);
6405
6406#ifdef CONFIG_SWAP
6407 /* shmem/tmpfs may report page out on swap: account for that too. */
6408 if (radix_tree_exceptional_entry(page)) {
6409 swp_entry_t swap = radix_to_swp_entry(page);
87946a72 6410 if (do_swap_account)
aa3b1895 6411 *entry = swap;
33806f06 6412 page = find_get_page(swap_address_space(swap), swap.val);
87946a72 6413 }
aa3b1895 6414#endif
87946a72
DN
6415 return page;
6416}
6417
8d32ff84 6418static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
90254a65
DN
6419 unsigned long addr, pte_t ptent, union mc_target *target)
6420{
6421 struct page *page = NULL;
6422 struct page_cgroup *pc;
8d32ff84 6423 enum mc_target_type ret = MC_TARGET_NONE;
90254a65
DN
6424 swp_entry_t ent = { .val = 0 };
6425
6426 if (pte_present(ptent))
6427 page = mc_handle_present_pte(vma, addr, ptent);
6428 else if (is_swap_pte(ptent))
6429 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
87946a72
DN
6430 else if (pte_none(ptent) || pte_file(ptent))
6431 page = mc_handle_file_pte(vma, addr, ptent, &ent);
90254a65
DN
6432
6433 if (!page && !ent.val)
8d32ff84 6434 return ret;
02491447
DN
6435 if (page) {
6436 pc = lookup_page_cgroup(page);
6437 /*
6438 * Do only loose check w/o page_cgroup lock.
6439 * mem_cgroup_move_account() checks the pc is valid or not under
6440 * the lock.
6441 */
6442 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6443 ret = MC_TARGET_PAGE;
6444 if (target)
6445 target->page = page;
6446 }
6447 if (!ret || !target)
6448 put_page(page);
6449 }
90254a65
DN
6450 /* There is a swap entry and a page doesn't exist or isn't charged */
6451 if (ent.val && !ret &&
9fb4b7cc 6452 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
7f0f1546
KH
6453 ret = MC_TARGET_SWAP;
6454 if (target)
6455 target->ent = ent;
4ffef5fe 6456 }
4ffef5fe
DN
6457 return ret;
6458}
6459
12724850
NH
6460#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6461/*
6462 * We don't consider swapping or file mapped pages because THP does not
6463 * support them for now.
6464 * Caller should make sure that pmd_trans_huge(pmd) is true.
6465 */
6466static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6467 unsigned long addr, pmd_t pmd, union mc_target *target)
6468{
6469 struct page *page = NULL;
6470 struct page_cgroup *pc;
6471 enum mc_target_type ret = MC_TARGET_NONE;
6472
6473 page = pmd_page(pmd);
6474 VM_BUG_ON(!page || !PageHead(page));
6475 if (!move_anon())
6476 return ret;
6477 pc = lookup_page_cgroup(page);
6478 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6479 ret = MC_TARGET_PAGE;
6480 if (target) {
6481 get_page(page);
6482 target->page = page;
6483 }
6484 }
6485 return ret;
6486}
6487#else
6488static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6489 unsigned long addr, pmd_t pmd, union mc_target *target)
6490{
6491 return MC_TARGET_NONE;
6492}
6493#endif
6494
4ffef5fe
DN
6495static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6496 unsigned long addr, unsigned long end,
6497 struct mm_walk *walk)
6498{
6499 struct vm_area_struct *vma = walk->private;
6500 pte_t *pte;
6501 spinlock_t *ptl;
6502
12724850
NH
6503 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6504 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6505 mc.precharge += HPAGE_PMD_NR;
6506 spin_unlock(&vma->vm_mm->page_table_lock);
1a5a9906 6507 return 0;
12724850 6508 }
03319327 6509
45f83cef
AA
6510 if (pmd_trans_unstable(pmd))
6511 return 0;
4ffef5fe
DN
6512 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6513 for (; addr != end; pte++, addr += PAGE_SIZE)
8d32ff84 6514 if (get_mctgt_type(vma, addr, *pte, NULL))
4ffef5fe
DN
6515 mc.precharge++; /* increment precharge temporarily */
6516 pte_unmap_unlock(pte - 1, ptl);
6517 cond_resched();
6518
7dc74be0
DN
6519 return 0;
6520}
6521
4ffef5fe
DN
6522static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6523{
6524 unsigned long precharge;
6525 struct vm_area_struct *vma;
6526
dfe076b0 6527 down_read(&mm->mmap_sem);
4ffef5fe
DN
6528 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6529 struct mm_walk mem_cgroup_count_precharge_walk = {
6530 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6531 .mm = mm,
6532 .private = vma,
6533 };
6534 if (is_vm_hugetlb_page(vma))
6535 continue;
4ffef5fe
DN
6536 walk_page_range(vma->vm_start, vma->vm_end,
6537 &mem_cgroup_count_precharge_walk);
6538 }
dfe076b0 6539 up_read(&mm->mmap_sem);
4ffef5fe
DN
6540
6541 precharge = mc.precharge;
6542 mc.precharge = 0;
6543
6544 return precharge;
6545}
6546
4ffef5fe
DN
6547static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6548{
dfe076b0
DN
6549 unsigned long precharge = mem_cgroup_count_precharge(mm);
6550
6551 VM_BUG_ON(mc.moving_task);
6552 mc.moving_task = current;
6553 return mem_cgroup_do_precharge(precharge);
4ffef5fe
DN
6554}
6555
dfe076b0
DN
6556/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6557static void __mem_cgroup_clear_mc(void)
4ffef5fe 6558{
2bd9bb20
KH
6559 struct mem_cgroup *from = mc.from;
6560 struct mem_cgroup *to = mc.to;
6561
4ffef5fe 6562 /* we must uncharge all the leftover precharges from mc.to */
854ffa8d
DN
6563 if (mc.precharge) {
6564 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6565 mc.precharge = 0;
6566 }
6567 /*
6568 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6569 * we must uncharge here.
6570 */
6571 if (mc.moved_charge) {
6572 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6573 mc.moved_charge = 0;
4ffef5fe 6574 }
483c30b5
DN
6575 /* we must fixup refcnts and charges */
6576 if (mc.moved_swap) {
483c30b5
DN
6577 /* uncharge swap account from the old cgroup */
6578 if (!mem_cgroup_is_root(mc.from))
6579 res_counter_uncharge(&mc.from->memsw,
6580 PAGE_SIZE * mc.moved_swap);
6581 __mem_cgroup_put(mc.from, mc.moved_swap);
6582
6583 if (!mem_cgroup_is_root(mc.to)) {
6584 /*
6585 * we charged both to->res and to->memsw, so we should
6586 * uncharge to->res.
6587 */
6588 res_counter_uncharge(&mc.to->res,
6589 PAGE_SIZE * mc.moved_swap);
483c30b5
DN
6590 }
6591 /* we've already done mem_cgroup_get(mc.to) */
483c30b5
DN
6592 mc.moved_swap = 0;
6593 }
dfe076b0
DN
6594 memcg_oom_recover(from);
6595 memcg_oom_recover(to);
6596 wake_up_all(&mc.waitq);
6597}
6598
6599static void mem_cgroup_clear_mc(void)
6600{
6601 struct mem_cgroup *from = mc.from;
6602
6603 /*
6604 * we must clear moving_task before waking up waiters at the end of
6605 * task migration.
6606 */
6607 mc.moving_task = NULL;
6608 __mem_cgroup_clear_mc();
2bd9bb20 6609 spin_lock(&mc.lock);
4ffef5fe
DN
6610 mc.from = NULL;
6611 mc.to = NULL;
2bd9bb20 6612 spin_unlock(&mc.lock);
32047e2a 6613 mem_cgroup_end_move(from);
4ffef5fe
DN
6614}
6615
761b3ef5
LZ
6616static int mem_cgroup_can_attach(struct cgroup *cgroup,
6617 struct cgroup_taskset *tset)
7dc74be0 6618{
2f7ee569 6619 struct task_struct *p = cgroup_taskset_first(tset);
7dc74be0 6620 int ret = 0;
c0ff4b85 6621 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
ee5e8472 6622 unsigned long move_charge_at_immigrate;
7dc74be0 6623
ee5e8472
GC
6624 /*
6625 * We are now commited to this value whatever it is. Changes in this
6626 * tunable will only affect upcoming migrations, not the current one.
6627 * So we need to save it, and keep it going.
6628 */
6629 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6630 if (move_charge_at_immigrate) {
7dc74be0
DN
6631 struct mm_struct *mm;
6632 struct mem_cgroup *from = mem_cgroup_from_task(p);
6633
c0ff4b85 6634 VM_BUG_ON(from == memcg);
7dc74be0
DN
6635
6636 mm = get_task_mm(p);
6637 if (!mm)
6638 return 0;
7dc74be0 6639 /* We move charges only when we move a owner of the mm */
4ffef5fe
DN
6640 if (mm->owner == p) {
6641 VM_BUG_ON(mc.from);
6642 VM_BUG_ON(mc.to);
6643 VM_BUG_ON(mc.precharge);
854ffa8d 6644 VM_BUG_ON(mc.moved_charge);
483c30b5 6645 VM_BUG_ON(mc.moved_swap);
32047e2a 6646 mem_cgroup_start_move(from);
2bd9bb20 6647 spin_lock(&mc.lock);
4ffef5fe 6648 mc.from = from;
c0ff4b85 6649 mc.to = memcg;
ee5e8472 6650 mc.immigrate_flags = move_charge_at_immigrate;
2bd9bb20 6651 spin_unlock(&mc.lock);
dfe076b0 6652 /* We set mc.moving_task later */
4ffef5fe
DN
6653
6654 ret = mem_cgroup_precharge_mc(mm);
6655 if (ret)
6656 mem_cgroup_clear_mc();
dfe076b0
DN
6657 }
6658 mmput(mm);
7dc74be0
DN
6659 }
6660 return ret;
6661}
6662
761b3ef5
LZ
6663static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
6664 struct cgroup_taskset *tset)
7dc74be0 6665{
4ffef5fe 6666 mem_cgroup_clear_mc();
7dc74be0
DN
6667}
6668
4ffef5fe
DN
6669static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6670 unsigned long addr, unsigned long end,
6671 struct mm_walk *walk)
7dc74be0 6672{
4ffef5fe
DN
6673 int ret = 0;
6674 struct vm_area_struct *vma = walk->private;
6675 pte_t *pte;
6676 spinlock_t *ptl;
12724850
NH
6677 enum mc_target_type target_type;
6678 union mc_target target;
6679 struct page *page;
6680 struct page_cgroup *pc;
4ffef5fe 6681
12724850
NH
6682 /*
6683 * We don't take compound_lock() here but no race with splitting thp
6684 * happens because:
6685 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6686 * under splitting, which means there's no concurrent thp split,
6687 * - if another thread runs into split_huge_page() just after we
6688 * entered this if-block, the thread must wait for page table lock
6689 * to be unlocked in __split_huge_page_splitting(), where the main
6690 * part of thp split is not executed yet.
6691 */
6692 if (pmd_trans_huge_lock(pmd, vma) == 1) {
62ade86a 6693 if (mc.precharge < HPAGE_PMD_NR) {
12724850
NH
6694 spin_unlock(&vma->vm_mm->page_table_lock);
6695 return 0;
6696 }
6697 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6698 if (target_type == MC_TARGET_PAGE) {
6699 page = target.page;
6700 if (!isolate_lru_page(page)) {
6701 pc = lookup_page_cgroup(page);
6702 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
2f3479b1 6703 pc, mc.from, mc.to)) {
12724850
NH
6704 mc.precharge -= HPAGE_PMD_NR;
6705 mc.moved_charge += HPAGE_PMD_NR;
6706 }
6707 putback_lru_page(page);
6708 }
6709 put_page(page);
6710 }
6711 spin_unlock(&vma->vm_mm->page_table_lock);
1a5a9906 6712 return 0;
12724850
NH
6713 }
6714
45f83cef
AA
6715 if (pmd_trans_unstable(pmd))
6716 return 0;
4ffef5fe
DN
6717retry:
6718 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6719 for (; addr != end; addr += PAGE_SIZE) {
6720 pte_t ptent = *(pte++);
02491447 6721 swp_entry_t ent;
4ffef5fe
DN
6722
6723 if (!mc.precharge)
6724 break;
6725
8d32ff84 6726 switch (get_mctgt_type(vma, addr, ptent, &target)) {
4ffef5fe
DN
6727 case MC_TARGET_PAGE:
6728 page = target.page;
6729 if (isolate_lru_page(page))
6730 goto put;
6731 pc = lookup_page_cgroup(page);
7ec99d62 6732 if (!mem_cgroup_move_account(page, 1, pc,
2f3479b1 6733 mc.from, mc.to)) {
4ffef5fe 6734 mc.precharge--;
854ffa8d
DN
6735 /* we uncharge from mc.from later. */
6736 mc.moved_charge++;
4ffef5fe
DN
6737 }
6738 putback_lru_page(page);
8d32ff84 6739put: /* get_mctgt_type() gets the page */
4ffef5fe
DN
6740 put_page(page);
6741 break;
02491447
DN
6742 case MC_TARGET_SWAP:
6743 ent = target.ent;
e91cbb42 6744 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
02491447 6745 mc.precharge--;
483c30b5
DN
6746 /* we fixup refcnts and charges later. */
6747 mc.moved_swap++;
6748 }
02491447 6749 break;
4ffef5fe
DN
6750 default:
6751 break;
6752 }
6753 }
6754 pte_unmap_unlock(pte - 1, ptl);
6755 cond_resched();
6756
6757 if (addr != end) {
6758 /*
6759 * We have consumed all precharges we got in can_attach().
6760 * We try charge one by one, but don't do any additional
6761 * charges to mc.to if we have failed in charge once in attach()
6762 * phase.
6763 */
854ffa8d 6764 ret = mem_cgroup_do_precharge(1);
4ffef5fe
DN
6765 if (!ret)
6766 goto retry;
6767 }
6768
6769 return ret;
6770}
6771
6772static void mem_cgroup_move_charge(struct mm_struct *mm)
6773{
6774 struct vm_area_struct *vma;
6775
6776 lru_add_drain_all();
dfe076b0
DN
6777retry:
6778 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6779 /*
6780 * Someone who are holding the mmap_sem might be waiting in
6781 * waitq. So we cancel all extra charges, wake up all waiters,
6782 * and retry. Because we cancel precharges, we might not be able
6783 * to move enough charges, but moving charge is a best-effort
6784 * feature anyway, so it wouldn't be a big problem.
6785 */
6786 __mem_cgroup_clear_mc();
6787 cond_resched();
6788 goto retry;
6789 }
4ffef5fe
DN
6790 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6791 int ret;
6792 struct mm_walk mem_cgroup_move_charge_walk = {
6793 .pmd_entry = mem_cgroup_move_charge_pte_range,
6794 .mm = mm,
6795 .private = vma,
6796 };
6797 if (is_vm_hugetlb_page(vma))
6798 continue;
4ffef5fe
DN
6799 ret = walk_page_range(vma->vm_start, vma->vm_end,
6800 &mem_cgroup_move_charge_walk);
6801 if (ret)
6802 /*
6803 * means we have consumed all precharges and failed in
6804 * doing additional charge. Just abandon here.
6805 */
6806 break;
6807 }
dfe076b0 6808 up_read(&mm->mmap_sem);
7dc74be0
DN
6809}
6810
761b3ef5
LZ
6811static void mem_cgroup_move_task(struct cgroup *cont,
6812 struct cgroup_taskset *tset)
67e465a7 6813{
2f7ee569 6814 struct task_struct *p = cgroup_taskset_first(tset);
a433658c 6815 struct mm_struct *mm = get_task_mm(p);
dfe076b0 6816
dfe076b0 6817 if (mm) {
a433658c
KM
6818 if (mc.to)
6819 mem_cgroup_move_charge(mm);
dfe076b0
DN
6820 mmput(mm);
6821 }
a433658c
KM
6822 if (mc.to)
6823 mem_cgroup_clear_mc();
67e465a7 6824}
5cfb80a7 6825#else /* !CONFIG_MMU */
761b3ef5
LZ
6826static int mem_cgroup_can_attach(struct cgroup *cgroup,
6827 struct cgroup_taskset *tset)
5cfb80a7
DN
6828{
6829 return 0;
6830}
761b3ef5
LZ
6831static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
6832 struct cgroup_taskset *tset)
5cfb80a7
DN
6833{
6834}
761b3ef5
LZ
6835static void mem_cgroup_move_task(struct cgroup *cont,
6836 struct cgroup_taskset *tset)
5cfb80a7
DN
6837{
6838}
6839#endif
67e465a7 6840
8cdea7c0
BS
6841struct cgroup_subsys mem_cgroup_subsys = {
6842 .name = "memory",
6843 .subsys_id = mem_cgroup_subsys_id,
92fb9748 6844 .css_alloc = mem_cgroup_css_alloc,
d142e3e6 6845 .css_online = mem_cgroup_css_online,
92fb9748
TH
6846 .css_offline = mem_cgroup_css_offline,
6847 .css_free = mem_cgroup_css_free,
7dc74be0
DN
6848 .can_attach = mem_cgroup_can_attach,
6849 .cancel_attach = mem_cgroup_cancel_attach,
67e465a7 6850 .attach = mem_cgroup_move_task,
6bc10349 6851 .base_cftypes = mem_cgroup_files,
6d12e2d8 6852 .early_init = 0,
04046e1a 6853 .use_id = 1,
8cdea7c0 6854};
c077719b 6855
c255a458 6856#ifdef CONFIG_MEMCG_SWAP
a42c390c
MH
6857static int __init enable_swap_account(char *s)
6858{
6859 /* consider enabled if no parameter or 1 is given */
a2c8990a 6860 if (!strcmp(s, "1"))
a42c390c 6861 really_do_swap_account = 1;
a2c8990a 6862 else if (!strcmp(s, "0"))
a42c390c
MH
6863 really_do_swap_account = 0;
6864 return 1;
6865}
a2c8990a 6866__setup("swapaccount=", enable_swap_account);
c077719b 6867
2d11085e
MH
6868static void __init memsw_file_init(void)
6869{
6acc8b02
MH
6870 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
6871}
6872
6873static void __init enable_swap_cgroup(void)
6874{
6875 if (!mem_cgroup_disabled() && really_do_swap_account) {
6876 do_swap_account = 1;
6877 memsw_file_init();
6878 }
2d11085e 6879}
6acc8b02 6880
2d11085e 6881#else
6acc8b02 6882static void __init enable_swap_cgroup(void)
2d11085e
MH
6883{
6884}
c077719b 6885#endif
2d11085e
MH
6886
6887/*
1081312f
MH
6888 * subsys_initcall() for memory controller.
6889 *
6890 * Some parts like hotcpu_notifier() have to be initialized from this context
6891 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6892 * everything that doesn't depend on a specific mem_cgroup structure should
6893 * be initialized from here.
2d11085e
MH
6894 */
6895static int __init mem_cgroup_init(void)
6896{
6897 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
6acc8b02 6898 enable_swap_cgroup();
8787a1df 6899 mem_cgroup_soft_limit_tree_init();
e4777496 6900 memcg_stock_init();
2d11085e
MH
6901 return 0;
6902}
6903subsys_initcall(mem_cgroup_init);