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