blob: 3de3901ae0a79b03c2b5d651bc7151576dbba2c9 [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08009 * Memory thresholds
10 * Copyright (C) 2009 Nokia Corporation
11 * Author: Kirill A. Shutemov
12 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -080013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 */
23
24#include <linux/res_counter.h>
25#include <linux/memcontrol.h>
26#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080027#include <linux/mm.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080028#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080029#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080030#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080031#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080032#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080033#include <linux/bit_spinlock.h>
34#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070035#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040036#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -080037#include <linux/mutex.h>
Balbir Singhf64c3f52009-09-23 15:56:37 -070038#include <linux/rbtree.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070039#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080040#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080041#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080042#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080043#include <linux/eventfd.h>
44#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080045#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080046#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070047#include <linux/vmalloc.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070048#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070049#include <linux/page_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080050#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070051#include <linux/oom.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080052#include "internal.h"
Balbir Singh8cdea7c2008-02-07 00:13:50 -080053
Balbir Singh8697d332008-02-07 00:13:59 -080054#include <asm/uaccess.h>
55
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070056#include <trace/events/vmscan.h>
57
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070058struct cgroup_subsys mem_cgroup_subsys __read_mostly;
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070059#define MEM_CGROUP_RECLAIM_RETRIES 5
Balbir Singh4b3bde42009-09-23 15:56:32 -070060struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080061
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080062#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070063/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080064int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080065
66/* for remember boot option*/
67#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP_ENABLED
68static int really_do_swap_account __initdata = 1;
69#else
70static int really_do_swap_account __initdata = 0;
71#endif
72
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080073#else
74#define do_swap_account (0)
75#endif
76
77
Balbir Singh8cdea7c2008-02-07 00:13:50 -080078/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080079 * Statistics for memory cgroup.
80 */
81enum mem_cgroup_stat_index {
82 /*
83 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
84 */
85 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
Balbir Singhd69b0422009-06-17 16:26:34 -070086 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -080087 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
Balbir Singh0c3e73e2009-09-23 15:56:42 -070088 MEM_CGROUP_STAT_SWAPOUT, /* # of pages, swapped out */
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -070089 MEM_CGROUP_STAT_DATA, /* end of data requires synchronization */
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -070090 MEM_CGROUP_ON_MOVE, /* someone is moving account between groups */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080091 MEM_CGROUP_STAT_NSTATS,
92};
93
Johannes Weinere9f89742011-03-23 16:42:37 -070094enum mem_cgroup_events_index {
95 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
96 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
97 MEM_CGROUP_EVENTS_COUNT, /* # of pages paged in/out */
Ying Han456f9982011-05-26 16:25:38 -070098 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
99 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700100 MEM_CGROUP_EVENTS_NSTATS,
101};
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700102/*
103 * Per memcg event counter is incremented at every pagein/pageout. With THP,
104 * it will be incremated by the number of pages. This counter is used for
105 * for trigger some periodic events. This is straightforward and better
106 * than using jiffies etc. to handle periodic memcg event.
107 */
108enum mem_cgroup_events_target {
109 MEM_CGROUP_TARGET_THRESH,
110 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700111 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700112 MEM_CGROUP_NTARGETS,
113};
114#define THRESHOLDS_EVENTS_TARGET (128)
115#define SOFTLIMIT_EVENTS_TARGET (1024)
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700116#define NUMAINFO_EVENTS_TARGET (1024)
Johannes Weinere9f89742011-03-23 16:42:37 -0700117
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800118struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700119 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700120 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700121 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800122};
123
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800124/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800125 * per-zone information in memory controller.
126 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800127struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -0800128 /*
129 * spin_lock to protect the per cgroup LRU
130 */
Christoph Lameterb69408e2008-10-18 20:26:14 -0700131 struct list_head lists[NR_LRU_LISTS];
132 unsigned long count[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800133
134 struct zone_reclaim_stat reclaim_stat;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700135 struct rb_node tree_node; /* RB tree node */
136 unsigned long long usage_in_excess;/* Set to the value by which */
137 /* the soft limit is exceeded*/
138 bool on_tree;
Balbir Singh4e416952009-09-23 15:56:39 -0700139 struct mem_cgroup *mem; /* Back pointer, we cannot */
140 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800141};
142/* Macro for accessing counter */
143#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
144
145struct mem_cgroup_per_node {
146 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
147};
148
149struct mem_cgroup_lru_info {
150 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
151};
152
153/*
Balbir Singhf64c3f52009-09-23 15:56:37 -0700154 * Cgroups above their limits are maintained in a RB-Tree, independent of
155 * their hierarchy representation
156 */
157
158struct mem_cgroup_tree_per_zone {
159 struct rb_root rb_root;
160 spinlock_t lock;
161};
162
163struct mem_cgroup_tree_per_node {
164 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
165};
166
167struct mem_cgroup_tree {
168 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
169};
170
171static struct mem_cgroup_tree soft_limit_tree __read_mostly;
172
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800173struct mem_cgroup_threshold {
174 struct eventfd_ctx *eventfd;
175 u64 threshold;
176};
177
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700178/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800179struct mem_cgroup_threshold_ary {
180 /* An array index points to threshold just below usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700181 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800182 /* Size of entries[] */
183 unsigned int size;
184 /* Array of thresholds */
185 struct mem_cgroup_threshold entries[0];
186};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700187
188struct mem_cgroup_thresholds {
189 /* Primary thresholds array */
190 struct mem_cgroup_threshold_ary *primary;
191 /*
192 * Spare threshold array.
193 * This is needed to make mem_cgroup_unregister_event() "never fail".
194 * It must be able to store at least primary->size - 1 entries.
195 */
196 struct mem_cgroup_threshold_ary *spare;
197};
198
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700199/* for OOM */
200struct mem_cgroup_eventfd_list {
201 struct list_head list;
202 struct eventfd_ctx *eventfd;
203};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800204
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700205static void mem_cgroup_threshold(struct mem_cgroup *memcg);
206static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800207
Balbir Singhf64c3f52009-09-23 15:56:37 -0700208/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800209 * The memory controller data structure. The memory controller controls both
210 * page cache and RSS per cgroup. We would eventually like to provide
211 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
212 * to help the administrator determine what knobs to tune.
213 *
214 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800215 * we hit the water mark. May be even add a low water mark, such that
216 * no reclaim occurs from a cgroup at it's low water mark, this is
217 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800218 */
219struct mem_cgroup {
220 struct cgroup_subsys_state css;
221 /*
222 * the counter to account for memory usage
223 */
224 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800225 /*
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800226 * the counter to account for mem+swap usage.
227 */
228 struct res_counter memsw;
229 /*
Glauber Costae5671df2011-12-11 21:47:01 +0000230 * the counter to account for kmem usage.
231 */
232 struct res_counter kmem;
233 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800234 * Per cgroup active and inactive list, similar to the
235 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800236 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800237 struct mem_cgroup_lru_info info;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800238 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200239 * While reclaiming in a hierarchy, we cache the last child we
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700240 * reclaimed from.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800241 */
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700242 int last_scanned_child;
Ying Han889976d2011-05-26 16:25:33 -0700243 int last_scanned_node;
244#if MAX_NUMNODES > 1
245 nodemask_t scan_nodes;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700246 atomic_t numainfo_events;
247 atomic_t numainfo_updating;
Ying Han889976d2011-05-26 16:25:33 -0700248#endif
Balbir Singh18f59ea2009-01-07 18:08:07 -0800249 /*
250 * Should the accounting and control be hierarchical, per subtree?
251 */
252 bool use_hierarchy;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700253
254 bool oom_lock;
255 atomic_t under_oom;
256
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800257 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800258
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700259 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700260 /* OOM-Killer disable */
261 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800262
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700263 /* set when res.limit == memsw.limit */
264 bool memsw_is_minimum;
265
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800266 /* protect arrays of thresholds */
267 struct mutex thresholds_lock;
268
269 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700270 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700271
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800272 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700273 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700274
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700275 /* For oom notifier event fd */
276 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700277
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800278 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800279 * Should we move charges of a task when a task is moved into this
280 * mem_cgroup ? And what type of charges should we move ?
281 */
282 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800283 /*
Glauber Costae5671df2011-12-11 21:47:01 +0000284 * Should kernel memory limits be stabilished independently
285 * from user memory ?
286 */
287 int kmem_independent_accounting;
288 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800289 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800290 */
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800291 struct mem_cgroup_stat_cpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700292 /*
293 * used when a cpu is offlined or other synchronizations
294 * See mem_cgroup_read_stat().
295 */
296 struct mem_cgroup_stat_cpu nocpu_base;
297 spinlock_t pcp_counter_lock;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800298};
299
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800300/* Stuffs for move charges at task migration. */
301/*
302 * Types of charges to be moved. "move_charge_at_immitgrate" is treated as a
303 * left-shifted bitmap of these types.
304 */
305enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800306 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700307 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800308 NR_MOVE_TYPE,
309};
310
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800311/* "mc" and its members are protected by cgroup_mutex */
312static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800313 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800314 struct mem_cgroup *from;
315 struct mem_cgroup *to;
316 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800317 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800318 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800319 struct task_struct *moving_task; /* a task moving charges */
320 wait_queue_head_t waitq; /* a waitq for other context */
321} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700322 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800323 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
324};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800325
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700326static bool move_anon(void)
327{
328 return test_bit(MOVE_CHARGE_TYPE_ANON,
329 &mc.to->move_charge_at_immigrate);
330}
331
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700332static bool move_file(void)
333{
334 return test_bit(MOVE_CHARGE_TYPE_FILE,
335 &mc.to->move_charge_at_immigrate);
336}
337
Balbir Singh4e416952009-09-23 15:56:39 -0700338/*
339 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
340 * limit reclaim to prevent infinite loops, if they ever occur.
341 */
342#define MEM_CGROUP_MAX_RECLAIM_LOOPS (100)
343#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS (2)
344
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800345enum charge_type {
346 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
347 MEM_CGROUP_CHARGE_TYPE_MAPPED,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700348 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700349 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800350 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700351 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700352 NR_CHARGE_TYPE,
353};
354
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800355/* for encoding cft->private value on file */
Glauber Costae5671df2011-12-11 21:47:01 +0000356
357enum mem_type {
358 _MEM = 0,
359 _MEMSWAP,
360 _OOM_TYPE,
361 _KMEM,
362};
363
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800364#define MEMFILE_PRIVATE(x, val) (((x) << 16) | (val))
365#define MEMFILE_TYPE(val) (((val) >> 16) & 0xffff)
366#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700367/* Used for OOM nofiier */
368#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800369
Balbir Singh75822b42009-09-23 15:56:38 -0700370/*
371 * Reclaim flags for mem_cgroup_hierarchical_reclaim
372 */
373#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
374#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
375#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
376#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
Balbir Singh4e416952009-09-23 15:56:39 -0700377#define MEM_CGROUP_RECLAIM_SOFT_BIT 0x2
378#define MEM_CGROUP_RECLAIM_SOFT (1 << MEM_CGROUP_RECLAIM_SOFT_BIT)
Balbir Singh75822b42009-09-23 15:56:38 -0700379
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700380static void mem_cgroup_get(struct mem_cgroup *memcg);
381static void mem_cgroup_put(struct mem_cgroup *memcg);
Glauber Costae1aab162011-12-11 21:47:03 +0000382
383/* Writing them here to avoid exposing memcg's inner layout */
384#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
385#ifdef CONFIG_INET
386#include <net/sock.h>
387
388static bool mem_cgroup_is_root(struct mem_cgroup *memcg);
389void sock_update_memcg(struct sock *sk)
390{
391 /* A socket spends its whole life in the same cgroup */
392 if (sk->sk_cgrp) {
393 WARN_ON(1);
394 return;
395 }
396 if (static_branch(&memcg_socket_limit_enabled)) {
397 struct mem_cgroup *memcg;
398
399 BUG_ON(!sk->sk_prot->proto_cgroup);
400
401 rcu_read_lock();
402 memcg = mem_cgroup_from_task(current);
403 if (!mem_cgroup_is_root(memcg)) {
404 mem_cgroup_get(memcg);
405 sk->sk_cgrp = sk->sk_prot->proto_cgroup(memcg);
406 }
407 rcu_read_unlock();
408 }
409}
410EXPORT_SYMBOL(sock_update_memcg);
411
412void sock_release_memcg(struct sock *sk)
413{
414 if (static_branch(&memcg_socket_limit_enabled) && sk->sk_cgrp) {
415 struct mem_cgroup *memcg;
416 WARN_ON(!sk->sk_cgrp->memcg);
417 memcg = sk->sk_cgrp->memcg;
418 mem_cgroup_put(memcg);
419 }
420}
421#endif /* CONFIG_INET */
422#endif /* CONFIG_CGROUP_MEM_RES_CTLR_KMEM */
423
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700424static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800425
Balbir Singhf64c3f52009-09-23 15:56:37 -0700426static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700427mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700428{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700429 return &memcg->info.nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700430}
431
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700432struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100433{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700434 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100435}
436
Balbir Singhf64c3f52009-09-23 15:56:37 -0700437static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700438page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700439{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700440 int nid = page_to_nid(page);
441 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700442
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700443 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700444}
445
446static struct mem_cgroup_tree_per_zone *
447soft_limit_tree_node_zone(int nid, int zid)
448{
449 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
450}
451
452static struct mem_cgroup_tree_per_zone *
453soft_limit_tree_from_page(struct page *page)
454{
455 int nid = page_to_nid(page);
456 int zid = page_zonenum(page);
457
458 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
459}
460
461static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700462__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700463 struct mem_cgroup_per_zone *mz,
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700464 struct mem_cgroup_tree_per_zone *mctz,
465 unsigned long long new_usage_in_excess)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700466{
467 struct rb_node **p = &mctz->rb_root.rb_node;
468 struct rb_node *parent = NULL;
469 struct mem_cgroup_per_zone *mz_node;
470
471 if (mz->on_tree)
472 return;
473
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700474 mz->usage_in_excess = new_usage_in_excess;
475 if (!mz->usage_in_excess)
476 return;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700477 while (*p) {
478 parent = *p;
479 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
480 tree_node);
481 if (mz->usage_in_excess < mz_node->usage_in_excess)
482 p = &(*p)->rb_left;
483 /*
484 * We can't avoid mem cgroups that are over their soft
485 * limit by the same amount
486 */
487 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
488 p = &(*p)->rb_right;
489 }
490 rb_link_node(&mz->tree_node, parent, p);
491 rb_insert_color(&mz->tree_node, &mctz->rb_root);
492 mz->on_tree = true;
Balbir Singh4e416952009-09-23 15:56:39 -0700493}
494
495static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700496__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -0700497 struct mem_cgroup_per_zone *mz,
498 struct mem_cgroup_tree_per_zone *mctz)
499{
500 if (!mz->on_tree)
501 return;
502 rb_erase(&mz->tree_node, &mctz->rb_root);
503 mz->on_tree = false;
504}
505
506static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700507mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700508 struct mem_cgroup_per_zone *mz,
509 struct mem_cgroup_tree_per_zone *mctz)
510{
511 spin_lock(&mctz->lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700512 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700513 spin_unlock(&mctz->lock);
514}
515
Balbir Singhf64c3f52009-09-23 15:56:37 -0700516
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700517static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700518{
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700519 unsigned long long excess;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700520 struct mem_cgroup_per_zone *mz;
521 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700522 int nid = page_to_nid(page);
523 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700524 mctz = soft_limit_tree_from_page(page);
525
526 /*
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700527 * Necessary to update all ancestors when hierarchy is used.
528 * because their event counter is not touched.
Balbir Singhf64c3f52009-09-23 15:56:37 -0700529 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700530 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
531 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
532 excess = res_counter_soft_limit_excess(&memcg->res);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700533 /*
534 * We have to update the tree if mz is on RB-tree or
535 * mem is over its softlimit.
536 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700537 if (excess || mz->on_tree) {
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700538 spin_lock(&mctz->lock);
539 /* if on-tree, remove it */
540 if (mz->on_tree)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700541 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700542 /*
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700543 * Insert again. mz->usage_in_excess will be updated.
544 * If excess is 0, no tree ops.
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700545 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700546 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700547 spin_unlock(&mctz->lock);
548 }
Balbir Singhf64c3f52009-09-23 15:56:37 -0700549 }
550}
551
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700552static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700553{
554 int node, zone;
555 struct mem_cgroup_per_zone *mz;
556 struct mem_cgroup_tree_per_zone *mctz;
557
558 for_each_node_state(node, N_POSSIBLE) {
559 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700560 mz = mem_cgroup_zoneinfo(memcg, node, zone);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700561 mctz = soft_limit_tree_node_zone(node, zone);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700562 mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700563 }
564 }
565}
566
Balbir Singh4e416952009-09-23 15:56:39 -0700567static struct mem_cgroup_per_zone *
568__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
569{
570 struct rb_node *rightmost = NULL;
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700571 struct mem_cgroup_per_zone *mz;
Balbir Singh4e416952009-09-23 15:56:39 -0700572
573retry:
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700574 mz = NULL;
Balbir Singh4e416952009-09-23 15:56:39 -0700575 rightmost = rb_last(&mctz->rb_root);
576 if (!rightmost)
577 goto done; /* Nothing to reclaim from */
578
579 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
580 /*
581 * Remove the node now but someone else can add it back,
582 * we will to add it back at the end of reclaim to its correct
583 * position in the tree.
584 */
585 __mem_cgroup_remove_exceeded(mz->mem, mz, mctz);
586 if (!res_counter_soft_limit_excess(&mz->mem->res) ||
587 !css_tryget(&mz->mem->css))
588 goto retry;
589done:
590 return mz;
591}
592
593static struct mem_cgroup_per_zone *
594mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
595{
596 struct mem_cgroup_per_zone *mz;
597
598 spin_lock(&mctz->lock);
599 mz = __mem_cgroup_largest_soft_limit_node(mctz);
600 spin_unlock(&mctz->lock);
601 return mz;
602}
603
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700604/*
605 * Implementation Note: reading percpu statistics for memcg.
606 *
607 * Both of vmstat[] and percpu_counter has threshold and do periodic
608 * synchronization to implement "quick" read. There are trade-off between
609 * reading cost and precision of value. Then, we may have a chance to implement
610 * a periodic synchronizion of counter in memcg's counter.
611 *
612 * But this _read() function is used for user interface now. The user accounts
613 * memory usage by memory cgroup and he _always_ requires exact value because
614 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
615 * have to visit all online cpus and make sum. So, for now, unnecessary
616 * synchronization is not implemented. (just implemented for cpu hotplug)
617 *
618 * If there are kernel internal actions which can make use of some not-exact
619 * value, and reading all cpu value can be performance bottleneck in some
620 * common workload, threashold and synchonization as vmstat[] should be
621 * implemented.
622 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700623static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700624 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800625{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700626 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800627 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800628
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700629 get_online_cpus();
630 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700631 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700632#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700633 spin_lock(&memcg->pcp_counter_lock);
634 val += memcg->nocpu_base.count[idx];
635 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700636#endif
637 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800638 return val;
639}
640
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700641static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700642 bool charge)
643{
644 int val = (charge) ? 1 : -1;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700645 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAPOUT], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700646}
647
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700648void mem_cgroup_pgfault(struct mem_cgroup *memcg, int val)
Ying Han456f9982011-05-26 16:25:38 -0700649{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700650 this_cpu_add(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT], val);
Ying Han456f9982011-05-26 16:25:38 -0700651}
652
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700653void mem_cgroup_pgmajfault(struct mem_cgroup *memcg, int val)
Ying Han456f9982011-05-26 16:25:38 -0700654{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700655 this_cpu_add(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT], val);
Ying Han456f9982011-05-26 16:25:38 -0700656}
657
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700658static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700659 enum mem_cgroup_events_index idx)
660{
661 unsigned long val = 0;
662 int cpu;
663
664 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700665 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700666#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700667 spin_lock(&memcg->pcp_counter_lock);
668 val += memcg->nocpu_base.events[idx];
669 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700670#endif
671 return val;
672}
673
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700674static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800675 bool file, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800676{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800677 preempt_disable();
678
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800679 if (file)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700680 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
681 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800682 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700683 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
684 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700685
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800686 /* pagein of a big page is an event. So, ignore page size */
687 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700688 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800689 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700690 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800691 nr_pages = -nr_pages; /* for event */
692 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800693
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700694 __this_cpu_add(memcg->stat->events[MEM_CGROUP_EVENTS_COUNT], nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800695
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800696 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800697}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800698
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700699unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700700mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700701 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700702{
703 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700704 enum lru_list l;
705 unsigned long ret = 0;
706
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700707 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700708
709 for_each_lru(l) {
710 if (BIT(l) & lru_mask)
711 ret += MEM_CGROUP_ZSTAT(mz, l);
712 }
713 return ret;
714}
715
716static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700717mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700718 int nid, unsigned int lru_mask)
719{
Ying Han889976d2011-05-26 16:25:33 -0700720 u64 total = 0;
721 int zid;
722
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700723 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700724 total += mem_cgroup_zone_nr_lru_pages(memcg,
725 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700726
Ying Han889976d2011-05-26 16:25:33 -0700727 return total;
728}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700729
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700730static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700731 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800732{
Ying Han889976d2011-05-26 16:25:33 -0700733 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800734 u64 total = 0;
735
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700736 for_each_node_state(nid, N_HIGH_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700737 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800738 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800739}
740
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700741static bool __memcg_event_check(struct mem_cgroup *memcg, int target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800742{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700743 unsigned long val, next;
744
Steven Rostedt47994012011-11-02 13:38:33 -0700745 val = __this_cpu_read(memcg->stat->events[MEM_CGROUP_EVENTS_COUNT]);
746 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700747 /* from time_after() in jiffies.h */
748 return ((long)next - (long)val < 0);
749}
750
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700751static void __mem_cgroup_target_update(struct mem_cgroup *memcg, int target)
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700752{
753 unsigned long val, next;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800754
Steven Rostedt47994012011-11-02 13:38:33 -0700755 val = __this_cpu_read(memcg->stat->events[MEM_CGROUP_EVENTS_COUNT]);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800756
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700757 switch (target) {
758 case MEM_CGROUP_TARGET_THRESH:
759 next = val + THRESHOLDS_EVENTS_TARGET;
760 break;
761 case MEM_CGROUP_TARGET_SOFTLIMIT:
762 next = val + SOFTLIMIT_EVENTS_TARGET;
763 break;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700764 case MEM_CGROUP_TARGET_NUMAINFO:
765 next = val + NUMAINFO_EVENTS_TARGET;
766 break;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700767 default:
768 return;
769 }
770
Steven Rostedt47994012011-11-02 13:38:33 -0700771 __this_cpu_write(memcg->stat->targets[target], next);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800772}
773
774/*
775 * Check events in order.
776 *
777 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700778static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800779{
Steven Rostedt47994012011-11-02 13:38:33 -0700780 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800781 /* threshold event is triggered in finer grain than soft limit */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700782 if (unlikely(__memcg_event_check(memcg, MEM_CGROUP_TARGET_THRESH))) {
783 mem_cgroup_threshold(memcg);
784 __mem_cgroup_target_update(memcg, MEM_CGROUP_TARGET_THRESH);
785 if (unlikely(__memcg_event_check(memcg,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700786 MEM_CGROUP_TARGET_SOFTLIMIT))) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700787 mem_cgroup_update_tree(memcg, page);
788 __mem_cgroup_target_update(memcg,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700789 MEM_CGROUP_TARGET_SOFTLIMIT);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700790 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700791#if MAX_NUMNODES > 1
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700792 if (unlikely(__memcg_event_check(memcg,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700793 MEM_CGROUP_TARGET_NUMAINFO))) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700794 atomic_inc(&memcg->numainfo_events);
795 __mem_cgroup_target_update(memcg,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700796 MEM_CGROUP_TARGET_NUMAINFO);
797 }
798#endif
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800799 }
Steven Rostedt47994012011-11-02 13:38:33 -0700800 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800801}
802
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800803static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800804{
805 return container_of(cgroup_subsys_state(cont,
806 mem_cgroup_subsys_id), struct mem_cgroup,
807 css);
808}
809
Balbir Singhcf475ad2008-04-29 01:00:16 -0700810struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800811{
Balbir Singh31a78f22008-09-28 23:09:31 +0100812 /*
813 * mm_update_next_owner() may clear mm->owner to NULL
814 * if it races with swapoff, page migration, etc.
815 * So this can be called with p == NULL.
816 */
817 if (unlikely(!p))
818 return NULL;
819
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800820 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
821 struct mem_cgroup, css);
822}
823
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700824struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800825{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700826 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700827
828 if (!mm)
829 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800830 /*
831 * Because we have no locks, mm->owner's may be being moved to other
832 * cgroup. We use css_tryget() here even if this looks
833 * pessimistic (rather than adding locks here).
834 */
835 rcu_read_lock();
836 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700837 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
838 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800839 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700840 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800841 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700842 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800843}
844
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700845/* The caller has to guarantee "mem" exists before calling this */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700846static struct mem_cgroup *mem_cgroup_start_loop(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700847{
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700848 struct cgroup_subsys_state *css;
849 int found;
850
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700851 if (!memcg) /* ROOT cgroup has the smallest ID */
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700852 return root_mem_cgroup; /*css_put/get against root is ignored*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700853 if (!memcg->use_hierarchy) {
854 if (css_tryget(&memcg->css))
855 return memcg;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700856 return NULL;
857 }
858 rcu_read_lock();
859 /*
860 * searching a memory cgroup which has the smallest ID under given
861 * ROOT cgroup. (ID >= 1)
862 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700863 css = css_get_next(&mem_cgroup_subsys, 1, &memcg->css, &found);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700864 if (css && css_tryget(css))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700865 memcg = container_of(css, struct mem_cgroup, css);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700866 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700867 memcg = NULL;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700868 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700869 return memcg;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700870}
871
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700872static struct mem_cgroup *mem_cgroup_get_next(struct mem_cgroup *iter,
873 struct mem_cgroup *root,
874 bool cond)
875{
876 int nextid = css_id(&iter->css) + 1;
877 int found;
878 int hierarchy_used;
879 struct cgroup_subsys_state *css;
880
881 hierarchy_used = iter->use_hierarchy;
882
883 css_put(&iter->css);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700884 /* If no ROOT, walk all, ignore hierarchy */
885 if (!cond || (root && !hierarchy_used))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700886 return NULL;
887
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700888 if (!root)
889 root = root_mem_cgroup;
890
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700891 do {
892 iter = NULL;
893 rcu_read_lock();
894
895 css = css_get_next(&mem_cgroup_subsys, nextid,
896 &root->css, &found);
897 if (css && css_tryget(css))
898 iter = container_of(css, struct mem_cgroup, css);
899 rcu_read_unlock();
900 /* If css is NULL, no more cgroups will be found */
901 nextid = found + 1;
902 } while (css && !iter);
903
904 return iter;
905}
906/*
907 * for_eacn_mem_cgroup_tree() for visiting all cgroup under tree. Please
908 * be careful that "break" loop is not allowed. We have reference count.
909 * Instead of that modify "cond" to be false and "continue" to exit the loop.
910 */
911#define for_each_mem_cgroup_tree_cond(iter, root, cond) \
912 for (iter = mem_cgroup_start_loop(root);\
913 iter != NULL;\
914 iter = mem_cgroup_get_next(iter, root, cond))
915
916#define for_each_mem_cgroup_tree(iter, root) \
917 for_each_mem_cgroup_tree_cond(iter, root, true)
918
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700919#define for_each_mem_cgroup_all(iter) \
920 for_each_mem_cgroup_tree_cond(iter, NULL, true)
921
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700922
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700923static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
Balbir Singh4b3bde42009-09-23 15:56:32 -0700924{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700925 return (memcg == root_mem_cgroup);
Balbir Singh4b3bde42009-09-23 15:56:32 -0700926}
927
Ying Han456f9982011-05-26 16:25:38 -0700928void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
929{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700930 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -0700931
932 if (!mm)
933 return;
934
935 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700936 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
937 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -0700938 goto out;
939
940 switch (idx) {
941 case PGMAJFAULT:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700942 mem_cgroup_pgmajfault(memcg, 1);
Ying Han456f9982011-05-26 16:25:38 -0700943 break;
944 case PGFAULT:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700945 mem_cgroup_pgfault(memcg, 1);
Ying Han456f9982011-05-26 16:25:38 -0700946 break;
947 default:
948 BUG();
949 }
950out:
951 rcu_read_unlock();
952}
953EXPORT_SYMBOL(mem_cgroup_count_vm_event);
954
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800955/*
956 * Following LRU functions are allowed to be used without PCG_LOCK.
957 * Operations are called by routine of global LRU independently from memcg.
958 * What we have to take care of here is validness of pc->mem_cgroup.
959 *
960 * Changes to pc->mem_cgroup happens when
961 * 1. charge
962 * 2. moving account
963 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
964 * It is added to LRU before charge.
965 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
966 * When moving account, the page is not on LRU. It's isolated.
967 */
968
969void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800970{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800971 struct page_cgroup *pc;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800972 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700973
Hirokazu Takahashif8d66542009-01-07 18:08:02 -0800974 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800975 return;
976 pc = lookup_page_cgroup(page);
977 /* can happen while we handle swapcache. */
Balbir Singh4b3bde42009-09-23 15:56:32 -0700978 if (!TestClearPageCgroupAcctLRU(pc))
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800979 return;
Balbir Singh4b3bde42009-09-23 15:56:32 -0700980 VM_BUG_ON(!pc->mem_cgroup);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800981 /*
982 * We don't check PCG_USED bit. It's cleared when the "page" is finally
983 * removed from global LRU.
984 */
Johannes Weiner97a6c372011-03-23 16:42:27 -0700985 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -0800986 /* huge page split is done under lru_lock. so, we have no races. */
987 MEM_CGROUP_ZSTAT(mz, lru) -= 1 << compound_order(page);
Balbir Singh4b3bde42009-09-23 15:56:32 -0700988 if (mem_cgroup_is_root(pc->mem_cgroup))
989 return;
990 VM_BUG_ON(list_empty(&pc->lru));
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800991 list_del_init(&pc->lru);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800992}
993
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800994void mem_cgroup_del_lru(struct page *page)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800995{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800996 mem_cgroup_del_lru_list(page, page_lru(page));
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800997}
998
Minchan Kim3f58a822011-03-22 16:32:53 -0700999/*
1000 * Writeback is about to end against a page which has been marked for immediate
1001 * reclaim. If it still appears to be reclaimable, move it to the tail of the
1002 * inactive list.
1003 */
1004void mem_cgroup_rotate_reclaimable_page(struct page *page)
1005{
1006 struct mem_cgroup_per_zone *mz;
1007 struct page_cgroup *pc;
1008 enum lru_list lru = page_lru(page);
1009
1010 if (mem_cgroup_disabled())
1011 return;
1012
1013 pc = lookup_page_cgroup(page);
1014 /* unused or root page is not rotated. */
1015 if (!PageCgroupUsed(pc))
1016 return;
1017 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1018 smp_rmb();
1019 if (mem_cgroup_is_root(pc->mem_cgroup))
1020 return;
Johannes Weiner97a6c372011-03-23 16:42:27 -07001021 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
Minchan Kim3f58a822011-03-22 16:32:53 -07001022 list_move_tail(&pc->lru, &mz->lists[lru]);
1023}
1024
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001025void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru)
Balbir Singh66e17072008-02-07 00:13:56 -08001026{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001027 struct mem_cgroup_per_zone *mz;
1028 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001029
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001030 if (mem_cgroup_disabled())
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001031 return;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001032
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001033 pc = lookup_page_cgroup(page);
Balbir Singh4b3bde42009-09-23 15:56:32 -07001034 /* unused or root page is not rotated. */
Johannes Weiner713735b2011-01-20 14:44:31 -08001035 if (!PageCgroupUsed(pc))
1036 return;
1037 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1038 smp_rmb();
1039 if (mem_cgroup_is_root(pc->mem_cgroup))
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001040 return;
Johannes Weiner97a6c372011-03-23 16:42:27 -07001041 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001042 list_move(&pc->lru, &mz->lists[lru]);
Balbir Singh66e17072008-02-07 00:13:56 -08001043}
1044
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001045void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru)
1046{
1047 struct page_cgroup *pc;
1048 struct mem_cgroup_per_zone *mz;
1049
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001050 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001051 return;
1052 pc = lookup_page_cgroup(page);
Balbir Singh4b3bde42009-09-23 15:56:32 -07001053 VM_BUG_ON(PageCgroupAcctLRU(pc));
Johannes Weinera61ed3c2011-11-02 13:38:29 -07001054 /*
1055 * putback: charge:
1056 * SetPageLRU SetPageCgroupUsed
1057 * smp_mb smp_mb
1058 * PageCgroupUsed && add to memcg LRU PageLRU && add to memcg LRU
1059 *
1060 * Ensure that one of the two sides adds the page to the memcg
1061 * LRU during a race.
1062 */
1063 smp_mb();
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001064 if (!PageCgroupUsed(pc))
1065 return;
Johannes Weiner713735b2011-01-20 14:44:31 -08001066 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1067 smp_rmb();
Johannes Weiner97a6c372011-03-23 16:42:27 -07001068 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -08001069 /* huge page split is done under lru_lock. so, we have no races. */
1070 MEM_CGROUP_ZSTAT(mz, lru) += 1 << compound_order(page);
Balbir Singh4b3bde42009-09-23 15:56:32 -07001071 SetPageCgroupAcctLRU(pc);
1072 if (mem_cgroup_is_root(pc->mem_cgroup))
1073 return;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001074 list_add(&pc->lru, &mz->lists[lru]);
1075}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001076
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001077/*
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001078 * At handling SwapCache and other FUSE stuff, pc->mem_cgroup may be changed
1079 * while it's linked to lru because the page may be reused after it's fully
1080 * uncharged. To handle that, unlink page_cgroup from LRU when charge it again.
1081 * It's done under lock_page and expected that zone->lru_lock isnever held.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001082 */
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001083static void mem_cgroup_lru_del_before_commit(struct page *page)
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001084{
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001085 unsigned long flags;
1086 struct zone *zone = page_zone(page);
1087 struct page_cgroup *pc = lookup_page_cgroup(page);
1088
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001089 /*
1090 * Doing this check without taking ->lru_lock seems wrong but this
1091 * is safe. Because if page_cgroup's USED bit is unset, the page
1092 * will not be added to any memcg's LRU. If page_cgroup's USED bit is
1093 * set, the commit after this will fail, anyway.
1094 * This all charge/uncharge is done under some mutual execustion.
1095 * So, we don't need to taking care of changes in USED bit.
1096 */
1097 if (likely(!PageLRU(page)))
1098 return;
1099
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001100 spin_lock_irqsave(&zone->lru_lock, flags);
1101 /*
1102 * Forget old LRU when this page_cgroup is *not* used. This Used bit
1103 * is guarded by lock_page() because the page is SwapCache.
1104 */
1105 if (!PageCgroupUsed(pc))
1106 mem_cgroup_del_lru_list(page, page_lru(page));
1107 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001108}
1109
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001110static void mem_cgroup_lru_add_after_commit(struct page *page)
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001111{
1112 unsigned long flags;
1113 struct zone *zone = page_zone(page);
1114 struct page_cgroup *pc = lookup_page_cgroup(page);
Johannes Weinera61ed3c2011-11-02 13:38:29 -07001115 /*
1116 * putback: charge:
1117 * SetPageLRU SetPageCgroupUsed
1118 * smp_mb smp_mb
1119 * PageCgroupUsed && add to memcg LRU PageLRU && add to memcg LRU
1120 *
1121 * Ensure that one of the two sides adds the page to the memcg
1122 * LRU during a race.
1123 */
1124 smp_mb();
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001125 /* taking care of that the page is added to LRU while we commit it */
1126 if (likely(!PageLRU(page)))
1127 return;
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001128 spin_lock_irqsave(&zone->lru_lock, flags);
1129 /* link when the page is linked to LRU but page_cgroup isn't */
Balbir Singh4b3bde42009-09-23 15:56:32 -07001130 if (PageLRU(page) && !PageCgroupAcctLRU(pc))
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001131 mem_cgroup_add_lru_list(page, page_lru(page));
1132 spin_unlock_irqrestore(&zone->lru_lock, flags);
1133}
1134
1135
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001136void mem_cgroup_move_lists(struct page *page,
1137 enum lru_list from, enum lru_list to)
1138{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08001139 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001140 return;
1141 mem_cgroup_del_lru_list(page, from);
1142 mem_cgroup_add_lru_list(page, to);
1143}
1144
Michal Hocko3e920412011-07-26 16:08:29 -07001145/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001146 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001147 * hierarchy subtree
1148 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001149static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1150 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001151{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001152 if (root_memcg != memcg) {
1153 return (root_memcg->use_hierarchy &&
1154 css_is_ancestor(&memcg->css, &root_memcg->css));
Michal Hocko3e920412011-07-26 16:08:29 -07001155 }
1156
1157 return true;
1158}
1159
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001160int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001161{
1162 int ret;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001163 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001164 struct task_struct *p;
David Rientjes4c4a2212008-02-07 00:14:06 -08001165
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001166 p = find_lock_task_mm(task);
1167 if (!p)
1168 return 0;
1169 curr = try_get_mem_cgroup_from_mm(p->mm);
1170 task_unlock(p);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001171 if (!curr)
1172 return 0;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001173 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001174 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001175 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001176 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1177 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001178 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001179 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001180 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001181 return ret;
1182}
1183
Johannes Weiner9b272972011-11-02 13:38:23 -07001184int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg, struct zone *zone)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001185{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001186 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001187 int nid = zone_to_nid(zone);
1188 int zid = zone_idx(zone);
1189 unsigned long inactive;
1190 unsigned long active;
1191 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001192
Johannes Weiner9b272972011-11-02 13:38:23 -07001193 inactive = mem_cgroup_zone_nr_lru_pages(memcg, nid, zid,
1194 BIT(LRU_INACTIVE_ANON));
1195 active = mem_cgroup_zone_nr_lru_pages(memcg, nid, zid,
1196 BIT(LRU_ACTIVE_ANON));
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001197
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001198 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1199 if (gb)
1200 inactive_ratio = int_sqrt(10 * gb);
1201 else
1202 inactive_ratio = 1;
1203
Johannes Weiner9b272972011-11-02 13:38:23 -07001204 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001205}
1206
Johannes Weiner9b272972011-11-02 13:38:23 -07001207int mem_cgroup_inactive_file_is_low(struct mem_cgroup *memcg, struct zone *zone)
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001208{
1209 unsigned long active;
1210 unsigned long inactive;
Johannes Weiner9b272972011-11-02 13:38:23 -07001211 int zid = zone_idx(zone);
1212 int nid = zone_to_nid(zone);
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001213
Johannes Weiner9b272972011-11-02 13:38:23 -07001214 inactive = mem_cgroup_zone_nr_lru_pages(memcg, nid, zid,
1215 BIT(LRU_INACTIVE_FILE));
1216 active = mem_cgroup_zone_nr_lru_pages(memcg, nid, zid,
1217 BIT(LRU_ACTIVE_FILE));
Rik van Riel56e49d22009-06-16 15:32:28 -07001218
1219 return (active > inactive);
1220}
1221
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001222struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg,
1223 struct zone *zone)
1224{
KOSAKI Motohiro13d7e3a2010-08-10 18:03:06 -07001225 int nid = zone_to_nid(zone);
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001226 int zid = zone_idx(zone);
1227 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
1228
1229 return &mz->reclaim_stat;
1230}
1231
1232struct zone_reclaim_stat *
1233mem_cgroup_get_reclaim_stat_from_page(struct page *page)
1234{
1235 struct page_cgroup *pc;
1236 struct mem_cgroup_per_zone *mz;
1237
1238 if (mem_cgroup_disabled())
1239 return NULL;
1240
1241 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -08001242 if (!PageCgroupUsed(pc))
1243 return NULL;
Johannes Weiner713735b2011-01-20 14:44:31 -08001244 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1245 smp_rmb();
Johannes Weiner97a6c372011-03-23 16:42:27 -07001246 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001247 return &mz->reclaim_stat;
1248}
1249
Balbir Singh66e17072008-02-07 00:13:56 -08001250unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
1251 struct list_head *dst,
1252 unsigned long *scanned, int order,
Minchan Kim4356f212011-10-31 17:06:47 -07001253 isolate_mode_t mode,
1254 struct zone *z,
Balbir Singh66e17072008-02-07 00:13:56 -08001255 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001256 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -08001257{
1258 unsigned long nr_taken = 0;
1259 struct page *page;
1260 unsigned long scan;
1261 LIST_HEAD(pc_list);
1262 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001263 struct page_cgroup *pc, *tmp;
KOSAKI Motohiro13d7e3a2010-08-10 18:03:06 -07001264 int nid = zone_to_nid(z);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001265 int zid = zone_idx(z);
1266 struct mem_cgroup_per_zone *mz;
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001267 int lru = LRU_FILE * file + active;
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -07001268 int ret;
Balbir Singh66e17072008-02-07 00:13:56 -08001269
Balbir Singhcf475ad2008-04-29 01:00:16 -07001270 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001271 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001272 src = &mz->lists[lru];
Balbir Singh66e17072008-02-07 00:13:56 -08001273
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001274 scan = 0;
1275 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -08001276 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001277 break;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001278
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001279 if (unlikely(!PageCgroupUsed(pc)))
1280 continue;
Johannes Weiner5564e882011-03-23 16:42:29 -07001281
Johannes Weiner6b3ae582011-03-23 16:42:30 -07001282 page = lookup_cgroup_page(pc);
Johannes Weiner5564e882011-03-23 16:42:29 -07001283
Hugh Dickins436c65412008-02-07 00:14:12 -08001284 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001285 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001286
Hugh Dickins436c65412008-02-07 00:14:12 -08001287 scan++;
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -07001288 ret = __isolate_lru_page(page, mode, file);
1289 switch (ret) {
1290 case 0:
Balbir Singh66e17072008-02-07 00:13:56 -08001291 list_move(&page->lru, dst);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -07001292 mem_cgroup_del_lru(page);
Rik van Riel2c888cf2011-01-13 15:47:13 -08001293 nr_taken += hpage_nr_pages(page);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -07001294 break;
1295 case -EBUSY:
1296 /* we don't affect global LRU but rotate in our LRU */
1297 mem_cgroup_rotate_lru_list(page, page_lru(page));
1298 break;
1299 default:
1300 break;
Balbir Singh66e17072008-02-07 00:13:56 -08001301 }
1302 }
1303
Balbir Singh66e17072008-02-07 00:13:56 -08001304 *scanned = scan;
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -07001305
1306 trace_mm_vmscan_memcg_isolate(0, nr_to_scan, scan, nr_taken,
1307 0, 0, 0, mode);
1308
Balbir Singh66e17072008-02-07 00:13:56 -08001309 return nr_taken;
1310}
1311
Balbir Singh6d61ef42009-01-07 18:08:06 -08001312#define mem_cgroup_from_res_counter(counter, member) \
1313 container_of(counter, struct mem_cgroup, member)
1314
Johannes Weiner19942822011-02-01 15:52:43 -08001315/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001316 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
1317 * @mem: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001318 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001319 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001320 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001321 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001322static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001323{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001324 unsigned long long margin;
1325
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001326 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001327 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001328 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001329 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001330}
1331
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001332int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001333{
1334 struct cgroup *cgrp = memcg->css.cgroup;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001335
1336 /* root ? */
1337 if (cgrp->parent == NULL)
1338 return vm_swappiness;
1339
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001340 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001341}
1342
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001343static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001344{
1345 int cpu;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001346
1347 get_online_cpus();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001348 spin_lock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001349 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001350 per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) += 1;
1351 memcg->nocpu_base.count[MEM_CGROUP_ON_MOVE] += 1;
1352 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001353 put_online_cpus();
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001354
1355 synchronize_rcu();
1356}
1357
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001358static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001359{
1360 int cpu;
1361
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001362 if (!memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001363 return;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001364 get_online_cpus();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001365 spin_lock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001366 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001367 per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) -= 1;
1368 memcg->nocpu_base.count[MEM_CGROUP_ON_MOVE] -= 1;
1369 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001370 put_online_cpus();
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001371}
1372/*
1373 * 2 routines for checking "mem" is under move_account() or not.
1374 *
1375 * mem_cgroup_stealed() - checking a cgroup is mc.from or not. This is used
1376 * for avoiding race in accounting. If true,
1377 * pc->mem_cgroup may be overwritten.
1378 *
1379 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1380 * under hierarchy of moving cgroups. This is for
1381 * waiting at hith-memory prressure caused by "move".
1382 */
1383
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001384static bool mem_cgroup_stealed(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001385{
1386 VM_BUG_ON(!rcu_read_lock_held());
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001387 return this_cpu_read(memcg->stat->count[MEM_CGROUP_ON_MOVE]) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001388}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001389
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001390static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001391{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001392 struct mem_cgroup *from;
1393 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001394 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001395 /*
1396 * Unlike task_move routines, we access mc.to, mc.from not under
1397 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1398 */
1399 spin_lock(&mc.lock);
1400 from = mc.from;
1401 to = mc.to;
1402 if (!from)
1403 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001404
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001405 ret = mem_cgroup_same_or_subtree(memcg, from)
1406 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001407unlock:
1408 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001409 return ret;
1410}
1411
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001412static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001413{
1414 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001415 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001416 DEFINE_WAIT(wait);
1417 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1418 /* moving charge context might have finished. */
1419 if (mc.moving_task)
1420 schedule();
1421 finish_wait(&mc.waitq, &wait);
1422 return true;
1423 }
1424 }
1425 return false;
1426}
1427
Balbir Singhe2224322009-04-02 16:57:39 -07001428/**
Kirill A. Shutemov6a6135b2010-03-10 15:22:25 -08001429 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
Balbir Singhe2224322009-04-02 16:57:39 -07001430 * @memcg: The memory cgroup that went over limit
1431 * @p: Task that is going to be killed
1432 *
1433 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1434 * enabled
1435 */
1436void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1437{
1438 struct cgroup *task_cgrp;
1439 struct cgroup *mem_cgrp;
1440 /*
1441 * Need a buffer in BSS, can't rely on allocations. The code relies
1442 * on the assumption that OOM is serialized for memory controller.
1443 * If this assumption is broken, revisit this code.
1444 */
1445 static char memcg_name[PATH_MAX];
1446 int ret;
1447
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001448 if (!memcg || !p)
Balbir Singhe2224322009-04-02 16:57:39 -07001449 return;
1450
1451
1452 rcu_read_lock();
1453
1454 mem_cgrp = memcg->css.cgroup;
1455 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1456
1457 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1458 if (ret < 0) {
1459 /*
1460 * Unfortunately, we are unable to convert to a useful name
1461 * But we'll still print out the usage information
1462 */
1463 rcu_read_unlock();
1464 goto done;
1465 }
1466 rcu_read_unlock();
1467
1468 printk(KERN_INFO "Task in %s killed", memcg_name);
1469
1470 rcu_read_lock();
1471 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1472 if (ret < 0) {
1473 rcu_read_unlock();
1474 goto done;
1475 }
1476 rcu_read_unlock();
1477
1478 /*
1479 * Continues from above, so we don't need an KERN_ level
1480 */
1481 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1482done:
1483
1484 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1485 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1486 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1487 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1488 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1489 "failcnt %llu\n",
1490 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1491 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1492 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
1493}
1494
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001495/*
1496 * This function returns the number of memcg under hierarchy tree. Returns
1497 * 1(self count) if no children.
1498 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001499static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001500{
1501 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001502 struct mem_cgroup *iter;
1503
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001504 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001505 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001506 return num;
1507}
1508
Balbir Singh6d61ef42009-01-07 18:08:06 -08001509/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001510 * Return the memory (and swap, if configured) limit for a memcg.
1511 */
1512u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
1513{
1514 u64 limit;
1515 u64 memsw;
1516
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001517 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1518 limit += total_swap_pages << PAGE_SHIFT;
1519
David Rientjesa63d83f2010-08-09 17:19:46 -07001520 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1521 /*
1522 * If memsw is finite and limits the amount of swap space available
1523 * to this memcg, return that limit.
1524 */
1525 return min(limit, memsw);
1526}
1527
1528/*
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001529 * Visit the first child (need not be the first child as per the ordering
1530 * of the cgroup list, since we track last_scanned_child) of @mem and use
1531 * that to reclaim free pages from.
1532 */
1533static struct mem_cgroup *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001534mem_cgroup_select_victim(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001535{
1536 struct mem_cgroup *ret = NULL;
1537 struct cgroup_subsys_state *css;
1538 int nextid, found;
1539
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001540 if (!root_memcg->use_hierarchy) {
1541 css_get(&root_memcg->css);
1542 ret = root_memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001543 }
1544
1545 while (!ret) {
1546 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001547 nextid = root_memcg->last_scanned_child + 1;
1548 css = css_get_next(&mem_cgroup_subsys, nextid, &root_memcg->css,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001549 &found);
1550 if (css && css_tryget(css))
1551 ret = container_of(css, struct mem_cgroup, css);
1552
1553 rcu_read_unlock();
1554 /* Updates scanning parameter */
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001555 if (!css) {
1556 /* this means start scan from ID:1 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001557 root_memcg->last_scanned_child = 0;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001558 } else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001559 root_memcg->last_scanned_child = found;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001560 }
1561
1562 return ret;
1563}
1564
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001565/**
1566 * test_mem_cgroup_node_reclaimable
1567 * @mem: the target memcg
1568 * @nid: the node ID to be checked.
1569 * @noswap : specify true here if the user wants flle only information.
1570 *
1571 * This function returns whether the specified memcg contains any
1572 * reclaimable pages on a node. Returns true if there are any reclaimable
1573 * pages in the node.
1574 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001575static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001576 int nid, bool noswap)
1577{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001578 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001579 return true;
1580 if (noswap || !total_swap_pages)
1581 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001582 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001583 return true;
1584 return false;
1585
1586}
Ying Han889976d2011-05-26 16:25:33 -07001587#if MAX_NUMNODES > 1
1588
1589/*
1590 * Always updating the nodemask is not very good - even if we have an empty
1591 * list or the wrong list here, we can start from some node and traverse all
1592 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1593 *
1594 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001595static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001596{
1597 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001598 /*
1599 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1600 * pagein/pageout changes since the last update.
1601 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001602 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001603 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001604 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001605 return;
1606
Ying Han889976d2011-05-26 16:25:33 -07001607 /* make a nodemask where this memcg uses memory from */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001608 memcg->scan_nodes = node_states[N_HIGH_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001609
1610 for_each_node_mask(nid, node_states[N_HIGH_MEMORY]) {
1611
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001612 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1613 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001614 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001615
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001616 atomic_set(&memcg->numainfo_events, 0);
1617 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001618}
1619
1620/*
1621 * Selecting a node where we start reclaim from. Because what we need is just
1622 * reducing usage counter, start from anywhere is O,K. Considering
1623 * memory reclaim from current node, there are pros. and cons.
1624 *
1625 * Freeing memory from current node means freeing memory from a node which
1626 * we'll use or we've used. So, it may make LRU bad. And if several threads
1627 * hit limits, it will see a contention on a node. But freeing from remote
1628 * node means more costs for memory reclaim because of memory latency.
1629 *
1630 * Now, we use round-robin. Better algorithm is welcomed.
1631 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001632int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001633{
1634 int node;
1635
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001636 mem_cgroup_may_update_nodemask(memcg);
1637 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001638
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001639 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001640 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001641 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001642 /*
1643 * We call this when we hit limit, not when pages are added to LRU.
1644 * No LRU may hold pages because all pages are UNEVICTABLE or
1645 * memcg is too small and all pages are not on LRU. In that case,
1646 * we use curret node.
1647 */
1648 if (unlikely(node == MAX_NUMNODES))
1649 node = numa_node_id();
1650
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001651 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001652 return node;
1653}
1654
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001655/*
1656 * Check all nodes whether it contains reclaimable pages or not.
1657 * For quick scan, we make use of scan_nodes. This will allow us to skip
1658 * unused nodes. But scan_nodes is lazily updated and may not cotain
1659 * enough new information. We need to do double check.
1660 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001661bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001662{
1663 int nid;
1664
1665 /*
1666 * quick check...making use of scan_node.
1667 * We can skip unused nodes.
1668 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001669 if (!nodes_empty(memcg->scan_nodes)) {
1670 for (nid = first_node(memcg->scan_nodes);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001671 nid < MAX_NUMNODES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001672 nid = next_node(nid, memcg->scan_nodes)) {
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001673
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001674 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001675 return true;
1676 }
1677 }
1678 /*
1679 * Check rest of nodes.
1680 */
1681 for_each_node_state(nid, N_HIGH_MEMORY) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001682 if (node_isset(nid, memcg->scan_nodes))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001683 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001684 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001685 return true;
1686 }
1687 return false;
1688}
1689
Ying Han889976d2011-05-26 16:25:33 -07001690#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001691int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001692{
1693 return 0;
1694}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001695
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001696bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001697{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001698 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001699}
Ying Han889976d2011-05-26 16:25:33 -07001700#endif
1701
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001702/*
1703 * Scan the hierarchy if needed to reclaim memory. We remember the last child
1704 * we reclaimed from, so that we don't end up penalizing one child extensively
1705 * based on its position in the children list.
Balbir Singh6d61ef42009-01-07 18:08:06 -08001706 *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001707 * root_memcg is the original ancestor that we've been reclaim from.
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001708 *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001709 * We give up and return to the caller when we visit root_memcg twice.
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001710 * (other groups can be removed while we're walking....)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001711 *
1712 * If shrink==true, for avoiding to free too much, this returns immedieately.
Balbir Singh6d61ef42009-01-07 18:08:06 -08001713 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001714static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_memcg,
Balbir Singh4e416952009-09-23 15:56:39 -07001715 struct zone *zone,
Balbir Singh75822b42009-09-23 15:56:38 -07001716 gfp_t gfp_mask,
Ying Han0ae5e892011-05-26 16:25:25 -07001717 unsigned long reclaim_options,
1718 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001719{
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001720 struct mem_cgroup *victim;
1721 int ret, total = 0;
1722 int loop = 0;
Balbir Singh75822b42009-09-23 15:56:38 -07001723 bool noswap = reclaim_options & MEM_CGROUP_RECLAIM_NOSWAP;
1724 bool shrink = reclaim_options & MEM_CGROUP_RECLAIM_SHRINK;
Balbir Singh4e416952009-09-23 15:56:39 -07001725 bool check_soft = reclaim_options & MEM_CGROUP_RECLAIM_SOFT;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001726 unsigned long excess;
Johannes Weiner185efc02011-09-14 16:21:58 -07001727 unsigned long nr_scanned;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001728
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001729 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001730
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07001731 /* If memsw_is_minimum==1, swap-out is of-no-use. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001732 if (!check_soft && !shrink && root_memcg->memsw_is_minimum)
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07001733 noswap = true;
1734
Balbir Singh4e416952009-09-23 15:56:39 -07001735 while (1) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001736 victim = mem_cgroup_select_victim(root_memcg);
1737 if (victim == root_memcg) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001738 loop++;
KAMEZAWA Hiroyukifbc29a22011-06-15 15:08:46 -07001739 /*
1740 * We are not draining per cpu cached charges during
1741 * soft limit reclaim because global reclaim doesn't
1742 * care about charges. It tries to free some memory and
1743 * charges will not give any.
1744 */
1745 if (!check_soft && loop >= 1)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001746 drain_all_stock_async(root_memcg);
Balbir Singh4e416952009-09-23 15:56:39 -07001747 if (loop >= 2) {
1748 /*
1749 * If we have not been able to reclaim
1750 * anything, it might because there are
1751 * no reclaimable pages under this hierarchy
1752 */
1753 if (!check_soft || !total) {
1754 css_put(&victim->css);
1755 break;
1756 }
1757 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001758 * We want to do more targeted reclaim.
Balbir Singh4e416952009-09-23 15:56:39 -07001759 * excess >> 2 is not to excessive so as to
1760 * reclaim too much, nor too less that we keep
1761 * coming back to reclaim from this cgroup
1762 */
1763 if (total >= (excess >> 2) ||
1764 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS)) {
1765 css_put(&victim->css);
1766 break;
1767 }
1768 }
1769 }
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001770 if (!mem_cgroup_reclaimable(victim, noswap)) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001771 /* this cgroup's local usage == 0 */
1772 css_put(&victim->css);
Balbir Singh6d61ef42009-01-07 18:08:06 -08001773 continue;
1774 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001775 /* we use swappiness of local cgroup */
Ying Han0ae5e892011-05-26 16:25:25 -07001776 if (check_soft) {
Balbir Singh4e416952009-09-23 15:56:39 -07001777 ret = mem_cgroup_shrink_node_zone(victim, gfp_mask,
Johannes Weiner185efc02011-09-14 16:21:58 -07001778 noswap, zone, &nr_scanned);
1779 *total_scanned += nr_scanned;
Ying Han0ae5e892011-05-26 16:25:25 -07001780 } else
Balbir Singh4e416952009-09-23 15:56:39 -07001781 ret = try_to_free_mem_cgroup_pages(victim, gfp_mask,
Johannes Weiner185efc02011-09-14 16:21:58 -07001782 noswap);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001783 css_put(&victim->css);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001784 /*
1785 * At shrinking usage, we can't check we should stop here or
1786 * reclaim more. It's depends on callers. last_scanned_child
1787 * will work enough for keeping fairness under tree.
1788 */
1789 if (shrink)
1790 return ret;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001791 total += ret;
Balbir Singh4e416952009-09-23 15:56:39 -07001792 if (check_soft) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001793 if (!res_counter_soft_limit_excess(&root_memcg->res))
Balbir Singh4e416952009-09-23 15:56:39 -07001794 return total;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001795 } else if (mem_cgroup_margin(root_memcg))
Johannes Weiner4fd14eb2011-05-26 16:25:35 -07001796 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001797 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001798 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001799}
1800
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001801/*
1802 * Check OOM-Killer is already running under our hierarchy.
1803 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001804 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001805 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001806static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001807{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001808 struct mem_cgroup *iter, *failed = NULL;
1809 bool cond = true;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001810
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001811 for_each_mem_cgroup_tree_cond(iter, memcg, cond) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001812 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001813 /*
1814 * this subtree of our hierarchy is already locked
1815 * so we cannot give a lock.
1816 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001817 failed = iter;
1818 cond = false;
Johannes Weiner23751be2011-08-25 15:59:16 -07001819 } else
1820 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001821 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001822
Michal Hocko79dfdac2011-07-26 16:08:23 -07001823 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001824 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001825
1826 /*
1827 * OK, we failed to lock the whole subtree so we have to clean up
1828 * what we set up to the failing subtree
1829 */
1830 cond = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001831 for_each_mem_cgroup_tree_cond(iter, memcg, cond) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001832 if (iter == failed) {
1833 cond = false;
1834 continue;
1835 }
1836 iter->oom_lock = false;
1837 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001838 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001839}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001840
Michal Hocko79dfdac2011-07-26 16:08:23 -07001841/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001842 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001843 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001844static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001845{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001846 struct mem_cgroup *iter;
1847
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001848 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001849 iter->oom_lock = false;
1850 return 0;
1851}
1852
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001853static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001854{
1855 struct mem_cgroup *iter;
1856
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001857 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001858 atomic_inc(&iter->under_oom);
1859}
1860
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001861static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001862{
1863 struct mem_cgroup *iter;
1864
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001865 /*
1866 * When a new child is created while the hierarchy is under oom,
1867 * mem_cgroup_oom_lock() may not be called. We have to use
1868 * atomic_add_unless() here.
1869 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001870 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001871 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001872}
1873
Michal Hocko1af8efe2011-07-26 16:08:24 -07001874static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001875static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1876
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001877struct oom_wait_info {
1878 struct mem_cgroup *mem;
1879 wait_queue_t wait;
1880};
1881
1882static int memcg_oom_wake_function(wait_queue_t *wait,
1883 unsigned mode, int sync, void *arg)
1884{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001885 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg,
1886 *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001887 struct oom_wait_info *oom_wait_info;
1888
1889 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001890 oom_wait_memcg = oom_wait_info->mem;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001891
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001892 /*
1893 * Both of oom_wait_info->mem and wake_mem are stable under us.
1894 * Then we can use css_is_ancestor without taking care of RCU.
1895 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001896 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1897 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001898 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001899 return autoremove_wake_function(wait, mode, sync, arg);
1900}
1901
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001902static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001903{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001904 /* for filtering, pass "memcg" as argument. */
1905 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001906}
1907
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001908static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001909{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001910 if (memcg && atomic_read(&memcg->under_oom))
1911 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001912}
1913
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001914/*
1915 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1916 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001917bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001918{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001919 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001920 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001921
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001922 owait.mem = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001923 owait.wait.flags = 0;
1924 owait.wait.func = memcg_oom_wake_function;
1925 owait.wait.private = current;
1926 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001927 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001928 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001929
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001930 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001931 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001932 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001933 /*
1934 * Even if signal_pending(), we can't quit charge() loop without
1935 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1936 * under OOM is always welcomed, use TASK_KILLABLE here.
1937 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001938 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001939 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001940 need_to_kill = false;
1941 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001942 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001943 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001944
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001945 if (need_to_kill) {
1946 finish_wait(&memcg_oom_waitq, &owait.wait);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001947 mem_cgroup_out_of_memory(memcg, mask);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001948 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001949 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001950 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001951 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001952 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001953 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001954 mem_cgroup_oom_unlock(memcg);
1955 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001956 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001957
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001958 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001959
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001960 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1961 return false;
1962 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001963 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001964 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001965}
1966
Balbir Singhd69b0422009-06-17 16:26:34 -07001967/*
1968 * Currently used to update mapped file statistics, but the routine can be
1969 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001970 *
1971 * Notes: Race condition
1972 *
1973 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1974 * it tends to be costly. But considering some conditions, we doesn't need
1975 * to do so _always_.
1976 *
1977 * Considering "charge", lock_page_cgroup() is not required because all
1978 * file-stat operations happen after a page is attached to radix-tree. There
1979 * are no race with "charge".
1980 *
1981 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1982 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1983 * if there are race with "uncharge". Statistics itself is properly handled
1984 * by flags.
1985 *
1986 * Considering "move", this is an only case we see a race. To make the race
1987 * small, we check MEM_CGROUP_ON_MOVE percpu value and detect there are
1988 * possibility of race condition. If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07001989 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001990
Greg Thelen2a7106f2011-01-13 15:47:37 -08001991void mem_cgroup_update_page_stat(struct page *page,
1992 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07001993{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001994 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001995 struct page_cgroup *pc = lookup_page_cgroup(page);
1996 bool need_unlock = false;
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08001997 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07001998
Balbir Singhd69b0422009-06-17 16:26:34 -07001999 if (unlikely(!pc))
2000 return;
2001
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002002 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002003 memcg = pc->mem_cgroup;
2004 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002005 goto out;
2006 /* pc->mem_cgroup is unstable ? */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002007 if (unlikely(mem_cgroup_stealed(memcg)) || PageTransHuge(page)) {
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002008 /* take a lock against to access pc->mem_cgroup */
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002009 move_lock_page_cgroup(pc, &flags);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002010 need_unlock = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002011 memcg = pc->mem_cgroup;
2012 if (!memcg || !PageCgroupUsed(pc))
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002013 goto out;
2014 }
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002015
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002016 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002017 case MEMCG_NR_FILE_MAPPED:
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002018 if (val > 0)
2019 SetPageCgroupFileMapped(pc);
2020 else if (!page_mapped(page))
KAMEZAWA Hiroyuki0c270f82010-10-27 15:33:39 -07002021 ClearPageCgroupFileMapped(pc);
Greg Thelen2a7106f2011-01-13 15:47:37 -08002022 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002023 break;
2024 default:
2025 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002026 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002027
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002028 this_cpu_add(memcg->stat->count[idx], val);
Greg Thelen2a7106f2011-01-13 15:47:37 -08002029
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002030out:
2031 if (unlikely(need_unlock))
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002032 move_unlock_page_cgroup(pc, &flags);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002033 rcu_read_unlock();
2034 return;
Balbir Singhd69b0422009-06-17 16:26:34 -07002035}
Greg Thelen2a7106f2011-01-13 15:47:37 -08002036EXPORT_SYMBOL(mem_cgroup_update_page_stat);
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002037
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002038/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002039 * size of first charge trial. "32" comes from vmscan.c's magic value.
2040 * TODO: maybe necessary to use big numbers in big irons.
2041 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002042#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002043struct memcg_stock_pcp {
2044 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002045 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002046 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002047 unsigned long flags;
2048#define FLUSHING_CACHED_CHARGE (0)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002049};
2050static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002051static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002052
2053/*
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002054 * Try to consume stocked charge on this cpu. If success, one page is consumed
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002055 * from local stock and true is returned. If the stock is 0 or charges from a
2056 * cgroup which is not current target, returns false. This stock will be
2057 * refilled.
2058 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002059static bool consume_stock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002060{
2061 struct memcg_stock_pcp *stock;
2062 bool ret = true;
2063
2064 stock = &get_cpu_var(memcg_stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002065 if (memcg == stock->cached && stock->nr_pages)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002066 stock->nr_pages--;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002067 else /* need to call res_counter_charge */
2068 ret = false;
2069 put_cpu_var(memcg_stock);
2070 return ret;
2071}
2072
2073/*
2074 * Returns stocks cached in percpu to res_counter and reset cached information.
2075 */
2076static void drain_stock(struct memcg_stock_pcp *stock)
2077{
2078 struct mem_cgroup *old = stock->cached;
2079
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002080 if (stock->nr_pages) {
2081 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2082
2083 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002084 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002085 res_counter_uncharge(&old->memsw, bytes);
2086 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002087 }
2088 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002089}
2090
2091/*
2092 * This must be called under preempt disabled or must be called by
2093 * a thread which is pinned to local cpu.
2094 */
2095static void drain_local_stock(struct work_struct *dummy)
2096{
2097 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2098 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002099 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002100}
2101
2102/*
2103 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002104 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002105 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002106static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002107{
2108 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2109
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002110 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002111 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002112 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002113 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002114 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002115 put_cpu_var(memcg_stock);
2116}
2117
2118/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002119 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002120 * of the hierarchy under it. sync flag says whether we should block
2121 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002122 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002123static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002124{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002125 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002126
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002127 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002128 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002129 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002130 for_each_online_cpu(cpu) {
2131 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002132 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002133
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002134 memcg = stock->cached;
2135 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002136 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002137 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002138 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002139 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2140 if (cpu == curcpu)
2141 drain_local_stock(&stock->work);
2142 else
2143 schedule_work_on(cpu, &stock->work);
2144 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002145 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002146 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002147
2148 if (!sync)
2149 goto out;
2150
2151 for_each_online_cpu(cpu) {
2152 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002153 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002154 flush_work(&stock->work);
2155 }
2156out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002157 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002158}
2159
2160/*
2161 * Tries to drain stocked charges in other cpus. This function is asynchronous
2162 * and just put a work per cpu for draining localy on each cpu. Caller can
2163 * expects some charges will be back to res_counter later but cannot wait for
2164 * it.
2165 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002166static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002167{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002168 /*
2169 * If someone calls draining, avoid adding more kworker runs.
2170 */
2171 if (!mutex_trylock(&percpu_charge_mutex))
2172 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002173 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002174 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002175}
2176
2177/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002178static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002179{
2180 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002181 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002182 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002183 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002184}
2185
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002186/*
2187 * This function drains percpu counter value from DEAD cpu and
2188 * move it to local cpu. Note that this function can be preempted.
2189 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002190static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002191{
2192 int i;
2193
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002194 spin_lock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002195 for (i = 0; i < MEM_CGROUP_STAT_DATA; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002196 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002197
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002198 per_cpu(memcg->stat->count[i], cpu) = 0;
2199 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002200 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002201 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002202 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002203
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002204 per_cpu(memcg->stat->events[i], cpu) = 0;
2205 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002206 }
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002207 /* need to clear ON_MOVE value, works as a kind of lock. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002208 per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) = 0;
2209 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002210}
2211
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002212static void synchronize_mem_cgroup_on_move(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002213{
2214 int idx = MEM_CGROUP_ON_MOVE;
2215
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002216 spin_lock(&memcg->pcp_counter_lock);
2217 per_cpu(memcg->stat->count[idx], cpu) = memcg->nocpu_base.count[idx];
2218 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002219}
2220
2221static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002222 unsigned long action,
2223 void *hcpu)
2224{
2225 int cpu = (unsigned long)hcpu;
2226 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002227 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002228
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002229 if ((action == CPU_ONLINE)) {
2230 for_each_mem_cgroup_all(iter)
2231 synchronize_mem_cgroup_on_move(iter, cpu);
2232 return NOTIFY_OK;
2233 }
2234
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002235 if ((action != CPU_DEAD) || action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002236 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002237
2238 for_each_mem_cgroup_all(iter)
2239 mem_cgroup_drain_pcp_counter(iter, cpu);
2240
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002241 stock = &per_cpu(memcg_stock, cpu);
2242 drain_stock(stock);
2243 return NOTIFY_OK;
2244}
2245
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002246
2247/* See __mem_cgroup_try_charge() for details */
2248enum {
2249 CHARGE_OK, /* success */
2250 CHARGE_RETRY, /* need to retry but retry is not bad */
2251 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2252 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2253 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2254};
2255
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002256static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002257 unsigned int nr_pages, bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002258{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002259 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002260 struct mem_cgroup *mem_over_limit;
2261 struct res_counter *fail_res;
2262 unsigned long flags = 0;
2263 int ret;
2264
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002265 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002266
2267 if (likely(!ret)) {
2268 if (!do_swap_account)
2269 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002270 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002271 if (likely(!ret))
2272 return CHARGE_OK;
2273
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002274 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002275 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2276 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2277 } else
2278 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002279 /*
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002280 * nr_pages can be either a huge page (HPAGE_PMD_NR), a batch
2281 * of regular pages (CHARGE_BATCH), or a single regular page (1).
Johannes Weiner9221edb2011-02-01 15:52:42 -08002282 *
2283 * Never reclaim on behalf of optional batching, retry with a
2284 * single page instead.
2285 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002286 if (nr_pages == CHARGE_BATCH)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002287 return CHARGE_RETRY;
2288
2289 if (!(gfp_mask & __GFP_WAIT))
2290 return CHARGE_WOULDBLOCK;
2291
2292 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, NULL,
Ying Han0ae5e892011-05-26 16:25:25 -07002293 gfp_mask, flags, NULL);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002294 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002295 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002296 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002297 * Even though the limit is exceeded at this point, reclaim
2298 * may have been able to free some pages. Retry the charge
2299 * before killing the task.
2300 *
2301 * Only for regular pages, though: huge pages are rather
2302 * unlikely to succeed so close to the limit, and we fall back
2303 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002304 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002305 if (nr_pages == 1 && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002306 return CHARGE_RETRY;
2307
2308 /*
2309 * At task move, charge accounts can be doubly counted. So, it's
2310 * better to wait until the end of task_move if something is going on.
2311 */
2312 if (mem_cgroup_wait_acct_move(mem_over_limit))
2313 return CHARGE_RETRY;
2314
2315 /* If we don't need to call oom-killer at el, return immediately */
2316 if (!oom_check)
2317 return CHARGE_NOMEM;
2318 /* check OOM */
2319 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask))
2320 return CHARGE_OOM_DIE;
2321
2322 return CHARGE_RETRY;
2323}
2324
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002325/*
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002326 * Unlike exported interface, "oom" parameter is added. if oom==true,
2327 * oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002328 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002329static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002330 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002331 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002332 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002333 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002334{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002335 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002336 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002337 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002338 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002339
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002340 /*
2341 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2342 * in system level. So, allow to go ahead dying process in addition to
2343 * MEMDIE process.
2344 */
2345 if (unlikely(test_thread_flag(TIF_MEMDIE)
2346 || fatal_signal_pending(current)))
2347 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002348
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002349 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002350 * We always charge the cgroup the mm_struct belongs to.
2351 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002352 * thread group leader migrates. It's possible that mm is not
2353 * set, if so charge the init_mm (happens for pagecache usage).
2354 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002355 if (!*ptr && !mm)
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002356 goto bypass;
2357again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002358 if (*ptr) { /* css should be a valid one */
2359 memcg = *ptr;
2360 VM_BUG_ON(css_is_removed(&memcg->css));
2361 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002362 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002363 if (nr_pages == 1 && consume_stock(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002364 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002365 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002366 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002367 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002368
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002369 rcu_read_lock();
2370 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002371 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002372 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002373 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002374 * race with swapoff. Then, we have small risk of mis-accouning.
2375 * But such kind of mis-account by race always happens because
2376 * we don't have cgroup_mutex(). It's overkill and we allo that
2377 * small race, here.
2378 * (*) swapoff at el will charge against mm-struct not against
2379 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002380 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002381 memcg = mem_cgroup_from_task(p);
2382 if (!memcg || mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002383 rcu_read_unlock();
2384 goto done;
2385 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002386 if (nr_pages == 1 && consume_stock(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002387 /*
2388 * It seems dagerous to access memcg without css_get().
2389 * But considering how consume_stok works, it's not
2390 * necessary. If consume_stock success, some charges
2391 * from this memcg are cached on this cpu. So, we
2392 * don't need to call css_get()/css_tryget() before
2393 * calling consume_stock().
2394 */
2395 rcu_read_unlock();
2396 goto done;
2397 }
2398 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002399 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002400 rcu_read_unlock();
2401 goto again;
2402 }
2403 rcu_read_unlock();
2404 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002405
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002406 do {
2407 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002408
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002409 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002410 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002411 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002412 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002413 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002414
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002415 oom_check = false;
2416 if (oom && !nr_oom_retries) {
2417 oom_check = true;
2418 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2419 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002420
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002421 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002422 switch (ret) {
2423 case CHARGE_OK:
2424 break;
2425 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002426 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002427 css_put(&memcg->css);
2428 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002429 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002430 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002431 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002432 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002433 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002434 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002435 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002436 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002437 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002438 /* If oom, we never return -ENOMEM */
2439 nr_oom_retries--;
2440 break;
2441 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002442 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002443 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002444 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002445 } while (ret != CHARGE_OK);
2446
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002447 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002448 refill_stock(memcg, batch - nr_pages);
2449 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002450done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002451 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002452 return 0;
2453nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002454 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002455 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002456bypass:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002457 *ptr = NULL;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002458 return 0;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002459}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002460
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002461/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002462 * Somemtimes we have to undo a charge we got by try_charge().
2463 * This function is for that and do uncharge, put css's refcnt.
2464 * gotten by try_charge().
2465 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002466static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b82011-03-23 16:42:33 -07002467 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002468{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002469 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b82011-03-23 16:42:33 -07002470 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002471
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002472 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b82011-03-23 16:42:33 -07002473 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002474 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b82011-03-23 16:42:33 -07002475 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002476}
2477
2478/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002479 * A helper function to get mem_cgroup from ID. must be called under
2480 * rcu_read_lock(). The caller must check css_is_removed() or some if
2481 * it's concern. (dropping refcnt from swap can be called against removed
2482 * memcg.)
2483 */
2484static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2485{
2486 struct cgroup_subsys_state *css;
2487
2488 /* ID 0 is unused ID */
2489 if (!id)
2490 return NULL;
2491 css = css_lookup(&mem_cgroup_subsys, id);
2492 if (!css)
2493 return NULL;
2494 return container_of(css, struct mem_cgroup, css);
2495}
2496
Wu Fengguange42d9d52009-12-16 12:19:59 +01002497struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002498{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002499 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002500 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002501 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002502 swp_entry_t ent;
2503
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002504 VM_BUG_ON(!PageLocked(page));
2505
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002506 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002507 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002508 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002509 memcg = pc->mem_cgroup;
2510 if (memcg && !css_tryget(&memcg->css))
2511 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002512 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002513 ent.val = page_private(page);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002514 id = lookup_swap_cgroup(ent);
2515 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002516 memcg = mem_cgroup_lookup(id);
2517 if (memcg && !css_tryget(&memcg->css))
2518 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002519 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002520 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002521 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002522 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002523}
2524
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002525static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002526 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002527 unsigned int nr_pages,
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002528 struct page_cgroup *pc,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002529 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002530{
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002531 lock_page_cgroup(pc);
2532 if (unlikely(PageCgroupUsed(pc))) {
2533 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002534 __mem_cgroup_cancel_charge(memcg, nr_pages);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002535 return;
2536 }
2537 /*
2538 * we don't need page_cgroup_lock about tail pages, becase they are not
2539 * accessed by any other context at this point.
2540 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002541 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002542 /*
2543 * We access a page_cgroup asynchronously without lock_page_cgroup().
2544 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2545 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2546 * before USED bit, we need memory barrier here.
2547 * See mem_cgroup_add_lru_list(), etc.
2548 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002549 smp_wmb();
Balbir Singh4b3bde42009-09-23 15:56:32 -07002550 switch (ctype) {
2551 case MEM_CGROUP_CHARGE_TYPE_CACHE:
2552 case MEM_CGROUP_CHARGE_TYPE_SHMEM:
2553 SetPageCgroupCache(pc);
2554 SetPageCgroupUsed(pc);
2555 break;
2556 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
2557 ClearPageCgroupCache(pc);
2558 SetPageCgroupUsed(pc);
2559 break;
2560 default:
2561 break;
2562 }
Hugh Dickins3be91272008-02-07 00:14:19 -08002563
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002564 mem_cgroup_charge_statistics(memcg, PageCgroupCache(pc), nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002565 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002566 /*
2567 * "charge_statistics" updated event counter. Then, check it.
2568 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2569 * if they exceeds softlimit.
2570 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002571 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002572}
2573
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002574#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2575
2576#define PCGF_NOCOPY_AT_SPLIT ((1 << PCG_LOCK) | (1 << PCG_MOVE_LOCK) |\
2577 (1 << PCG_ACCT_LRU) | (1 << PCG_MIGRATION))
2578/*
2579 * Because tail pages are not marked as "used", set it. We're under
2580 * zone->lru_lock, 'splitting on pmd' and compund_lock.
2581 */
2582void mem_cgroup_split_huge_fixup(struct page *head, struct page *tail)
2583{
2584 struct page_cgroup *head_pc = lookup_page_cgroup(head);
2585 struct page_cgroup *tail_pc = lookup_page_cgroup(tail);
2586 unsigned long flags;
2587
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002588 if (mem_cgroup_disabled())
2589 return;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002590 /*
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -08002591 * We have no races with charge/uncharge but will have races with
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002592 * page state accounting.
2593 */
2594 move_lock_page_cgroup(head_pc, &flags);
2595
2596 tail_pc->mem_cgroup = head_pc->mem_cgroup;
2597 smp_wmb(); /* see __commit_charge() */
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -08002598 if (PageCgroupAcctLRU(head_pc)) {
2599 enum lru_list lru;
2600 struct mem_cgroup_per_zone *mz;
2601
2602 /*
2603 * LRU flags cannot be copied because we need to add tail
2604 *.page to LRU by generic call and our hook will be called.
2605 * We hold lru_lock, then, reduce counter directly.
2606 */
2607 lru = page_lru(head);
Johannes Weiner97a6c372011-03-23 16:42:27 -07002608 mz = page_cgroup_zoneinfo(head_pc->mem_cgroup, head);
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -08002609 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
2610 }
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002611 tail_pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2612 move_unlock_page_cgroup(head_pc, &flags);
2613}
2614#endif
2615
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002616/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07002617 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07002618 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002619 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002620 * @pc: page_cgroup of the page.
2621 * @from: mem_cgroup which the page is moved from.
2622 * @to: mem_cgroup which the page is moved to. @from != @to.
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002623 * @uncharge: whether we should call uncharge and css_put against @from.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002624 *
2625 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002626 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002627 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002628 *
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002629 * This function doesn't do "charge" nor css_get to new cgroup. It should be
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002630 * done by a caller(__mem_cgroup_try_charge would be useful). If @uncharge is
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002631 * true, this function does "uncharge" from old cgroup, but it doesn't if
2632 * @uncharge is false, so a caller should do "uncharge".
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002633 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002634static int mem_cgroup_move_account(struct page *page,
2635 unsigned int nr_pages,
2636 struct page_cgroup *pc,
2637 struct mem_cgroup *from,
2638 struct mem_cgroup *to,
2639 bool uncharge)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002640{
Johannes Weinerde3638d2011-03-23 16:42:28 -07002641 unsigned long flags;
2642 int ret;
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002643
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002644 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07002645 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07002646 /*
2647 * The page is isolated from LRU. So, collapse function
2648 * will not handle this page. But page splitting can happen.
2649 * Do this check under compound_page_lock(). The caller should
2650 * hold it.
2651 */
2652 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002653 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07002654 goto out;
2655
2656 lock_page_cgroup(pc);
2657
2658 ret = -EINVAL;
2659 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2660 goto unlock;
2661
2662 move_lock_page_cgroup(pc, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002663
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002664 if (PageCgroupFileMapped(pc)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08002665 /* Update mapped_file data for mem_cgroup */
2666 preempt_disable();
2667 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2668 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2669 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07002670 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002671 mem_cgroup_charge_statistics(from, PageCgroupCache(pc), -nr_pages);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002672 if (uncharge)
2673 /* This is not "cancel", but cancel_charge does all we need. */
Johannes Weinere7018b82011-03-23 16:42:33 -07002674 __mem_cgroup_cancel_charge(from, nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07002675
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002676 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002677 pc->mem_cgroup = to;
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002678 mem_cgroup_charge_statistics(to, PageCgroupCache(pc), nr_pages);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002679 /*
2680 * We charges against "to" which may not have any tasks. Then, "to"
2681 * can be under rmdir(). But in current implementation, caller of
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002682 * this function is just force_empty() and move charge, so it's
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002683 * guaranteed that "to" is never removed. So, we don't check rmdir
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002684 * status here.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002685 */
Johannes Weinerde3638d2011-03-23 16:42:28 -07002686 move_unlock_page_cgroup(pc, &flags);
2687 ret = 0;
2688unlock:
Daisuke Nishimura57f9fd72009-12-15 16:47:11 -08002689 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08002690 /*
2691 * check events
2692 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002693 memcg_check_events(to, page);
2694 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002695out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002696 return ret;
2697}
2698
2699/*
2700 * move charges to its parent.
2701 */
2702
Johannes Weiner5564e882011-03-23 16:42:29 -07002703static int mem_cgroup_move_parent(struct page *page,
2704 struct page_cgroup *pc,
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002705 struct mem_cgroup *child,
2706 gfp_t gfp_mask)
2707{
2708 struct cgroup *cg = child->css.cgroup;
2709 struct cgroup *pcg = cg->parent;
2710 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002711 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07002712 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002713 int ret;
2714
2715 /* Is ROOT ? */
2716 if (!pcg)
2717 return -EINVAL;
2718
Daisuke Nishimura57f9fd72009-12-15 16:47:11 -08002719 ret = -EBUSY;
2720 if (!get_page_unless_zero(page))
2721 goto out;
2722 if (isolate_lru_page(page))
2723 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08002724
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002725 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002726
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002727 parent = mem_cgroup_from_cont(pcg);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002728 ret = __mem_cgroup_try_charge(NULL, gfp_mask, nr_pages, &parent, false);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002729 if (ret || !parent)
Daisuke Nishimura57f9fd72009-12-15 16:47:11 -08002730 goto put_back;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002731
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002732 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002733 flags = compound_lock_irqsave(page);
2734
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002735 ret = mem_cgroup_move_account(page, nr_pages, pc, child, parent, true);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002736 if (ret)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002737 __mem_cgroup_cancel_charge(parent, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002738
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002739 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002740 compound_unlock_irqrestore(page, flags);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002741put_back:
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002742 putback_lru_page(page);
Daisuke Nishimura57f9fd72009-12-15 16:47:11 -08002743put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08002744 put_page(page);
Daisuke Nishimura57f9fd72009-12-15 16:47:11 -08002745out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002746 return ret;
2747}
2748
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002749/*
2750 * Charge the memory controller for page usage.
2751 * Return
2752 * 0 if the charge was successful
2753 * < 0 if the cgroup is over its limit
2754 */
2755static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002756 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002757{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002758 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002759 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08002760 struct page_cgroup *pc;
2761 bool oom = true;
2762 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08002763
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002764 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002765 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002766 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08002767 /*
2768 * Never OOM-kill a process for a huge page. The
2769 * fault handler will fall back to regular pages.
2770 */
2771 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002772 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002773
2774 pc = lookup_page_cgroup(page);
Johannes Weineraf4a6622011-03-23 16:42:24 -07002775 BUG_ON(!pc); /* XXX: remove this and move pc lookup into commit */
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002776
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002777 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
2778 if (ret || !memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002779 return ret;
2780
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002781 __mem_cgroup_commit_charge(memcg, page, nr_pages, pc, ctype);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002782 return 0;
2783}
2784
2785int mem_cgroup_newpage_charge(struct page *page,
2786 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002787{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08002788 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002789 return 0;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07002790 /*
2791 * If already mapped, we don't have to account.
2792 * If page cache, page->mapping has address_space.
2793 * But page->mapping may have out-of-use anon_vma pointer,
2794 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
2795 * is NULL.
2796 */
2797 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
2798 return 0;
2799 if (unlikely(!mm))
2800 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002801 return mem_cgroup_charge_common(page, mm, gfp_mask,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002802 MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002803}
2804
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002805static void
2806__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
2807 enum charge_type ctype);
2808
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002809static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002810__mem_cgroup_commit_charge_lrucare(struct page *page, struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002811 enum charge_type ctype)
2812{
2813 struct page_cgroup *pc = lookup_page_cgroup(page);
2814 /*
2815 * In some case, SwapCache, FUSE(splice_buf->radixtree), the page
2816 * is already on LRU. It means the page may on some other page_cgroup's
2817 * LRU. Take care of it.
2818 */
2819 mem_cgroup_lru_del_before_commit(page);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002820 __mem_cgroup_commit_charge(memcg, page, 1, pc, ctype);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002821 mem_cgroup_lru_add_after_commit(page);
2822 return;
2823}
2824
Balbir Singhe1a1cd52008-02-07 00:14:02 -08002825int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2826 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -08002827{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002828 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002829 int ret;
2830
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08002831 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002832 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002833 if (PageCompound(page))
2834 return 0;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07002835
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002836 if (unlikely(!mm))
Balbir Singh8697d332008-02-07 00:13:59 -08002837 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07002838
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002839 if (page_is_file_cache(page)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002840 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, &memcg, true);
2841 if (ret || !memcg)
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002842 return ret;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002843
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002844 /*
2845 * FUSE reuses pages without going through the final
2846 * put that would remove them from the LRU list, make
2847 * sure that they get relinked properly.
2848 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002849 __mem_cgroup_commit_charge_lrucare(page, memcg,
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002850 MEM_CGROUP_CHARGE_TYPE_CACHE);
2851 return ret;
2852 }
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002853 /* shmem */
2854 if (PageSwapCache(page)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002855 ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &memcg);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002856 if (!ret)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002857 __mem_cgroup_commit_charge_swapin(page, memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002858 MEM_CGROUP_CHARGE_TYPE_SHMEM);
2859 } else
2860 ret = mem_cgroup_charge_common(page, mm, gfp_mask,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002861 MEM_CGROUP_CHARGE_TYPE_SHMEM);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002862
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002863 return ret;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07002864}
2865
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002866/*
2867 * While swap-in, try_charge -> commit or cancel, the page is locked.
2868 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02002869 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002870 * "commit()" or removed by "cancel()"
2871 */
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002872int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2873 struct page *page,
2874 gfp_t mask, struct mem_cgroup **ptr)
2875{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002876 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002877 int ret;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002878
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07002879 *ptr = NULL;
2880
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08002881 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002882 return 0;
2883
2884 if (!do_swap_account)
2885 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002886 /*
2887 * A racing thread's fault, or swapoff, may have already updated
Hugh Dickins407f9c82009-12-14 17:59:30 -08002888 * the pte, and even removed page from swap cache: in those cases
2889 * do_swap_page()'s pte_same() test will fail; but there's also a
2890 * KSM case which does need to charge the page.
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002891 */
2892 if (!PageSwapCache(page))
Hugh Dickins407f9c82009-12-14 17:59:30 -08002893 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002894 memcg = try_get_mem_cgroup_from_page(page);
2895 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002896 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002897 *ptr = memcg;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002898 ret = __mem_cgroup_try_charge(NULL, mask, 1, ptr, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002899 css_put(&memcg->css);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002900 return ret;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002901charge_cur_mm:
2902 if (unlikely(!mm))
2903 mm = &init_mm;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002904 return __mem_cgroup_try_charge(mm, mask, 1, ptr, true);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002905}
2906
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002907static void
2908__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
2909 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002910{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08002911 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002912 return;
2913 if (!ptr)
2914 return;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002915 cgroup_exclude_rmdir(&ptr->css);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002916
2917 __mem_cgroup_commit_charge_lrucare(page, ptr, ctype);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002918 /*
2919 * Now swap is on-memory. This means this page may be
2920 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002921 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2922 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2923 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002924 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002925 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002926 swp_entry_t ent = {.val = page_private(page)};
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002927 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002928 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002929
2930 id = swap_cgroup_record(ent, 0);
2931 rcu_read_lock();
2932 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002933 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002934 /*
2935 * This recorded memcg can be obsolete one. So, avoid
2936 * calling css_tryget
2937 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002938 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07002939 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002940 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002941 mem_cgroup_put(memcg);
2942 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002943 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08002944 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002945 /*
2946 * At swapin, we may charge account against cgroup which has no tasks.
2947 * So, rmdir()->pre_destroy() can be called while we do this charge.
2948 * In that case, we need to call pre_destroy() again. check it here.
2949 */
2950 cgroup_release_and_wakeup_rmdir(&ptr->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002951}
2952
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002953void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
2954{
2955 __mem_cgroup_commit_charge_swapin(page, ptr,
2956 MEM_CGROUP_CHARGE_TYPE_MAPPED);
2957}
2958
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002959void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002960{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08002961 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002962 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002963 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002964 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002965 __mem_cgroup_cancel_charge(memcg, 1);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002966}
2967
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002968static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002969 unsigned int nr_pages,
2970 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002971{
2972 struct memcg_batch_info *batch = NULL;
2973 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002974
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002975 /* If swapout, usage of swap doesn't decrease */
2976 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2977 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002978
2979 batch = &current->memcg_batch;
2980 /*
2981 * In usual, we do css_get() when we remember memcg pointer.
2982 * But in this case, we keep res->usage until end of a series of
2983 * uncharges. Then, it's ok to ignore memcg's refcnt.
2984 */
2985 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002986 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002987 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002988 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002989 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002990 * the same cgroup and we have chance to coalesce uncharges.
2991 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
2992 * because we want to do uncharge as soon as possible.
2993 */
2994
2995 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
2996 goto direct_uncharge;
2997
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002998 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08002999 goto direct_uncharge;
3000
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003001 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003002 * In typical case, batch->memcg == mem. This means we can
3003 * merge a series of uncharges to an uncharge of res_counter.
3004 * If not, we uncharge res_counter ony by one.
3005 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003006 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003007 goto direct_uncharge;
3008 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003009 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003010 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003011 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003012 return;
3013direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003014 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003015 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003016 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
3017 if (unlikely(batch->memcg != memcg))
3018 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003019 return;
3020}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003021
Balbir Singh8697d332008-02-07 00:13:59 -08003022/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003023 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003024 */
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003025static struct mem_cgroup *
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003026__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003027{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003028 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003029 unsigned int nr_pages = 1;
3030 struct page_cgroup *pc;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003031
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08003032 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003033 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07003034
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003035 if (PageSwapCache(page))
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003036 return NULL;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003037
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003038 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003039 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003040 VM_BUG_ON(!PageTransHuge(page));
3041 }
Balbir Singh8697d332008-02-07 00:13:59 -08003042 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003043 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003044 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003045 pc = lookup_page_cgroup(page);
3046 if (unlikely(!pc || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003047 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003048
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003049 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003050
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003051 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003052
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003053 if (!PageCgroupUsed(pc))
3054 goto unlock_out;
3055
3056 switch (ctype) {
3057 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003058 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003059 /* See mem_cgroup_prepare_migration() */
3060 if (page_mapped(page) || PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003061 goto unlock_out;
3062 break;
3063 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
3064 if (!PageAnon(page)) { /* Shared memory */
3065 if (page->mapping && !page_is_file_cache(page))
3066 goto unlock_out;
3067 } else if (page_mapped(page)) /* Anon */
3068 goto unlock_out;
3069 break;
3070 default:
3071 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003072 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003073
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003074 mem_cgroup_charge_statistics(memcg, PageCgroupCache(pc), -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07003075
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003076 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08003077 /*
3078 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3079 * freed from LRU. This is safe because uncharged page is expected not
3080 * to be reused (freed soon). Exception is SwapCache, it's handled by
3081 * special functions.
3082 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003083
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003084 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003085 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003086 * even after unlock, we have memcg->res.usage here and this memcg
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003087 * will never be freed.
3088 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003089 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003090 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003091 mem_cgroup_swap_statistics(memcg, true);
3092 mem_cgroup_get(memcg);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003093 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003094 if (!mem_cgroup_is_root(memcg))
3095 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003096
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003097 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003098
3099unlock_out:
3100 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003101 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003102}
3103
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003104void mem_cgroup_uncharge_page(struct page *page)
3105{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003106 /* early check. */
3107 if (page_mapped(page))
3108 return;
3109 if (page->mapping && !PageAnon(page))
3110 return;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003111 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
3112}
3113
3114void mem_cgroup_uncharge_cache_page(struct page *page)
3115{
3116 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003117 VM_BUG_ON(page->mapping);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003118 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
3119}
3120
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003121/*
3122 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3123 * In that cases, pages are freed continuously and we can expect pages
3124 * are in the same memcg. All these calls itself limits the number of
3125 * pages freed at once, then uncharge_start/end() is called properly.
3126 * This may be called prural(2) times in a context,
3127 */
3128
3129void mem_cgroup_uncharge_start(void)
3130{
3131 current->memcg_batch.do_batch++;
3132 /* We can do nest. */
3133 if (current->memcg_batch.do_batch == 1) {
3134 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003135 current->memcg_batch.nr_pages = 0;
3136 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003137 }
3138}
3139
3140void mem_cgroup_uncharge_end(void)
3141{
3142 struct memcg_batch_info *batch = &current->memcg_batch;
3143
3144 if (!batch->do_batch)
3145 return;
3146
3147 batch->do_batch--;
3148 if (batch->do_batch) /* If stacked, do nothing. */
3149 return;
3150
3151 if (!batch->memcg)
3152 return;
3153 /*
3154 * This "batch->memcg" is valid without any css_get/put etc...
3155 * bacause we hide charges behind us.
3156 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003157 if (batch->nr_pages)
3158 res_counter_uncharge(&batch->memcg->res,
3159 batch->nr_pages * PAGE_SIZE);
3160 if (batch->memsw_nr_pages)
3161 res_counter_uncharge(&batch->memcg->memsw,
3162 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003163 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003164 /* forget this pointer (for sanity check) */
3165 batch->memcg = NULL;
3166}
3167
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003168#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003169/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003170 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003171 * memcg information is recorded to swap_cgroup of "ent"
3172 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003173void
3174mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003175{
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003176 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003177 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003178
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003179 if (!swapout) /* this was a swap cache but the swap is unused ! */
3180 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
3181
3182 memcg = __mem_cgroup_uncharge_common(page, ctype);
3183
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003184 /*
3185 * record memcg information, if swapout && memcg != NULL,
3186 * mem_cgroup_get() was called in uncharge().
3187 */
3188 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003189 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003190}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003191#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003192
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003193#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
3194/*
3195 * called from swap_entry_free(). remove record in swap_cgroup and
3196 * uncharge "memsw" account.
3197 */
3198void mem_cgroup_uncharge_swap(swp_entry_t ent)
3199{
3200 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003201 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003202
3203 if (!do_swap_account)
3204 return;
3205
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003206 id = swap_cgroup_record(ent, 0);
3207 rcu_read_lock();
3208 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003209 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003210 /*
3211 * We uncharge this because swap is freed.
3212 * This memcg can be obsolete one. We avoid calling css_tryget
3213 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003214 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07003215 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003216 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003217 mem_cgroup_put(memcg);
3218 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003219 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003220}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003221
3222/**
3223 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3224 * @entry: swap entry to be moved
3225 * @from: mem_cgroup which the entry is moved from
3226 * @to: mem_cgroup which the entry is moved to
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003227 * @need_fixup: whether we should fixup res_counters and refcounts.
Daisuke Nishimura02491442010-03-10 15:22:17 -08003228 *
3229 * It succeeds only when the swap_cgroup's record for this entry is the same
3230 * as the mem_cgroup's id of @from.
3231 *
3232 * Returns 0 on success, -EINVAL on failure.
3233 *
3234 * The caller must have charged to @to, IOW, called res_counter_charge() about
3235 * both res and memsw, and called css_get().
3236 */
3237static int mem_cgroup_move_swap_account(swp_entry_t entry,
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003238 struct mem_cgroup *from, struct mem_cgroup *to, bool need_fixup)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003239{
3240 unsigned short old_id, new_id;
3241
3242 old_id = css_id(&from->css);
3243 new_id = css_id(&to->css);
3244
3245 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003246 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003247 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003248 /*
3249 * This function is only called from task migration context now.
3250 * It postpones res_counter and refcount handling till the end
3251 * of task migration(mem_cgroup_clear_mc()) for performance
3252 * improvement. But we cannot postpone mem_cgroup_get(to)
3253 * because if the process that has been moved to @to does
3254 * swap-in, the refcount of @to might be decreased to 0.
3255 */
Daisuke Nishimura02491442010-03-10 15:22:17 -08003256 mem_cgroup_get(to);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003257 if (need_fixup) {
3258 if (!mem_cgroup_is_root(from))
3259 res_counter_uncharge(&from->memsw, PAGE_SIZE);
3260 mem_cgroup_put(from);
3261 /*
3262 * we charged both to->res and to->memsw, so we should
3263 * uncharge to->res.
3264 */
3265 if (!mem_cgroup_is_root(to))
3266 res_counter_uncharge(&to->res, PAGE_SIZE);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003267 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08003268 return 0;
3269 }
3270 return -EINVAL;
3271}
3272#else
3273static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003274 struct mem_cgroup *from, struct mem_cgroup *to, bool need_fixup)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003275{
3276 return -EINVAL;
3277}
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003278#endif
3279
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003280/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003281 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
3282 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003283 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003284int mem_cgroup_prepare_migration(struct page *page,
Miklos Szeredief6a3c62011-03-22 16:30:52 -07003285 struct page *newpage, struct mem_cgroup **ptr, gfp_t gfp_mask)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003286{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003287 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003288 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003289 enum charge_type ctype;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003290 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003291
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003292 *ptr = NULL;
3293
Andrea Arcangeliec168512011-01-13 15:46:56 -08003294 VM_BUG_ON(PageTransHuge(page));
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08003295 if (mem_cgroup_disabled())
Balbir Singh40779602008-04-04 14:29:59 -07003296 return 0;
3297
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003298 pc = lookup_page_cgroup(page);
3299 lock_page_cgroup(pc);
3300 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003301 memcg = pc->mem_cgroup;
3302 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003303 /*
3304 * At migrating an anonymous page, its mapcount goes down
3305 * to 0 and uncharge() will be called. But, even if it's fully
3306 * unmapped, migration may fail and this page has to be
3307 * charged again. We set MIGRATION flag here and delay uncharge
3308 * until end_migration() is called
3309 *
3310 * Corner Case Thinking
3311 * A)
3312 * When the old page was mapped as Anon and it's unmap-and-freed
3313 * while migration was ongoing.
3314 * If unmap finds the old page, uncharge() of it will be delayed
3315 * until end_migration(). If unmap finds a new page, it's
3316 * uncharged when it make mapcount to be 1->0. If unmap code
3317 * finds swap_migration_entry, the new page will not be mapped
3318 * and end_migration() will find it(mapcount==0).
3319 *
3320 * B)
3321 * When the old page was mapped but migraion fails, the kernel
3322 * remaps it. A charge for it is kept by MIGRATION flag even
3323 * if mapcount goes down to 0. We can do remap successfully
3324 * without charging it again.
3325 *
3326 * C)
3327 * The "old" page is under lock_page() until the end of
3328 * migration, so, the old page itself will not be swapped-out.
3329 * If the new page is swapped out before end_migraton, our
3330 * hook to usual swap-out path will catch the event.
3331 */
3332 if (PageAnon(page))
3333 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003334 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003335 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003336 /*
3337 * If the page is not charged at this point,
3338 * we return here.
3339 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003340 if (!memcg)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003341 return 0;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003342
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003343 *ptr = memcg;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003344 ret = __mem_cgroup_try_charge(NULL, gfp_mask, 1, ptr, false);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003345 css_put(&memcg->css);/* drop extra refcnt */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003346 if (ret || *ptr == NULL) {
3347 if (PageAnon(page)) {
3348 lock_page_cgroup(pc);
3349 ClearPageCgroupMigration(pc);
3350 unlock_page_cgroup(pc);
3351 /*
3352 * The old page may be fully unmapped while we kept it.
3353 */
3354 mem_cgroup_uncharge_page(page);
3355 }
3356 return -ENOMEM;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003357 }
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003358 /*
3359 * We charge new page before it's used/mapped. So, even if unlock_page()
3360 * is called before end_migration, we can catch all events on this new
3361 * page. In the case new page is migrated but not remapped, new page's
3362 * mapcount will be finally 0 and we call uncharge in end_migration().
3363 */
3364 pc = lookup_page_cgroup(newpage);
3365 if (PageAnon(page))
3366 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
3367 else if (page_is_file_cache(page))
3368 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
3369 else
3370 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003371 __mem_cgroup_commit_charge(memcg, page, 1, pc, ctype);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003372 return ret;
3373}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08003374
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003375/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003376void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003377 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003378{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003379 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003380 struct page_cgroup *pc;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003381
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003382 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003383 return;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003384 /* blocks rmdir() */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003385 cgroup_exclude_rmdir(&memcg->css);
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003386 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003387 used = oldpage;
3388 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003389 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003390 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003391 unused = oldpage;
3392 }
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003393 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003394 * We disallowed uncharge of pages under migration because mapcount
3395 * of the page goes down to zero, temporarly.
3396 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003397 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003398 pc = lookup_page_cgroup(oldpage);
3399 lock_page_cgroup(pc);
3400 ClearPageCgroupMigration(pc);
3401 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003402
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003403 __mem_cgroup_uncharge_common(unused, MEM_CGROUP_CHARGE_TYPE_FORCE);
3404
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003405 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003406 * If a page is a file cache, radix-tree replacement is very atomic
3407 * and we can skip this check. When it was an Anon page, its mapcount
3408 * goes down to 0. But because we added MIGRATION flage, it's not
3409 * uncharged yet. There are several case but page->mapcount check
3410 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3411 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003412 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003413 if (PageAnon(used))
3414 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003415 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003416 * At migration, we may charge account against cgroup which has no
3417 * tasks.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003418 * So, rmdir()->pre_destroy() can be called while we do this charge.
3419 * In that case, we need to call pre_destroy() again. check it here.
3420 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003421 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003422}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08003423
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003424#ifdef CONFIG_DEBUG_VM
3425static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3426{
3427 struct page_cgroup *pc;
3428
3429 pc = lookup_page_cgroup(page);
3430 if (likely(pc) && PageCgroupUsed(pc))
3431 return pc;
3432 return NULL;
3433}
3434
3435bool mem_cgroup_bad_page_check(struct page *page)
3436{
3437 if (mem_cgroup_disabled())
3438 return false;
3439
3440 return lookup_page_cgroup_used(page) != NULL;
3441}
3442
3443void mem_cgroup_print_bad_page(struct page *page)
3444{
3445 struct page_cgroup *pc;
3446
3447 pc = lookup_page_cgroup_used(page);
3448 if (pc) {
3449 int ret = -1;
3450 char *path;
3451
3452 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p",
3453 pc, pc->flags, pc->mem_cgroup);
3454
3455 path = kmalloc(PATH_MAX, GFP_KERNEL);
3456 if (path) {
3457 rcu_read_lock();
3458 ret = cgroup_path(pc->mem_cgroup->css.cgroup,
3459 path, PATH_MAX);
3460 rcu_read_unlock();
3461 }
3462
3463 printk(KERN_CONT "(%s)\n",
3464 (ret < 0) ? "cannot get the path" : path);
3465 kfree(path);
3466 }
3467}
3468#endif
3469
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003470static DEFINE_MUTEX(set_limit_mutex);
3471
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003472static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003473 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003474{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003475 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003476 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003477 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003478 int children = mem_cgroup_count_children(memcg);
3479 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003480 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003481
3482 /*
3483 * For keeping hierarchical_reclaim simple, how long we should retry
3484 * is depends on callers. We set our retry-count to be function
3485 * of # of children which we should visit in this loop.
3486 */
3487 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3488
3489 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003490
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003491 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003492 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003493 if (signal_pending(current)) {
3494 ret = -EINTR;
3495 break;
3496 }
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003497 /*
3498 * Rather than hide all in some function, I do this in
3499 * open coded manner. You see what this really does.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003500 * We have to guarantee memcg->res.limit < memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003501 */
3502 mutex_lock(&set_limit_mutex);
3503 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3504 if (memswlimit < val) {
3505 ret = -EINVAL;
3506 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003507 break;
3508 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003509
3510 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3511 if (memlimit < val)
3512 enlarge = 1;
3513
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003514 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003515 if (!ret) {
3516 if (memswlimit == val)
3517 memcg->memsw_is_minimum = true;
3518 else
3519 memcg->memsw_is_minimum = false;
3520 }
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003521 mutex_unlock(&set_limit_mutex);
3522
3523 if (!ret)
3524 break;
3525
Bob Liuaa20d482009-12-15 16:47:14 -08003526 mem_cgroup_hierarchical_reclaim(memcg, NULL, GFP_KERNEL,
Ying Han0ae5e892011-05-26 16:25:25 -07003527 MEM_CGROUP_RECLAIM_SHRINK,
3528 NULL);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003529 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3530 /* Usage is reduced ? */
3531 if (curusage >= oldusage)
3532 retry_count--;
3533 else
3534 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003535 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003536 if (!ret && enlarge)
3537 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003538
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003539 return ret;
3540}
3541
Li Zefan338c8432009-06-17 16:27:15 -07003542static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3543 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003544{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003545 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003546 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003547 int children = mem_cgroup_count_children(memcg);
3548 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003549 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003550
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003551 /* see mem_cgroup_resize_res_limit */
3552 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3553 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003554 while (retry_count) {
3555 if (signal_pending(current)) {
3556 ret = -EINTR;
3557 break;
3558 }
3559 /*
3560 * Rather than hide all in some function, I do this in
3561 * open coded manner. You see what this really does.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003562 * We have to guarantee memcg->res.limit < memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003563 */
3564 mutex_lock(&set_limit_mutex);
3565 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3566 if (memlimit > val) {
3567 ret = -EINVAL;
3568 mutex_unlock(&set_limit_mutex);
3569 break;
3570 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003571 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3572 if (memswlimit < val)
3573 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003574 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003575 if (!ret) {
3576 if (memlimit == val)
3577 memcg->memsw_is_minimum = true;
3578 else
3579 memcg->memsw_is_minimum = false;
3580 }
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003581 mutex_unlock(&set_limit_mutex);
3582
3583 if (!ret)
3584 break;
3585
Balbir Singh4e416952009-09-23 15:56:39 -07003586 mem_cgroup_hierarchical_reclaim(memcg, NULL, GFP_KERNEL,
Balbir Singh75822b42009-09-23 15:56:38 -07003587 MEM_CGROUP_RECLAIM_NOSWAP |
Ying Han0ae5e892011-05-26 16:25:25 -07003588 MEM_CGROUP_RECLAIM_SHRINK,
3589 NULL);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003590 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003591 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003592 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003593 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003594 else
3595 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003596 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003597 if (!ret && enlarge)
3598 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003599 return ret;
3600}
3601
Balbir Singh4e416952009-09-23 15:56:39 -07003602unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
Ying Han0ae5e892011-05-26 16:25:25 -07003603 gfp_t gfp_mask,
3604 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003605{
3606 unsigned long nr_reclaimed = 0;
3607 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3608 unsigned long reclaimed;
3609 int loop = 0;
3610 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003611 unsigned long long excess;
Ying Han0ae5e892011-05-26 16:25:25 -07003612 unsigned long nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003613
3614 if (order > 0)
3615 return 0;
3616
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07003617 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
Balbir Singh4e416952009-09-23 15:56:39 -07003618 /*
3619 * This loop can run a while, specially if mem_cgroup's continuously
3620 * keep exceeding their soft limit and putting the system under
3621 * pressure
3622 */
3623 do {
3624 if (next_mz)
3625 mz = next_mz;
3626 else
3627 mz = mem_cgroup_largest_soft_limit_node(mctz);
3628 if (!mz)
3629 break;
3630
Ying Han0ae5e892011-05-26 16:25:25 -07003631 nr_scanned = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07003632 reclaimed = mem_cgroup_hierarchical_reclaim(mz->mem, zone,
3633 gfp_mask,
Ying Han0ae5e892011-05-26 16:25:25 -07003634 MEM_CGROUP_RECLAIM_SOFT,
3635 &nr_scanned);
Balbir Singh4e416952009-09-23 15:56:39 -07003636 nr_reclaimed += reclaimed;
Ying Han0ae5e892011-05-26 16:25:25 -07003637 *total_scanned += nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003638 spin_lock(&mctz->lock);
3639
3640 /*
3641 * If we failed to reclaim anything from this memory cgroup
3642 * it is time to move on to the next cgroup
3643 */
3644 next_mz = NULL;
3645 if (!reclaimed) {
3646 do {
3647 /*
3648 * Loop until we find yet another one.
3649 *
3650 * By the time we get the soft_limit lock
3651 * again, someone might have aded the
3652 * group back on the RB tree. Iterate to
3653 * make sure we get a different mem.
3654 * mem_cgroup_largest_soft_limit_node returns
3655 * NULL if no other cgroup is present on
3656 * the tree
3657 */
3658 next_mz =
3659 __mem_cgroup_largest_soft_limit_node(mctz);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003660 if (next_mz == mz)
Balbir Singh4e416952009-09-23 15:56:39 -07003661 css_put(&next_mz->mem->css);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003662 else /* next_mz == NULL or other memcg */
Balbir Singh4e416952009-09-23 15:56:39 -07003663 break;
3664 } while (1);
3665 }
Balbir Singh4e416952009-09-23 15:56:39 -07003666 __mem_cgroup_remove_exceeded(mz->mem, mz, mctz);
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003667 excess = res_counter_soft_limit_excess(&mz->mem->res);
Balbir Singh4e416952009-09-23 15:56:39 -07003668 /*
3669 * One school of thought says that we should not add
3670 * back the node to the tree if reclaim returns 0.
3671 * But our reclaim could return 0, simply because due
3672 * to priority we are exposing a smaller subset of
3673 * memory to reclaim from. Consider this as a longer
3674 * term TODO.
3675 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003676 /* If excess == 0, no tree ops */
3677 __mem_cgroup_insert_exceeded(mz->mem, mz, mctz, excess);
Balbir Singh4e416952009-09-23 15:56:39 -07003678 spin_unlock(&mctz->lock);
3679 css_put(&mz->mem->css);
3680 loop++;
3681 /*
3682 * Could not reclaim anything and there are no more
3683 * mem cgroups to try or we seem to be looping without
3684 * reclaiming anything.
3685 */
3686 if (!nr_reclaimed &&
3687 (next_mz == NULL ||
3688 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3689 break;
3690 } while (!nr_reclaimed);
3691 if (next_mz)
3692 css_put(&next_mz->mem->css);
3693 return nr_reclaimed;
3694}
3695
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07003696/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003697 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003698 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
3699 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003700static int mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003701 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003702{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003703 struct zone *zone;
3704 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003705 struct page_cgroup *pc, *busy;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003706 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -08003707 struct list_head *list;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003708 int ret = 0;
KAMEZAWA Hiroyuki072c56c2008-02-07 00:14:39 -08003709
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003710 zone = &NODE_DATA(node)->node_zones[zid];
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003711 mz = mem_cgroup_zoneinfo(memcg, node, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -07003712 list = &mz->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003713
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003714 loop = MEM_CGROUP_ZSTAT(mz, lru);
3715 /* give some margin against EBUSY etc...*/
3716 loop += 256;
3717 busy = NULL;
3718 while (loop--) {
Johannes Weiner5564e882011-03-23 16:42:29 -07003719 struct page *page;
3720
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003721 ret = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003722 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003723 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003724 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003725 break;
3726 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003727 pc = list_entry(list->prev, struct page_cgroup, lru);
3728 if (busy == pc) {
3729 list_move(&pc->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003730 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003731 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003732 continue;
3733 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003734 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003735
Johannes Weiner6b3ae582011-03-23 16:42:30 -07003736 page = lookup_cgroup_page(pc);
Johannes Weiner5564e882011-03-23 16:42:29 -07003737
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003738 ret = mem_cgroup_move_parent(page, pc, memcg, GFP_KERNEL);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003739 if (ret == -ENOMEM)
3740 break;
3741
3742 if (ret == -EBUSY || ret == -EINVAL) {
3743 /* found lock contention or "pc" is obsolete. */
3744 busy = pc;
3745 cond_resched();
3746 } else
3747 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003748 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003749
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003750 if (!ret && !list_empty(list))
3751 return -EBUSY;
3752 return ret;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003753}
3754
3755/*
3756 * make mem_cgroup's charge to be 0 if there is no task.
3757 * This enables deleting this mem_cgroup.
3758 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003759static int mem_cgroup_force_empty(struct mem_cgroup *memcg, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003760{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003761 int ret;
3762 int node, zid, shrink;
3763 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003764 struct cgroup *cgrp = memcg->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003765
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003766 css_get(&memcg->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003767
3768 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003769 /* should free all ? */
3770 if (free_all)
3771 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003772move_account:
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003773 do {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003774 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003775 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003776 goto out;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003777 ret = -EINTR;
3778 if (signal_pending(current))
3779 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003780 /* This is for making all *used* pages to be on LRU. */
3781 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003782 drain_all_stock_sync(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003783 ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003784 mem_cgroup_start_move(memcg);
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08003785 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003786 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07003787 enum lru_list l;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003788 for_each_lru(l) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003789 ret = mem_cgroup_force_empty_list(memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003790 node, zid, l);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003791 if (ret)
3792 break;
3793 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003794 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003795 if (ret)
3796 break;
3797 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003798 mem_cgroup_end_move(memcg);
3799 memcg_oom_recover(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003800 /* it seems parent cgroup doesn't have enough mem */
3801 if (ret == -ENOMEM)
3802 goto try_to_free;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003803 cond_resched();
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003804 /* "ret" should also be checked to ensure all lists are empty. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003805 } while (memcg->res.usage > 0 || ret);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003806out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003807 css_put(&memcg->css);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003808 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003809
3810try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003811 /* returns EBUSY if there is a task or if we come here twice. */
3812 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003813 ret = -EBUSY;
3814 goto out;
3815 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003816 /* we call try-to-free pages for make this cgroup empty */
3817 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003818 /* try to free all pages in this cgroup */
3819 shrink = 1;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003820 while (nr_retries && memcg->res.usage > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003821 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003822
3823 if (signal_pending(current)) {
3824 ret = -EINTR;
3825 goto out;
3826 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003827 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07003828 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003829 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003830 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003831 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003832 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003833 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003834
3835 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003836 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003837 /* try move_account...there may be some *locked* pages. */
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003838 goto move_account;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003839}
3840
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003841int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
3842{
3843 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3844}
3845
3846
Balbir Singh18f59ea2009-01-07 18:08:07 -08003847static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3848{
3849 return mem_cgroup_from_cont(cont)->use_hierarchy;
3850}
3851
3852static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3853 u64 val)
3854{
3855 int retval = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003856 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003857 struct cgroup *parent = cont->parent;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003858 struct mem_cgroup *parent_memcg = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003859
3860 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003861 parent_memcg = mem_cgroup_from_cont(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003862
3863 cgroup_lock();
3864 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003865 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003866 * in the child subtrees. If it is unset, then the change can
3867 * occur, provided the current cgroup has no children.
3868 *
3869 * For the root cgroup, parent_mem is NULL, we allow value to be
3870 * set if there are no children.
3871 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003872 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003873 (val == 1 || val == 0)) {
3874 if (list_empty(&cont->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003875 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003876 else
3877 retval = -EBUSY;
3878 } else
3879 retval = -EINVAL;
3880 cgroup_unlock();
3881
3882 return retval;
3883}
3884
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003885
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003886static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003887 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003888{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003889 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003890 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003891
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003892 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003893 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003894 val += mem_cgroup_read_stat(iter, idx);
3895
3896 if (val < 0) /* race ? */
3897 val = 0;
3898 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003899}
3900
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003901static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003902{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003903 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003904
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003905 if (!mem_cgroup_is_root(memcg)) {
Glauber Costae5671df2011-12-11 21:47:01 +00003906 val = 0;
3907#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
3908 if (!memcg->kmem_independent_accounting)
3909 val = res_counter_read_u64(&memcg->kmem, RES_USAGE);
3910#endif
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003911 if (!swap)
Glauber Costae5671df2011-12-11 21:47:01 +00003912 val += res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003913 else
Glauber Costae5671df2011-12-11 21:47:01 +00003914 val += res_counter_read_u64(&memcg->memsw, RES_USAGE);
3915
3916 return val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003917 }
3918
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003919 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
3920 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003921
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003922 if (swap)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003923 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAPOUT);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003924
3925 return val << PAGE_SHIFT;
3926}
3927
Paul Menage2c3daa72008-04-29 00:59:58 -07003928static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003929{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003930 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003931 u64 val;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003932 int type, name;
3933
3934 type = MEMFILE_TYPE(cft->private);
3935 name = MEMFILE_ATTR(cft->private);
3936 switch (type) {
3937 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003938 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003939 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003940 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003941 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003942 break;
3943 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003944 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003945 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003946 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003947 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003948 break;
Glauber Costae5671df2011-12-11 21:47:01 +00003949#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
3950 case _KMEM:
3951 val = res_counter_read_u64(&memcg->kmem, name);
3952 break;
3953#endif
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003954 default:
3955 BUG();
3956 break;
3957 }
3958 return val;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003959}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003960/*
3961 * The user of this function is...
3962 * RES_LIMIT.
3963 */
Paul Menage856c13a2008-07-25 01:47:04 -07003964static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
3965 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003966{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003967 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003968 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003969 unsigned long long val;
3970 int ret;
3971
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003972 type = MEMFILE_TYPE(cft->private);
3973 name = MEMFILE_ATTR(cft->private);
3974 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003975 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07003976 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3977 ret = -EINVAL;
3978 break;
3979 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003980 /* This function does all necessary parse...reuse it */
3981 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003982 if (ret)
3983 break;
3984 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003985 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08003986 else
3987 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003988 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07003989 case RES_SOFT_LIMIT:
3990 ret = res_counter_memparse_write_strategy(buffer, &val);
3991 if (ret)
3992 break;
3993 /*
3994 * For memsw, soft limits are hard to implement in terms
3995 * of semantics, for now, we support soft limits for
3996 * control without swap
3997 */
3998 if (type == _MEM)
3999 ret = res_counter_set_soft_limit(&memcg->res, val);
4000 else
4001 ret = -EINVAL;
4002 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004003 default:
4004 ret = -EINVAL; /* should be BUG() ? */
4005 break;
4006 }
4007 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004008}
4009
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004010static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
4011 unsigned long long *mem_limit, unsigned long long *memsw_limit)
4012{
4013 struct cgroup *cgroup;
4014 unsigned long long min_limit, min_memsw_limit, tmp;
4015
4016 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4017 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4018 cgroup = memcg->css.cgroup;
4019 if (!memcg->use_hierarchy)
4020 goto out;
4021
4022 while (cgroup->parent) {
4023 cgroup = cgroup->parent;
4024 memcg = mem_cgroup_from_cont(cgroup);
4025 if (!memcg->use_hierarchy)
4026 break;
4027 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4028 min_limit = min(min_limit, tmp);
4029 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4030 min_memsw_limit = min(min_memsw_limit, tmp);
4031 }
4032out:
4033 *mem_limit = min_limit;
4034 *memsw_limit = min_memsw_limit;
4035 return;
4036}
4037
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004038static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004039{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004040 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004041 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004042
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004043 memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004044 type = MEMFILE_TYPE(event);
4045 name = MEMFILE_ATTR(event);
4046 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004047 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004048 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004049 res_counter_reset_max(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004050 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004051 res_counter_reset_max(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004052 break;
4053 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004054 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004055 res_counter_reset_failcnt(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004056 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004057 res_counter_reset_failcnt(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004058 break;
4059 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004060
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004061 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004062}
4063
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004064static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
4065 struct cftype *cft)
4066{
4067 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
4068}
4069
Daisuke Nishimura02491442010-03-10 15:22:17 -08004070#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004071static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4072 struct cftype *cft, u64 val)
4073{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004074 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004075
4076 if (val >= (1 << NR_MOVE_TYPE))
4077 return -EINVAL;
4078 /*
4079 * We check this value several times in both in can_attach() and
4080 * attach(), so we need cgroup lock to prevent this value from being
4081 * inconsistent.
4082 */
4083 cgroup_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004084 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004085 cgroup_unlock();
4086
4087 return 0;
4088}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004089#else
4090static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4091 struct cftype *cft, u64 val)
4092{
4093 return -ENOSYS;
4094}
4095#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004096
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004097
4098/* For read statistics */
4099enum {
4100 MCS_CACHE,
4101 MCS_RSS,
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -08004102 MCS_FILE_MAPPED,
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004103 MCS_PGPGIN,
4104 MCS_PGPGOUT,
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004105 MCS_SWAP,
Ying Han456f9982011-05-26 16:25:38 -07004106 MCS_PGFAULT,
4107 MCS_PGMAJFAULT,
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004108 MCS_INACTIVE_ANON,
4109 MCS_ACTIVE_ANON,
4110 MCS_INACTIVE_FILE,
4111 MCS_ACTIVE_FILE,
4112 MCS_UNEVICTABLE,
4113 NR_MCS_STAT,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004114};
4115
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004116struct mcs_total_stat {
4117 s64 stat[NR_MCS_STAT];
4118};
4119
4120struct {
4121 char *local_name;
4122 char *total_name;
4123} memcg_stat_strings[NR_MCS_STAT] = {
4124 {"cache", "total_cache"},
4125 {"rss", "total_rss"},
Balbir Singhd69b0422009-06-17 16:26:34 -07004126 {"mapped_file", "total_mapped_file"},
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004127 {"pgpgin", "total_pgpgin"},
4128 {"pgpgout", "total_pgpgout"},
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004129 {"swap", "total_swap"},
Ying Han456f9982011-05-26 16:25:38 -07004130 {"pgfault", "total_pgfault"},
4131 {"pgmajfault", "total_pgmajfault"},
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004132 {"inactive_anon", "total_inactive_anon"},
4133 {"active_anon", "total_active_anon"},
4134 {"inactive_file", "total_inactive_file"},
4135 {"active_file", "total_active_file"},
4136 {"unevictable", "total_unevictable"}
4137};
4138
4139
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004140static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004141mem_cgroup_get_local_stat(struct mem_cgroup *memcg, struct mcs_total_stat *s)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004142{
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004143 s64 val;
4144
4145 /* per cpu stat */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004146 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_CACHE);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004147 s->stat[MCS_CACHE] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004148 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_RSS);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004149 s->stat[MCS_RSS] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004150 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_FILE_MAPPED);
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -08004151 s->stat[MCS_FILE_MAPPED] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004152 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGPGIN);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004153 s->stat[MCS_PGPGIN] += val;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004154 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGPGOUT);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004155 s->stat[MCS_PGPGOUT] += val;
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004156 if (do_swap_account) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004157 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_SWAPOUT);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004158 s->stat[MCS_SWAP] += val * PAGE_SIZE;
4159 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004160 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGFAULT);
Ying Han456f9982011-05-26 16:25:38 -07004161 s->stat[MCS_PGFAULT] += val;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004162 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGMAJFAULT);
Ying Han456f9982011-05-26 16:25:38 -07004163 s->stat[MCS_PGMAJFAULT] += val;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004164
4165 /* per zone stat */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004166 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_INACTIVE_ANON));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004167 s->stat[MCS_INACTIVE_ANON] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004168 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_ACTIVE_ANON));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004169 s->stat[MCS_ACTIVE_ANON] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004170 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_INACTIVE_FILE));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004171 s->stat[MCS_INACTIVE_FILE] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004172 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_ACTIVE_FILE));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004173 s->stat[MCS_ACTIVE_FILE] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004174 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004175 s->stat[MCS_UNEVICTABLE] += val * PAGE_SIZE;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004176}
4177
4178static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004179mem_cgroup_get_total_stat(struct mem_cgroup *memcg, struct mcs_total_stat *s)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004180{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004181 struct mem_cgroup *iter;
4182
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004183 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004184 mem_cgroup_get_local_stat(iter, s);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004185}
4186
Ying Han406eb0c2011-05-26 16:25:37 -07004187#ifdef CONFIG_NUMA
4188static int mem_control_numa_stat_show(struct seq_file *m, void *arg)
4189{
4190 int nid;
4191 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
4192 unsigned long node_nr;
4193 struct cgroup *cont = m->private;
4194 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
4195
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004196 total_nr = mem_cgroup_nr_lru_pages(mem_cont, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004197 seq_printf(m, "total=%lu", total_nr);
4198 for_each_node_state(nid, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004199 node_nr = mem_cgroup_node_nr_lru_pages(mem_cont, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004200 seq_printf(m, " N%d=%lu", nid, node_nr);
4201 }
4202 seq_putc(m, '\n');
4203
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004204 file_nr = mem_cgroup_nr_lru_pages(mem_cont, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004205 seq_printf(m, "file=%lu", file_nr);
4206 for_each_node_state(nid, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004207 node_nr = mem_cgroup_node_nr_lru_pages(mem_cont, nid,
4208 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004209 seq_printf(m, " N%d=%lu", nid, node_nr);
4210 }
4211 seq_putc(m, '\n');
4212
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004213 anon_nr = mem_cgroup_nr_lru_pages(mem_cont, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004214 seq_printf(m, "anon=%lu", anon_nr);
4215 for_each_node_state(nid, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004216 node_nr = mem_cgroup_node_nr_lru_pages(mem_cont, nid,
4217 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004218 seq_printf(m, " N%d=%lu", nid, node_nr);
4219 }
4220 seq_putc(m, '\n');
4221
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004222 unevictable_nr = mem_cgroup_nr_lru_pages(mem_cont, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004223 seq_printf(m, "unevictable=%lu", unevictable_nr);
4224 for_each_node_state(nid, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004225 node_nr = mem_cgroup_node_nr_lru_pages(mem_cont, nid,
4226 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004227 seq_printf(m, " N%d=%lu", nid, node_nr);
4228 }
4229 seq_putc(m, '\n');
4230 return 0;
4231}
4232#endif /* CONFIG_NUMA */
4233
Paul Menagec64745c2008-04-29 01:00:02 -07004234static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
4235 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004236{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004237 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004238 struct mcs_total_stat mystat;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004239 int i;
4240
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004241 memset(&mystat, 0, sizeof(mystat));
4242 mem_cgroup_get_local_stat(mem_cont, &mystat);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004243
Ying Han406eb0c2011-05-26 16:25:37 -07004244
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004245 for (i = 0; i < NR_MCS_STAT; i++) {
4246 if (i == MCS_SWAP && !do_swap_account)
4247 continue;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004248 cb->fill(cb, memcg_stat_strings[i].local_name, mystat.stat[i]);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004249 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004250
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004251 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004252 {
4253 unsigned long long limit, memsw_limit;
4254 memcg_get_hierarchical_limit(mem_cont, &limit, &memsw_limit);
4255 cb->fill(cb, "hierarchical_memory_limit", limit);
4256 if (do_swap_account)
4257 cb->fill(cb, "hierarchical_memsw_limit", memsw_limit);
4258 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004259
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004260 memset(&mystat, 0, sizeof(mystat));
4261 mem_cgroup_get_total_stat(mem_cont, &mystat);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004262 for (i = 0; i < NR_MCS_STAT; i++) {
4263 if (i == MCS_SWAP && !do_swap_account)
4264 continue;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004265 cb->fill(cb, memcg_stat_strings[i].total_name, mystat.stat[i]);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004266 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004267
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004268#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004269 {
4270 int nid, zid;
4271 struct mem_cgroup_per_zone *mz;
4272 unsigned long recent_rotated[2] = {0, 0};
4273 unsigned long recent_scanned[2] = {0, 0};
4274
4275 for_each_online_node(nid)
4276 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
4277 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
4278
4279 recent_rotated[0] +=
4280 mz->reclaim_stat.recent_rotated[0];
4281 recent_rotated[1] +=
4282 mz->reclaim_stat.recent_rotated[1];
4283 recent_scanned[0] +=
4284 mz->reclaim_stat.recent_scanned[0];
4285 recent_scanned[1] +=
4286 mz->reclaim_stat.recent_scanned[1];
4287 }
4288 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
4289 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
4290 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
4291 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
4292 }
4293#endif
4294
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004295 return 0;
4296}
4297
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004298static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
4299{
4300 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4301
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004302 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004303}
4304
4305static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
4306 u64 val)
4307{
4308 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4309 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08004310
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004311 if (val > 100)
4312 return -EINVAL;
4313
4314 if (cgrp->parent == NULL)
4315 return -EINVAL;
4316
4317 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08004318
4319 cgroup_lock();
4320
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004321 /* If under hierarchy, only empty-root can set this value */
4322 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08004323 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
4324 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004325 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08004326 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004327
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004328 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004329
Li Zefan068b38c2009-01-15 13:51:26 -08004330 cgroup_unlock();
4331
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004332 return 0;
4333}
4334
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004335static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4336{
4337 struct mem_cgroup_threshold_ary *t;
4338 u64 usage;
4339 int i;
4340
4341 rcu_read_lock();
4342 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004343 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004344 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004345 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004346
4347 if (!t)
4348 goto unlock;
4349
4350 usage = mem_cgroup_usage(memcg, swap);
4351
4352 /*
4353 * current_threshold points to threshold just below usage.
4354 * If it's not true, a threshold was crossed after last
4355 * call of __mem_cgroup_threshold().
4356 */
Phil Carmody5407a562010-05-26 14:42:42 -07004357 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004358
4359 /*
4360 * Iterate backward over array of thresholds starting from
4361 * current_threshold and check if a threshold is crossed.
4362 * If none of thresholds below usage is crossed, we read
4363 * only one element of the array here.
4364 */
4365 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4366 eventfd_signal(t->entries[i].eventfd, 1);
4367
4368 /* i = current_threshold + 1 */
4369 i++;
4370
4371 /*
4372 * Iterate forward over array of thresholds starting from
4373 * current_threshold+1 and check if a threshold is crossed.
4374 * If none of thresholds above usage is crossed, we read
4375 * only one element of the array here.
4376 */
4377 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4378 eventfd_signal(t->entries[i].eventfd, 1);
4379
4380 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004381 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004382unlock:
4383 rcu_read_unlock();
4384}
4385
4386static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4387{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004388 while (memcg) {
4389 __mem_cgroup_threshold(memcg, false);
4390 if (do_swap_account)
4391 __mem_cgroup_threshold(memcg, true);
4392
4393 memcg = parent_mem_cgroup(memcg);
4394 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004395}
4396
4397static int compare_thresholds(const void *a, const void *b)
4398{
4399 const struct mem_cgroup_threshold *_a = a;
4400 const struct mem_cgroup_threshold *_b = b;
4401
4402 return _a->threshold - _b->threshold;
4403}
4404
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004405static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004406{
4407 struct mem_cgroup_eventfd_list *ev;
4408
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004409 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004410 eventfd_signal(ev->eventfd, 1);
4411 return 0;
4412}
4413
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004414static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004415{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004416 struct mem_cgroup *iter;
4417
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004418 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004419 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004420}
4421
4422static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4423 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004424{
4425 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004426 struct mem_cgroup_thresholds *thresholds;
4427 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004428 int type = MEMFILE_TYPE(cft->private);
4429 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004430 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004431
4432 ret = res_counter_memparse_write_strategy(args, &threshold);
4433 if (ret)
4434 return ret;
4435
4436 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004437
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004438 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004439 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004440 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004441 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004442 else
4443 BUG();
4444
4445 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4446
4447 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004448 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004449 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4450
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004451 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004452
4453 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004454 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004455 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004456 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004457 ret = -ENOMEM;
4458 goto unlock;
4459 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004460 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004461
4462 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004463 if (thresholds->primary) {
4464 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004465 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004466 }
4467
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004468 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004469 new->entries[size - 1].eventfd = eventfd;
4470 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004471
4472 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004473 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004474 compare_thresholds, NULL);
4475
4476 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004477 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004478 for (i = 0; i < size; i++) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004479 if (new->entries[i].threshold < usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004480 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004481 * new->current_threshold will not be used until
4482 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004483 * it here.
4484 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004485 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004486 }
4487 }
4488
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004489 /* Free old spare buffer and save old primary buffer as spare */
4490 kfree(thresholds->spare);
4491 thresholds->spare = thresholds->primary;
4492
4493 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004494
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004495 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004496 synchronize_rcu();
4497
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004498unlock:
4499 mutex_unlock(&memcg->thresholds_lock);
4500
4501 return ret;
4502}
4503
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004504static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004505 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004506{
4507 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004508 struct mem_cgroup_thresholds *thresholds;
4509 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004510 int type = MEMFILE_TYPE(cft->private);
4511 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004512 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004513
4514 mutex_lock(&memcg->thresholds_lock);
4515 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004516 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004517 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004518 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004519 else
4520 BUG();
4521
4522 /*
4523 * Something went wrong if we trying to unregister a threshold
4524 * if we don't have thresholds
4525 */
4526 BUG_ON(!thresholds);
4527
4528 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4529
4530 /* Check if a threshold crossed before removing */
4531 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4532
4533 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004534 size = 0;
4535 for (i = 0; i < thresholds->primary->size; i++) {
4536 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004537 size++;
4538 }
4539
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004540 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004541
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004542 /* Set thresholds array to NULL if we don't have thresholds */
4543 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004544 kfree(new);
4545 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004546 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004547 }
4548
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004549 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004550
4551 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004552 new->current_threshold = -1;
4553 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4554 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004555 continue;
4556
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004557 new->entries[j] = thresholds->primary->entries[i];
4558 if (new->entries[j].threshold < usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004559 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004560 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004561 * until rcu_assign_pointer(), so it's safe to increment
4562 * it here.
4563 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004564 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004565 }
4566 j++;
4567 }
4568
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004569swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004570 /* Swap primary and spare array */
4571 thresholds->spare = thresholds->primary;
4572 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004573
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004574 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004575 synchronize_rcu();
4576
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004577 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004578}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004579
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004580static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4581 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4582{
4583 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4584 struct mem_cgroup_eventfd_list *event;
4585 int type = MEMFILE_TYPE(cft->private);
4586
4587 BUG_ON(type != _OOM_TYPE);
4588 event = kmalloc(sizeof(*event), GFP_KERNEL);
4589 if (!event)
4590 return -ENOMEM;
4591
Michal Hocko1af8efe2011-07-26 16:08:24 -07004592 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004593
4594 event->eventfd = eventfd;
4595 list_add(&event->list, &memcg->oom_notify);
4596
4597 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004598 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004599 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004600 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004601
4602 return 0;
4603}
4604
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004605static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004606 struct cftype *cft, struct eventfd_ctx *eventfd)
4607{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004608 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004609 struct mem_cgroup_eventfd_list *ev, *tmp;
4610 int type = MEMFILE_TYPE(cft->private);
4611
4612 BUG_ON(type != _OOM_TYPE);
4613
Michal Hocko1af8efe2011-07-26 16:08:24 -07004614 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004615
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004616 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004617 if (ev->eventfd == eventfd) {
4618 list_del(&ev->list);
4619 kfree(ev);
4620 }
4621 }
4622
Michal Hocko1af8efe2011-07-26 16:08:24 -07004623 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004624}
4625
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004626static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4627 struct cftype *cft, struct cgroup_map_cb *cb)
4628{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004629 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004630
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004631 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004632
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004633 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004634 cb->fill(cb, "under_oom", 1);
4635 else
4636 cb->fill(cb, "under_oom", 0);
4637 return 0;
4638}
4639
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004640static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4641 struct cftype *cft, u64 val)
4642{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004643 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004644 struct mem_cgroup *parent;
4645
4646 /* cannot set to root cgroup and only 0 and 1 are allowed */
4647 if (!cgrp->parent || !((val == 0) || (val == 1)))
4648 return -EINVAL;
4649
4650 parent = mem_cgroup_from_cont(cgrp->parent);
4651
4652 cgroup_lock();
4653 /* oom-kill-disable is a flag for subhierarchy. */
4654 if ((parent->use_hierarchy) ||
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004655 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004656 cgroup_unlock();
4657 return -EINVAL;
4658 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004659 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004660 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004661 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004662 cgroup_unlock();
4663 return 0;
4664}
4665
Ying Han406eb0c2011-05-26 16:25:37 -07004666#ifdef CONFIG_NUMA
4667static const struct file_operations mem_control_numa_stat_file_operations = {
4668 .read = seq_read,
4669 .llseek = seq_lseek,
4670 .release = single_release,
4671};
4672
4673static int mem_control_numa_stat_open(struct inode *unused, struct file *file)
4674{
4675 struct cgroup *cont = file->f_dentry->d_parent->d_fsdata;
4676
4677 file->f_op = &mem_control_numa_stat_file_operations;
4678 return single_open(file, mem_control_numa_stat_show, cont);
4679}
4680#endif /* CONFIG_NUMA */
4681
Glauber Costae5671df2011-12-11 21:47:01 +00004682#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
4683static u64 kmem_limit_independent_read(struct cgroup *cgroup, struct cftype *cft)
4684{
4685 return mem_cgroup_from_cont(cgroup)->kmem_independent_accounting;
4686}
4687
4688static int kmem_limit_independent_write(struct cgroup *cgroup, struct cftype *cft,
4689 u64 val)
4690{
4691 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
4692 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4693
4694 val = !!val;
4695
4696 /*
4697 * This follows the same hierarchy restrictions than
4698 * mem_cgroup_hierarchy_write()
4699 */
4700 if (!parent || !parent->use_hierarchy) {
4701 if (list_empty(&cgroup->children))
4702 memcg->kmem_independent_accounting = val;
4703 else
4704 return -EBUSY;
4705 }
4706 else
4707 return -EINVAL;
4708
4709 return 0;
4710}
4711static struct cftype kmem_cgroup_files[] = {
4712 {
4713 .name = "independent_kmem_limit",
4714 .read_u64 = kmem_limit_independent_read,
4715 .write_u64 = kmem_limit_independent_write,
4716 },
4717 {
4718 .name = "kmem.usage_in_bytes",
4719 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
4720 .read_u64 = mem_cgroup_read,
4721 },
4722 {
4723 .name = "kmem.limit_in_bytes",
4724 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
4725 .read_u64 = mem_cgroup_read,
4726 },
4727};
4728
4729static int register_kmem_files(struct cgroup *cont, struct cgroup_subsys *ss)
4730{
4731 int ret = 0;
4732
4733 ret = cgroup_add_files(cont, ss, kmem_cgroup_files,
4734 ARRAY_SIZE(kmem_cgroup_files));
4735 return ret;
4736};
4737
4738#else
4739static int register_kmem_files(struct cgroup *cont, struct cgroup_subsys *ss)
4740{
4741 return 0;
4742}
4743#endif
4744
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004745static struct cftype mem_cgroup_files[] = {
4746 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004747 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004748 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Paul Menage2c3daa72008-04-29 00:59:58 -07004749 .read_u64 = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004750 .register_event = mem_cgroup_usage_register_event,
4751 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004752 },
4753 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004754 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004755 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004756 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004757 .read_u64 = mem_cgroup_read,
4758 },
4759 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004760 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004761 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07004762 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07004763 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004764 },
4765 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004766 .name = "soft_limit_in_bytes",
4767 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4768 .write_string = mem_cgroup_write,
4769 .read_u64 = mem_cgroup_read,
4770 },
4771 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004772 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004773 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004774 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07004775 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004776 },
Balbir Singh8697d332008-02-07 00:13:59 -08004777 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004778 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07004779 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004780 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004781 {
4782 .name = "force_empty",
4783 .trigger = mem_cgroup_force_empty_write,
4784 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004785 {
4786 .name = "use_hierarchy",
4787 .write_u64 = mem_cgroup_hierarchy_write,
4788 .read_u64 = mem_cgroup_hierarchy_read,
4789 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004790 {
4791 .name = "swappiness",
4792 .read_u64 = mem_cgroup_swappiness_read,
4793 .write_u64 = mem_cgroup_swappiness_write,
4794 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004795 {
4796 .name = "move_charge_at_immigrate",
4797 .read_u64 = mem_cgroup_move_charge_read,
4798 .write_u64 = mem_cgroup_move_charge_write,
4799 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004800 {
4801 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004802 .read_map = mem_cgroup_oom_control_read,
4803 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004804 .register_event = mem_cgroup_oom_register_event,
4805 .unregister_event = mem_cgroup_oom_unregister_event,
4806 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4807 },
Ying Han406eb0c2011-05-26 16:25:37 -07004808#ifdef CONFIG_NUMA
4809 {
4810 .name = "numa_stat",
4811 .open = mem_control_numa_stat_open,
KAMEZAWA Hiroyuki89577122011-06-15 15:08:41 -07004812 .mode = S_IRUGO,
Ying Han406eb0c2011-05-26 16:25:37 -07004813 },
4814#endif
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004815};
4816
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004817#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
4818static struct cftype memsw_cgroup_files[] = {
4819 {
4820 .name = "memsw.usage_in_bytes",
4821 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
4822 .read_u64 = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004823 .register_event = mem_cgroup_usage_register_event,
4824 .unregister_event = mem_cgroup_usage_unregister_event,
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004825 },
4826 {
4827 .name = "memsw.max_usage_in_bytes",
4828 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4829 .trigger = mem_cgroup_reset,
4830 .read_u64 = mem_cgroup_read,
4831 },
4832 {
4833 .name = "memsw.limit_in_bytes",
4834 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4835 .write_string = mem_cgroup_write,
4836 .read_u64 = mem_cgroup_read,
4837 },
4838 {
4839 .name = "memsw.failcnt",
4840 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4841 .trigger = mem_cgroup_reset,
4842 .read_u64 = mem_cgroup_read,
4843 },
4844};
4845
4846static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
4847{
4848 if (!do_swap_account)
4849 return 0;
4850 return cgroup_add_files(cont, ss, memsw_cgroup_files,
4851 ARRAY_SIZE(memsw_cgroup_files));
4852};
4853#else
4854static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
4855{
4856 return 0;
4857}
4858#endif
4859
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004860static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004861{
4862 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004863 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -07004864 enum lru_list l;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004865 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004866 /*
4867 * This routine is called against possible nodes.
4868 * But it's BUG to call kmalloc() against offline node.
4869 *
4870 * TODO: this routine can waste much memory for nodes which will
4871 * never be onlined. It's better to use memory hotplug callback
4872 * function.
4873 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004874 if (!node_state(node, N_NORMAL_MEMORY))
4875 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004876 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004877 if (!pn)
4878 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004879
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004880 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4881 mz = &pn->zoneinfo[zone];
Christoph Lameterb69408e2008-10-18 20:26:14 -07004882 for_each_lru(l)
4883 INIT_LIST_HEAD(&mz->lists[l]);
Balbir Singhf64c3f52009-09-23 15:56:37 -07004884 mz->usage_in_excess = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07004885 mz->on_tree = false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004886 mz->mem = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004887 }
Igor Mammedov0a619e52011-11-02 13:38:21 -07004888 memcg->info.nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004889 return 0;
4890}
4891
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004892static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004893{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004894 kfree(memcg->info.nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004895}
4896
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004897static struct mem_cgroup *mem_cgroup_alloc(void)
4898{
4899 struct mem_cgroup *mem;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004900 int size = sizeof(struct mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004901
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004902 /* Can be very big if MAX_NUMNODES is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08004903 if (size < PAGE_SIZE)
Jesper Juhl17295c82011-01-13 15:47:42 -08004904 mem = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004905 else
Jesper Juhl17295c82011-01-13 15:47:42 -08004906 mem = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004907
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004908 if (!mem)
4909 return NULL;
4910
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004911 mem->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004912 if (!mem->stat)
4913 goto out_free;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07004914 spin_lock_init(&mem->pcp_counter_lock);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004915 return mem;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004916
4917out_free:
4918 if (size < PAGE_SIZE)
4919 kfree(mem);
4920 else
4921 vfree(mem);
4922 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004923}
4924
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004925/*
4926 * At destroying mem_cgroup, references from swap_cgroup can remain.
4927 * (scanning all at force_empty is too costly...)
4928 *
4929 * Instead of clearing all references at force_empty, we remember
4930 * the number of reference from swap_cgroup and free mem_cgroup when
4931 * it goes down to 0.
4932 *
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004933 * Removal of cgroup itself succeeds regardless of refs from swap.
4934 */
4935
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004936static void __mem_cgroup_free(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004937{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004938 int node;
4939
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004940 mem_cgroup_remove_from_trees(memcg);
4941 free_css_id(&mem_cgroup_subsys, &memcg->css);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004942
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004943 for_each_node_state(node, N_POSSIBLE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004944 free_mem_cgroup_per_zone_info(memcg, node);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004945
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004946 free_percpu(memcg->stat);
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004947 if (sizeof(struct mem_cgroup) < PAGE_SIZE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004948 kfree(memcg);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004949 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004950 vfree(memcg);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004951}
4952
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004953static void mem_cgroup_get(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004954{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004955 atomic_inc(&memcg->refcnt);
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004956}
4957
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004958static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004959{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004960 if (atomic_sub_and_test(count, &memcg->refcnt)) {
4961 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4962 __mem_cgroup_free(memcg);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004963 if (parent)
4964 mem_cgroup_put(parent);
4965 }
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08004966}
4967
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004968static void mem_cgroup_put(struct mem_cgroup *memcg)
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004969{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004970 __mem_cgroup_put(memcg, 1);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004971}
4972
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004973/*
4974 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4975 */
Glauber Costae1aab162011-12-11 21:47:03 +00004976struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004977{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004978 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004979 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004980 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004981}
Glauber Costae1aab162011-12-11 21:47:03 +00004982EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004983
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004984#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
4985static void __init enable_swap_cgroup(void)
4986{
Hirokazu Takahashif8d66542009-01-07 18:08:02 -08004987 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004988 do_swap_account = 1;
4989}
4990#else
4991static void __init enable_swap_cgroup(void)
4992{
4993}
4994#endif
4995
Balbir Singhf64c3f52009-09-23 15:56:37 -07004996static int mem_cgroup_soft_limit_tree_init(void)
4997{
4998 struct mem_cgroup_tree_per_node *rtpn;
4999 struct mem_cgroup_tree_per_zone *rtpz;
5000 int tmp, node, zone;
5001
5002 for_each_node_state(node, N_POSSIBLE) {
5003 tmp = node;
5004 if (!node_state(node, N_NORMAL_MEMORY))
5005 tmp = -1;
5006 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
5007 if (!rtpn)
5008 return 1;
5009
5010 soft_limit_tree.rb_tree_per_node[node] = rtpn;
5011
5012 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5013 rtpz = &rtpn->rb_tree_per_zone[zone];
5014 rtpz->rb_root = RB_ROOT;
5015 spin_lock_init(&rtpz->lock);
5016 }
5017 }
5018 return 0;
5019}
5020
Li Zefan0eb253e2009-01-15 13:51:25 -08005021static struct cgroup_subsys_state * __ref
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005022mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
5023{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005024 struct mem_cgroup *memcg, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005025 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005026 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005027
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005028 memcg = mem_cgroup_alloc();
5029 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005030 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005031
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005032 for_each_node_state(node, N_POSSIBLE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005033 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005034 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005035
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005036 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005037 if (cont->parent == NULL) {
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08005038 int cpu;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005039 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005040 parent = NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005041 root_mem_cgroup = memcg;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005042 if (mem_cgroup_soft_limit_tree_init())
5043 goto free_out;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08005044 for_each_possible_cpu(cpu) {
5045 struct memcg_stock_pcp *stock =
5046 &per_cpu(memcg_stock, cpu);
5047 INIT_WORK(&stock->work, drain_local_stock);
5048 }
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07005049 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005050 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005051 parent = mem_cgroup_from_cont(cont->parent);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005052 memcg->use_hierarchy = parent->use_hierarchy;
5053 memcg->oom_kill_disable = parent->oom_kill_disable;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005054 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005055
Balbir Singh18f59ea2009-01-07 18:08:07 -08005056 if (parent && parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005057 res_counter_init(&memcg->res, &parent->res);
5058 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costae5671df2011-12-11 21:47:01 +00005059 res_counter_init(&memcg->kmem, &parent->kmem);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005060 /*
5061 * We increment refcnt of the parent to ensure that we can
5062 * safely access it on res_counter_charge/uncharge.
5063 * This refcnt will be decremented when freeing this
5064 * mem_cgroup(see mem_cgroup_put).
5065 */
5066 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005067 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005068 res_counter_init(&memcg->res, NULL);
5069 res_counter_init(&memcg->memsw, NULL);
Glauber Costae5671df2011-12-11 21:47:01 +00005070 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005071 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005072 memcg->last_scanned_child = 0;
5073 memcg->last_scanned_node = MAX_NUMNODES;
5074 INIT_LIST_HEAD(&memcg->oom_notify);
Balbir Singh6d61ef42009-01-07 18:08:06 -08005075
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005076 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005077 memcg->swappiness = mem_cgroup_swappiness(parent);
5078 atomic_set(&memcg->refcnt, 1);
5079 memcg->move_charge_at_immigrate = 0;
5080 mutex_init(&memcg->thresholds_lock);
5081 return &memcg->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005082free_out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005083 __mem_cgroup_free(memcg);
Balbir Singh4b3bde42009-09-23 15:56:32 -07005084 root_mem_cgroup = NULL;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005085 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005086}
5087
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005088static int mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005089 struct cgroup *cont)
5090{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005091 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005092
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005093 return mem_cgroup_force_empty(memcg, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005094}
5095
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005096static void mem_cgroup_destroy(struct cgroup_subsys *ss,
5097 struct cgroup *cont)
5098{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005099 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005100
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005101 mem_cgroup_put(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005102}
5103
5104static int mem_cgroup_populate(struct cgroup_subsys *ss,
5105 struct cgroup *cont)
5106{
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08005107 int ret;
5108
5109 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
5110 ARRAY_SIZE(mem_cgroup_files));
5111
5112 if (!ret)
5113 ret = register_memsw_files(cont, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00005114
5115 if (!ret)
5116 ret = register_kmem_files(cont, ss);
5117
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -08005118 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005119}
5120
Daisuke Nishimura02491442010-03-10 15:22:17 -08005121#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005122/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005123#define PRECHARGE_COUNT_AT_ONCE 256
5124static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005125{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005126 int ret = 0;
5127 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005128 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005129
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005130 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005131 mc.precharge += count;
5132 /* we don't need css_get for root */
5133 return ret;
5134 }
5135 /* try to charge at once */
5136 if (count > 1) {
5137 struct res_counter *dummy;
5138 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005139 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005140 * by cgroup_lock_live_cgroup() that it is not removed and we
5141 * are still under the same cgroup_mutex. So we can postpone
5142 * css_get().
5143 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005144 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005145 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005146 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005147 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005148 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005149 goto one_by_one;
5150 }
5151 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005152 return ret;
5153 }
5154one_by_one:
5155 /* fall back to one by one charge */
5156 while (count--) {
5157 if (signal_pending(current)) {
5158 ret = -EINTR;
5159 break;
5160 }
5161 if (!batch_count--) {
5162 batch_count = PRECHARGE_COUNT_AT_ONCE;
5163 cond_resched();
5164 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005165 ret = __mem_cgroup_try_charge(NULL,
5166 GFP_KERNEL, 1, &memcg, false);
5167 if (ret || !memcg)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005168 /* mem_cgroup_clear_mc() will do uncharge later */
5169 return -ENOMEM;
5170 mc.precharge++;
5171 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005172 return ret;
5173}
5174
5175/**
5176 * is_target_pte_for_mc - check a pte whether it is valid for move charge
5177 * @vma: the vma the pte to be checked belongs
5178 * @addr: the address corresponding to the pte to be checked
5179 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005180 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005181 *
5182 * Returns
5183 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5184 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5185 * move charge. if @target is not NULL, the page is stored in target->page
5186 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005187 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5188 * target for charge migration. if @target is not NULL, the entry is stored
5189 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005190 *
5191 * Called with pte lock held.
5192 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005193union mc_target {
5194 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005195 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005196};
5197
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005198enum mc_target_type {
5199 MC_TARGET_NONE, /* not used */
5200 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005201 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005202};
5203
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005204static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5205 unsigned long addr, pte_t ptent)
5206{
5207 struct page *page = vm_normal_page(vma, addr, ptent);
5208
5209 if (!page || !page_mapped(page))
5210 return NULL;
5211 if (PageAnon(page)) {
5212 /* we don't move shared anon */
5213 if (!move_anon() || page_mapcount(page) > 2)
5214 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005215 } else if (!move_file())
5216 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005217 return NULL;
5218 if (!get_page_unless_zero(page))
5219 return NULL;
5220
5221 return page;
5222}
5223
5224static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5225 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5226{
5227 int usage_count;
5228 struct page *page = NULL;
5229 swp_entry_t ent = pte_to_swp_entry(ptent);
5230
5231 if (!move_anon() || non_swap_entry(ent))
5232 return NULL;
5233 usage_count = mem_cgroup_count_swap_user(ent, &page);
5234 if (usage_count > 1) { /* we don't move shared anon */
5235 if (page)
5236 put_page(page);
5237 return NULL;
5238 }
5239 if (do_swap_account)
5240 entry->val = ent.val;
5241
5242 return page;
5243}
5244
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005245static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5246 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5247{
5248 struct page *page = NULL;
5249 struct inode *inode;
5250 struct address_space *mapping;
5251 pgoff_t pgoff;
5252
5253 if (!vma->vm_file) /* anonymous vma */
5254 return NULL;
5255 if (!move_file())
5256 return NULL;
5257
5258 inode = vma->vm_file->f_path.dentry->d_inode;
5259 mapping = vma->vm_file->f_mapping;
5260 if (pte_none(ptent))
5261 pgoff = linear_page_index(vma, addr);
5262 else /* pte_file(ptent) is true */
5263 pgoff = pte_to_pgoff(ptent);
5264
5265 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005266 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005267
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005268#ifdef CONFIG_SWAP
5269 /* shmem/tmpfs may report page out on swap: account for that too. */
5270 if (radix_tree_exceptional_entry(page)) {
5271 swp_entry_t swap = radix_to_swp_entry(page);
5272 if (do_swap_account)
5273 *entry = swap;
5274 page = find_get_page(&swapper_space, swap.val);
5275 }
5276#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005277 return page;
5278}
5279
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005280static int is_target_pte_for_mc(struct vm_area_struct *vma,
5281 unsigned long addr, pte_t ptent, union mc_target *target)
5282{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005283 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005284 struct page_cgroup *pc;
5285 int ret = 0;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005286 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005287
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005288 if (pte_present(ptent))
5289 page = mc_handle_present_pte(vma, addr, ptent);
5290 else if (is_swap_pte(ptent))
5291 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005292 else if (pte_none(ptent) || pte_file(ptent))
5293 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005294
5295 if (!page && !ent.val)
Daisuke Nishimura02491442010-03-10 15:22:17 -08005296 return 0;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005297 if (page) {
5298 pc = lookup_page_cgroup(page);
5299 /*
5300 * Do only loose check w/o page_cgroup lock.
5301 * mem_cgroup_move_account() checks the pc is valid or not under
5302 * the lock.
5303 */
5304 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5305 ret = MC_TARGET_PAGE;
5306 if (target)
5307 target->page = page;
5308 }
5309 if (!ret || !target)
5310 put_page(page);
5311 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005312 /* There is a swap entry and a page doesn't exist or isn't charged */
5313 if (ent.val && !ret &&
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005314 css_id(&mc.from->css) == lookup_swap_cgroup(ent)) {
5315 ret = MC_TARGET_SWAP;
5316 if (target)
5317 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005318 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005319 return ret;
5320}
5321
5322static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5323 unsigned long addr, unsigned long end,
5324 struct mm_walk *walk)
5325{
5326 struct vm_area_struct *vma = walk->private;
5327 pte_t *pte;
5328 spinlock_t *ptl;
5329
Dave Hansen03319322011-03-22 16:32:56 -07005330 split_huge_page_pmd(walk->mm, pmd);
5331
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005332 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5333 for (; addr != end; pte++, addr += PAGE_SIZE)
5334 if (is_target_pte_for_mc(vma, addr, *pte, NULL))
5335 mc.precharge++; /* increment precharge temporarily */
5336 pte_unmap_unlock(pte - 1, ptl);
5337 cond_resched();
5338
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005339 return 0;
5340}
5341
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005342static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5343{
5344 unsigned long precharge;
5345 struct vm_area_struct *vma;
5346
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005347 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005348 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5349 struct mm_walk mem_cgroup_count_precharge_walk = {
5350 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5351 .mm = mm,
5352 .private = vma,
5353 };
5354 if (is_vm_hugetlb_page(vma))
5355 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005356 walk_page_range(vma->vm_start, vma->vm_end,
5357 &mem_cgroup_count_precharge_walk);
5358 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005359 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005360
5361 precharge = mc.precharge;
5362 mc.precharge = 0;
5363
5364 return precharge;
5365}
5366
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005367static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5368{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005369 unsigned long precharge = mem_cgroup_count_precharge(mm);
5370
5371 VM_BUG_ON(mc.moving_task);
5372 mc.moving_task = current;
5373 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005374}
5375
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005376/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5377static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005378{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005379 struct mem_cgroup *from = mc.from;
5380 struct mem_cgroup *to = mc.to;
5381
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005382 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005383 if (mc.precharge) {
5384 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
5385 mc.precharge = 0;
5386 }
5387 /*
5388 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5389 * we must uncharge here.
5390 */
5391 if (mc.moved_charge) {
5392 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
5393 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005394 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005395 /* we must fixup refcnts and charges */
5396 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005397 /* uncharge swap account from the old cgroup */
5398 if (!mem_cgroup_is_root(mc.from))
5399 res_counter_uncharge(&mc.from->memsw,
5400 PAGE_SIZE * mc.moved_swap);
5401 __mem_cgroup_put(mc.from, mc.moved_swap);
5402
5403 if (!mem_cgroup_is_root(mc.to)) {
5404 /*
5405 * we charged both to->res and to->memsw, so we should
5406 * uncharge to->res.
5407 */
5408 res_counter_uncharge(&mc.to->res,
5409 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005410 }
5411 /* we've already done mem_cgroup_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005412 mc.moved_swap = 0;
5413 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005414 memcg_oom_recover(from);
5415 memcg_oom_recover(to);
5416 wake_up_all(&mc.waitq);
5417}
5418
5419static void mem_cgroup_clear_mc(void)
5420{
5421 struct mem_cgroup *from = mc.from;
5422
5423 /*
5424 * we must clear moving_task before waking up waiters at the end of
5425 * task migration.
5426 */
5427 mc.moving_task = NULL;
5428 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005429 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005430 mc.from = NULL;
5431 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005432 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005433 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005434}
5435
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005436static int mem_cgroup_can_attach(struct cgroup_subsys *ss,
5437 struct cgroup *cgroup,
Ben Blumf780bdb2011-05-26 16:25:19 -07005438 struct task_struct *p)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005439{
5440 int ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005441 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005442
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005443 if (memcg->move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005444 struct mm_struct *mm;
5445 struct mem_cgroup *from = mem_cgroup_from_task(p);
5446
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005447 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005448
5449 mm = get_task_mm(p);
5450 if (!mm)
5451 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005452 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005453 if (mm->owner == p) {
5454 VM_BUG_ON(mc.from);
5455 VM_BUG_ON(mc.to);
5456 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005457 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005458 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005459 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005460 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005461 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005462 mc.to = memcg;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005463 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005464 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005465
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005466 ret = mem_cgroup_precharge_mc(mm);
5467 if (ret)
5468 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005469 }
5470 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005471 }
5472 return ret;
5473}
5474
5475static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss,
5476 struct cgroup *cgroup,
Ben Blumf780bdb2011-05-26 16:25:19 -07005477 struct task_struct *p)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005478{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005479 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005480}
5481
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005482static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5483 unsigned long addr, unsigned long end,
5484 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005485{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005486 int ret = 0;
5487 struct vm_area_struct *vma = walk->private;
5488 pte_t *pte;
5489 spinlock_t *ptl;
5490
Dave Hansen03319322011-03-22 16:32:56 -07005491 split_huge_page_pmd(walk->mm, pmd);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005492retry:
5493 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5494 for (; addr != end; addr += PAGE_SIZE) {
5495 pte_t ptent = *(pte++);
5496 union mc_target target;
5497 int type;
5498 struct page *page;
5499 struct page_cgroup *pc;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005500 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005501
5502 if (!mc.precharge)
5503 break;
5504
5505 type = is_target_pte_for_mc(vma, addr, ptent, &target);
5506 switch (type) {
5507 case MC_TARGET_PAGE:
5508 page = target.page;
5509 if (isolate_lru_page(page))
5510 goto put;
5511 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07005512 if (!mem_cgroup_move_account(page, 1, pc,
5513 mc.from, mc.to, false)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005514 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005515 /* we uncharge from mc.from later. */
5516 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005517 }
5518 putback_lru_page(page);
5519put: /* is_target_pte_for_mc() gets the page */
5520 put_page(page);
5521 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005522 case MC_TARGET_SWAP:
5523 ent = target.ent;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005524 if (!mem_cgroup_move_swap_account(ent,
5525 mc.from, mc.to, false)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005526 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005527 /* we fixup refcnts and charges later. */
5528 mc.moved_swap++;
5529 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08005530 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005531 default:
5532 break;
5533 }
5534 }
5535 pte_unmap_unlock(pte - 1, ptl);
5536 cond_resched();
5537
5538 if (addr != end) {
5539 /*
5540 * We have consumed all precharges we got in can_attach().
5541 * We try charge one by one, but don't do any additional
5542 * charges to mc.to if we have failed in charge once in attach()
5543 * phase.
5544 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005545 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005546 if (!ret)
5547 goto retry;
5548 }
5549
5550 return ret;
5551}
5552
5553static void mem_cgroup_move_charge(struct mm_struct *mm)
5554{
5555 struct vm_area_struct *vma;
5556
5557 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005558retry:
5559 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5560 /*
5561 * Someone who are holding the mmap_sem might be waiting in
5562 * waitq. So we cancel all extra charges, wake up all waiters,
5563 * and retry. Because we cancel precharges, we might not be able
5564 * to move enough charges, but moving charge is a best-effort
5565 * feature anyway, so it wouldn't be a big problem.
5566 */
5567 __mem_cgroup_clear_mc();
5568 cond_resched();
5569 goto retry;
5570 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005571 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5572 int ret;
5573 struct mm_walk mem_cgroup_move_charge_walk = {
5574 .pmd_entry = mem_cgroup_move_charge_pte_range,
5575 .mm = mm,
5576 .private = vma,
5577 };
5578 if (is_vm_hugetlb_page(vma))
5579 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005580 ret = walk_page_range(vma->vm_start, vma->vm_end,
5581 &mem_cgroup_move_charge_walk);
5582 if (ret)
5583 /*
5584 * means we have consumed all precharges and failed in
5585 * doing additional charge. Just abandon here.
5586 */
5587 break;
5588 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005589 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005590}
5591
Balbir Singh67e465a2008-02-07 00:13:54 -08005592static void mem_cgroup_move_task(struct cgroup_subsys *ss,
5593 struct cgroup *cont,
5594 struct cgroup *old_cont,
Ben Blumf780bdb2011-05-26 16:25:19 -07005595 struct task_struct *p)
Balbir Singh67e465a2008-02-07 00:13:54 -08005596{
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005597 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005598
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005599 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005600 if (mc.to)
5601 mem_cgroup_move_charge(mm);
5602 put_swap_token(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005603 mmput(mm);
5604 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005605 if (mc.to)
5606 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005607}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005608#else /* !CONFIG_MMU */
5609static int mem_cgroup_can_attach(struct cgroup_subsys *ss,
5610 struct cgroup *cgroup,
Ben Blumf780bdb2011-05-26 16:25:19 -07005611 struct task_struct *p)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005612{
5613 return 0;
5614}
5615static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss,
5616 struct cgroup *cgroup,
Ben Blumf780bdb2011-05-26 16:25:19 -07005617 struct task_struct *p)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005618{
5619}
5620static void mem_cgroup_move_task(struct cgroup_subsys *ss,
5621 struct cgroup *cont,
5622 struct cgroup *old_cont,
Ben Blumf780bdb2011-05-26 16:25:19 -07005623 struct task_struct *p)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005624{
5625}
5626#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005627
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005628struct cgroup_subsys mem_cgroup_subsys = {
5629 .name = "memory",
5630 .subsys_id = mem_cgroup_subsys_id,
5631 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005632 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005633 .destroy = mem_cgroup_destroy,
5634 .populate = mem_cgroup_populate,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005635 .can_attach = mem_cgroup_can_attach,
5636 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005637 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005638 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005639 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005640};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005641
5642#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08005643static int __init enable_swap_account(char *s)
5644{
5645 /* consider enabled if no parameter or 1 is given */
Michal Hockoa2c89902011-05-24 17:12:50 -07005646 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005647 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07005648 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005649 really_do_swap_account = 0;
5650 return 1;
5651}
Michal Hockoa2c89902011-05-24 17:12:50 -07005652__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005653
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005654#endif