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