1 /* memcontrol.c - Memory Controller
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
6 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
10 * Copyright (C) 2009 Nokia Corporation
11 * Author: Kirill A. Shutemov
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.
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.
24 #include <linux/res_counter.h>
25 #include <linux/memcontrol.h>
26 #include <linux/cgroup.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/mutex.h>
37 #include <linux/rbtree.h>
38 #include <linux/slab.h>
39 #include <linux/swap.h>
40 #include <linux/swapops.h>
41 #include <linux/spinlock.h>
42 #include <linux/eventfd.h>
43 #include <linux/sort.h>
45 #include <linux/seq_file.h>
46 #include <linux/vmalloc.h>
47 #include <linux/mm_inline.h>
48 #include <linux/page_cgroup.h>
49 #include <linux/cpu.h>
50 #include <linux/oom.h>
53 #include <asm/uaccess.h>
55 #include <trace/events/vmscan.h>
57 struct cgroup_subsys mem_cgroup_subsys __read_mostly;
58 #define MEM_CGROUP_RECLAIM_RETRIES 5
59 struct mem_cgroup *root_mem_cgroup __read_mostly;
61 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
62 /* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
63 int do_swap_account __read_mostly;
65 /* for remember boot option*/
66 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP_ENABLED
67 static int really_do_swap_account __initdata = 1;
69 static int really_do_swap_account __initdata = 0;
73 #define do_swap_account (0)
78 * Statistics for memory cgroup.
80 enum mem_cgroup_stat_index {
82 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
84 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
85 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
86 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
87 MEM_CGROUP_STAT_SWAPOUT, /* # of pages, swapped out */
88 MEM_CGROUP_STAT_DATA, /* end of data requires synchronization */
89 MEM_CGROUP_ON_MOVE, /* someone is moving account between groups */
90 MEM_CGROUP_STAT_NSTATS,
93 enum mem_cgroup_events_index {
94 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
95 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
96 MEM_CGROUP_EVENTS_COUNT, /* # of pages paged in/out */
97 MEM_CGROUP_EVENTS_NSTATS,
100 * Per memcg event counter is incremented at every pagein/pageout. With THP,
101 * it will be incremated by the number of pages. This counter is used for
102 * for trigger some periodic events. This is straightforward and better
103 * than using jiffies etc. to handle periodic memcg event.
105 enum mem_cgroup_events_target {
106 MEM_CGROUP_TARGET_THRESH,
107 MEM_CGROUP_TARGET_SOFTLIMIT,
110 #define THRESHOLDS_EVENTS_TARGET (128)
111 #define SOFTLIMIT_EVENTS_TARGET (1024)
113 struct mem_cgroup_stat_cpu {
114 long count[MEM_CGROUP_STAT_NSTATS];
115 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
116 unsigned long targets[MEM_CGROUP_NTARGETS];
120 * per-zone information in memory controller.
122 struct mem_cgroup_per_zone {
124 * spin_lock to protect the per cgroup LRU
126 struct list_head lists[NR_LRU_LISTS];
127 unsigned long count[NR_LRU_LISTS];
129 struct zone_reclaim_stat reclaim_stat;
130 struct rb_node tree_node; /* RB tree node */
131 unsigned long long usage_in_excess;/* Set to the value by which */
132 /* the soft limit is exceeded*/
134 struct mem_cgroup *mem; /* Back pointer, we cannot */
135 /* use container_of */
137 /* Macro for accessing counter */
138 #define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
140 struct mem_cgroup_per_node {
141 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
144 struct mem_cgroup_lru_info {
145 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
149 * Cgroups above their limits are maintained in a RB-Tree, independent of
150 * their hierarchy representation
153 struct mem_cgroup_tree_per_zone {
154 struct rb_root rb_root;
158 struct mem_cgroup_tree_per_node {
159 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
162 struct mem_cgroup_tree {
163 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
166 static struct mem_cgroup_tree soft_limit_tree __read_mostly;
168 struct mem_cgroup_threshold {
169 struct eventfd_ctx *eventfd;
174 struct mem_cgroup_threshold_ary {
175 /* An array index points to threshold just below usage. */
176 int current_threshold;
177 /* Size of entries[] */
179 /* Array of thresholds */
180 struct mem_cgroup_threshold entries[0];
183 struct mem_cgroup_thresholds {
184 /* Primary thresholds array */
185 struct mem_cgroup_threshold_ary *primary;
187 * Spare threshold array.
188 * This is needed to make mem_cgroup_unregister_event() "never fail".
189 * It must be able to store at least primary->size - 1 entries.
191 struct mem_cgroup_threshold_ary *spare;
195 struct mem_cgroup_eventfd_list {
196 struct list_head list;
197 struct eventfd_ctx *eventfd;
200 static void mem_cgroup_threshold(struct mem_cgroup *mem);
201 static void mem_cgroup_oom_notify(struct mem_cgroup *mem);
204 * The memory controller data structure. The memory controller controls both
205 * page cache and RSS per cgroup. We would eventually like to provide
206 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
207 * to help the administrator determine what knobs to tune.
209 * TODO: Add a water mark for the memory controller. Reclaim will begin when
210 * we hit the water mark. May be even add a low water mark, such that
211 * no reclaim occurs from a cgroup at it's low water mark, this is
212 * a feature that will be implemented much later in the future.
215 struct cgroup_subsys_state css;
217 * the counter to account for memory usage
219 struct res_counter res;
221 * the counter to account for mem+swap usage.
223 struct res_counter memsw;
225 * Per cgroup active and inactive list, similar to the
226 * per zone LRU lists.
228 struct mem_cgroup_lru_info info;
230 * While reclaiming in a hierarchy, we cache the last child we
233 int last_scanned_child;
235 * Should the accounting and control be hierarchical, per subtree?
241 unsigned int swappiness;
242 /* OOM-Killer disable */
243 int oom_kill_disable;
245 /* set when res.limit == memsw.limit */
246 bool memsw_is_minimum;
248 /* protect arrays of thresholds */
249 struct mutex thresholds_lock;
251 /* thresholds for memory usage. RCU-protected */
252 struct mem_cgroup_thresholds thresholds;
254 /* thresholds for mem+swap usage. RCU-protected */
255 struct mem_cgroup_thresholds memsw_thresholds;
257 /* For oom notifier event fd */
258 struct list_head oom_notify;
261 * Should we move charges of a task when a task is moved into this
262 * mem_cgroup ? And what type of charges should we move ?
264 unsigned long move_charge_at_immigrate;
268 struct mem_cgroup_stat_cpu *stat;
270 * used when a cpu is offlined or other synchronizations
271 * See mem_cgroup_read_stat().
273 struct mem_cgroup_stat_cpu nocpu_base;
274 spinlock_t pcp_counter_lock;
277 /* Stuffs for move charges at task migration. */
279 * Types of charges to be moved. "move_charge_at_immitgrate" is treated as a
280 * left-shifted bitmap of these types.
283 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
284 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
288 /* "mc" and its members are protected by cgroup_mutex */
289 static struct move_charge_struct {
290 spinlock_t lock; /* for from, to */
291 struct mem_cgroup *from;
292 struct mem_cgroup *to;
293 unsigned long precharge;
294 unsigned long moved_charge;
295 unsigned long moved_swap;
296 struct task_struct *moving_task; /* a task moving charges */
297 wait_queue_head_t waitq; /* a waitq for other context */
299 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
300 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
303 static bool move_anon(void)
305 return test_bit(MOVE_CHARGE_TYPE_ANON,
306 &mc.to->move_charge_at_immigrate);
309 static bool move_file(void)
311 return test_bit(MOVE_CHARGE_TYPE_FILE,
312 &mc.to->move_charge_at_immigrate);
316 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
317 * limit reclaim to prevent infinite loops, if they ever occur.
319 #define MEM_CGROUP_MAX_RECLAIM_LOOPS (100)
320 #define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS (2)
323 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
324 MEM_CGROUP_CHARGE_TYPE_MAPPED,
325 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
326 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
327 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
328 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
332 /* for encoding cft->private value on file */
335 #define _OOM_TYPE (2)
336 #define MEMFILE_PRIVATE(x, val) (((x) << 16) | (val))
337 #define MEMFILE_TYPE(val) (((val) >> 16) & 0xffff)
338 #define MEMFILE_ATTR(val) ((val) & 0xffff)
339 /* Used for OOM nofiier */
340 #define OOM_CONTROL (0)
343 * Reclaim flags for mem_cgroup_hierarchical_reclaim
345 #define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
346 #define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
347 #define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
348 #define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
349 #define MEM_CGROUP_RECLAIM_SOFT_BIT 0x2
350 #define MEM_CGROUP_RECLAIM_SOFT (1 << MEM_CGROUP_RECLAIM_SOFT_BIT)
352 static void mem_cgroup_get(struct mem_cgroup *mem);
353 static void mem_cgroup_put(struct mem_cgroup *mem);
354 static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem);
355 static void drain_all_stock_async(void);
357 static struct mem_cgroup_per_zone *
358 mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
360 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
363 struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *mem)
368 static struct mem_cgroup_per_zone *
369 page_cgroup_zoneinfo(struct mem_cgroup *mem, struct page *page)
371 int nid = page_to_nid(page);
372 int zid = page_zonenum(page);
374 return mem_cgroup_zoneinfo(mem, nid, zid);
377 static struct mem_cgroup_tree_per_zone *
378 soft_limit_tree_node_zone(int nid, int zid)
380 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
383 static struct mem_cgroup_tree_per_zone *
384 soft_limit_tree_from_page(struct page *page)
386 int nid = page_to_nid(page);
387 int zid = page_zonenum(page);
389 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
393 __mem_cgroup_insert_exceeded(struct mem_cgroup *mem,
394 struct mem_cgroup_per_zone *mz,
395 struct mem_cgroup_tree_per_zone *mctz,
396 unsigned long long new_usage_in_excess)
398 struct rb_node **p = &mctz->rb_root.rb_node;
399 struct rb_node *parent = NULL;
400 struct mem_cgroup_per_zone *mz_node;
405 mz->usage_in_excess = new_usage_in_excess;
406 if (!mz->usage_in_excess)
410 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
412 if (mz->usage_in_excess < mz_node->usage_in_excess)
415 * We can't avoid mem cgroups that are over their soft
416 * limit by the same amount
418 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
421 rb_link_node(&mz->tree_node, parent, p);
422 rb_insert_color(&mz->tree_node, &mctz->rb_root);
427 __mem_cgroup_remove_exceeded(struct mem_cgroup *mem,
428 struct mem_cgroup_per_zone *mz,
429 struct mem_cgroup_tree_per_zone *mctz)
433 rb_erase(&mz->tree_node, &mctz->rb_root);
438 mem_cgroup_remove_exceeded(struct mem_cgroup *mem,
439 struct mem_cgroup_per_zone *mz,
440 struct mem_cgroup_tree_per_zone *mctz)
442 spin_lock(&mctz->lock);
443 __mem_cgroup_remove_exceeded(mem, mz, mctz);
444 spin_unlock(&mctz->lock);
448 static void mem_cgroup_update_tree(struct mem_cgroup *mem, struct page *page)
450 unsigned long long excess;
451 struct mem_cgroup_per_zone *mz;
452 struct mem_cgroup_tree_per_zone *mctz;
453 int nid = page_to_nid(page);
454 int zid = page_zonenum(page);
455 mctz = soft_limit_tree_from_page(page);
458 * Necessary to update all ancestors when hierarchy is used.
459 * because their event counter is not touched.
461 for (; mem; mem = parent_mem_cgroup(mem)) {
462 mz = mem_cgroup_zoneinfo(mem, nid, zid);
463 excess = res_counter_soft_limit_excess(&mem->res);
465 * We have to update the tree if mz is on RB-tree or
466 * mem is over its softlimit.
468 if (excess || mz->on_tree) {
469 spin_lock(&mctz->lock);
470 /* if on-tree, remove it */
472 __mem_cgroup_remove_exceeded(mem, mz, mctz);
474 * Insert again. mz->usage_in_excess will be updated.
475 * If excess is 0, no tree ops.
477 __mem_cgroup_insert_exceeded(mem, mz, mctz, excess);
478 spin_unlock(&mctz->lock);
483 static void mem_cgroup_remove_from_trees(struct mem_cgroup *mem)
486 struct mem_cgroup_per_zone *mz;
487 struct mem_cgroup_tree_per_zone *mctz;
489 for_each_node_state(node, N_POSSIBLE) {
490 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
491 mz = mem_cgroup_zoneinfo(mem, node, zone);
492 mctz = soft_limit_tree_node_zone(node, zone);
493 mem_cgroup_remove_exceeded(mem, mz, mctz);
498 static struct mem_cgroup_per_zone *
499 __mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
501 struct rb_node *rightmost = NULL;
502 struct mem_cgroup_per_zone *mz;
506 rightmost = rb_last(&mctz->rb_root);
508 goto done; /* Nothing to reclaim from */
510 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
512 * Remove the node now but someone else can add it back,
513 * we will to add it back at the end of reclaim to its correct
514 * position in the tree.
516 __mem_cgroup_remove_exceeded(mz->mem, mz, mctz);
517 if (!res_counter_soft_limit_excess(&mz->mem->res) ||
518 !css_tryget(&mz->mem->css))
524 static struct mem_cgroup_per_zone *
525 mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
527 struct mem_cgroup_per_zone *mz;
529 spin_lock(&mctz->lock);
530 mz = __mem_cgroup_largest_soft_limit_node(mctz);
531 spin_unlock(&mctz->lock);
536 * Implementation Note: reading percpu statistics for memcg.
538 * Both of vmstat[] and percpu_counter has threshold and do periodic
539 * synchronization to implement "quick" read. There are trade-off between
540 * reading cost and precision of value. Then, we may have a chance to implement
541 * a periodic synchronizion of counter in memcg's counter.
543 * But this _read() function is used for user interface now. The user accounts
544 * memory usage by memory cgroup and he _always_ requires exact value because
545 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
546 * have to visit all online cpus and make sum. So, for now, unnecessary
547 * synchronization is not implemented. (just implemented for cpu hotplug)
549 * If there are kernel internal actions which can make use of some not-exact
550 * value, and reading all cpu value can be performance bottleneck in some
551 * common workload, threashold and synchonization as vmstat[] should be
554 static long mem_cgroup_read_stat(struct mem_cgroup *mem,
555 enum mem_cgroup_stat_index idx)
561 for_each_online_cpu(cpu)
562 val += per_cpu(mem->stat->count[idx], cpu);
563 #ifdef CONFIG_HOTPLUG_CPU
564 spin_lock(&mem->pcp_counter_lock);
565 val += mem->nocpu_base.count[idx];
566 spin_unlock(&mem->pcp_counter_lock);
572 static long mem_cgroup_local_usage(struct mem_cgroup *mem)
576 ret = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_RSS);
577 ret += mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_CACHE);
581 static void mem_cgroup_swap_statistics(struct mem_cgroup *mem,
584 int val = (charge) ? 1 : -1;
585 this_cpu_add(mem->stat->count[MEM_CGROUP_STAT_SWAPOUT], val);
588 static unsigned long mem_cgroup_read_events(struct mem_cgroup *mem,
589 enum mem_cgroup_events_index idx)
591 unsigned long val = 0;
594 for_each_online_cpu(cpu)
595 val += per_cpu(mem->stat->events[idx], cpu);
596 #ifdef CONFIG_HOTPLUG_CPU
597 spin_lock(&mem->pcp_counter_lock);
598 val += mem->nocpu_base.events[idx];
599 spin_unlock(&mem->pcp_counter_lock);
604 static void mem_cgroup_charge_statistics(struct mem_cgroup *mem,
605 bool file, int nr_pages)
610 __this_cpu_add(mem->stat->count[MEM_CGROUP_STAT_CACHE], nr_pages);
612 __this_cpu_add(mem->stat->count[MEM_CGROUP_STAT_RSS], nr_pages);
614 /* pagein of a big page is an event. So, ignore page size */
616 __this_cpu_inc(mem->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
618 __this_cpu_inc(mem->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
619 nr_pages = -nr_pages; /* for event */
622 __this_cpu_add(mem->stat->events[MEM_CGROUP_EVENTS_COUNT], nr_pages);
627 static unsigned long mem_cgroup_get_local_zonestat(struct mem_cgroup *mem,
631 struct mem_cgroup_per_zone *mz;
634 for_each_online_node(nid)
635 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
636 mz = mem_cgroup_zoneinfo(mem, nid, zid);
637 total += MEM_CGROUP_ZSTAT(mz, idx);
642 static bool __memcg_event_check(struct mem_cgroup *mem, int target)
644 unsigned long val, next;
646 val = this_cpu_read(mem->stat->events[MEM_CGROUP_EVENTS_COUNT]);
647 next = this_cpu_read(mem->stat->targets[target]);
648 /* from time_after() in jiffies.h */
649 return ((long)next - (long)val < 0);
652 static void __mem_cgroup_target_update(struct mem_cgroup *mem, int target)
654 unsigned long val, next;
656 val = this_cpu_read(mem->stat->events[MEM_CGROUP_EVENTS_COUNT]);
659 case MEM_CGROUP_TARGET_THRESH:
660 next = val + THRESHOLDS_EVENTS_TARGET;
662 case MEM_CGROUP_TARGET_SOFTLIMIT:
663 next = val + SOFTLIMIT_EVENTS_TARGET;
669 this_cpu_write(mem->stat->targets[target], next);
673 * Check events in order.
676 static void memcg_check_events(struct mem_cgroup *mem, struct page *page)
678 /* threshold event is triggered in finer grain than soft limit */
679 if (unlikely(__memcg_event_check(mem, MEM_CGROUP_TARGET_THRESH))) {
680 mem_cgroup_threshold(mem);
681 __mem_cgroup_target_update(mem, MEM_CGROUP_TARGET_THRESH);
682 if (unlikely(__memcg_event_check(mem,
683 MEM_CGROUP_TARGET_SOFTLIMIT))){
684 mem_cgroup_update_tree(mem, page);
685 __mem_cgroup_target_update(mem,
686 MEM_CGROUP_TARGET_SOFTLIMIT);
691 static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
693 return container_of(cgroup_subsys_state(cont,
694 mem_cgroup_subsys_id), struct mem_cgroup,
698 struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
701 * mm_update_next_owner() may clear mm->owner to NULL
702 * if it races with swapoff, page migration, etc.
703 * So this can be called with p == NULL.
708 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
709 struct mem_cgroup, css);
712 static struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
714 struct mem_cgroup *mem = NULL;
719 * Because we have no locks, mm->owner's may be being moved to other
720 * cgroup. We use css_tryget() here even if this looks
721 * pessimistic (rather than adding locks here).
725 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
728 } while (!css_tryget(&mem->css));
733 /* The caller has to guarantee "mem" exists before calling this */
734 static struct mem_cgroup *mem_cgroup_start_loop(struct mem_cgroup *mem)
736 struct cgroup_subsys_state *css;
739 if (!mem) /* ROOT cgroup has the smallest ID */
740 return root_mem_cgroup; /*css_put/get against root is ignored*/
741 if (!mem->use_hierarchy) {
742 if (css_tryget(&mem->css))
748 * searching a memory cgroup which has the smallest ID under given
749 * ROOT cgroup. (ID >= 1)
751 css = css_get_next(&mem_cgroup_subsys, 1, &mem->css, &found);
752 if (css && css_tryget(css))
753 mem = container_of(css, struct mem_cgroup, css);
760 static struct mem_cgroup *mem_cgroup_get_next(struct mem_cgroup *iter,
761 struct mem_cgroup *root,
764 int nextid = css_id(&iter->css) + 1;
767 struct cgroup_subsys_state *css;
769 hierarchy_used = iter->use_hierarchy;
772 /* If no ROOT, walk all, ignore hierarchy */
773 if (!cond || (root && !hierarchy_used))
777 root = root_mem_cgroup;
783 css = css_get_next(&mem_cgroup_subsys, nextid,
785 if (css && css_tryget(css))
786 iter = container_of(css, struct mem_cgroup, css);
788 /* If css is NULL, no more cgroups will be found */
790 } while (css && !iter);
795 * for_eacn_mem_cgroup_tree() for visiting all cgroup under tree. Please
796 * be careful that "break" loop is not allowed. We have reference count.
797 * Instead of that modify "cond" to be false and "continue" to exit the loop.
799 #define for_each_mem_cgroup_tree_cond(iter, root, cond) \
800 for (iter = mem_cgroup_start_loop(root);\
802 iter = mem_cgroup_get_next(iter, root, cond))
804 #define for_each_mem_cgroup_tree(iter, root) \
805 for_each_mem_cgroup_tree_cond(iter, root, true)
807 #define for_each_mem_cgroup_all(iter) \
808 for_each_mem_cgroup_tree_cond(iter, NULL, true)
811 static inline bool mem_cgroup_is_root(struct mem_cgroup *mem)
813 return (mem == root_mem_cgroup);
817 * Following LRU functions are allowed to be used without PCG_LOCK.
818 * Operations are called by routine of global LRU independently from memcg.
819 * What we have to take care of here is validness of pc->mem_cgroup.
821 * Changes to pc->mem_cgroup happens when
824 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
825 * It is added to LRU before charge.
826 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
827 * When moving account, the page is not on LRU. It's isolated.
830 void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru)
832 struct page_cgroup *pc;
833 struct mem_cgroup_per_zone *mz;
835 if (mem_cgroup_disabled())
837 pc = lookup_page_cgroup(page);
838 /* can happen while we handle swapcache. */
839 if (!TestClearPageCgroupAcctLRU(pc))
841 VM_BUG_ON(!pc->mem_cgroup);
843 * We don't check PCG_USED bit. It's cleared when the "page" is finally
844 * removed from global LRU.
846 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
847 /* huge page split is done under lru_lock. so, we have no races. */
848 MEM_CGROUP_ZSTAT(mz, lru) -= 1 << compound_order(page);
849 if (mem_cgroup_is_root(pc->mem_cgroup))
851 VM_BUG_ON(list_empty(&pc->lru));
852 list_del_init(&pc->lru);
855 void mem_cgroup_del_lru(struct page *page)
857 mem_cgroup_del_lru_list(page, page_lru(page));
861 * Writeback is about to end against a page which has been marked for immediate
862 * reclaim. If it still appears to be reclaimable, move it to the tail of the
865 void mem_cgroup_rotate_reclaimable_page(struct page *page)
867 struct mem_cgroup_per_zone *mz;
868 struct page_cgroup *pc;
869 enum lru_list lru = page_lru(page);
871 if (mem_cgroup_disabled())
874 pc = lookup_page_cgroup(page);
875 /* unused or root page is not rotated. */
876 if (!PageCgroupUsed(pc))
878 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
880 if (mem_cgroup_is_root(pc->mem_cgroup))
882 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
883 list_move_tail(&pc->lru, &mz->lists[lru]);
886 void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru)
888 struct mem_cgroup_per_zone *mz;
889 struct page_cgroup *pc;
891 if (mem_cgroup_disabled())
894 pc = lookup_page_cgroup(page);
895 /* unused or root page is not rotated. */
896 if (!PageCgroupUsed(pc))
898 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
900 if (mem_cgroup_is_root(pc->mem_cgroup))
902 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
903 list_move(&pc->lru, &mz->lists[lru]);
906 void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru)
908 struct page_cgroup *pc;
909 struct mem_cgroup_per_zone *mz;
911 if (mem_cgroup_disabled())
913 pc = lookup_page_cgroup(page);
914 VM_BUG_ON(PageCgroupAcctLRU(pc));
915 if (!PageCgroupUsed(pc))
917 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
919 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
920 /* huge page split is done under lru_lock. so, we have no races. */
921 MEM_CGROUP_ZSTAT(mz, lru) += 1 << compound_order(page);
922 SetPageCgroupAcctLRU(pc);
923 if (mem_cgroup_is_root(pc->mem_cgroup))
925 list_add(&pc->lru, &mz->lists[lru]);
929 * At handling SwapCache and other FUSE stuff, pc->mem_cgroup may be changed
930 * while it's linked to lru because the page may be reused after it's fully
931 * uncharged. To handle that, unlink page_cgroup from LRU when charge it again.
932 * It's done under lock_page and expected that zone->lru_lock isnever held.
934 static void mem_cgroup_lru_del_before_commit(struct page *page)
937 struct zone *zone = page_zone(page);
938 struct page_cgroup *pc = lookup_page_cgroup(page);
941 * Doing this check without taking ->lru_lock seems wrong but this
942 * is safe. Because if page_cgroup's USED bit is unset, the page
943 * will not be added to any memcg's LRU. If page_cgroup's USED bit is
944 * set, the commit after this will fail, anyway.
945 * This all charge/uncharge is done under some mutual execustion.
946 * So, we don't need to taking care of changes in USED bit.
948 if (likely(!PageLRU(page)))
951 spin_lock_irqsave(&zone->lru_lock, flags);
953 * Forget old LRU when this page_cgroup is *not* used. This Used bit
954 * is guarded by lock_page() because the page is SwapCache.
956 if (!PageCgroupUsed(pc))
957 mem_cgroup_del_lru_list(page, page_lru(page));
958 spin_unlock_irqrestore(&zone->lru_lock, flags);
961 static void mem_cgroup_lru_add_after_commit(struct page *page)
964 struct zone *zone = page_zone(page);
965 struct page_cgroup *pc = lookup_page_cgroup(page);
967 /* taking care of that the page is added to LRU while we commit it */
968 if (likely(!PageLRU(page)))
970 spin_lock_irqsave(&zone->lru_lock, flags);
971 /* link when the page is linked to LRU but page_cgroup isn't */
972 if (PageLRU(page) && !PageCgroupAcctLRU(pc))
973 mem_cgroup_add_lru_list(page, page_lru(page));
974 spin_unlock_irqrestore(&zone->lru_lock, flags);
978 void mem_cgroup_move_lists(struct page *page,
979 enum lru_list from, enum lru_list to)
981 if (mem_cgroup_disabled())
983 mem_cgroup_del_lru_list(page, from);
984 mem_cgroup_add_lru_list(page, to);
987 int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
990 struct mem_cgroup *curr = NULL;
991 struct task_struct *p;
993 p = find_lock_task_mm(task);
996 curr = try_get_mem_cgroup_from_mm(p->mm);
1001 * We should check use_hierarchy of "mem" not "curr". Because checking
1002 * use_hierarchy of "curr" here make this function true if hierarchy is
1003 * enabled in "curr" and "curr" is a child of "mem" in *cgroup*
1004 * hierarchy(even if use_hierarchy is disabled in "mem").
1006 if (mem->use_hierarchy)
1007 ret = css_is_ancestor(&curr->css, &mem->css);
1009 ret = (curr == mem);
1010 css_put(&curr->css);
1014 static int calc_inactive_ratio(struct mem_cgroup *memcg, unsigned long *present_pages)
1016 unsigned long active;
1017 unsigned long inactive;
1019 unsigned long inactive_ratio;
1021 inactive = mem_cgroup_get_local_zonestat(memcg, LRU_INACTIVE_ANON);
1022 active = mem_cgroup_get_local_zonestat(memcg, LRU_ACTIVE_ANON);
1024 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1026 inactive_ratio = int_sqrt(10 * gb);
1030 if (present_pages) {
1031 present_pages[0] = inactive;
1032 present_pages[1] = active;
1035 return inactive_ratio;
1038 int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg)
1040 unsigned long active;
1041 unsigned long inactive;
1042 unsigned long present_pages[2];
1043 unsigned long inactive_ratio;
1045 inactive_ratio = calc_inactive_ratio(memcg, present_pages);
1047 inactive = present_pages[0];
1048 active = present_pages[1];
1050 if (inactive * inactive_ratio < active)
1056 int mem_cgroup_inactive_file_is_low(struct mem_cgroup *memcg)
1058 unsigned long active;
1059 unsigned long inactive;
1061 inactive = mem_cgroup_get_local_zonestat(memcg, LRU_INACTIVE_FILE);
1062 active = mem_cgroup_get_local_zonestat(memcg, LRU_ACTIVE_FILE);
1064 return (active > inactive);
1067 unsigned long mem_cgroup_zone_nr_pages(struct mem_cgroup *memcg,
1071 int nid = zone_to_nid(zone);
1072 int zid = zone_idx(zone);
1073 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
1075 return MEM_CGROUP_ZSTAT(mz, lru);
1078 struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg,
1081 int nid = zone_to_nid(zone);
1082 int zid = zone_idx(zone);
1083 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
1085 return &mz->reclaim_stat;
1088 struct zone_reclaim_stat *
1089 mem_cgroup_get_reclaim_stat_from_page(struct page *page)
1091 struct page_cgroup *pc;
1092 struct mem_cgroup_per_zone *mz;
1094 if (mem_cgroup_disabled())
1097 pc = lookup_page_cgroup(page);
1098 if (!PageCgroupUsed(pc))
1100 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1102 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
1103 return &mz->reclaim_stat;
1106 unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
1107 struct list_head *dst,
1108 unsigned long *scanned, int order,
1109 int mode, struct zone *z,
1110 struct mem_cgroup *mem_cont,
1111 int active, int file)
1113 unsigned long nr_taken = 0;
1117 struct list_head *src;
1118 struct page_cgroup *pc, *tmp;
1119 int nid = zone_to_nid(z);
1120 int zid = zone_idx(z);
1121 struct mem_cgroup_per_zone *mz;
1122 int lru = LRU_FILE * file + active;
1126 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
1127 src = &mz->lists[lru];
1130 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
1131 if (scan >= nr_to_scan)
1134 if (unlikely(!PageCgroupUsed(pc)))
1137 page = lookup_cgroup_page(pc);
1139 if (unlikely(!PageLRU(page)))
1143 ret = __isolate_lru_page(page, mode, file);
1146 list_move(&page->lru, dst);
1147 mem_cgroup_del_lru(page);
1148 nr_taken += hpage_nr_pages(page);
1151 /* we don't affect global LRU but rotate in our LRU */
1152 mem_cgroup_rotate_lru_list(page, page_lru(page));
1161 trace_mm_vmscan_memcg_isolate(0, nr_to_scan, scan, nr_taken,
1167 #define mem_cgroup_from_res_counter(counter, member) \
1168 container_of(counter, struct mem_cgroup, member)
1171 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
1172 * @mem: the memory cgroup
1174 * Returns the maximum amount of memory @mem can be charged with, in
1177 static unsigned long mem_cgroup_margin(struct mem_cgroup *mem)
1179 unsigned long long margin;
1181 margin = res_counter_margin(&mem->res);
1182 if (do_swap_account)
1183 margin = min(margin, res_counter_margin(&mem->memsw));
1184 return margin >> PAGE_SHIFT;
1187 static unsigned int get_swappiness(struct mem_cgroup *memcg)
1189 struct cgroup *cgrp = memcg->css.cgroup;
1192 if (cgrp->parent == NULL)
1193 return vm_swappiness;
1195 return memcg->swappiness;
1198 static void mem_cgroup_start_move(struct mem_cgroup *mem)
1203 spin_lock(&mem->pcp_counter_lock);
1204 for_each_online_cpu(cpu)
1205 per_cpu(mem->stat->count[MEM_CGROUP_ON_MOVE], cpu) += 1;
1206 mem->nocpu_base.count[MEM_CGROUP_ON_MOVE] += 1;
1207 spin_unlock(&mem->pcp_counter_lock);
1213 static void mem_cgroup_end_move(struct mem_cgroup *mem)
1220 spin_lock(&mem->pcp_counter_lock);
1221 for_each_online_cpu(cpu)
1222 per_cpu(mem->stat->count[MEM_CGROUP_ON_MOVE], cpu) -= 1;
1223 mem->nocpu_base.count[MEM_CGROUP_ON_MOVE] -= 1;
1224 spin_unlock(&mem->pcp_counter_lock);
1228 * 2 routines for checking "mem" is under move_account() or not.
1230 * mem_cgroup_stealed() - checking a cgroup is mc.from or not. This is used
1231 * for avoiding race in accounting. If true,
1232 * pc->mem_cgroup may be overwritten.
1234 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1235 * under hierarchy of moving cgroups. This is for
1236 * waiting at hith-memory prressure caused by "move".
1239 static bool mem_cgroup_stealed(struct mem_cgroup *mem)
1241 VM_BUG_ON(!rcu_read_lock_held());
1242 return this_cpu_read(mem->stat->count[MEM_CGROUP_ON_MOVE]) > 0;
1245 static bool mem_cgroup_under_move(struct mem_cgroup *mem)
1247 struct mem_cgroup *from;
1248 struct mem_cgroup *to;
1251 * Unlike task_move routines, we access mc.to, mc.from not under
1252 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1254 spin_lock(&mc.lock);
1259 if (from == mem || to == mem
1260 || (mem->use_hierarchy && css_is_ancestor(&from->css, &mem->css))
1261 || (mem->use_hierarchy && css_is_ancestor(&to->css, &mem->css)))
1264 spin_unlock(&mc.lock);
1268 static bool mem_cgroup_wait_acct_move(struct mem_cgroup *mem)
1270 if (mc.moving_task && current != mc.moving_task) {
1271 if (mem_cgroup_under_move(mem)) {
1273 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1274 /* moving charge context might have finished. */
1277 finish_wait(&mc.waitq, &wait);
1285 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
1286 * @memcg: The memory cgroup that went over limit
1287 * @p: Task that is going to be killed
1289 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1292 void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1294 struct cgroup *task_cgrp;
1295 struct cgroup *mem_cgrp;
1297 * Need a buffer in BSS, can't rely on allocations. The code relies
1298 * on the assumption that OOM is serialized for memory controller.
1299 * If this assumption is broken, revisit this code.
1301 static char memcg_name[PATH_MAX];
1310 mem_cgrp = memcg->css.cgroup;
1311 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1313 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1316 * Unfortunately, we are unable to convert to a useful name
1317 * But we'll still print out the usage information
1324 printk(KERN_INFO "Task in %s killed", memcg_name);
1327 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1335 * Continues from above, so we don't need an KERN_ level
1337 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1340 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1341 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1342 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1343 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1344 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1346 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1347 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1348 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
1352 * This function returns the number of memcg under hierarchy tree. Returns
1353 * 1(self count) if no children.
1355 static int mem_cgroup_count_children(struct mem_cgroup *mem)
1358 struct mem_cgroup *iter;
1360 for_each_mem_cgroup_tree(iter, mem)
1366 * Return the memory (and swap, if configured) limit for a memcg.
1368 u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
1373 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1374 limit += total_swap_pages << PAGE_SHIFT;
1376 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1378 * If memsw is finite and limits the amount of swap space available
1379 * to this memcg, return that limit.
1381 return min(limit, memsw);
1385 * Visit the first child (need not be the first child as per the ordering
1386 * of the cgroup list, since we track last_scanned_child) of @mem and use
1387 * that to reclaim free pages from.
1389 static struct mem_cgroup *
1390 mem_cgroup_select_victim(struct mem_cgroup *root_mem)
1392 struct mem_cgroup *ret = NULL;
1393 struct cgroup_subsys_state *css;
1396 if (!root_mem->use_hierarchy) {
1397 css_get(&root_mem->css);
1403 nextid = root_mem->last_scanned_child + 1;
1404 css = css_get_next(&mem_cgroup_subsys, nextid, &root_mem->css,
1406 if (css && css_tryget(css))
1407 ret = container_of(css, struct mem_cgroup, css);
1410 /* Updates scanning parameter */
1412 /* this means start scan from ID:1 */
1413 root_mem->last_scanned_child = 0;
1415 root_mem->last_scanned_child = found;
1422 * Scan the hierarchy if needed to reclaim memory. We remember the last child
1423 * we reclaimed from, so that we don't end up penalizing one child extensively
1424 * based on its position in the children list.
1426 * root_mem is the original ancestor that we've been reclaim from.
1428 * We give up and return to the caller when we visit root_mem twice.
1429 * (other groups can be removed while we're walking....)
1431 * If shrink==true, for avoiding to free too much, this returns immedieately.
1433 static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_mem,
1436 unsigned long reclaim_options,
1437 unsigned long *total_scanned)
1439 struct mem_cgroup *victim;
1442 bool noswap = reclaim_options & MEM_CGROUP_RECLAIM_NOSWAP;
1443 bool shrink = reclaim_options & MEM_CGROUP_RECLAIM_SHRINK;
1444 bool check_soft = reclaim_options & MEM_CGROUP_RECLAIM_SOFT;
1445 unsigned long excess;
1446 unsigned long nr_scanned;
1448 excess = res_counter_soft_limit_excess(&root_mem->res) >> PAGE_SHIFT;
1450 /* If memsw_is_minimum==1, swap-out is of-no-use. */
1451 if (root_mem->memsw_is_minimum)
1455 victim = mem_cgroup_select_victim(root_mem);
1456 if (victim == root_mem) {
1459 drain_all_stock_async();
1462 * If we have not been able to reclaim
1463 * anything, it might because there are
1464 * no reclaimable pages under this hierarchy
1466 if (!check_soft || !total) {
1467 css_put(&victim->css);
1471 * We want to do more targeted reclaim.
1472 * excess >> 2 is not to excessive so as to
1473 * reclaim too much, nor too less that we keep
1474 * coming back to reclaim from this cgroup
1476 if (total >= (excess >> 2) ||
1477 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS)) {
1478 css_put(&victim->css);
1483 if (!mem_cgroup_local_usage(victim)) {
1484 /* this cgroup's local usage == 0 */
1485 css_put(&victim->css);
1488 /* we use swappiness of local cgroup */
1490 ret = mem_cgroup_shrink_node_zone(victim, gfp_mask,
1491 noswap, get_swappiness(victim), zone,
1493 *total_scanned += nr_scanned;
1495 ret = try_to_free_mem_cgroup_pages(victim, gfp_mask,
1496 noswap, get_swappiness(victim));
1497 css_put(&victim->css);
1499 * At shrinking usage, we can't check we should stop here or
1500 * reclaim more. It's depends on callers. last_scanned_child
1501 * will work enough for keeping fairness under tree.
1507 if (!res_counter_soft_limit_excess(&root_mem->res))
1509 } else if (mem_cgroup_margin(root_mem))
1516 * Check OOM-Killer is already running under our hierarchy.
1517 * If someone is running, return false.
1519 static bool mem_cgroup_oom_lock(struct mem_cgroup *mem)
1521 int x, lock_count = 0;
1522 struct mem_cgroup *iter;
1524 for_each_mem_cgroup_tree(iter, mem) {
1525 x = atomic_inc_return(&iter->oom_lock);
1526 lock_count = max(x, lock_count);
1529 if (lock_count == 1)
1534 static int mem_cgroup_oom_unlock(struct mem_cgroup *mem)
1536 struct mem_cgroup *iter;
1539 * When a new child is created while the hierarchy is under oom,
1540 * mem_cgroup_oom_lock() may not be called. We have to use
1541 * atomic_add_unless() here.
1543 for_each_mem_cgroup_tree(iter, mem)
1544 atomic_add_unless(&iter->oom_lock, -1, 0);
1549 static DEFINE_MUTEX(memcg_oom_mutex);
1550 static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1552 struct oom_wait_info {
1553 struct mem_cgroup *mem;
1557 static int memcg_oom_wake_function(wait_queue_t *wait,
1558 unsigned mode, int sync, void *arg)
1560 struct mem_cgroup *wake_mem = (struct mem_cgroup *)arg;
1561 struct oom_wait_info *oom_wait_info;
1563 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
1565 if (oom_wait_info->mem == wake_mem)
1567 /* if no hierarchy, no match */
1568 if (!oom_wait_info->mem->use_hierarchy || !wake_mem->use_hierarchy)
1571 * Both of oom_wait_info->mem and wake_mem are stable under us.
1572 * Then we can use css_is_ancestor without taking care of RCU.
1574 if (!css_is_ancestor(&oom_wait_info->mem->css, &wake_mem->css) &&
1575 !css_is_ancestor(&wake_mem->css, &oom_wait_info->mem->css))
1579 return autoremove_wake_function(wait, mode, sync, arg);
1582 static void memcg_wakeup_oom(struct mem_cgroup *mem)
1584 /* for filtering, pass "mem" as argument. */
1585 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, mem);
1588 static void memcg_oom_recover(struct mem_cgroup *mem)
1590 if (mem && atomic_read(&mem->oom_lock))
1591 memcg_wakeup_oom(mem);
1595 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1597 bool mem_cgroup_handle_oom(struct mem_cgroup *mem, gfp_t mask)
1599 struct oom_wait_info owait;
1600 bool locked, need_to_kill;
1603 owait.wait.flags = 0;
1604 owait.wait.func = memcg_oom_wake_function;
1605 owait.wait.private = current;
1606 INIT_LIST_HEAD(&owait.wait.task_list);
1607 need_to_kill = true;
1608 /* At first, try to OOM lock hierarchy under mem.*/
1609 mutex_lock(&memcg_oom_mutex);
1610 locked = mem_cgroup_oom_lock(mem);
1612 * Even if signal_pending(), we can't quit charge() loop without
1613 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1614 * under OOM is always welcomed, use TASK_KILLABLE here.
1616 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
1617 if (!locked || mem->oom_kill_disable)
1618 need_to_kill = false;
1620 mem_cgroup_oom_notify(mem);
1621 mutex_unlock(&memcg_oom_mutex);
1624 finish_wait(&memcg_oom_waitq, &owait.wait);
1625 mem_cgroup_out_of_memory(mem, mask);
1628 finish_wait(&memcg_oom_waitq, &owait.wait);
1630 mutex_lock(&memcg_oom_mutex);
1631 mem_cgroup_oom_unlock(mem);
1632 memcg_wakeup_oom(mem);
1633 mutex_unlock(&memcg_oom_mutex);
1635 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1637 /* Give chance to dying process */
1638 schedule_timeout(1);
1643 * Currently used to update mapped file statistics, but the routine can be
1644 * generalized to update other statistics as well.
1646 * Notes: Race condition
1648 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1649 * it tends to be costly. But considering some conditions, we doesn't need
1650 * to do so _always_.
1652 * Considering "charge", lock_page_cgroup() is not required because all
1653 * file-stat operations happen after a page is attached to radix-tree. There
1654 * are no race with "charge".
1656 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1657 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1658 * if there are race with "uncharge". Statistics itself is properly handled
1661 * Considering "move", this is an only case we see a race. To make the race
1662 * small, we check MEM_CGROUP_ON_MOVE percpu value and detect there are
1663 * possibility of race condition. If there is, we take a lock.
1666 void mem_cgroup_update_page_stat(struct page *page,
1667 enum mem_cgroup_page_stat_item idx, int val)
1669 struct mem_cgroup *mem;
1670 struct page_cgroup *pc = lookup_page_cgroup(page);
1671 bool need_unlock = false;
1672 unsigned long uninitialized_var(flags);
1678 mem = pc->mem_cgroup;
1679 if (unlikely(!mem || !PageCgroupUsed(pc)))
1681 /* pc->mem_cgroup is unstable ? */
1682 if (unlikely(mem_cgroup_stealed(mem)) || PageTransHuge(page)) {
1683 /* take a lock against to access pc->mem_cgroup */
1684 move_lock_page_cgroup(pc, &flags);
1686 mem = pc->mem_cgroup;
1687 if (!mem || !PageCgroupUsed(pc))
1692 case MEMCG_NR_FILE_MAPPED:
1694 SetPageCgroupFileMapped(pc);
1695 else if (!page_mapped(page))
1696 ClearPageCgroupFileMapped(pc);
1697 idx = MEM_CGROUP_STAT_FILE_MAPPED;
1703 this_cpu_add(mem->stat->count[idx], val);
1706 if (unlikely(need_unlock))
1707 move_unlock_page_cgroup(pc, &flags);
1711 EXPORT_SYMBOL(mem_cgroup_update_page_stat);
1714 * size of first charge trial. "32" comes from vmscan.c's magic value.
1715 * TODO: maybe necessary to use big numbers in big irons.
1717 #define CHARGE_BATCH 32U
1718 struct memcg_stock_pcp {
1719 struct mem_cgroup *cached; /* this never be root cgroup */
1720 unsigned int nr_pages;
1721 struct work_struct work;
1723 static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
1724 static atomic_t memcg_drain_count;
1727 * Try to consume stocked charge on this cpu. If success, one page is consumed
1728 * from local stock and true is returned. If the stock is 0 or charges from a
1729 * cgroup which is not current target, returns false. This stock will be
1732 static bool consume_stock(struct mem_cgroup *mem)
1734 struct memcg_stock_pcp *stock;
1737 stock = &get_cpu_var(memcg_stock);
1738 if (mem == stock->cached && stock->nr_pages)
1740 else /* need to call res_counter_charge */
1742 put_cpu_var(memcg_stock);
1747 * Returns stocks cached in percpu to res_counter and reset cached information.
1749 static void drain_stock(struct memcg_stock_pcp *stock)
1751 struct mem_cgroup *old = stock->cached;
1753 if (stock->nr_pages) {
1754 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
1756 res_counter_uncharge(&old->res, bytes);
1757 if (do_swap_account)
1758 res_counter_uncharge(&old->memsw, bytes);
1759 stock->nr_pages = 0;
1761 stock->cached = NULL;
1765 * This must be called under preempt disabled or must be called by
1766 * a thread which is pinned to local cpu.
1768 static void drain_local_stock(struct work_struct *dummy)
1770 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
1775 * Cache charges(val) which is from res_counter, to local per_cpu area.
1776 * This will be consumed by consume_stock() function, later.
1778 static void refill_stock(struct mem_cgroup *mem, unsigned int nr_pages)
1780 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
1782 if (stock->cached != mem) { /* reset if necessary */
1784 stock->cached = mem;
1786 stock->nr_pages += nr_pages;
1787 put_cpu_var(memcg_stock);
1791 * Tries to drain stocked charges in other cpus. This function is asynchronous
1792 * and just put a work per cpu for draining localy on each cpu. Caller can
1793 * expects some charges will be back to res_counter later but cannot wait for
1796 static void drain_all_stock_async(void)
1799 /* This function is for scheduling "drain" in asynchronous way.
1800 * The result of "drain" is not directly handled by callers. Then,
1801 * if someone is calling drain, we don't have to call drain more.
1802 * Anyway, WORK_STRUCT_PENDING check in queue_work_on() will catch if
1803 * there is a race. We just do loose check here.
1805 if (atomic_read(&memcg_drain_count))
1807 /* Notify other cpus that system-wide "drain" is running */
1808 atomic_inc(&memcg_drain_count);
1810 for_each_online_cpu(cpu) {
1811 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
1812 schedule_work_on(cpu, &stock->work);
1815 atomic_dec(&memcg_drain_count);
1816 /* We don't wait for flush_work */
1819 /* This is a synchronous drain interface. */
1820 static void drain_all_stock_sync(void)
1822 /* called when force_empty is called */
1823 atomic_inc(&memcg_drain_count);
1824 schedule_on_each_cpu(drain_local_stock);
1825 atomic_dec(&memcg_drain_count);
1829 * This function drains percpu counter value from DEAD cpu and
1830 * move it to local cpu. Note that this function can be preempted.
1832 static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *mem, int cpu)
1836 spin_lock(&mem->pcp_counter_lock);
1837 for (i = 0; i < MEM_CGROUP_STAT_DATA; i++) {
1838 long x = per_cpu(mem->stat->count[i], cpu);
1840 per_cpu(mem->stat->count[i], cpu) = 0;
1841 mem->nocpu_base.count[i] += x;
1843 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
1844 unsigned long x = per_cpu(mem->stat->events[i], cpu);
1846 per_cpu(mem->stat->events[i], cpu) = 0;
1847 mem->nocpu_base.events[i] += x;
1849 /* need to clear ON_MOVE value, works as a kind of lock. */
1850 per_cpu(mem->stat->count[MEM_CGROUP_ON_MOVE], cpu) = 0;
1851 spin_unlock(&mem->pcp_counter_lock);
1854 static void synchronize_mem_cgroup_on_move(struct mem_cgroup *mem, int cpu)
1856 int idx = MEM_CGROUP_ON_MOVE;
1858 spin_lock(&mem->pcp_counter_lock);
1859 per_cpu(mem->stat->count[idx], cpu) = mem->nocpu_base.count[idx];
1860 spin_unlock(&mem->pcp_counter_lock);
1863 static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
1864 unsigned long action,
1867 int cpu = (unsigned long)hcpu;
1868 struct memcg_stock_pcp *stock;
1869 struct mem_cgroup *iter;
1871 if ((action == CPU_ONLINE)) {
1872 for_each_mem_cgroup_all(iter)
1873 synchronize_mem_cgroup_on_move(iter, cpu);
1877 if ((action != CPU_DEAD) || action != CPU_DEAD_FROZEN)
1880 for_each_mem_cgroup_all(iter)
1881 mem_cgroup_drain_pcp_counter(iter, cpu);
1883 stock = &per_cpu(memcg_stock, cpu);
1889 /* See __mem_cgroup_try_charge() for details */
1891 CHARGE_OK, /* success */
1892 CHARGE_RETRY, /* need to retry but retry is not bad */
1893 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
1894 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
1895 CHARGE_OOM_DIE, /* the current is killed because of OOM */
1898 static int mem_cgroup_do_charge(struct mem_cgroup *mem, gfp_t gfp_mask,
1899 unsigned int nr_pages, bool oom_check)
1901 unsigned long csize = nr_pages * PAGE_SIZE;
1902 struct mem_cgroup *mem_over_limit;
1903 struct res_counter *fail_res;
1904 unsigned long flags = 0;
1907 ret = res_counter_charge(&mem->res, csize, &fail_res);
1910 if (!do_swap_account)
1912 ret = res_counter_charge(&mem->memsw, csize, &fail_res);
1916 res_counter_uncharge(&mem->res, csize);
1917 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
1918 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
1920 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
1922 * nr_pages can be either a huge page (HPAGE_PMD_NR), a batch
1923 * of regular pages (CHARGE_BATCH), or a single regular page (1).
1925 * Never reclaim on behalf of optional batching, retry with a
1926 * single page instead.
1928 if (nr_pages == CHARGE_BATCH)
1929 return CHARGE_RETRY;
1931 if (!(gfp_mask & __GFP_WAIT))
1932 return CHARGE_WOULDBLOCK;
1934 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, NULL,
1935 gfp_mask, flags, NULL);
1936 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
1937 return CHARGE_RETRY;
1939 * Even though the limit is exceeded at this point, reclaim
1940 * may have been able to free some pages. Retry the charge
1941 * before killing the task.
1943 * Only for regular pages, though: huge pages are rather
1944 * unlikely to succeed so close to the limit, and we fall back
1945 * to regular pages anyway in case of failure.
1947 if (nr_pages == 1 && ret)
1948 return CHARGE_RETRY;
1951 * At task move, charge accounts can be doubly counted. So, it's
1952 * better to wait until the end of task_move if something is going on.
1954 if (mem_cgroup_wait_acct_move(mem_over_limit))
1955 return CHARGE_RETRY;
1957 /* If we don't need to call oom-killer at el, return immediately */
1959 return CHARGE_NOMEM;
1961 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask))
1962 return CHARGE_OOM_DIE;
1964 return CHARGE_RETRY;
1968 * Unlike exported interface, "oom" parameter is added. if oom==true,
1969 * oom-killer can be invoked.
1971 static int __mem_cgroup_try_charge(struct mm_struct *mm,
1973 unsigned int nr_pages,
1974 struct mem_cgroup **memcg,
1977 unsigned int batch = max(CHARGE_BATCH, nr_pages);
1978 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
1979 struct mem_cgroup *mem = NULL;
1983 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
1984 * in system level. So, allow to go ahead dying process in addition to
1987 if (unlikely(test_thread_flag(TIF_MEMDIE)
1988 || fatal_signal_pending(current)))
1992 * We always charge the cgroup the mm_struct belongs to.
1993 * The mm_struct's mem_cgroup changes on task migration if the
1994 * thread group leader migrates. It's possible that mm is not
1995 * set, if so charge the init_mm (happens for pagecache usage).
2000 if (*memcg) { /* css should be a valid one */
2002 VM_BUG_ON(css_is_removed(&mem->css));
2003 if (mem_cgroup_is_root(mem))
2005 if (nr_pages == 1 && consume_stock(mem))
2009 struct task_struct *p;
2012 p = rcu_dereference(mm->owner);
2014 * Because we don't have task_lock(), "p" can exit.
2015 * In that case, "mem" can point to root or p can be NULL with
2016 * race with swapoff. Then, we have small risk of mis-accouning.
2017 * But such kind of mis-account by race always happens because
2018 * we don't have cgroup_mutex(). It's overkill and we allo that
2020 * (*) swapoff at el will charge against mm-struct not against
2021 * task-struct. So, mm->owner can be NULL.
2023 mem = mem_cgroup_from_task(p);
2024 if (!mem || mem_cgroup_is_root(mem)) {
2028 if (nr_pages == 1 && consume_stock(mem)) {
2030 * It seems dagerous to access memcg without css_get().
2031 * But considering how consume_stok works, it's not
2032 * necessary. If consume_stock success, some charges
2033 * from this memcg are cached on this cpu. So, we
2034 * don't need to call css_get()/css_tryget() before
2035 * calling consume_stock().
2040 /* after here, we may be blocked. we need to get refcnt */
2041 if (!css_tryget(&mem->css)) {
2051 /* If killed, bypass charge */
2052 if (fatal_signal_pending(current)) {
2058 if (oom && !nr_oom_retries) {
2060 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2063 ret = mem_cgroup_do_charge(mem, gfp_mask, batch, oom_check);
2067 case CHARGE_RETRY: /* not in OOM situation but retry */
2072 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
2075 case CHARGE_NOMEM: /* OOM routine works */
2080 /* If oom, we never return -ENOMEM */
2083 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
2087 } while (ret != CHARGE_OK);
2089 if (batch > nr_pages)
2090 refill_stock(mem, batch - nr_pages);
2104 * Somemtimes we have to undo a charge we got by try_charge().
2105 * This function is for that and do uncharge, put css's refcnt.
2106 * gotten by try_charge().
2108 static void __mem_cgroup_cancel_charge(struct mem_cgroup *mem,
2109 unsigned int nr_pages)
2111 if (!mem_cgroup_is_root(mem)) {
2112 unsigned long bytes = nr_pages * PAGE_SIZE;
2114 res_counter_uncharge(&mem->res, bytes);
2115 if (do_swap_account)
2116 res_counter_uncharge(&mem->memsw, bytes);
2121 * A helper function to get mem_cgroup from ID. must be called under
2122 * rcu_read_lock(). The caller must check css_is_removed() or some if
2123 * it's concern. (dropping refcnt from swap can be called against removed
2126 static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2128 struct cgroup_subsys_state *css;
2130 /* ID 0 is unused ID */
2133 css = css_lookup(&mem_cgroup_subsys, id);
2136 return container_of(css, struct mem_cgroup, css);
2139 struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
2141 struct mem_cgroup *mem = NULL;
2142 struct page_cgroup *pc;
2146 VM_BUG_ON(!PageLocked(page));
2148 pc = lookup_page_cgroup(page);
2149 lock_page_cgroup(pc);
2150 if (PageCgroupUsed(pc)) {
2151 mem = pc->mem_cgroup;
2152 if (mem && !css_tryget(&mem->css))
2154 } else if (PageSwapCache(page)) {
2155 ent.val = page_private(page);
2156 id = lookup_swap_cgroup(ent);
2158 mem = mem_cgroup_lookup(id);
2159 if (mem && !css_tryget(&mem->css))
2163 unlock_page_cgroup(pc);
2167 static void __mem_cgroup_commit_charge(struct mem_cgroup *mem,
2169 unsigned int nr_pages,
2170 struct page_cgroup *pc,
2171 enum charge_type ctype)
2173 lock_page_cgroup(pc);
2174 if (unlikely(PageCgroupUsed(pc))) {
2175 unlock_page_cgroup(pc);
2176 __mem_cgroup_cancel_charge(mem, nr_pages);
2180 * we don't need page_cgroup_lock about tail pages, becase they are not
2181 * accessed by any other context at this point.
2183 pc->mem_cgroup = mem;
2185 * We access a page_cgroup asynchronously without lock_page_cgroup().
2186 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2187 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2188 * before USED bit, we need memory barrier here.
2189 * See mem_cgroup_add_lru_list(), etc.
2193 case MEM_CGROUP_CHARGE_TYPE_CACHE:
2194 case MEM_CGROUP_CHARGE_TYPE_SHMEM:
2195 SetPageCgroupCache(pc);
2196 SetPageCgroupUsed(pc);
2198 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
2199 ClearPageCgroupCache(pc);
2200 SetPageCgroupUsed(pc);
2206 mem_cgroup_charge_statistics(mem, PageCgroupCache(pc), nr_pages);
2207 unlock_page_cgroup(pc);
2209 * "charge_statistics" updated event counter. Then, check it.
2210 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2211 * if they exceeds softlimit.
2213 memcg_check_events(mem, page);
2216 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
2218 #define PCGF_NOCOPY_AT_SPLIT ((1 << PCG_LOCK) | (1 << PCG_MOVE_LOCK) |\
2219 (1 << PCG_ACCT_LRU) | (1 << PCG_MIGRATION))
2221 * Because tail pages are not marked as "used", set it. We're under
2222 * zone->lru_lock, 'splitting on pmd' and compund_lock.
2224 void mem_cgroup_split_huge_fixup(struct page *head, struct page *tail)
2226 struct page_cgroup *head_pc = lookup_page_cgroup(head);
2227 struct page_cgroup *tail_pc = lookup_page_cgroup(tail);
2228 unsigned long flags;
2230 if (mem_cgroup_disabled())
2233 * We have no races with charge/uncharge but will have races with
2234 * page state accounting.
2236 move_lock_page_cgroup(head_pc, &flags);
2238 tail_pc->mem_cgroup = head_pc->mem_cgroup;
2239 smp_wmb(); /* see __commit_charge() */
2240 if (PageCgroupAcctLRU(head_pc)) {
2242 struct mem_cgroup_per_zone *mz;
2245 * LRU flags cannot be copied because we need to add tail
2246 *.page to LRU by generic call and our hook will be called.
2247 * We hold lru_lock, then, reduce counter directly.
2249 lru = page_lru(head);
2250 mz = page_cgroup_zoneinfo(head_pc->mem_cgroup, head);
2251 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
2253 tail_pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2254 move_unlock_page_cgroup(head_pc, &flags);
2259 * mem_cgroup_move_account - move account of the page
2261 * @nr_pages: number of regular pages (>1 for huge pages)
2262 * @pc: page_cgroup of the page.
2263 * @from: mem_cgroup which the page is moved from.
2264 * @to: mem_cgroup which the page is moved to. @from != @to.
2265 * @uncharge: whether we should call uncharge and css_put against @from.
2267 * The caller must confirm following.
2268 * - page is not on LRU (isolate_page() is useful.)
2269 * - compound_lock is held when nr_pages > 1
2271 * This function doesn't do "charge" nor css_get to new cgroup. It should be
2272 * done by a caller(__mem_cgroup_try_charge would be useful). If @uncharge is
2273 * true, this function does "uncharge" from old cgroup, but it doesn't if
2274 * @uncharge is false, so a caller should do "uncharge".
2276 static int mem_cgroup_move_account(struct page *page,
2277 unsigned int nr_pages,
2278 struct page_cgroup *pc,
2279 struct mem_cgroup *from,
2280 struct mem_cgroup *to,
2283 unsigned long flags;
2286 VM_BUG_ON(from == to);
2287 VM_BUG_ON(PageLRU(page));
2289 * The page is isolated from LRU. So, collapse function
2290 * will not handle this page. But page splitting can happen.
2291 * Do this check under compound_page_lock(). The caller should
2295 if (nr_pages > 1 && !PageTransHuge(page))
2298 lock_page_cgroup(pc);
2301 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2304 move_lock_page_cgroup(pc, &flags);
2306 if (PageCgroupFileMapped(pc)) {
2307 /* Update mapped_file data for mem_cgroup */
2309 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2310 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2313 mem_cgroup_charge_statistics(from, PageCgroupCache(pc), -nr_pages);
2315 /* This is not "cancel", but cancel_charge does all we need. */
2316 __mem_cgroup_cancel_charge(from, nr_pages);
2318 /* caller should have done css_get */
2319 pc->mem_cgroup = to;
2320 mem_cgroup_charge_statistics(to, PageCgroupCache(pc), nr_pages);
2322 * We charges against "to" which may not have any tasks. Then, "to"
2323 * can be under rmdir(). But in current implementation, caller of
2324 * this function is just force_empty() and move charge, so it's
2325 * guaranteed that "to" is never removed. So, we don't check rmdir
2328 move_unlock_page_cgroup(pc, &flags);
2331 unlock_page_cgroup(pc);
2335 memcg_check_events(to, page);
2336 memcg_check_events(from, page);
2342 * move charges to its parent.
2345 static int mem_cgroup_move_parent(struct page *page,
2346 struct page_cgroup *pc,
2347 struct mem_cgroup *child,
2350 struct cgroup *cg = child->css.cgroup;
2351 struct cgroup *pcg = cg->parent;
2352 struct mem_cgroup *parent;
2353 unsigned int nr_pages;
2354 unsigned long uninitialized_var(flags);
2362 if (!get_page_unless_zero(page))
2364 if (isolate_lru_page(page))
2367 nr_pages = hpage_nr_pages(page);
2369 parent = mem_cgroup_from_cont(pcg);
2370 ret = __mem_cgroup_try_charge(NULL, gfp_mask, nr_pages, &parent, false);
2375 flags = compound_lock_irqsave(page);
2377 ret = mem_cgroup_move_account(page, nr_pages, pc, child, parent, true);
2379 __mem_cgroup_cancel_charge(parent, nr_pages);
2382 compound_unlock_irqrestore(page, flags);
2384 putback_lru_page(page);
2392 * Charge the memory controller for page usage.
2394 * 0 if the charge was successful
2395 * < 0 if the cgroup is over its limit
2397 static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
2398 gfp_t gfp_mask, enum charge_type ctype)
2400 struct mem_cgroup *mem = NULL;
2401 unsigned int nr_pages = 1;
2402 struct page_cgroup *pc;
2406 if (PageTransHuge(page)) {
2407 nr_pages <<= compound_order(page);
2408 VM_BUG_ON(!PageTransHuge(page));
2410 * Never OOM-kill a process for a huge page. The
2411 * fault handler will fall back to regular pages.
2416 pc = lookup_page_cgroup(page);
2417 BUG_ON(!pc); /* XXX: remove this and move pc lookup into commit */
2419 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &mem, oom);
2423 __mem_cgroup_commit_charge(mem, page, nr_pages, pc, ctype);
2427 int mem_cgroup_newpage_charge(struct page *page,
2428 struct mm_struct *mm, gfp_t gfp_mask)
2430 if (mem_cgroup_disabled())
2433 * If already mapped, we don't have to account.
2434 * If page cache, page->mapping has address_space.
2435 * But page->mapping may have out-of-use anon_vma pointer,
2436 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
2439 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
2443 return mem_cgroup_charge_common(page, mm, gfp_mask,
2444 MEM_CGROUP_CHARGE_TYPE_MAPPED);
2448 __mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
2449 enum charge_type ctype);
2452 __mem_cgroup_commit_charge_lrucare(struct page *page, struct mem_cgroup *mem,
2453 enum charge_type ctype)
2455 struct page_cgroup *pc = lookup_page_cgroup(page);
2457 * In some case, SwapCache, FUSE(splice_buf->radixtree), the page
2458 * is already on LRU. It means the page may on some other page_cgroup's
2459 * LRU. Take care of it.
2461 mem_cgroup_lru_del_before_commit(page);
2462 __mem_cgroup_commit_charge(mem, page, 1, pc, ctype);
2463 mem_cgroup_lru_add_after_commit(page);
2467 int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2470 struct mem_cgroup *mem = NULL;
2473 if (mem_cgroup_disabled())
2475 if (PageCompound(page))
2478 * Corner case handling. This is called from add_to_page_cache()
2479 * in usual. But some FS (shmem) precharges this page before calling it
2480 * and call add_to_page_cache() with GFP_NOWAIT.
2482 * For GFP_NOWAIT case, the page may be pre-charged before calling
2483 * add_to_page_cache(). (See shmem.c) check it here and avoid to call
2484 * charge twice. (It works but has to pay a bit larger cost.)
2485 * And when the page is SwapCache, it should take swap information
2486 * into account. This is under lock_page() now.
2488 if (!(gfp_mask & __GFP_WAIT)) {
2489 struct page_cgroup *pc;
2491 pc = lookup_page_cgroup(page);
2494 lock_page_cgroup(pc);
2495 if (PageCgroupUsed(pc)) {
2496 unlock_page_cgroup(pc);
2499 unlock_page_cgroup(pc);
2505 if (page_is_file_cache(page)) {
2506 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, &mem, true);
2511 * FUSE reuses pages without going through the final
2512 * put that would remove them from the LRU list, make
2513 * sure that they get relinked properly.
2515 __mem_cgroup_commit_charge_lrucare(page, mem,
2516 MEM_CGROUP_CHARGE_TYPE_CACHE);
2520 if (PageSwapCache(page)) {
2521 ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &mem);
2523 __mem_cgroup_commit_charge_swapin(page, mem,
2524 MEM_CGROUP_CHARGE_TYPE_SHMEM);
2526 ret = mem_cgroup_charge_common(page, mm, gfp_mask,
2527 MEM_CGROUP_CHARGE_TYPE_SHMEM);
2533 * While swap-in, try_charge -> commit or cancel, the page is locked.
2534 * And when try_charge() successfully returns, one refcnt to memcg without
2535 * struct page_cgroup is acquired. This refcnt will be consumed by
2536 * "commit()" or removed by "cancel()"
2538 int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2540 gfp_t mask, struct mem_cgroup **ptr)
2542 struct mem_cgroup *mem;
2547 if (mem_cgroup_disabled())
2550 if (!do_swap_account)
2553 * A racing thread's fault, or swapoff, may have already updated
2554 * the pte, and even removed page from swap cache: in those cases
2555 * do_swap_page()'s pte_same() test will fail; but there's also a
2556 * KSM case which does need to charge the page.
2558 if (!PageSwapCache(page))
2560 mem = try_get_mem_cgroup_from_page(page);
2564 ret = __mem_cgroup_try_charge(NULL, mask, 1, ptr, true);
2570 return __mem_cgroup_try_charge(mm, mask, 1, ptr, true);
2574 __mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
2575 enum charge_type ctype)
2577 if (mem_cgroup_disabled())
2581 cgroup_exclude_rmdir(&ptr->css);
2583 __mem_cgroup_commit_charge_lrucare(page, ptr, ctype);
2585 * Now swap is on-memory. This means this page may be
2586 * counted both as mem and swap....double count.
2587 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2588 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2589 * may call delete_from_swap_cache() before reach here.
2591 if (do_swap_account && PageSwapCache(page)) {
2592 swp_entry_t ent = {.val = page_private(page)};
2594 struct mem_cgroup *memcg;
2596 id = swap_cgroup_record(ent, 0);
2598 memcg = mem_cgroup_lookup(id);
2601 * This recorded memcg can be obsolete one. So, avoid
2602 * calling css_tryget
2604 if (!mem_cgroup_is_root(memcg))
2605 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
2606 mem_cgroup_swap_statistics(memcg, false);
2607 mem_cgroup_put(memcg);
2612 * At swapin, we may charge account against cgroup which has no tasks.
2613 * So, rmdir()->pre_destroy() can be called while we do this charge.
2614 * In that case, we need to call pre_destroy() again. check it here.
2616 cgroup_release_and_wakeup_rmdir(&ptr->css);
2619 void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
2621 __mem_cgroup_commit_charge_swapin(page, ptr,
2622 MEM_CGROUP_CHARGE_TYPE_MAPPED);
2625 void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *mem)
2627 if (mem_cgroup_disabled())
2631 __mem_cgroup_cancel_charge(mem, 1);
2634 static void mem_cgroup_do_uncharge(struct mem_cgroup *mem,
2635 unsigned int nr_pages,
2636 const enum charge_type ctype)
2638 struct memcg_batch_info *batch = NULL;
2639 bool uncharge_memsw = true;
2641 /* If swapout, usage of swap doesn't decrease */
2642 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2643 uncharge_memsw = false;
2645 batch = ¤t->memcg_batch;
2647 * In usual, we do css_get() when we remember memcg pointer.
2648 * But in this case, we keep res->usage until end of a series of
2649 * uncharges. Then, it's ok to ignore memcg's refcnt.
2654 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
2655 * In those cases, all pages freed continuously can be expected to be in
2656 * the same cgroup and we have chance to coalesce uncharges.
2657 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
2658 * because we want to do uncharge as soon as possible.
2661 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
2662 goto direct_uncharge;
2665 goto direct_uncharge;
2668 * In typical case, batch->memcg == mem. This means we can
2669 * merge a series of uncharges to an uncharge of res_counter.
2670 * If not, we uncharge res_counter ony by one.
2672 if (batch->memcg != mem)
2673 goto direct_uncharge;
2674 /* remember freed charge and uncharge it later */
2677 batch->memsw_nr_pages++;
2680 res_counter_uncharge(&mem->res, nr_pages * PAGE_SIZE);
2682 res_counter_uncharge(&mem->memsw, nr_pages * PAGE_SIZE);
2683 if (unlikely(batch->memcg != mem))
2684 memcg_oom_recover(mem);
2689 * uncharge if !page_mapped(page)
2691 static struct mem_cgroup *
2692 __mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
2694 struct mem_cgroup *mem = NULL;
2695 unsigned int nr_pages = 1;
2696 struct page_cgroup *pc;
2698 if (mem_cgroup_disabled())
2701 if (PageSwapCache(page))
2704 if (PageTransHuge(page)) {
2705 nr_pages <<= compound_order(page);
2706 VM_BUG_ON(!PageTransHuge(page));
2709 * Check if our page_cgroup is valid
2711 pc = lookup_page_cgroup(page);
2712 if (unlikely(!pc || !PageCgroupUsed(pc)))
2715 lock_page_cgroup(pc);
2717 mem = pc->mem_cgroup;
2719 if (!PageCgroupUsed(pc))
2723 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
2724 case MEM_CGROUP_CHARGE_TYPE_DROP:
2725 /* See mem_cgroup_prepare_migration() */
2726 if (page_mapped(page) || PageCgroupMigration(pc))
2729 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
2730 if (!PageAnon(page)) { /* Shared memory */
2731 if (page->mapping && !page_is_file_cache(page))
2733 } else if (page_mapped(page)) /* Anon */
2740 mem_cgroup_charge_statistics(mem, PageCgroupCache(pc), -nr_pages);
2742 ClearPageCgroupUsed(pc);
2744 * pc->mem_cgroup is not cleared here. It will be accessed when it's
2745 * freed from LRU. This is safe because uncharged page is expected not
2746 * to be reused (freed soon). Exception is SwapCache, it's handled by
2747 * special functions.
2750 unlock_page_cgroup(pc);
2752 * even after unlock, we have mem->res.usage here and this memcg
2753 * will never be freed.
2755 memcg_check_events(mem, page);
2756 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
2757 mem_cgroup_swap_statistics(mem, true);
2758 mem_cgroup_get(mem);
2760 if (!mem_cgroup_is_root(mem))
2761 mem_cgroup_do_uncharge(mem, nr_pages, ctype);
2766 unlock_page_cgroup(pc);
2770 void mem_cgroup_uncharge_page(struct page *page)
2773 if (page_mapped(page))
2775 if (page->mapping && !PageAnon(page))
2777 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
2780 void mem_cgroup_uncharge_cache_page(struct page *page)
2782 VM_BUG_ON(page_mapped(page));
2783 VM_BUG_ON(page->mapping);
2784 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
2788 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
2789 * In that cases, pages are freed continuously and we can expect pages
2790 * are in the same memcg. All these calls itself limits the number of
2791 * pages freed at once, then uncharge_start/end() is called properly.
2792 * This may be called prural(2) times in a context,
2795 void mem_cgroup_uncharge_start(void)
2797 current->memcg_batch.do_batch++;
2798 /* We can do nest. */
2799 if (current->memcg_batch.do_batch == 1) {
2800 current->memcg_batch.memcg = NULL;
2801 current->memcg_batch.nr_pages = 0;
2802 current->memcg_batch.memsw_nr_pages = 0;
2806 void mem_cgroup_uncharge_end(void)
2808 struct memcg_batch_info *batch = ¤t->memcg_batch;
2810 if (!batch->do_batch)
2814 if (batch->do_batch) /* If stacked, do nothing. */
2820 * This "batch->memcg" is valid without any css_get/put etc...
2821 * bacause we hide charges behind us.
2823 if (batch->nr_pages)
2824 res_counter_uncharge(&batch->memcg->res,
2825 batch->nr_pages * PAGE_SIZE);
2826 if (batch->memsw_nr_pages)
2827 res_counter_uncharge(&batch->memcg->memsw,
2828 batch->memsw_nr_pages * PAGE_SIZE);
2829 memcg_oom_recover(batch->memcg);
2830 /* forget this pointer (for sanity check) */
2831 batch->memcg = NULL;
2836 * called after __delete_from_swap_cache() and drop "page" account.
2837 * memcg information is recorded to swap_cgroup of "ent"
2840 mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
2842 struct mem_cgroup *memcg;
2843 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
2845 if (!swapout) /* this was a swap cache but the swap is unused ! */
2846 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
2848 memcg = __mem_cgroup_uncharge_common(page, ctype);
2851 * record memcg information, if swapout && memcg != NULL,
2852 * mem_cgroup_get() was called in uncharge().
2854 if (do_swap_account && swapout && memcg)
2855 swap_cgroup_record(ent, css_id(&memcg->css));
2859 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
2861 * called from swap_entry_free(). remove record in swap_cgroup and
2862 * uncharge "memsw" account.
2864 void mem_cgroup_uncharge_swap(swp_entry_t ent)
2866 struct mem_cgroup *memcg;
2869 if (!do_swap_account)
2872 id = swap_cgroup_record(ent, 0);
2874 memcg = mem_cgroup_lookup(id);
2877 * We uncharge this because swap is freed.
2878 * This memcg can be obsolete one. We avoid calling css_tryget
2880 if (!mem_cgroup_is_root(memcg))
2881 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
2882 mem_cgroup_swap_statistics(memcg, false);
2883 mem_cgroup_put(memcg);
2889 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
2890 * @entry: swap entry to be moved
2891 * @from: mem_cgroup which the entry is moved from
2892 * @to: mem_cgroup which the entry is moved to
2893 * @need_fixup: whether we should fixup res_counters and refcounts.
2895 * It succeeds only when the swap_cgroup's record for this entry is the same
2896 * as the mem_cgroup's id of @from.
2898 * Returns 0 on success, -EINVAL on failure.
2900 * The caller must have charged to @to, IOW, called res_counter_charge() about
2901 * both res and memsw, and called css_get().
2903 static int mem_cgroup_move_swap_account(swp_entry_t entry,
2904 struct mem_cgroup *from, struct mem_cgroup *to, bool need_fixup)
2906 unsigned short old_id, new_id;
2908 old_id = css_id(&from->css);
2909 new_id = css_id(&to->css);
2911 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
2912 mem_cgroup_swap_statistics(from, false);
2913 mem_cgroup_swap_statistics(to, true);
2915 * This function is only called from task migration context now.
2916 * It postpones res_counter and refcount handling till the end
2917 * of task migration(mem_cgroup_clear_mc()) for performance
2918 * improvement. But we cannot postpone mem_cgroup_get(to)
2919 * because if the process that has been moved to @to does
2920 * swap-in, the refcount of @to might be decreased to 0.
2924 if (!mem_cgroup_is_root(from))
2925 res_counter_uncharge(&from->memsw, PAGE_SIZE);
2926 mem_cgroup_put(from);
2928 * we charged both to->res and to->memsw, so we should
2931 if (!mem_cgroup_is_root(to))
2932 res_counter_uncharge(&to->res, PAGE_SIZE);
2939 static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
2940 struct mem_cgroup *from, struct mem_cgroup *to, bool need_fixup)
2947 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
2950 int mem_cgroup_prepare_migration(struct page *page,
2951 struct page *newpage, struct mem_cgroup **ptr, gfp_t gfp_mask)
2953 struct mem_cgroup *mem = NULL;
2954 struct page_cgroup *pc;
2955 enum charge_type ctype;
2960 VM_BUG_ON(PageTransHuge(page));
2961 if (mem_cgroup_disabled())
2964 pc = lookup_page_cgroup(page);
2965 lock_page_cgroup(pc);
2966 if (PageCgroupUsed(pc)) {
2967 mem = pc->mem_cgroup;
2970 * At migrating an anonymous page, its mapcount goes down
2971 * to 0 and uncharge() will be called. But, even if it's fully
2972 * unmapped, migration may fail and this page has to be
2973 * charged again. We set MIGRATION flag here and delay uncharge
2974 * until end_migration() is called
2976 * Corner Case Thinking
2978 * When the old page was mapped as Anon and it's unmap-and-freed
2979 * while migration was ongoing.
2980 * If unmap finds the old page, uncharge() of it will be delayed
2981 * until end_migration(). If unmap finds a new page, it's
2982 * uncharged when it make mapcount to be 1->0. If unmap code
2983 * finds swap_migration_entry, the new page will not be mapped
2984 * and end_migration() will find it(mapcount==0).
2987 * When the old page was mapped but migraion fails, the kernel
2988 * remaps it. A charge for it is kept by MIGRATION flag even
2989 * if mapcount goes down to 0. We can do remap successfully
2990 * without charging it again.
2993 * The "old" page is under lock_page() until the end of
2994 * migration, so, the old page itself will not be swapped-out.
2995 * If the new page is swapped out before end_migraton, our
2996 * hook to usual swap-out path will catch the event.
2999 SetPageCgroupMigration(pc);
3001 unlock_page_cgroup(pc);
3003 * If the page is not charged at this point,
3010 ret = __mem_cgroup_try_charge(NULL, gfp_mask, 1, ptr, false);
3011 css_put(&mem->css);/* drop extra refcnt */
3012 if (ret || *ptr == NULL) {
3013 if (PageAnon(page)) {
3014 lock_page_cgroup(pc);
3015 ClearPageCgroupMigration(pc);
3016 unlock_page_cgroup(pc);
3018 * The old page may be fully unmapped while we kept it.
3020 mem_cgroup_uncharge_page(page);
3025 * We charge new page before it's used/mapped. So, even if unlock_page()
3026 * is called before end_migration, we can catch all events on this new
3027 * page. In the case new page is migrated but not remapped, new page's
3028 * mapcount will be finally 0 and we call uncharge in end_migration().
3030 pc = lookup_page_cgroup(newpage);
3032 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
3033 else if (page_is_file_cache(page))
3034 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
3036 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
3037 __mem_cgroup_commit_charge(mem, page, 1, pc, ctype);
3041 /* remove redundant charge if migration failed*/
3042 void mem_cgroup_end_migration(struct mem_cgroup *mem,
3043 struct page *oldpage, struct page *newpage, bool migration_ok)
3045 struct page *used, *unused;
3046 struct page_cgroup *pc;
3050 /* blocks rmdir() */
3051 cgroup_exclude_rmdir(&mem->css);
3052 if (!migration_ok) {
3060 * We disallowed uncharge of pages under migration because mapcount
3061 * of the page goes down to zero, temporarly.
3062 * Clear the flag and check the page should be charged.
3064 pc = lookup_page_cgroup(oldpage);
3065 lock_page_cgroup(pc);
3066 ClearPageCgroupMigration(pc);
3067 unlock_page_cgroup(pc);
3069 __mem_cgroup_uncharge_common(unused, MEM_CGROUP_CHARGE_TYPE_FORCE);
3072 * If a page is a file cache, radix-tree replacement is very atomic
3073 * and we can skip this check. When it was an Anon page, its mapcount
3074 * goes down to 0. But because we added MIGRATION flage, it's not
3075 * uncharged yet. There are several case but page->mapcount check
3076 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3077 * check. (see prepare_charge() also)
3080 mem_cgroup_uncharge_page(used);
3082 * At migration, we may charge account against cgroup which has no
3084 * So, rmdir()->pre_destroy() can be called while we do this charge.
3085 * In that case, we need to call pre_destroy() again. check it here.
3087 cgroup_release_and_wakeup_rmdir(&mem->css);
3091 * A call to try to shrink memory usage on charge failure at shmem's swapin.
3092 * Calling hierarchical_reclaim is not enough because we should update
3093 * last_oom_jiffies to prevent pagefault_out_of_memory from invoking global OOM.
3094 * Moreover considering hierarchy, we should reclaim from the mem_over_limit,
3095 * not from the memcg which this page would be charged to.
3096 * try_charge_swapin does all of these works properly.
3098 int mem_cgroup_shmem_charge_fallback(struct page *page,
3099 struct mm_struct *mm,
3102 struct mem_cgroup *mem;
3105 if (mem_cgroup_disabled())
3108 ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &mem);
3110 mem_cgroup_cancel_charge_swapin(mem); /* it does !mem check */
3115 #ifdef CONFIG_DEBUG_VM
3116 static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3118 struct page_cgroup *pc;
3120 pc = lookup_page_cgroup(page);
3121 if (likely(pc) && PageCgroupUsed(pc))
3126 bool mem_cgroup_bad_page_check(struct page *page)
3128 if (mem_cgroup_disabled())
3131 return lookup_page_cgroup_used(page) != NULL;
3134 void mem_cgroup_print_bad_page(struct page *page)
3136 struct page_cgroup *pc;
3138 pc = lookup_page_cgroup_used(page);
3143 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p",
3144 pc, pc->flags, pc->mem_cgroup);
3146 path = kmalloc(PATH_MAX, GFP_KERNEL);
3149 ret = cgroup_path(pc->mem_cgroup->css.cgroup,
3154 printk(KERN_CONT "(%s)\n",
3155 (ret < 0) ? "cannot get the path" : path);
3161 static DEFINE_MUTEX(set_limit_mutex);
3163 static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
3164 unsigned long long val)
3167 u64 memswlimit, memlimit;
3169 int children = mem_cgroup_count_children(memcg);
3170 u64 curusage, oldusage;
3174 * For keeping hierarchical_reclaim simple, how long we should retry
3175 * is depends on callers. We set our retry-count to be function
3176 * of # of children which we should visit in this loop.
3178 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3180 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3183 while (retry_count) {
3184 if (signal_pending(current)) {
3189 * Rather than hide all in some function, I do this in
3190 * open coded manner. You see what this really does.
3191 * We have to guarantee mem->res.limit < mem->memsw.limit.
3193 mutex_lock(&set_limit_mutex);
3194 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3195 if (memswlimit < val) {
3197 mutex_unlock(&set_limit_mutex);
3201 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3205 ret = res_counter_set_limit(&memcg->res, val);
3207 if (memswlimit == val)
3208 memcg->memsw_is_minimum = true;
3210 memcg->memsw_is_minimum = false;
3212 mutex_unlock(&set_limit_mutex);
3217 mem_cgroup_hierarchical_reclaim(memcg, NULL, GFP_KERNEL,
3218 MEM_CGROUP_RECLAIM_SHRINK,
3220 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3221 /* Usage is reduced ? */
3222 if (curusage >= oldusage)
3225 oldusage = curusage;
3227 if (!ret && enlarge)
3228 memcg_oom_recover(memcg);
3233 static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3234 unsigned long long val)
3237 u64 memlimit, memswlimit, oldusage, curusage;
3238 int children = mem_cgroup_count_children(memcg);
3242 /* see mem_cgroup_resize_res_limit */
3243 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3244 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
3245 while (retry_count) {
3246 if (signal_pending(current)) {
3251 * Rather than hide all in some function, I do this in
3252 * open coded manner. You see what this really does.
3253 * We have to guarantee mem->res.limit < mem->memsw.limit.
3255 mutex_lock(&set_limit_mutex);
3256 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3257 if (memlimit > val) {
3259 mutex_unlock(&set_limit_mutex);
3262 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3263 if (memswlimit < val)
3265 ret = res_counter_set_limit(&memcg->memsw, val);
3267 if (memlimit == val)
3268 memcg->memsw_is_minimum = true;
3270 memcg->memsw_is_minimum = false;
3272 mutex_unlock(&set_limit_mutex);
3277 mem_cgroup_hierarchical_reclaim(memcg, NULL, GFP_KERNEL,
3278 MEM_CGROUP_RECLAIM_NOSWAP |
3279 MEM_CGROUP_RECLAIM_SHRINK,
3281 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
3282 /* Usage is reduced ? */
3283 if (curusage >= oldusage)
3286 oldusage = curusage;
3288 if (!ret && enlarge)
3289 memcg_oom_recover(memcg);
3293 unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
3295 unsigned long *total_scanned)
3297 unsigned long nr_reclaimed = 0;
3298 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3299 unsigned long reclaimed;
3301 struct mem_cgroup_tree_per_zone *mctz;
3302 unsigned long long excess;
3303 unsigned long nr_scanned;
3308 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
3310 * This loop can run a while, specially if mem_cgroup's continuously
3311 * keep exceeding their soft limit and putting the system under
3318 mz = mem_cgroup_largest_soft_limit_node(mctz);
3323 reclaimed = mem_cgroup_hierarchical_reclaim(mz->mem, zone,
3325 MEM_CGROUP_RECLAIM_SOFT,
3327 nr_reclaimed += reclaimed;
3328 *total_scanned += nr_scanned;
3329 spin_lock(&mctz->lock);
3332 * If we failed to reclaim anything from this memory cgroup
3333 * it is time to move on to the next cgroup
3339 * Loop until we find yet another one.
3341 * By the time we get the soft_limit lock
3342 * again, someone might have aded the
3343 * group back on the RB tree. Iterate to
3344 * make sure we get a different mem.
3345 * mem_cgroup_largest_soft_limit_node returns
3346 * NULL if no other cgroup is present on
3350 __mem_cgroup_largest_soft_limit_node(mctz);
3352 css_put(&next_mz->mem->css);
3353 else /* next_mz == NULL or other memcg */
3357 __mem_cgroup_remove_exceeded(mz->mem, mz, mctz);
3358 excess = res_counter_soft_limit_excess(&mz->mem->res);
3360 * One school of thought says that we should not add
3361 * back the node to the tree if reclaim returns 0.
3362 * But our reclaim could return 0, simply because due
3363 * to priority we are exposing a smaller subset of
3364 * memory to reclaim from. Consider this as a longer
3367 /* If excess == 0, no tree ops */
3368 __mem_cgroup_insert_exceeded(mz->mem, mz, mctz, excess);
3369 spin_unlock(&mctz->lock);
3370 css_put(&mz->mem->css);
3373 * Could not reclaim anything and there are no more
3374 * mem cgroups to try or we seem to be looping without
3375 * reclaiming anything.
3377 if (!nr_reclaimed &&
3379 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3381 } while (!nr_reclaimed);
3383 css_put(&next_mz->mem->css);
3384 return nr_reclaimed;
3388 * This routine traverse page_cgroup in given list and drop them all.
3389 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
3391 static int mem_cgroup_force_empty_list(struct mem_cgroup *mem,
3392 int node, int zid, enum lru_list lru)
3395 struct mem_cgroup_per_zone *mz;
3396 struct page_cgroup *pc, *busy;
3397 unsigned long flags, loop;
3398 struct list_head *list;
3401 zone = &NODE_DATA(node)->node_zones[zid];
3402 mz = mem_cgroup_zoneinfo(mem, node, zid);
3403 list = &mz->lists[lru];
3405 loop = MEM_CGROUP_ZSTAT(mz, lru);
3406 /* give some margin against EBUSY etc...*/
3413 spin_lock_irqsave(&zone->lru_lock, flags);
3414 if (list_empty(list)) {
3415 spin_unlock_irqrestore(&zone->lru_lock, flags);
3418 pc = list_entry(list->prev, struct page_cgroup, lru);
3420 list_move(&pc->lru, list);
3422 spin_unlock_irqrestore(&zone->lru_lock, flags);
3425 spin_unlock_irqrestore(&zone->lru_lock, flags);
3427 page = lookup_cgroup_page(pc);
3429 ret = mem_cgroup_move_parent(page, pc, mem, GFP_KERNEL);
3433 if (ret == -EBUSY || ret == -EINVAL) {
3434 /* found lock contention or "pc" is obsolete. */
3441 if (!ret && !list_empty(list))
3447 * make mem_cgroup's charge to be 0 if there is no task.
3448 * This enables deleting this mem_cgroup.
3450 static int mem_cgroup_force_empty(struct mem_cgroup *mem, bool free_all)
3453 int node, zid, shrink;
3454 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
3455 struct cgroup *cgrp = mem->css.cgroup;
3460 /* should free all ? */
3466 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
3469 if (signal_pending(current))
3471 /* This is for making all *used* pages to be on LRU. */
3472 lru_add_drain_all();
3473 drain_all_stock_sync();
3475 mem_cgroup_start_move(mem);
3476 for_each_node_state(node, N_HIGH_MEMORY) {
3477 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
3480 ret = mem_cgroup_force_empty_list(mem,
3489 mem_cgroup_end_move(mem);
3490 memcg_oom_recover(mem);
3491 /* it seems parent cgroup doesn't have enough mem */
3495 /* "ret" should also be checked to ensure all lists are empty. */
3496 } while (mem->res.usage > 0 || ret);
3502 /* returns EBUSY if there is a task or if we come here twice. */
3503 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
3507 /* we call try-to-free pages for make this cgroup empty */
3508 lru_add_drain_all();
3509 /* try to free all pages in this cgroup */
3511 while (nr_retries && mem->res.usage > 0) {
3514 if (signal_pending(current)) {
3518 progress = try_to_free_mem_cgroup_pages(mem, GFP_KERNEL,
3519 false, get_swappiness(mem));
3522 /* maybe some writeback is necessary */
3523 congestion_wait(BLK_RW_ASYNC, HZ/10);
3528 /* try move_account...there may be some *locked* pages. */
3532 int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
3534 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3538 static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3540 return mem_cgroup_from_cont(cont)->use_hierarchy;
3543 static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3547 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
3548 struct cgroup *parent = cont->parent;
3549 struct mem_cgroup *parent_mem = NULL;
3552 parent_mem = mem_cgroup_from_cont(parent);
3556 * If parent's use_hierarchy is set, we can't make any modifications
3557 * in the child subtrees. If it is unset, then the change can
3558 * occur, provided the current cgroup has no children.
3560 * For the root cgroup, parent_mem is NULL, we allow value to be
3561 * set if there are no children.
3563 if ((!parent_mem || !parent_mem->use_hierarchy) &&
3564 (val == 1 || val == 0)) {
3565 if (list_empty(&cont->children))
3566 mem->use_hierarchy = val;
3577 static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *mem,
3578 enum mem_cgroup_stat_index idx)
3580 struct mem_cgroup *iter;
3583 /* Per-cpu values can be negative, use a signed accumulator */
3584 for_each_mem_cgroup_tree(iter, mem)
3585 val += mem_cgroup_read_stat(iter, idx);
3587 if (val < 0) /* race ? */
3592 static inline u64 mem_cgroup_usage(struct mem_cgroup *mem, bool swap)
3596 if (!mem_cgroup_is_root(mem)) {
3598 return res_counter_read_u64(&mem->res, RES_USAGE);
3600 return res_counter_read_u64(&mem->memsw, RES_USAGE);
3603 val = mem_cgroup_recursive_stat(mem, MEM_CGROUP_STAT_CACHE);
3604 val += mem_cgroup_recursive_stat(mem, MEM_CGROUP_STAT_RSS);
3607 val += mem_cgroup_recursive_stat(mem, MEM_CGROUP_STAT_SWAPOUT);
3609 return val << PAGE_SHIFT;
3612 static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
3614 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
3618 type = MEMFILE_TYPE(cft->private);
3619 name = MEMFILE_ATTR(cft->private);
3622 if (name == RES_USAGE)
3623 val = mem_cgroup_usage(mem, false);
3625 val = res_counter_read_u64(&mem->res, name);
3628 if (name == RES_USAGE)
3629 val = mem_cgroup_usage(mem, true);
3631 val = res_counter_read_u64(&mem->memsw, name);
3640 * The user of this function is...
3643 static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
3646 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
3648 unsigned long long val;
3651 type = MEMFILE_TYPE(cft->private);
3652 name = MEMFILE_ATTR(cft->private);
3655 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3659 /* This function does all necessary parse...reuse it */
3660 ret = res_counter_memparse_write_strategy(buffer, &val);
3664 ret = mem_cgroup_resize_limit(memcg, val);
3666 ret = mem_cgroup_resize_memsw_limit(memcg, val);
3668 case RES_SOFT_LIMIT:
3669 ret = res_counter_memparse_write_strategy(buffer, &val);
3673 * For memsw, soft limits are hard to implement in terms
3674 * of semantics, for now, we support soft limits for
3675 * control without swap
3678 ret = res_counter_set_soft_limit(&memcg->res, val);
3683 ret = -EINVAL; /* should be BUG() ? */
3689 static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
3690 unsigned long long *mem_limit, unsigned long long *memsw_limit)
3692 struct cgroup *cgroup;
3693 unsigned long long min_limit, min_memsw_limit, tmp;
3695 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3696 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3697 cgroup = memcg->css.cgroup;
3698 if (!memcg->use_hierarchy)
3701 while (cgroup->parent) {
3702 cgroup = cgroup->parent;
3703 memcg = mem_cgroup_from_cont(cgroup);
3704 if (!memcg->use_hierarchy)
3706 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
3707 min_limit = min(min_limit, tmp);
3708 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3709 min_memsw_limit = min(min_memsw_limit, tmp);
3712 *mem_limit = min_limit;
3713 *memsw_limit = min_memsw_limit;
3717 static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
3719 struct mem_cgroup *mem;
3722 mem = mem_cgroup_from_cont(cont);
3723 type = MEMFILE_TYPE(event);
3724 name = MEMFILE_ATTR(event);
3728 res_counter_reset_max(&mem->res);
3730 res_counter_reset_max(&mem->memsw);
3734 res_counter_reset_failcnt(&mem->res);
3736 res_counter_reset_failcnt(&mem->memsw);
3743 static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
3746 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
3750 static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
3751 struct cftype *cft, u64 val)
3753 struct mem_cgroup *mem = mem_cgroup_from_cont(cgrp);
3755 if (val >= (1 << NR_MOVE_TYPE))
3758 * We check this value several times in both in can_attach() and
3759 * attach(), so we need cgroup lock to prevent this value from being
3763 mem->move_charge_at_immigrate = val;
3769 static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
3770 struct cftype *cft, u64 val)
3777 /* For read statistics */
3793 struct mcs_total_stat {
3794 s64 stat[NR_MCS_STAT];
3800 } memcg_stat_strings[NR_MCS_STAT] = {
3801 {"cache", "total_cache"},
3802 {"rss", "total_rss"},
3803 {"mapped_file", "total_mapped_file"},
3804 {"pgpgin", "total_pgpgin"},
3805 {"pgpgout", "total_pgpgout"},
3806 {"swap", "total_swap"},
3807 {"inactive_anon", "total_inactive_anon"},
3808 {"active_anon", "total_active_anon"},
3809 {"inactive_file", "total_inactive_file"},
3810 {"active_file", "total_active_file"},
3811 {"unevictable", "total_unevictable"}
3816 mem_cgroup_get_local_stat(struct mem_cgroup *mem, struct mcs_total_stat *s)
3821 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_CACHE);
3822 s->stat[MCS_CACHE] += val * PAGE_SIZE;
3823 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_RSS);
3824 s->stat[MCS_RSS] += val * PAGE_SIZE;
3825 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_FILE_MAPPED);
3826 s->stat[MCS_FILE_MAPPED] += val * PAGE_SIZE;
3827 val = mem_cgroup_read_events(mem, MEM_CGROUP_EVENTS_PGPGIN);
3828 s->stat[MCS_PGPGIN] += val;
3829 val = mem_cgroup_read_events(mem, MEM_CGROUP_EVENTS_PGPGOUT);
3830 s->stat[MCS_PGPGOUT] += val;
3831 if (do_swap_account) {
3832 val = mem_cgroup_read_stat(mem, MEM_CGROUP_STAT_SWAPOUT);
3833 s->stat[MCS_SWAP] += val * PAGE_SIZE;
3837 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_ANON);
3838 s->stat[MCS_INACTIVE_ANON] += val * PAGE_SIZE;
3839 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_ANON);
3840 s->stat[MCS_ACTIVE_ANON] += val * PAGE_SIZE;
3841 val = mem_cgroup_get_local_zonestat(mem, LRU_INACTIVE_FILE);
3842 s->stat[MCS_INACTIVE_FILE] += val * PAGE_SIZE;
3843 val = mem_cgroup_get_local_zonestat(mem, LRU_ACTIVE_FILE);
3844 s->stat[MCS_ACTIVE_FILE] += val * PAGE_SIZE;
3845 val = mem_cgroup_get_local_zonestat(mem, LRU_UNEVICTABLE);
3846 s->stat[MCS_UNEVICTABLE] += val * PAGE_SIZE;
3850 mem_cgroup_get_total_stat(struct mem_cgroup *mem, struct mcs_total_stat *s)
3852 struct mem_cgroup *iter;
3854 for_each_mem_cgroup_tree(iter, mem)
3855 mem_cgroup_get_local_stat(iter, s);
3858 static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
3859 struct cgroup_map_cb *cb)
3861 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
3862 struct mcs_total_stat mystat;
3865 memset(&mystat, 0, sizeof(mystat));
3866 mem_cgroup_get_local_stat(mem_cont, &mystat);
3868 for (i = 0; i < NR_MCS_STAT; i++) {
3869 if (i == MCS_SWAP && !do_swap_account)
3871 cb->fill(cb, memcg_stat_strings[i].local_name, mystat.stat[i]);
3874 /* Hierarchical information */
3876 unsigned long long limit, memsw_limit;
3877 memcg_get_hierarchical_limit(mem_cont, &limit, &memsw_limit);
3878 cb->fill(cb, "hierarchical_memory_limit", limit);
3879 if (do_swap_account)
3880 cb->fill(cb, "hierarchical_memsw_limit", memsw_limit);
3883 memset(&mystat, 0, sizeof(mystat));
3884 mem_cgroup_get_total_stat(mem_cont, &mystat);
3885 for (i = 0; i < NR_MCS_STAT; i++) {
3886 if (i == MCS_SWAP && !do_swap_account)
3888 cb->fill(cb, memcg_stat_strings[i].total_name, mystat.stat[i]);
3891 #ifdef CONFIG_DEBUG_VM
3892 cb->fill(cb, "inactive_ratio", calc_inactive_ratio(mem_cont, NULL));
3896 struct mem_cgroup_per_zone *mz;
3897 unsigned long recent_rotated[2] = {0, 0};
3898 unsigned long recent_scanned[2] = {0, 0};
3900 for_each_online_node(nid)
3901 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
3902 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
3904 recent_rotated[0] +=
3905 mz->reclaim_stat.recent_rotated[0];
3906 recent_rotated[1] +=
3907 mz->reclaim_stat.recent_rotated[1];
3908 recent_scanned[0] +=
3909 mz->reclaim_stat.recent_scanned[0];
3910 recent_scanned[1] +=
3911 mz->reclaim_stat.recent_scanned[1];
3913 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
3914 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
3915 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
3916 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
3923 static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
3925 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
3927 return get_swappiness(memcg);
3930 static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
3933 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
3934 struct mem_cgroup *parent;
3939 if (cgrp->parent == NULL)
3942 parent = mem_cgroup_from_cont(cgrp->parent);
3946 /* If under hierarchy, only empty-root can set this value */
3947 if ((parent->use_hierarchy) ||
3948 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
3953 memcg->swappiness = val;
3960 static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
3962 struct mem_cgroup_threshold_ary *t;
3968 t = rcu_dereference(memcg->thresholds.primary);
3970 t = rcu_dereference(memcg->memsw_thresholds.primary);
3975 usage = mem_cgroup_usage(memcg, swap);
3978 * current_threshold points to threshold just below usage.
3979 * If it's not true, a threshold was crossed after last
3980 * call of __mem_cgroup_threshold().
3982 i = t->current_threshold;
3985 * Iterate backward over array of thresholds starting from
3986 * current_threshold and check if a threshold is crossed.
3987 * If none of thresholds below usage is crossed, we read
3988 * only one element of the array here.
3990 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
3991 eventfd_signal(t->entries[i].eventfd, 1);
3993 /* i = current_threshold + 1 */
3997 * Iterate forward over array of thresholds starting from
3998 * current_threshold+1 and check if a threshold is crossed.
3999 * If none of thresholds above usage is crossed, we read
4000 * only one element of the array here.
4002 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4003 eventfd_signal(t->entries[i].eventfd, 1);
4005 /* Update current_threshold */
4006 t->current_threshold = i - 1;
4011 static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4014 __mem_cgroup_threshold(memcg, false);
4015 if (do_swap_account)
4016 __mem_cgroup_threshold(memcg, true);
4018 memcg = parent_mem_cgroup(memcg);
4022 static int compare_thresholds(const void *a, const void *b)
4024 const struct mem_cgroup_threshold *_a = a;
4025 const struct mem_cgroup_threshold *_b = b;
4027 return _a->threshold - _b->threshold;
4030 static int mem_cgroup_oom_notify_cb(struct mem_cgroup *mem)
4032 struct mem_cgroup_eventfd_list *ev;
4034 list_for_each_entry(ev, &mem->oom_notify, list)
4035 eventfd_signal(ev->eventfd, 1);
4039 static void mem_cgroup_oom_notify(struct mem_cgroup *mem)
4041 struct mem_cgroup *iter;
4043 for_each_mem_cgroup_tree(iter, mem)
4044 mem_cgroup_oom_notify_cb(iter);
4047 static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4048 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4050 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4051 struct mem_cgroup_thresholds *thresholds;
4052 struct mem_cgroup_threshold_ary *new;
4053 int type = MEMFILE_TYPE(cft->private);
4054 u64 threshold, usage;
4057 ret = res_counter_memparse_write_strategy(args, &threshold);
4061 mutex_lock(&memcg->thresholds_lock);
4064 thresholds = &memcg->thresholds;
4065 else if (type == _MEMSWAP)
4066 thresholds = &memcg->memsw_thresholds;
4070 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4072 /* Check if a threshold crossed before adding a new one */
4073 if (thresholds->primary)
4074 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4076 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
4078 /* Allocate memory for new array of thresholds */
4079 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
4087 /* Copy thresholds (if any) to new array */
4088 if (thresholds->primary) {
4089 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
4090 sizeof(struct mem_cgroup_threshold));
4093 /* Add new threshold */
4094 new->entries[size - 1].eventfd = eventfd;
4095 new->entries[size - 1].threshold = threshold;
4097 /* Sort thresholds. Registering of new threshold isn't time-critical */
4098 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
4099 compare_thresholds, NULL);
4101 /* Find current threshold */
4102 new->current_threshold = -1;
4103 for (i = 0; i < size; i++) {
4104 if (new->entries[i].threshold < usage) {
4106 * new->current_threshold will not be used until
4107 * rcu_assign_pointer(), so it's safe to increment
4110 ++new->current_threshold;
4114 /* Free old spare buffer and save old primary buffer as spare */
4115 kfree(thresholds->spare);
4116 thresholds->spare = thresholds->primary;
4118 rcu_assign_pointer(thresholds->primary, new);
4120 /* To be sure that nobody uses thresholds */
4124 mutex_unlock(&memcg->thresholds_lock);
4129 static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
4130 struct cftype *cft, struct eventfd_ctx *eventfd)
4132 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4133 struct mem_cgroup_thresholds *thresholds;
4134 struct mem_cgroup_threshold_ary *new;
4135 int type = MEMFILE_TYPE(cft->private);
4139 mutex_lock(&memcg->thresholds_lock);
4141 thresholds = &memcg->thresholds;
4142 else if (type == _MEMSWAP)
4143 thresholds = &memcg->memsw_thresholds;
4148 * Something went wrong if we trying to unregister a threshold
4149 * if we don't have thresholds
4151 BUG_ON(!thresholds);
4153 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4155 /* Check if a threshold crossed before removing */
4156 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4158 /* Calculate new number of threshold */
4160 for (i = 0; i < thresholds->primary->size; i++) {
4161 if (thresholds->primary->entries[i].eventfd != eventfd)
4165 new = thresholds->spare;
4167 /* Set thresholds array to NULL if we don't have thresholds */
4176 /* Copy thresholds and find current threshold */
4177 new->current_threshold = -1;
4178 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4179 if (thresholds->primary->entries[i].eventfd == eventfd)
4182 new->entries[j] = thresholds->primary->entries[i];
4183 if (new->entries[j].threshold < usage) {
4185 * new->current_threshold will not be used
4186 * until rcu_assign_pointer(), so it's safe to increment
4189 ++new->current_threshold;
4195 /* Swap primary and spare array */
4196 thresholds->spare = thresholds->primary;
4197 rcu_assign_pointer(thresholds->primary, new);
4199 /* To be sure that nobody uses thresholds */
4202 mutex_unlock(&memcg->thresholds_lock);
4205 static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4206 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4208 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4209 struct mem_cgroup_eventfd_list *event;
4210 int type = MEMFILE_TYPE(cft->private);
4212 BUG_ON(type != _OOM_TYPE);
4213 event = kmalloc(sizeof(*event), GFP_KERNEL);
4217 mutex_lock(&memcg_oom_mutex);
4219 event->eventfd = eventfd;
4220 list_add(&event->list, &memcg->oom_notify);
4222 /* already in OOM ? */
4223 if (atomic_read(&memcg->oom_lock))
4224 eventfd_signal(eventfd, 1);
4225 mutex_unlock(&memcg_oom_mutex);
4230 static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
4231 struct cftype *cft, struct eventfd_ctx *eventfd)
4233 struct mem_cgroup *mem = mem_cgroup_from_cont(cgrp);
4234 struct mem_cgroup_eventfd_list *ev, *tmp;
4235 int type = MEMFILE_TYPE(cft->private);
4237 BUG_ON(type != _OOM_TYPE);
4239 mutex_lock(&memcg_oom_mutex);
4241 list_for_each_entry_safe(ev, tmp, &mem->oom_notify, list) {
4242 if (ev->eventfd == eventfd) {
4243 list_del(&ev->list);
4248 mutex_unlock(&memcg_oom_mutex);
4251 static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4252 struct cftype *cft, struct cgroup_map_cb *cb)
4254 struct mem_cgroup *mem = mem_cgroup_from_cont(cgrp);
4256 cb->fill(cb, "oom_kill_disable", mem->oom_kill_disable);
4258 if (atomic_read(&mem->oom_lock))
4259 cb->fill(cb, "under_oom", 1);
4261 cb->fill(cb, "under_oom", 0);
4265 static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4266 struct cftype *cft, u64 val)
4268 struct mem_cgroup *mem = mem_cgroup_from_cont(cgrp);
4269 struct mem_cgroup *parent;
4271 /* cannot set to root cgroup and only 0 and 1 are allowed */
4272 if (!cgrp->parent || !((val == 0) || (val == 1)))
4275 parent = mem_cgroup_from_cont(cgrp->parent);
4278 /* oom-kill-disable is a flag for subhierarchy. */
4279 if ((parent->use_hierarchy) ||
4280 (mem->use_hierarchy && !list_empty(&cgrp->children))) {
4284 mem->oom_kill_disable = val;
4286 memcg_oom_recover(mem);
4291 static struct cftype mem_cgroup_files[] = {
4293 .name = "usage_in_bytes",
4294 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
4295 .read_u64 = mem_cgroup_read,
4296 .register_event = mem_cgroup_usage_register_event,
4297 .unregister_event = mem_cgroup_usage_unregister_event,
4300 .name = "max_usage_in_bytes",
4301 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
4302 .trigger = mem_cgroup_reset,
4303 .read_u64 = mem_cgroup_read,
4306 .name = "limit_in_bytes",
4307 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
4308 .write_string = mem_cgroup_write,
4309 .read_u64 = mem_cgroup_read,
4312 .name = "soft_limit_in_bytes",
4313 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4314 .write_string = mem_cgroup_write,
4315 .read_u64 = mem_cgroup_read,
4319 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
4320 .trigger = mem_cgroup_reset,
4321 .read_u64 = mem_cgroup_read,
4325 .read_map = mem_control_stat_show,
4328 .name = "force_empty",
4329 .trigger = mem_cgroup_force_empty_write,
4332 .name = "use_hierarchy",
4333 .write_u64 = mem_cgroup_hierarchy_write,
4334 .read_u64 = mem_cgroup_hierarchy_read,
4337 .name = "swappiness",
4338 .read_u64 = mem_cgroup_swappiness_read,
4339 .write_u64 = mem_cgroup_swappiness_write,
4342 .name = "move_charge_at_immigrate",
4343 .read_u64 = mem_cgroup_move_charge_read,
4344 .write_u64 = mem_cgroup_move_charge_write,
4347 .name = "oom_control",
4348 .read_map = mem_cgroup_oom_control_read,
4349 .write_u64 = mem_cgroup_oom_control_write,
4350 .register_event = mem_cgroup_oom_register_event,
4351 .unregister_event = mem_cgroup_oom_unregister_event,
4352 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4356 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
4357 static struct cftype memsw_cgroup_files[] = {
4359 .name = "memsw.usage_in_bytes",
4360 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
4361 .read_u64 = mem_cgroup_read,
4362 .register_event = mem_cgroup_usage_register_event,
4363 .unregister_event = mem_cgroup_usage_unregister_event,
4366 .name = "memsw.max_usage_in_bytes",
4367 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4368 .trigger = mem_cgroup_reset,
4369 .read_u64 = mem_cgroup_read,
4372 .name = "memsw.limit_in_bytes",
4373 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4374 .write_string = mem_cgroup_write,
4375 .read_u64 = mem_cgroup_read,
4378 .name = "memsw.failcnt",
4379 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4380 .trigger = mem_cgroup_reset,
4381 .read_u64 = mem_cgroup_read,
4385 static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
4387 if (!do_swap_account)
4389 return cgroup_add_files(cont, ss, memsw_cgroup_files,
4390 ARRAY_SIZE(memsw_cgroup_files));
4393 static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
4399 static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
4401 struct mem_cgroup_per_node *pn;
4402 struct mem_cgroup_per_zone *mz;
4404 int zone, tmp = node;
4406 * This routine is called against possible nodes.
4407 * But it's BUG to call kmalloc() against offline node.
4409 * TODO: this routine can waste much memory for nodes which will
4410 * never be onlined. It's better to use memory hotplug callback
4413 if (!node_state(node, N_NORMAL_MEMORY))
4415 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
4419 mem->info.nodeinfo[node] = pn;
4420 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4421 mz = &pn->zoneinfo[zone];
4423 INIT_LIST_HEAD(&mz->lists[l]);
4424 mz->usage_in_excess = 0;
4425 mz->on_tree = false;
4431 static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
4433 kfree(mem->info.nodeinfo[node]);
4436 static struct mem_cgroup *mem_cgroup_alloc(void)
4438 struct mem_cgroup *mem;
4439 int size = sizeof(struct mem_cgroup);
4441 /* Can be very big if MAX_NUMNODES is very big */
4442 if (size < PAGE_SIZE)
4443 mem = kzalloc(size, GFP_KERNEL);
4445 mem = vzalloc(size);
4450 mem->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
4453 spin_lock_init(&mem->pcp_counter_lock);
4457 if (size < PAGE_SIZE)
4465 * At destroying mem_cgroup, references from swap_cgroup can remain.
4466 * (scanning all at force_empty is too costly...)
4468 * Instead of clearing all references at force_empty, we remember
4469 * the number of reference from swap_cgroup and free mem_cgroup when
4470 * it goes down to 0.
4472 * Removal of cgroup itself succeeds regardless of refs from swap.
4475 static void __mem_cgroup_free(struct mem_cgroup *mem)
4479 mem_cgroup_remove_from_trees(mem);
4480 free_css_id(&mem_cgroup_subsys, &mem->css);
4482 for_each_node_state(node, N_POSSIBLE)
4483 free_mem_cgroup_per_zone_info(mem, node);
4485 free_percpu(mem->stat);
4486 if (sizeof(struct mem_cgroup) < PAGE_SIZE)
4492 static void mem_cgroup_get(struct mem_cgroup *mem)
4494 atomic_inc(&mem->refcnt);
4497 static void __mem_cgroup_put(struct mem_cgroup *mem, int count)
4499 if (atomic_sub_and_test(count, &mem->refcnt)) {
4500 struct mem_cgroup *parent = parent_mem_cgroup(mem);
4501 __mem_cgroup_free(mem);
4503 mem_cgroup_put(parent);
4507 static void mem_cgroup_put(struct mem_cgroup *mem)
4509 __mem_cgroup_put(mem, 1);
4513 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4515 static struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *mem)
4517 if (!mem->res.parent)
4519 return mem_cgroup_from_res_counter(mem->res.parent, res);
4522 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
4523 static void __init enable_swap_cgroup(void)
4525 if (!mem_cgroup_disabled() && really_do_swap_account)
4526 do_swap_account = 1;
4529 static void __init enable_swap_cgroup(void)
4534 static int mem_cgroup_soft_limit_tree_init(void)
4536 struct mem_cgroup_tree_per_node *rtpn;
4537 struct mem_cgroup_tree_per_zone *rtpz;
4538 int tmp, node, zone;
4540 for_each_node_state(node, N_POSSIBLE) {
4542 if (!node_state(node, N_NORMAL_MEMORY))
4544 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
4548 soft_limit_tree.rb_tree_per_node[node] = rtpn;
4550 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4551 rtpz = &rtpn->rb_tree_per_zone[zone];
4552 rtpz->rb_root = RB_ROOT;
4553 spin_lock_init(&rtpz->lock);
4559 static struct cgroup_subsys_state * __ref
4560 mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
4562 struct mem_cgroup *mem, *parent;
4563 long error = -ENOMEM;
4566 mem = mem_cgroup_alloc();
4568 return ERR_PTR(error);
4570 for_each_node_state(node, N_POSSIBLE)
4571 if (alloc_mem_cgroup_per_zone_info(mem, node))
4575 if (cont->parent == NULL) {
4577 enable_swap_cgroup();
4579 root_mem_cgroup = mem;
4580 if (mem_cgroup_soft_limit_tree_init())
4582 for_each_possible_cpu(cpu) {
4583 struct memcg_stock_pcp *stock =
4584 &per_cpu(memcg_stock, cpu);
4585 INIT_WORK(&stock->work, drain_local_stock);
4587 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
4589 parent = mem_cgroup_from_cont(cont->parent);
4590 mem->use_hierarchy = parent->use_hierarchy;
4591 mem->oom_kill_disable = parent->oom_kill_disable;
4594 if (parent && parent->use_hierarchy) {
4595 res_counter_init(&mem->res, &parent->res);
4596 res_counter_init(&mem->memsw, &parent->memsw);
4598 * We increment refcnt of the parent to ensure that we can
4599 * safely access it on res_counter_charge/uncharge.
4600 * This refcnt will be decremented when freeing this
4601 * mem_cgroup(see mem_cgroup_put).
4603 mem_cgroup_get(parent);
4605 res_counter_init(&mem->res, NULL);
4606 res_counter_init(&mem->memsw, NULL);
4608 mem->last_scanned_child = 0;
4609 INIT_LIST_HEAD(&mem->oom_notify);
4612 mem->swappiness = get_swappiness(parent);
4613 atomic_set(&mem->refcnt, 1);
4614 mem->move_charge_at_immigrate = 0;
4615 mutex_init(&mem->thresholds_lock);
4618 __mem_cgroup_free(mem);
4619 root_mem_cgroup = NULL;
4620 return ERR_PTR(error);
4623 static int mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
4624 struct cgroup *cont)
4626 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
4628 return mem_cgroup_force_empty(mem, false);
4631 static void mem_cgroup_destroy(struct cgroup_subsys *ss,
4632 struct cgroup *cont)
4634 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
4636 mem_cgroup_put(mem);
4639 static int mem_cgroup_populate(struct cgroup_subsys *ss,
4640 struct cgroup *cont)
4644 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
4645 ARRAY_SIZE(mem_cgroup_files));
4648 ret = register_memsw_files(cont, ss);
4653 /* Handlers for move charge at task migration. */
4654 #define PRECHARGE_COUNT_AT_ONCE 256
4655 static int mem_cgroup_do_precharge(unsigned long count)
4658 int batch_count = PRECHARGE_COUNT_AT_ONCE;
4659 struct mem_cgroup *mem = mc.to;
4661 if (mem_cgroup_is_root(mem)) {
4662 mc.precharge += count;
4663 /* we don't need css_get for root */
4666 /* try to charge at once */
4668 struct res_counter *dummy;
4670 * "mem" cannot be under rmdir() because we've already checked
4671 * by cgroup_lock_live_cgroup() that it is not removed and we
4672 * are still under the same cgroup_mutex. So we can postpone
4675 if (res_counter_charge(&mem->res, PAGE_SIZE * count, &dummy))
4677 if (do_swap_account && res_counter_charge(&mem->memsw,
4678 PAGE_SIZE * count, &dummy)) {
4679 res_counter_uncharge(&mem->res, PAGE_SIZE * count);
4682 mc.precharge += count;
4686 /* fall back to one by one charge */
4688 if (signal_pending(current)) {
4692 if (!batch_count--) {
4693 batch_count = PRECHARGE_COUNT_AT_ONCE;
4696 ret = __mem_cgroup_try_charge(NULL, GFP_KERNEL, 1, &mem, false);
4698 /* mem_cgroup_clear_mc() will do uncharge later */
4706 * is_target_pte_for_mc - check a pte whether it is valid for move charge
4707 * @vma: the vma the pte to be checked belongs
4708 * @addr: the address corresponding to the pte to be checked
4709 * @ptent: the pte to be checked
4710 * @target: the pointer the target page or swap ent will be stored(can be NULL)
4713 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
4714 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
4715 * move charge. if @target is not NULL, the page is stored in target->page
4716 * with extra refcnt got(Callers should handle it).
4717 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
4718 * target for charge migration. if @target is not NULL, the entry is stored
4721 * Called with pte lock held.
4728 enum mc_target_type {
4729 MC_TARGET_NONE, /* not used */
4734 static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
4735 unsigned long addr, pte_t ptent)
4737 struct page *page = vm_normal_page(vma, addr, ptent);
4739 if (!page || !page_mapped(page))
4741 if (PageAnon(page)) {
4742 /* we don't move shared anon */
4743 if (!move_anon() || page_mapcount(page) > 2)
4745 } else if (!move_file())
4746 /* we ignore mapcount for file pages */
4748 if (!get_page_unless_zero(page))
4754 static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
4755 unsigned long addr, pte_t ptent, swp_entry_t *entry)
4758 struct page *page = NULL;
4759 swp_entry_t ent = pte_to_swp_entry(ptent);
4761 if (!move_anon() || non_swap_entry(ent))
4763 usage_count = mem_cgroup_count_swap_user(ent, &page);
4764 if (usage_count > 1) { /* we don't move shared anon */
4769 if (do_swap_account)
4770 entry->val = ent.val;
4775 static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
4776 unsigned long addr, pte_t ptent, swp_entry_t *entry)
4778 struct page *page = NULL;
4779 struct inode *inode;
4780 struct address_space *mapping;
4783 if (!vma->vm_file) /* anonymous vma */
4788 inode = vma->vm_file->f_path.dentry->d_inode;
4789 mapping = vma->vm_file->f_mapping;
4790 if (pte_none(ptent))
4791 pgoff = linear_page_index(vma, addr);
4792 else /* pte_file(ptent) is true */
4793 pgoff = pte_to_pgoff(ptent);
4795 /* page is moved even if it's not RSS of this task(page-faulted). */
4796 if (!mapping_cap_swap_backed(mapping)) { /* normal file */
4797 page = find_get_page(mapping, pgoff);
4798 } else { /* shmem/tmpfs file. we should take account of swap too. */
4800 mem_cgroup_get_shmem_target(inode, pgoff, &page, &ent);
4801 if (do_swap_account)
4802 entry->val = ent.val;
4808 static int is_target_pte_for_mc(struct vm_area_struct *vma,
4809 unsigned long addr, pte_t ptent, union mc_target *target)
4811 struct page *page = NULL;
4812 struct page_cgroup *pc;
4814 swp_entry_t ent = { .val = 0 };
4816 if (pte_present(ptent))
4817 page = mc_handle_present_pte(vma, addr, ptent);
4818 else if (is_swap_pte(ptent))
4819 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
4820 else if (pte_none(ptent) || pte_file(ptent))
4821 page = mc_handle_file_pte(vma, addr, ptent, &ent);
4823 if (!page && !ent.val)
4826 pc = lookup_page_cgroup(page);
4828 * Do only loose check w/o page_cgroup lock.
4829 * mem_cgroup_move_account() checks the pc is valid or not under
4832 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
4833 ret = MC_TARGET_PAGE;
4835 target->page = page;
4837 if (!ret || !target)
4840 /* There is a swap entry and a page doesn't exist or isn't charged */
4841 if (ent.val && !ret &&
4842 css_id(&mc.from->css) == lookup_swap_cgroup(ent)) {
4843 ret = MC_TARGET_SWAP;
4850 static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
4851 unsigned long addr, unsigned long end,
4852 struct mm_walk *walk)
4854 struct vm_area_struct *vma = walk->private;
4858 split_huge_page_pmd(walk->mm, pmd);
4860 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
4861 for (; addr != end; pte++, addr += PAGE_SIZE)
4862 if (is_target_pte_for_mc(vma, addr, *pte, NULL))
4863 mc.precharge++; /* increment precharge temporarily */
4864 pte_unmap_unlock(pte - 1, ptl);
4870 static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
4872 unsigned long precharge;
4873 struct vm_area_struct *vma;
4875 down_read(&mm->mmap_sem);
4876 for (vma = mm->mmap; vma; vma = vma->vm_next) {
4877 struct mm_walk mem_cgroup_count_precharge_walk = {
4878 .pmd_entry = mem_cgroup_count_precharge_pte_range,
4882 if (is_vm_hugetlb_page(vma))
4884 walk_page_range(vma->vm_start, vma->vm_end,
4885 &mem_cgroup_count_precharge_walk);
4887 up_read(&mm->mmap_sem);
4889 precharge = mc.precharge;
4895 static int mem_cgroup_precharge_mc(struct mm_struct *mm)
4897 unsigned long precharge = mem_cgroup_count_precharge(mm);
4899 VM_BUG_ON(mc.moving_task);
4900 mc.moving_task = current;
4901 return mem_cgroup_do_precharge(precharge);
4904 /* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
4905 static void __mem_cgroup_clear_mc(void)
4907 struct mem_cgroup *from = mc.from;
4908 struct mem_cgroup *to = mc.to;
4910 /* we must uncharge all the leftover precharges from mc.to */
4912 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
4916 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
4917 * we must uncharge here.
4919 if (mc.moved_charge) {
4920 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
4921 mc.moved_charge = 0;
4923 /* we must fixup refcnts and charges */
4924 if (mc.moved_swap) {
4925 /* uncharge swap account from the old cgroup */
4926 if (!mem_cgroup_is_root(mc.from))
4927 res_counter_uncharge(&mc.from->memsw,
4928 PAGE_SIZE * mc.moved_swap);
4929 __mem_cgroup_put(mc.from, mc.moved_swap);
4931 if (!mem_cgroup_is_root(mc.to)) {
4933 * we charged both to->res and to->memsw, so we should
4936 res_counter_uncharge(&mc.to->res,
4937 PAGE_SIZE * mc.moved_swap);
4939 /* we've already done mem_cgroup_get(mc.to) */
4942 memcg_oom_recover(from);
4943 memcg_oom_recover(to);
4944 wake_up_all(&mc.waitq);
4947 static void mem_cgroup_clear_mc(void)
4949 struct mem_cgroup *from = mc.from;
4952 * we must clear moving_task before waking up waiters at the end of
4955 mc.moving_task = NULL;
4956 __mem_cgroup_clear_mc();
4957 spin_lock(&mc.lock);
4960 spin_unlock(&mc.lock);
4961 mem_cgroup_end_move(from);
4964 static int mem_cgroup_can_attach(struct cgroup_subsys *ss,
4965 struct cgroup *cgroup,
4966 struct task_struct *p)
4969 struct mem_cgroup *mem = mem_cgroup_from_cont(cgroup);
4971 if (mem->move_charge_at_immigrate) {
4972 struct mm_struct *mm;
4973 struct mem_cgroup *from = mem_cgroup_from_task(p);
4975 VM_BUG_ON(from == mem);
4977 mm = get_task_mm(p);
4980 /* We move charges only when we move a owner of the mm */
4981 if (mm->owner == p) {
4984 VM_BUG_ON(mc.precharge);
4985 VM_BUG_ON(mc.moved_charge);
4986 VM_BUG_ON(mc.moved_swap);
4987 mem_cgroup_start_move(from);
4988 spin_lock(&mc.lock);
4991 spin_unlock(&mc.lock);
4992 /* We set mc.moving_task later */
4994 ret = mem_cgroup_precharge_mc(mm);
4996 mem_cgroup_clear_mc();
5003 static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss,
5004 struct cgroup *cgroup,
5005 struct task_struct *p)
5007 mem_cgroup_clear_mc();
5010 static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5011 unsigned long addr, unsigned long end,
5012 struct mm_walk *walk)
5015 struct vm_area_struct *vma = walk->private;
5019 split_huge_page_pmd(walk->mm, pmd);
5021 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5022 for (; addr != end; addr += PAGE_SIZE) {
5023 pte_t ptent = *(pte++);
5024 union mc_target target;
5027 struct page_cgroup *pc;
5033 type = is_target_pte_for_mc(vma, addr, ptent, &target);
5035 case MC_TARGET_PAGE:
5037 if (isolate_lru_page(page))
5039 pc = lookup_page_cgroup(page);
5040 if (!mem_cgroup_move_account(page, 1, pc,
5041 mc.from, mc.to, false)) {
5043 /* we uncharge from mc.from later. */
5046 putback_lru_page(page);
5047 put: /* is_target_pte_for_mc() gets the page */
5050 case MC_TARGET_SWAP:
5052 if (!mem_cgroup_move_swap_account(ent,
5053 mc.from, mc.to, false)) {
5055 /* we fixup refcnts and charges later. */
5063 pte_unmap_unlock(pte - 1, ptl);
5068 * We have consumed all precharges we got in can_attach().
5069 * We try charge one by one, but don't do any additional
5070 * charges to mc.to if we have failed in charge once in attach()
5073 ret = mem_cgroup_do_precharge(1);
5081 static void mem_cgroup_move_charge(struct mm_struct *mm)
5083 struct vm_area_struct *vma;
5085 lru_add_drain_all();
5087 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5089 * Someone who are holding the mmap_sem might be waiting in
5090 * waitq. So we cancel all extra charges, wake up all waiters,
5091 * and retry. Because we cancel precharges, we might not be able
5092 * to move enough charges, but moving charge is a best-effort
5093 * feature anyway, so it wouldn't be a big problem.
5095 __mem_cgroup_clear_mc();
5099 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5101 struct mm_walk mem_cgroup_move_charge_walk = {
5102 .pmd_entry = mem_cgroup_move_charge_pte_range,
5106 if (is_vm_hugetlb_page(vma))
5108 ret = walk_page_range(vma->vm_start, vma->vm_end,
5109 &mem_cgroup_move_charge_walk);
5112 * means we have consumed all precharges and failed in
5113 * doing additional charge. Just abandon here.
5117 up_read(&mm->mmap_sem);
5120 static void mem_cgroup_move_task(struct cgroup_subsys *ss,
5121 struct cgroup *cont,
5122 struct cgroup *old_cont,
5123 struct task_struct *p)
5125 struct mm_struct *mm;
5128 /* no need to move charge */
5131 mm = get_task_mm(p);
5133 mem_cgroup_move_charge(mm);
5136 mem_cgroup_clear_mc();
5138 #else /* !CONFIG_MMU */
5139 static int mem_cgroup_can_attach(struct cgroup_subsys *ss,
5140 struct cgroup *cgroup,
5141 struct task_struct *p)
5145 static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss,
5146 struct cgroup *cgroup,
5147 struct task_struct *p)
5150 static void mem_cgroup_move_task(struct cgroup_subsys *ss,
5151 struct cgroup *cont,
5152 struct cgroup *old_cont,
5153 struct task_struct *p)
5158 struct cgroup_subsys mem_cgroup_subsys = {
5160 .subsys_id = mem_cgroup_subsys_id,
5161 .create = mem_cgroup_create,
5162 .pre_destroy = mem_cgroup_pre_destroy,
5163 .destroy = mem_cgroup_destroy,
5164 .populate = mem_cgroup_populate,
5165 .can_attach = mem_cgroup_can_attach,
5166 .cancel_attach = mem_cgroup_cancel_attach,
5167 .attach = mem_cgroup_move_task,
5172 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
5173 static int __init enable_swap_account(char *s)
5175 /* consider enabled if no parameter or 1 is given */
5176 if (!strcmp(s, "1"))
5177 really_do_swap_account = 1;
5178 else if (!strcmp(s, "0"))
5179 really_do_swap_account = 0;
5182 __setup("swapaccount=", enable_swap_account);