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