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