blob: 0b2d4036f1cde795457b8e47794dac24174bad6c [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 Hiroyuki8c7c6e342009-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"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000053#include <net/sock.h>
54#include <net/tcp_memcontrol.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080055
Balbir Singh8697d332008-02-07 00:13:59 -080056#include <asm/uaccess.h>
57
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070058#include <trace/events/vmscan.h>
59
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070060struct cgroup_subsys mem_cgroup_subsys __read_mostly;
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070061#define MEM_CGROUP_RECLAIM_RETRIES 5
Balbir Singh4b3bde42009-09-23 15:56:32 -070062struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080063
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080064#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070065/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080066int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080067
68/* for remember boot option*/
69#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP_ENABLED
70static int really_do_swap_account __initdata = 1;
71#else
72static int really_do_swap_account __initdata = 0;
73#endif
74
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080075#else
76#define do_swap_account (0)
77#endif
78
79
Balbir Singh8cdea7c2008-02-07 00:13:50 -080080/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080081 * Statistics for memory cgroup.
82 */
83enum mem_cgroup_stat_index {
84 /*
85 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
86 */
87 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
Balbir Singhd69b0422009-06-17 16:26:34 -070088 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -080089 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
Balbir Singh0c3e73e2009-09-23 15:56:42 -070090 MEM_CGROUP_STAT_SWAPOUT, /* # of pages, swapped out */
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -070091 MEM_CGROUP_STAT_DATA, /* end of data requires synchronization */
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -070092 MEM_CGROUP_ON_MOVE, /* someone is moving account between groups */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080093 MEM_CGROUP_STAT_NSTATS,
94};
95
Johannes Weinere9f89742011-03-23 16:42:37 -070096enum mem_cgroup_events_index {
97 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
98 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
99 MEM_CGROUP_EVENTS_COUNT, /* # of pages paged in/out */
Ying Han456f9982011-05-26 16:25:38 -0700100 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
101 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700102 MEM_CGROUP_EVENTS_NSTATS,
103};
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700104/*
105 * Per memcg event counter is incremented at every pagein/pageout. With THP,
106 * it will be incremated by the number of pages. This counter is used for
107 * for trigger some periodic events. This is straightforward and better
108 * than using jiffies etc. to handle periodic memcg event.
109 */
110enum mem_cgroup_events_target {
111 MEM_CGROUP_TARGET_THRESH,
112 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700113 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700114 MEM_CGROUP_NTARGETS,
115};
116#define THRESHOLDS_EVENTS_TARGET (128)
117#define SOFTLIMIT_EVENTS_TARGET (1024)
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700118#define NUMAINFO_EVENTS_TARGET (1024)
Johannes Weinere9f89742011-03-23 16:42:37 -0700119
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800120struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700121 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700122 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700123 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800124};
125
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800126/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800127 * per-zone information in memory controller.
128 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800129struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800130 /*
131 * spin_lock to protect the per cgroup LRU
132 */
Christoph Lameterb69408e2008-10-18 20:26:14 -0700133 struct list_head lists[NR_LRU_LISTS];
134 unsigned long count[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800135
136 struct zone_reclaim_stat reclaim_stat;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700137 struct rb_node tree_node; /* RB tree node */
138 unsigned long long usage_in_excess;/* Set to the value by which */
139 /* the soft limit is exceeded*/
140 bool on_tree;
Balbir Singh4e416952009-09-23 15:56:39 -0700141 struct mem_cgroup *mem; /* Back pointer, we cannot */
142 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800143};
144/* Macro for accessing counter */
145#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
146
147struct mem_cgroup_per_node {
148 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
149};
150
151struct mem_cgroup_lru_info {
152 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
153};
154
155/*
Balbir Singhf64c3f52009-09-23 15:56:37 -0700156 * Cgroups above their limits are maintained in a RB-Tree, independent of
157 * their hierarchy representation
158 */
159
160struct mem_cgroup_tree_per_zone {
161 struct rb_root rb_root;
162 spinlock_t lock;
163};
164
165struct mem_cgroup_tree_per_node {
166 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
167};
168
169struct mem_cgroup_tree {
170 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
171};
172
173static struct mem_cgroup_tree soft_limit_tree __read_mostly;
174
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800175struct mem_cgroup_threshold {
176 struct eventfd_ctx *eventfd;
177 u64 threshold;
178};
179
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700180/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800181struct mem_cgroup_threshold_ary {
182 /* An array index points to threshold just below usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700183 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800184 /* Size of entries[] */
185 unsigned int size;
186 /* Array of thresholds */
187 struct mem_cgroup_threshold entries[0];
188};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700189
190struct mem_cgroup_thresholds {
191 /* Primary thresholds array */
192 struct mem_cgroup_threshold_ary *primary;
193 /*
194 * Spare threshold array.
195 * This is needed to make mem_cgroup_unregister_event() "never fail".
196 * It must be able to store at least primary->size - 1 entries.
197 */
198 struct mem_cgroup_threshold_ary *spare;
199};
200
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700201/* for OOM */
202struct mem_cgroup_eventfd_list {
203 struct list_head list;
204 struct eventfd_ctx *eventfd;
205};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800206
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700207static void mem_cgroup_threshold(struct mem_cgroup *memcg);
208static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800209
Balbir Singhf64c3f52009-09-23 15:56:37 -0700210/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800211 * The memory controller data structure. The memory controller controls both
212 * page cache and RSS per cgroup. We would eventually like to provide
213 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
214 * to help the administrator determine what knobs to tune.
215 *
216 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800217 * we hit the water mark. May be even add a low water mark, such that
218 * no reclaim occurs from a cgroup at it's low water mark, this is
219 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800220 */
221struct mem_cgroup {
222 struct cgroup_subsys_state css;
223 /*
224 * the counter to account for memory usage
225 */
226 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800227 /*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800228 * the counter to account for mem+swap usage.
229 */
230 struct res_counter memsw;
231 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800232 * Per cgroup active and inactive list, similar to the
233 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800234 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800235 struct mem_cgroup_lru_info info;
Balbir Singh6d61ef42009-01-07 18:08:06 -0800236 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200237 * While reclaiming in a hierarchy, we cache the last child we
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700238 * reclaimed from.
Balbir Singh6d61ef42009-01-07 18:08:06 -0800239 */
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -0700240 int last_scanned_child;
Ying Han889976d2011-05-26 16:25:33 -0700241 int last_scanned_node;
242#if MAX_NUMNODES > 1
243 nodemask_t scan_nodes;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700244 atomic_t numainfo_events;
245 atomic_t numainfo_updating;
Ying Han889976d2011-05-26 16:25:33 -0700246#endif
Balbir Singh18f59ea2009-01-07 18:08:07 -0800247 /*
248 * Should the accounting and control be hierarchical, per subtree?
249 */
250 bool use_hierarchy;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700251
252 bool oom_lock;
253 atomic_t under_oom;
254
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800255 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800256
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700257 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700258 /* OOM-Killer disable */
259 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800260
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700261 /* set when res.limit == memsw.limit */
262 bool memsw_is_minimum;
263
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800264 /* protect arrays of thresholds */
265 struct mutex thresholds_lock;
266
267 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700268 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700269
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800270 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700271 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700272
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700273 /* For oom notifier event fd */
274 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700275
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800276 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800277 * Should we move charges of a task when a task is moved into this
278 * mem_cgroup ? And what type of charges should we move ?
279 */
280 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800281 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800282 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800283 */
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800284 struct mem_cgroup_stat_cpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700285 /*
286 * used when a cpu is offlined or other synchronizations
287 * See mem_cgroup_read_stat().
288 */
289 struct mem_cgroup_stat_cpu nocpu_base;
290 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000291
292#ifdef CONFIG_INET
293 struct tcp_memcontrol tcp_mem;
294#endif
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800295};
296
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800297/* Stuffs for move charges at task migration. */
298/*
299 * Types of charges to be moved. "move_charge_at_immitgrate" is treated as a
300 * left-shifted bitmap of these types.
301 */
302enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800303 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700304 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800305 NR_MOVE_TYPE,
306};
307
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800308/* "mc" and its members are protected by cgroup_mutex */
309static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800310 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800311 struct mem_cgroup *from;
312 struct mem_cgroup *to;
313 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800314 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800315 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800316 struct task_struct *moving_task; /* a task moving charges */
317 wait_queue_head_t waitq; /* a waitq for other context */
318} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700319 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800320 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
321};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800322
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700323static bool move_anon(void)
324{
325 return test_bit(MOVE_CHARGE_TYPE_ANON,
326 &mc.to->move_charge_at_immigrate);
327}
328
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700329static bool move_file(void)
330{
331 return test_bit(MOVE_CHARGE_TYPE_FILE,
332 &mc.to->move_charge_at_immigrate);
333}
334
Balbir Singh4e416952009-09-23 15:56:39 -0700335/*
336 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
337 * limit reclaim to prevent infinite loops, if they ever occur.
338 */
339#define MEM_CGROUP_MAX_RECLAIM_LOOPS (100)
340#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS (2)
341
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800342enum charge_type {
343 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
344 MEM_CGROUP_CHARGE_TYPE_MAPPED,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700345 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700346 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800347 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700348 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700349 NR_CHARGE_TYPE,
350};
351
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800352/* for encoding cft->private value on file */
Glauber Costa65c64ce2011-12-22 01:02:27 +0000353#define _MEM (0)
354#define _MEMSWAP (1)
355#define _OOM_TYPE (2)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800356#define MEMFILE_PRIVATE(x, val) (((x) << 16) | (val))
357#define MEMFILE_TYPE(val) (((val) >> 16) & 0xffff)
358#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700359/* Used for OOM nofiier */
360#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800361
Balbir Singh75822b42009-09-23 15:56:38 -0700362/*
363 * Reclaim flags for mem_cgroup_hierarchical_reclaim
364 */
365#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
366#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
367#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
368#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
Balbir Singh4e416952009-09-23 15:56:39 -0700369#define MEM_CGROUP_RECLAIM_SOFT_BIT 0x2
370#define MEM_CGROUP_RECLAIM_SOFT (1 << MEM_CGROUP_RECLAIM_SOFT_BIT)
Balbir Singh75822b42009-09-23 15:56:38 -0700371
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700372static void mem_cgroup_get(struct mem_cgroup *memcg);
373static void mem_cgroup_put(struct mem_cgroup *memcg);
Glauber Costae1aab162011-12-11 21:47:03 +0000374
375/* Writing them here to avoid exposing memcg's inner layout */
376#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
377#ifdef CONFIG_INET
378#include <net/sock.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000379#include <net/ip.h>
Glauber Costae1aab162011-12-11 21:47:03 +0000380
381static bool mem_cgroup_is_root(struct mem_cgroup *memcg);
382void sock_update_memcg(struct sock *sk)
383{
Glauber Costae1aab162011-12-11 21:47:03 +0000384 if (static_branch(&memcg_socket_limit_enabled)) {
385 struct mem_cgroup *memcg;
386
387 BUG_ON(!sk->sk_prot->proto_cgroup);
388
Glauber Costaf3f511e2012-01-05 20:16:39 +0000389 /* Socket cloning can throw us here with sk_cgrp already
390 * filled. It won't however, necessarily happen from
391 * process context. So the test for root memcg given
392 * the current task's memcg won't help us in this case.
393 *
394 * Respecting the original socket's memcg is a better
395 * decision in this case.
396 */
397 if (sk->sk_cgrp) {
398 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
399 mem_cgroup_get(sk->sk_cgrp->memcg);
400 return;
401 }
402
Glauber Costae1aab162011-12-11 21:47:03 +0000403 rcu_read_lock();
404 memcg = mem_cgroup_from_task(current);
405 if (!mem_cgroup_is_root(memcg)) {
406 mem_cgroup_get(memcg);
407 sk->sk_cgrp = sk->sk_prot->proto_cgroup(memcg);
408 }
409 rcu_read_unlock();
410 }
411}
412EXPORT_SYMBOL(sock_update_memcg);
413
414void sock_release_memcg(struct sock *sk)
415{
416 if (static_branch(&memcg_socket_limit_enabled) && sk->sk_cgrp) {
417 struct mem_cgroup *memcg;
418 WARN_ON(!sk->sk_cgrp->memcg);
419 memcg = sk->sk_cgrp->memcg;
420 mem_cgroup_put(memcg);
421 }
422}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000423
424struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
425{
426 if (!memcg || mem_cgroup_is_root(memcg))
427 return NULL;
428
429 return &memcg->tcp_mem.cg_proto;
430}
431EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000432#endif /* CONFIG_INET */
433#endif /* CONFIG_CGROUP_MEM_RES_CTLR_KMEM */
434
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700435static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800436
Balbir Singhf64c3f52009-09-23 15:56:37 -0700437static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700438mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700439{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700440 return &memcg->info.nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700441}
442
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700443struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100444{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700445 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100446}
447
Balbir Singhf64c3f52009-09-23 15:56:37 -0700448static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700449page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700450{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700451 int nid = page_to_nid(page);
452 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700453
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700454 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700455}
456
457static struct mem_cgroup_tree_per_zone *
458soft_limit_tree_node_zone(int nid, int zid)
459{
460 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
461}
462
463static struct mem_cgroup_tree_per_zone *
464soft_limit_tree_from_page(struct page *page)
465{
466 int nid = page_to_nid(page);
467 int zid = page_zonenum(page);
468
469 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
470}
471
472static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700473__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700474 struct mem_cgroup_per_zone *mz,
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700475 struct mem_cgroup_tree_per_zone *mctz,
476 unsigned long long new_usage_in_excess)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700477{
478 struct rb_node **p = &mctz->rb_root.rb_node;
479 struct rb_node *parent = NULL;
480 struct mem_cgroup_per_zone *mz_node;
481
482 if (mz->on_tree)
483 return;
484
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700485 mz->usage_in_excess = new_usage_in_excess;
486 if (!mz->usage_in_excess)
487 return;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700488 while (*p) {
489 parent = *p;
490 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
491 tree_node);
492 if (mz->usage_in_excess < mz_node->usage_in_excess)
493 p = &(*p)->rb_left;
494 /*
495 * We can't avoid mem cgroups that are over their soft
496 * limit by the same amount
497 */
498 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
499 p = &(*p)->rb_right;
500 }
501 rb_link_node(&mz->tree_node, parent, p);
502 rb_insert_color(&mz->tree_node, &mctz->rb_root);
503 mz->on_tree = true;
Balbir Singh4e416952009-09-23 15:56:39 -0700504}
505
506static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700507__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -0700508 struct mem_cgroup_per_zone *mz,
509 struct mem_cgroup_tree_per_zone *mctz)
510{
511 if (!mz->on_tree)
512 return;
513 rb_erase(&mz->tree_node, &mctz->rb_root);
514 mz->on_tree = false;
515}
516
517static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700518mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700519 struct mem_cgroup_per_zone *mz,
520 struct mem_cgroup_tree_per_zone *mctz)
521{
522 spin_lock(&mctz->lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700523 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700524 spin_unlock(&mctz->lock);
525}
526
Balbir Singhf64c3f52009-09-23 15:56:37 -0700527
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700528static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700529{
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700530 unsigned long long excess;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700531 struct mem_cgroup_per_zone *mz;
532 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700533 int nid = page_to_nid(page);
534 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700535 mctz = soft_limit_tree_from_page(page);
536
537 /*
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700538 * Necessary to update all ancestors when hierarchy is used.
539 * because their event counter is not touched.
Balbir Singhf64c3f52009-09-23 15:56:37 -0700540 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700541 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
542 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
543 excess = res_counter_soft_limit_excess(&memcg->res);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700544 /*
545 * We have to update the tree if mz is on RB-tree or
546 * mem is over its softlimit.
547 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700548 if (excess || mz->on_tree) {
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700549 spin_lock(&mctz->lock);
550 /* if on-tree, remove it */
551 if (mz->on_tree)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700552 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700553 /*
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700554 * Insert again. mz->usage_in_excess will be updated.
555 * If excess is 0, no tree ops.
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700556 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700557 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700558 spin_unlock(&mctz->lock);
559 }
Balbir Singhf64c3f52009-09-23 15:56:37 -0700560 }
561}
562
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700563static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700564{
565 int node, zone;
566 struct mem_cgroup_per_zone *mz;
567 struct mem_cgroup_tree_per_zone *mctz;
568
569 for_each_node_state(node, N_POSSIBLE) {
570 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700571 mz = mem_cgroup_zoneinfo(memcg, node, zone);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700572 mctz = soft_limit_tree_node_zone(node, zone);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700573 mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700574 }
575 }
576}
577
Balbir Singh4e416952009-09-23 15:56:39 -0700578static struct mem_cgroup_per_zone *
579__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
580{
581 struct rb_node *rightmost = NULL;
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700582 struct mem_cgroup_per_zone *mz;
Balbir Singh4e416952009-09-23 15:56:39 -0700583
584retry:
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700585 mz = NULL;
Balbir Singh4e416952009-09-23 15:56:39 -0700586 rightmost = rb_last(&mctz->rb_root);
587 if (!rightmost)
588 goto done; /* Nothing to reclaim from */
589
590 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
591 /*
592 * Remove the node now but someone else can add it back,
593 * we will to add it back at the end of reclaim to its correct
594 * position in the tree.
595 */
596 __mem_cgroup_remove_exceeded(mz->mem, mz, mctz);
597 if (!res_counter_soft_limit_excess(&mz->mem->res) ||
598 !css_tryget(&mz->mem->css))
599 goto retry;
600done:
601 return mz;
602}
603
604static struct mem_cgroup_per_zone *
605mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
606{
607 struct mem_cgroup_per_zone *mz;
608
609 spin_lock(&mctz->lock);
610 mz = __mem_cgroup_largest_soft_limit_node(mctz);
611 spin_unlock(&mctz->lock);
612 return mz;
613}
614
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700615/*
616 * Implementation Note: reading percpu statistics for memcg.
617 *
618 * Both of vmstat[] and percpu_counter has threshold and do periodic
619 * synchronization to implement "quick" read. There are trade-off between
620 * reading cost and precision of value. Then, we may have a chance to implement
621 * a periodic synchronizion of counter in memcg's counter.
622 *
623 * But this _read() function is used for user interface now. The user accounts
624 * memory usage by memory cgroup and he _always_ requires exact value because
625 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
626 * have to visit all online cpus and make sum. So, for now, unnecessary
627 * synchronization is not implemented. (just implemented for cpu hotplug)
628 *
629 * If there are kernel internal actions which can make use of some not-exact
630 * value, and reading all cpu value can be performance bottleneck in some
631 * common workload, threashold and synchonization as vmstat[] should be
632 * implemented.
633 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700634static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700635 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800636{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700637 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800638 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800639
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700640 get_online_cpus();
641 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700642 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700643#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700644 spin_lock(&memcg->pcp_counter_lock);
645 val += memcg->nocpu_base.count[idx];
646 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700647#endif
648 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800649 return val;
650}
651
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700652static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700653 bool charge)
654{
655 int val = (charge) ? 1 : -1;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700656 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAPOUT], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700657}
658
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700659void mem_cgroup_pgfault(struct mem_cgroup *memcg, int val)
Ying Han456f9982011-05-26 16:25:38 -0700660{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700661 this_cpu_add(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT], val);
Ying Han456f9982011-05-26 16:25:38 -0700662}
663
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700664void mem_cgroup_pgmajfault(struct mem_cgroup *memcg, int val)
Ying Han456f9982011-05-26 16:25:38 -0700665{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700666 this_cpu_add(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT], val);
Ying Han456f9982011-05-26 16:25:38 -0700667}
668
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700669static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700670 enum mem_cgroup_events_index idx)
671{
672 unsigned long val = 0;
673 int cpu;
674
675 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700676 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700677#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700678 spin_lock(&memcg->pcp_counter_lock);
679 val += memcg->nocpu_base.events[idx];
680 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700681#endif
682 return val;
683}
684
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700685static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800686 bool file, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800687{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800688 preempt_disable();
689
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800690 if (file)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700691 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
692 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800693 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700694 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
695 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700696
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800697 /* pagein of a big page is an event. So, ignore page size */
698 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700699 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800700 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700701 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800702 nr_pages = -nr_pages; /* for event */
703 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800704
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700705 __this_cpu_add(memcg->stat->events[MEM_CGROUP_EVENTS_COUNT], nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800706
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800707 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800708}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800709
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700710unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700711mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700712 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700713{
714 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700715 enum lru_list l;
716 unsigned long ret = 0;
717
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700718 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700719
720 for_each_lru(l) {
721 if (BIT(l) & lru_mask)
722 ret += MEM_CGROUP_ZSTAT(mz, l);
723 }
724 return ret;
725}
726
727static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700728mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700729 int nid, unsigned int lru_mask)
730{
Ying Han889976d2011-05-26 16:25:33 -0700731 u64 total = 0;
732 int zid;
733
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700734 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700735 total += mem_cgroup_zone_nr_lru_pages(memcg,
736 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700737
Ying Han889976d2011-05-26 16:25:33 -0700738 return total;
739}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700740
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700741static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700742 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800743{
Ying Han889976d2011-05-26 16:25:33 -0700744 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800745 u64 total = 0;
746
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700747 for_each_node_state(nid, N_HIGH_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700748 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800749 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800750}
751
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700752static bool __memcg_event_check(struct mem_cgroup *memcg, int target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800753{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700754 unsigned long val, next;
755
Steven Rostedt47994012011-11-02 13:38:33 -0700756 val = __this_cpu_read(memcg->stat->events[MEM_CGROUP_EVENTS_COUNT]);
757 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700758 /* from time_after() in jiffies.h */
759 return ((long)next - (long)val < 0);
760}
761
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700762static void __mem_cgroup_target_update(struct mem_cgroup *memcg, int target)
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700763{
764 unsigned long val, next;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800765
Steven Rostedt47994012011-11-02 13:38:33 -0700766 val = __this_cpu_read(memcg->stat->events[MEM_CGROUP_EVENTS_COUNT]);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800767
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700768 switch (target) {
769 case MEM_CGROUP_TARGET_THRESH:
770 next = val + THRESHOLDS_EVENTS_TARGET;
771 break;
772 case MEM_CGROUP_TARGET_SOFTLIMIT:
773 next = val + SOFTLIMIT_EVENTS_TARGET;
774 break;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700775 case MEM_CGROUP_TARGET_NUMAINFO:
776 next = val + NUMAINFO_EVENTS_TARGET;
777 break;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700778 default:
779 return;
780 }
781
Steven Rostedt47994012011-11-02 13:38:33 -0700782 __this_cpu_write(memcg->stat->targets[target], next);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800783}
784
785/*
786 * Check events in order.
787 *
788 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700789static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800790{
Steven Rostedt47994012011-11-02 13:38:33 -0700791 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800792 /* threshold event is triggered in finer grain than soft limit */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700793 if (unlikely(__memcg_event_check(memcg, MEM_CGROUP_TARGET_THRESH))) {
794 mem_cgroup_threshold(memcg);
795 __mem_cgroup_target_update(memcg, MEM_CGROUP_TARGET_THRESH);
796 if (unlikely(__memcg_event_check(memcg,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700797 MEM_CGROUP_TARGET_SOFTLIMIT))) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700798 mem_cgroup_update_tree(memcg, page);
799 __mem_cgroup_target_update(memcg,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700800 MEM_CGROUP_TARGET_SOFTLIMIT);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700801 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700802#if MAX_NUMNODES > 1
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700803 if (unlikely(__memcg_event_check(memcg,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700804 MEM_CGROUP_TARGET_NUMAINFO))) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700805 atomic_inc(&memcg->numainfo_events);
806 __mem_cgroup_target_update(memcg,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700807 MEM_CGROUP_TARGET_NUMAINFO);
808 }
809#endif
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800810 }
Steven Rostedt47994012011-11-02 13:38:33 -0700811 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800812}
813
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000814struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800815{
816 return container_of(cgroup_subsys_state(cont,
817 mem_cgroup_subsys_id), struct mem_cgroup,
818 css);
819}
820
Balbir Singhcf475ad2008-04-29 01:00:16 -0700821struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800822{
Balbir Singh31a78f22008-09-28 23:09:31 +0100823 /*
824 * mm_update_next_owner() may clear mm->owner to NULL
825 * if it races with swapoff, page migration, etc.
826 * So this can be called with p == NULL.
827 */
828 if (unlikely(!p))
829 return NULL;
830
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800831 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
832 struct mem_cgroup, css);
833}
834
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700835struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800836{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700837 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700838
839 if (!mm)
840 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800841 /*
842 * Because we have no locks, mm->owner's may be being moved to other
843 * cgroup. We use css_tryget() here even if this looks
844 * pessimistic (rather than adding locks here).
845 */
846 rcu_read_lock();
847 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700848 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
849 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800850 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700851 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800852 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700853 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800854}
855
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700856/* The caller has to guarantee "mem" exists before calling this */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700857static struct mem_cgroup *mem_cgroup_start_loop(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700858{
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700859 struct cgroup_subsys_state *css;
860 int found;
861
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700862 if (!memcg) /* ROOT cgroup has the smallest ID */
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700863 return root_mem_cgroup; /*css_put/get against root is ignored*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700864 if (!memcg->use_hierarchy) {
865 if (css_tryget(&memcg->css))
866 return memcg;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700867 return NULL;
868 }
869 rcu_read_lock();
870 /*
871 * searching a memory cgroup which has the smallest ID under given
872 * ROOT cgroup. (ID >= 1)
873 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700874 css = css_get_next(&mem_cgroup_subsys, 1, &memcg->css, &found);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700875 if (css && css_tryget(css))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700876 memcg = container_of(css, struct mem_cgroup, css);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700877 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700878 memcg = NULL;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700879 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700880 return memcg;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700881}
882
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700883static struct mem_cgroup *mem_cgroup_get_next(struct mem_cgroup *iter,
884 struct mem_cgroup *root,
885 bool cond)
886{
887 int nextid = css_id(&iter->css) + 1;
888 int found;
889 int hierarchy_used;
890 struct cgroup_subsys_state *css;
891
892 hierarchy_used = iter->use_hierarchy;
893
894 css_put(&iter->css);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700895 /* If no ROOT, walk all, ignore hierarchy */
896 if (!cond || (root && !hierarchy_used))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700897 return NULL;
898
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700899 if (!root)
900 root = root_mem_cgroup;
901
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700902 do {
903 iter = NULL;
904 rcu_read_lock();
905
906 css = css_get_next(&mem_cgroup_subsys, nextid,
907 &root->css, &found);
908 if (css && css_tryget(css))
909 iter = container_of(css, struct mem_cgroup, css);
910 rcu_read_unlock();
911 /* If css is NULL, no more cgroups will be found */
912 nextid = found + 1;
913 } while (css && !iter);
914
915 return iter;
916}
917/*
918 * for_eacn_mem_cgroup_tree() for visiting all cgroup under tree. Please
919 * be careful that "break" loop is not allowed. We have reference count.
920 * Instead of that modify "cond" to be false and "continue" to exit the loop.
921 */
922#define for_each_mem_cgroup_tree_cond(iter, root, cond) \
923 for (iter = mem_cgroup_start_loop(root);\
924 iter != NULL;\
925 iter = mem_cgroup_get_next(iter, root, cond))
926
927#define for_each_mem_cgroup_tree(iter, root) \
928 for_each_mem_cgroup_tree_cond(iter, root, true)
929
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700930#define for_each_mem_cgroup_all(iter) \
931 for_each_mem_cgroup_tree_cond(iter, NULL, true)
932
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700933
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700934static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
Balbir Singh4b3bde42009-09-23 15:56:32 -0700935{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700936 return (memcg == root_mem_cgroup);
Balbir Singh4b3bde42009-09-23 15:56:32 -0700937}
938
Ying Han456f9982011-05-26 16:25:38 -0700939void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
940{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700941 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -0700942
943 if (!mm)
944 return;
945
946 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700947 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
948 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -0700949 goto out;
950
951 switch (idx) {
952 case PGMAJFAULT:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700953 mem_cgroup_pgmajfault(memcg, 1);
Ying Han456f9982011-05-26 16:25:38 -0700954 break;
955 case PGFAULT:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700956 mem_cgroup_pgfault(memcg, 1);
Ying Han456f9982011-05-26 16:25:38 -0700957 break;
958 default:
959 BUG();
960 }
961out:
962 rcu_read_unlock();
963}
964EXPORT_SYMBOL(mem_cgroup_count_vm_event);
965
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800966/*
967 * Following LRU functions are allowed to be used without PCG_LOCK.
968 * Operations are called by routine of global LRU independently from memcg.
969 * What we have to take care of here is validness of pc->mem_cgroup.
970 *
971 * Changes to pc->mem_cgroup happens when
972 * 1. charge
973 * 2. moving account
974 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
975 * It is added to LRU before charge.
976 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
977 * When moving account, the page is not on LRU. It's isolated.
978 */
979
980void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800981{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800982 struct page_cgroup *pc;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800983 struct mem_cgroup_per_zone *mz;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700984
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800985 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800986 return;
987 pc = lookup_page_cgroup(page);
988 /* can happen while we handle swapcache. */
Balbir Singh4b3bde42009-09-23 15:56:32 -0700989 if (!TestClearPageCgroupAcctLRU(pc))
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800990 return;
Balbir Singh4b3bde42009-09-23 15:56:32 -0700991 VM_BUG_ON(!pc->mem_cgroup);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -0800992 /*
993 * We don't check PCG_USED bit. It's cleared when the "page" is finally
994 * removed from global LRU.
995 */
Johannes Weiner97a6c372011-03-23 16:42:27 -0700996 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -0800997 /* huge page split is done under lru_lock. so, we have no races. */
998 MEM_CGROUP_ZSTAT(mz, lru) -= 1 << compound_order(page);
Balbir Singh4b3bde42009-09-23 15:56:32 -0700999 if (mem_cgroup_is_root(pc->mem_cgroup))
1000 return;
1001 VM_BUG_ON(list_empty(&pc->lru));
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001002 list_del_init(&pc->lru);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001003}
1004
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001005void mem_cgroup_del_lru(struct page *page)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001006{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001007 mem_cgroup_del_lru_list(page, page_lru(page));
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001008}
1009
Minchan Kim3f58a822011-03-22 16:32:53 -07001010/*
1011 * Writeback is about to end against a page which has been marked for immediate
1012 * reclaim. If it still appears to be reclaimable, move it to the tail of the
1013 * inactive list.
1014 */
1015void mem_cgroup_rotate_reclaimable_page(struct page *page)
1016{
1017 struct mem_cgroup_per_zone *mz;
1018 struct page_cgroup *pc;
1019 enum lru_list lru = page_lru(page);
1020
1021 if (mem_cgroup_disabled())
1022 return;
1023
1024 pc = lookup_page_cgroup(page);
1025 /* unused or root page is not rotated. */
1026 if (!PageCgroupUsed(pc))
1027 return;
1028 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1029 smp_rmb();
1030 if (mem_cgroup_is_root(pc->mem_cgroup))
1031 return;
Johannes Weiner97a6c372011-03-23 16:42:27 -07001032 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
Minchan Kim3f58a822011-03-22 16:32:53 -07001033 list_move_tail(&pc->lru, &mz->lists[lru]);
1034}
1035
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001036void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru)
Balbir Singh66e17072008-02-07 00:13:56 -08001037{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001038 struct mem_cgroup_per_zone *mz;
1039 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001040
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001041 if (mem_cgroup_disabled())
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001042 return;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001043
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001044 pc = lookup_page_cgroup(page);
Balbir Singh4b3bde42009-09-23 15:56:32 -07001045 /* unused or root page is not rotated. */
Johannes Weiner713735b42011-01-20 14:44:31 -08001046 if (!PageCgroupUsed(pc))
1047 return;
1048 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1049 smp_rmb();
1050 if (mem_cgroup_is_root(pc->mem_cgroup))
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001051 return;
Johannes Weiner97a6c372011-03-23 16:42:27 -07001052 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001053 list_move(&pc->lru, &mz->lists[lru]);
Balbir Singh66e17072008-02-07 00:13:56 -08001054}
1055
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001056void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru)
1057{
1058 struct page_cgroup *pc;
1059 struct mem_cgroup_per_zone *mz;
1060
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001061 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001062 return;
1063 pc = lookup_page_cgroup(page);
Balbir Singh4b3bde42009-09-23 15:56:32 -07001064 VM_BUG_ON(PageCgroupAcctLRU(pc));
Johannes Weinera61ed3c2011-11-02 13:38:29 -07001065 /*
1066 * putback: charge:
1067 * SetPageLRU SetPageCgroupUsed
1068 * smp_mb smp_mb
1069 * PageCgroupUsed && add to memcg LRU PageLRU && add to memcg LRU
1070 *
1071 * Ensure that one of the two sides adds the page to the memcg
1072 * LRU during a race.
1073 */
1074 smp_mb();
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001075 if (!PageCgroupUsed(pc))
1076 return;
Johannes Weiner713735b42011-01-20 14:44:31 -08001077 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1078 smp_rmb();
Johannes Weiner97a6c372011-03-23 16:42:27 -07001079 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -08001080 /* huge page split is done under lru_lock. so, we have no races. */
1081 MEM_CGROUP_ZSTAT(mz, lru) += 1 << compound_order(page);
Balbir Singh4b3bde42009-09-23 15:56:32 -07001082 SetPageCgroupAcctLRU(pc);
1083 if (mem_cgroup_is_root(pc->mem_cgroup))
1084 return;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001085 list_add(&pc->lru, &mz->lists[lru]);
1086}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001087
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001088/*
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001089 * At handling SwapCache and other FUSE stuff, pc->mem_cgroup may be changed
1090 * while it's linked to lru because the page may be reused after it's fully
1091 * uncharged. To handle that, unlink page_cgroup from LRU when charge it again.
1092 * It's done under lock_page and expected that zone->lru_lock isnever held.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001093 */
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001094static void mem_cgroup_lru_del_before_commit(struct page *page)
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001095{
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001096 unsigned long flags;
1097 struct zone *zone = page_zone(page);
1098 struct page_cgroup *pc = lookup_page_cgroup(page);
1099
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001100 /*
1101 * Doing this check without taking ->lru_lock seems wrong but this
1102 * is safe. Because if page_cgroup's USED bit is unset, the page
1103 * will not be added to any memcg's LRU. If page_cgroup's USED bit is
1104 * set, the commit after this will fail, anyway.
1105 * This all charge/uncharge is done under some mutual execustion.
1106 * So, we don't need to taking care of changes in USED bit.
1107 */
1108 if (likely(!PageLRU(page)))
1109 return;
1110
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001111 spin_lock_irqsave(&zone->lru_lock, flags);
1112 /*
1113 * Forget old LRU when this page_cgroup is *not* used. This Used bit
1114 * is guarded by lock_page() because the page is SwapCache.
1115 */
1116 if (!PageCgroupUsed(pc))
1117 mem_cgroup_del_lru_list(page, page_lru(page));
1118 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001119}
1120
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001121static void mem_cgroup_lru_add_after_commit(struct page *page)
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001122{
1123 unsigned long flags;
1124 struct zone *zone = page_zone(page);
1125 struct page_cgroup *pc = lookup_page_cgroup(page);
Johannes Weinera61ed3c2011-11-02 13:38:29 -07001126 /*
1127 * putback: charge:
1128 * SetPageLRU SetPageCgroupUsed
1129 * smp_mb smp_mb
1130 * PageCgroupUsed && add to memcg LRU PageLRU && add to memcg LRU
1131 *
1132 * Ensure that one of the two sides adds the page to the memcg
1133 * LRU during a race.
1134 */
1135 smp_mb();
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07001136 /* taking care of that the page is added to LRU while we commit it */
1137 if (likely(!PageLRU(page)))
1138 return;
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001139 spin_lock_irqsave(&zone->lru_lock, flags);
1140 /* link when the page is linked to LRU but page_cgroup isn't */
Balbir Singh4b3bde42009-09-23 15:56:32 -07001141 if (PageLRU(page) && !PageCgroupAcctLRU(pc))
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001142 mem_cgroup_add_lru_list(page, page_lru(page));
1143 spin_unlock_irqrestore(&zone->lru_lock, flags);
1144}
1145
1146
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001147void mem_cgroup_move_lists(struct page *page,
1148 enum lru_list from, enum lru_list to)
1149{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001150 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001151 return;
1152 mem_cgroup_del_lru_list(page, from);
1153 mem_cgroup_add_lru_list(page, to);
1154}
1155
Michal Hocko3e920412011-07-26 16:08:29 -07001156/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001157 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001158 * hierarchy subtree
1159 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001160static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1161 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001162{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001163 if (root_memcg != memcg) {
1164 return (root_memcg->use_hierarchy &&
1165 css_is_ancestor(&memcg->css, &root_memcg->css));
Michal Hocko3e920412011-07-26 16:08:29 -07001166 }
1167
1168 return true;
1169}
1170
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001171int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001172{
1173 int ret;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001174 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001175 struct task_struct *p;
David Rientjes4c4a2212008-02-07 00:14:06 -08001176
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001177 p = find_lock_task_mm(task);
1178 if (!p)
1179 return 0;
1180 curr = try_get_mem_cgroup_from_mm(p->mm);
1181 task_unlock(p);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001182 if (!curr)
1183 return 0;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001184 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001185 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001186 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001187 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1188 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001189 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001190 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001191 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001192 return ret;
1193}
1194
Johannes Weiner9b272972011-11-02 13:38:23 -07001195int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg, struct zone *zone)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001196{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001197 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001198 int nid = zone_to_nid(zone);
1199 int zid = zone_idx(zone);
1200 unsigned long inactive;
1201 unsigned long active;
1202 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001203
Johannes Weiner9b272972011-11-02 13:38:23 -07001204 inactive = mem_cgroup_zone_nr_lru_pages(memcg, nid, zid,
1205 BIT(LRU_INACTIVE_ANON));
1206 active = mem_cgroup_zone_nr_lru_pages(memcg, nid, zid,
1207 BIT(LRU_ACTIVE_ANON));
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001208
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001209 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1210 if (gb)
1211 inactive_ratio = int_sqrt(10 * gb);
1212 else
1213 inactive_ratio = 1;
1214
Johannes Weiner9b272972011-11-02 13:38:23 -07001215 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001216}
1217
Johannes Weiner9b272972011-11-02 13:38:23 -07001218int mem_cgroup_inactive_file_is_low(struct mem_cgroup *memcg, struct zone *zone)
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001219{
1220 unsigned long active;
1221 unsigned long inactive;
Johannes Weiner9b272972011-11-02 13:38:23 -07001222 int zid = zone_idx(zone);
1223 int nid = zone_to_nid(zone);
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001224
Johannes Weiner9b272972011-11-02 13:38:23 -07001225 inactive = mem_cgroup_zone_nr_lru_pages(memcg, nid, zid,
1226 BIT(LRU_INACTIVE_FILE));
1227 active = mem_cgroup_zone_nr_lru_pages(memcg, nid, zid,
1228 BIT(LRU_ACTIVE_FILE));
Rik van Riel56e49d22009-06-16 15:32:28 -07001229
1230 return (active > inactive);
1231}
1232
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001233struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg,
1234 struct zone *zone)
1235{
KOSAKI Motohiro13d7e3a2010-08-10 18:03:06 -07001236 int nid = zone_to_nid(zone);
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001237 int zid = zone_idx(zone);
1238 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(memcg, nid, zid);
1239
1240 return &mz->reclaim_stat;
1241}
1242
1243struct zone_reclaim_stat *
1244mem_cgroup_get_reclaim_stat_from_page(struct page *page)
1245{
1246 struct page_cgroup *pc;
1247 struct mem_cgroup_per_zone *mz;
1248
1249 if (mem_cgroup_disabled())
1250 return NULL;
1251
1252 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -08001253 if (!PageCgroupUsed(pc))
1254 return NULL;
Johannes Weiner713735b42011-01-20 14:44:31 -08001255 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1256 smp_rmb();
Johannes Weiner97a6c372011-03-23 16:42:27 -07001257 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001258 return &mz->reclaim_stat;
1259}
1260
Balbir Singh66e17072008-02-07 00:13:56 -08001261unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
1262 struct list_head *dst,
1263 unsigned long *scanned, int order,
Minchan Kim4356f212011-10-31 17:06:47 -07001264 isolate_mode_t mode,
1265 struct zone *z,
Balbir Singh66e17072008-02-07 00:13:56 -08001266 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001267 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -08001268{
1269 unsigned long nr_taken = 0;
1270 struct page *page;
1271 unsigned long scan;
1272 LIST_HEAD(pc_list);
1273 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001274 struct page_cgroup *pc, *tmp;
KOSAKI Motohiro13d7e3a2010-08-10 18:03:06 -07001275 int nid = zone_to_nid(z);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001276 int zid = zone_idx(z);
1277 struct mem_cgroup_per_zone *mz;
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001278 int lru = LRU_FILE * file + active;
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -07001279 int ret;
Balbir Singh66e17072008-02-07 00:13:56 -08001280
Balbir Singhcf475ad2008-04-29 01:00:16 -07001281 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001282 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001283 src = &mz->lists[lru];
Balbir Singh66e17072008-02-07 00:13:56 -08001284
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001285 scan = 0;
1286 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -08001287 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001288 break;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001289
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001290 if (unlikely(!PageCgroupUsed(pc)))
1291 continue;
Johannes Weiner5564e882011-03-23 16:42:29 -07001292
Johannes Weiner6b3ae582011-03-23 16:42:30 -07001293 page = lookup_cgroup_page(pc);
Johannes Weiner5564e882011-03-23 16:42:29 -07001294
Hugh Dickins436c65412008-02-07 00:14:12 -08001295 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001296 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -08001297
Hugh Dickins436c65412008-02-07 00:14:12 -08001298 scan++;
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -07001299 ret = __isolate_lru_page(page, mode, file);
1300 switch (ret) {
1301 case 0:
Balbir Singh66e17072008-02-07 00:13:56 -08001302 list_move(&page->lru, dst);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -07001303 mem_cgroup_del_lru(page);
Rik van Riel2c888cf2011-01-13 15:47:13 -08001304 nr_taken += hpage_nr_pages(page);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -07001305 break;
1306 case -EBUSY:
1307 /* we don't affect global LRU but rotate in our LRU */
1308 mem_cgroup_rotate_lru_list(page, page_lru(page));
1309 break;
1310 default:
1311 break;
Balbir Singh66e17072008-02-07 00:13:56 -08001312 }
1313 }
1314
Balbir Singh66e17072008-02-07 00:13:56 -08001315 *scanned = scan;
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -07001316
1317 trace_mm_vmscan_memcg_isolate(0, nr_to_scan, scan, nr_taken,
1318 0, 0, 0, mode);
1319
Balbir Singh66e17072008-02-07 00:13:56 -08001320 return nr_taken;
1321}
1322
Balbir Singh6d61ef42009-01-07 18:08:06 -08001323#define mem_cgroup_from_res_counter(counter, member) \
1324 container_of(counter, struct mem_cgroup, member)
1325
Johannes Weiner19942822011-02-01 15:52:43 -08001326/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001327 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
1328 * @mem: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001329 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001330 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001331 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001332 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001333static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001334{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001335 unsigned long long margin;
1336
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001337 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001338 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001339 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001340 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001341}
1342
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001343int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001344{
1345 struct cgroup *cgrp = memcg->css.cgroup;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001346
1347 /* root ? */
1348 if (cgrp->parent == NULL)
1349 return vm_swappiness;
1350
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001351 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001352}
1353
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001354static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001355{
1356 int cpu;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001357
1358 get_online_cpus();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001359 spin_lock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001360 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001361 per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) += 1;
1362 memcg->nocpu_base.count[MEM_CGROUP_ON_MOVE] += 1;
1363 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001364 put_online_cpus();
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001365
1366 synchronize_rcu();
1367}
1368
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001369static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001370{
1371 int cpu;
1372
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001373 if (!memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001374 return;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001375 get_online_cpus();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001376 spin_lock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001377 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001378 per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) -= 1;
1379 memcg->nocpu_base.count[MEM_CGROUP_ON_MOVE] -= 1;
1380 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001381 put_online_cpus();
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001382}
1383/*
1384 * 2 routines for checking "mem" is under move_account() or not.
1385 *
1386 * mem_cgroup_stealed() - checking a cgroup is mc.from or not. This is used
1387 * for avoiding race in accounting. If true,
1388 * pc->mem_cgroup may be overwritten.
1389 *
1390 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1391 * under hierarchy of moving cgroups. This is for
1392 * waiting at hith-memory prressure caused by "move".
1393 */
1394
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001395static bool mem_cgroup_stealed(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001396{
1397 VM_BUG_ON(!rcu_read_lock_held());
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001398 return this_cpu_read(memcg->stat->count[MEM_CGROUP_ON_MOVE]) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001399}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001400
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001401static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001402{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001403 struct mem_cgroup *from;
1404 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001405 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001406 /*
1407 * Unlike task_move routines, we access mc.to, mc.from not under
1408 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1409 */
1410 spin_lock(&mc.lock);
1411 from = mc.from;
1412 to = mc.to;
1413 if (!from)
1414 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001415
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001416 ret = mem_cgroup_same_or_subtree(memcg, from)
1417 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001418unlock:
1419 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001420 return ret;
1421}
1422
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001423static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001424{
1425 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001426 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001427 DEFINE_WAIT(wait);
1428 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1429 /* moving charge context might have finished. */
1430 if (mc.moving_task)
1431 schedule();
1432 finish_wait(&mc.waitq, &wait);
1433 return true;
1434 }
1435 }
1436 return false;
1437}
1438
Balbir Singhe2224322009-04-02 16:57:39 -07001439/**
Kirill A. Shutemov6a6135b2010-03-10 15:22:25 -08001440 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
Balbir Singhe2224322009-04-02 16:57:39 -07001441 * @memcg: The memory cgroup that went over limit
1442 * @p: Task that is going to be killed
1443 *
1444 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1445 * enabled
1446 */
1447void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1448{
1449 struct cgroup *task_cgrp;
1450 struct cgroup *mem_cgrp;
1451 /*
1452 * Need a buffer in BSS, can't rely on allocations. The code relies
1453 * on the assumption that OOM is serialized for memory controller.
1454 * If this assumption is broken, revisit this code.
1455 */
1456 static char memcg_name[PATH_MAX];
1457 int ret;
1458
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001459 if (!memcg || !p)
Balbir Singhe2224322009-04-02 16:57:39 -07001460 return;
1461
1462
1463 rcu_read_lock();
1464
1465 mem_cgrp = memcg->css.cgroup;
1466 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1467
1468 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1469 if (ret < 0) {
1470 /*
1471 * Unfortunately, we are unable to convert to a useful name
1472 * But we'll still print out the usage information
1473 */
1474 rcu_read_unlock();
1475 goto done;
1476 }
1477 rcu_read_unlock();
1478
1479 printk(KERN_INFO "Task in %s killed", memcg_name);
1480
1481 rcu_read_lock();
1482 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1483 if (ret < 0) {
1484 rcu_read_unlock();
1485 goto done;
1486 }
1487 rcu_read_unlock();
1488
1489 /*
1490 * Continues from above, so we don't need an KERN_ level
1491 */
1492 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1493done:
1494
1495 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1496 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1497 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1498 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1499 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1500 "failcnt %llu\n",
1501 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1502 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1503 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
1504}
1505
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001506/*
1507 * This function returns the number of memcg under hierarchy tree. Returns
1508 * 1(self count) if no children.
1509 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001510static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001511{
1512 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001513 struct mem_cgroup *iter;
1514
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001515 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001516 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001517 return num;
1518}
1519
Balbir Singh6d61ef42009-01-07 18:08:06 -08001520/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001521 * Return the memory (and swap, if configured) limit for a memcg.
1522 */
1523u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
1524{
1525 u64 limit;
1526 u64 memsw;
1527
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001528 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1529 limit += total_swap_pages << PAGE_SHIFT;
1530
David Rientjesa63d83f2010-08-09 17:19:46 -07001531 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1532 /*
1533 * If memsw is finite and limits the amount of swap space available
1534 * to this memcg, return that limit.
1535 */
1536 return min(limit, memsw);
1537}
1538
1539/*
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001540 * Visit the first child (need not be the first child as per the ordering
1541 * of the cgroup list, since we track last_scanned_child) of @mem and use
1542 * that to reclaim free pages from.
1543 */
1544static struct mem_cgroup *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001545mem_cgroup_select_victim(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001546{
1547 struct mem_cgroup *ret = NULL;
1548 struct cgroup_subsys_state *css;
1549 int nextid, found;
1550
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001551 if (!root_memcg->use_hierarchy) {
1552 css_get(&root_memcg->css);
1553 ret = root_memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001554 }
1555
1556 while (!ret) {
1557 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001558 nextid = root_memcg->last_scanned_child + 1;
1559 css = css_get_next(&mem_cgroup_subsys, nextid, &root_memcg->css,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001560 &found);
1561 if (css && css_tryget(css))
1562 ret = container_of(css, struct mem_cgroup, css);
1563
1564 rcu_read_unlock();
1565 /* Updates scanning parameter */
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001566 if (!css) {
1567 /* this means start scan from ID:1 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001568 root_memcg->last_scanned_child = 0;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001569 } else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001570 root_memcg->last_scanned_child = found;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001571 }
1572
1573 return ret;
1574}
1575
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001576/**
1577 * test_mem_cgroup_node_reclaimable
1578 * @mem: the target memcg
1579 * @nid: the node ID to be checked.
1580 * @noswap : specify true here if the user wants flle only information.
1581 *
1582 * This function returns whether the specified memcg contains any
1583 * reclaimable pages on a node. Returns true if there are any reclaimable
1584 * pages in the node.
1585 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001586static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001587 int nid, bool noswap)
1588{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001589 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001590 return true;
1591 if (noswap || !total_swap_pages)
1592 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001593 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001594 return true;
1595 return false;
1596
1597}
Ying Han889976d2011-05-26 16:25:33 -07001598#if MAX_NUMNODES > 1
1599
1600/*
1601 * Always updating the nodemask is not very good - even if we have an empty
1602 * list or the wrong list here, we can start from some node and traverse all
1603 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1604 *
1605 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001606static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001607{
1608 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001609 /*
1610 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1611 * pagein/pageout changes since the last update.
1612 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001613 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001614 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001615 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001616 return;
1617
Ying Han889976d2011-05-26 16:25:33 -07001618 /* make a nodemask where this memcg uses memory from */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001619 memcg->scan_nodes = node_states[N_HIGH_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001620
1621 for_each_node_mask(nid, node_states[N_HIGH_MEMORY]) {
1622
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001623 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1624 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001625 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001626
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001627 atomic_set(&memcg->numainfo_events, 0);
1628 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001629}
1630
1631/*
1632 * Selecting a node where we start reclaim from. Because what we need is just
1633 * reducing usage counter, start from anywhere is O,K. Considering
1634 * memory reclaim from current node, there are pros. and cons.
1635 *
1636 * Freeing memory from current node means freeing memory from a node which
1637 * we'll use or we've used. So, it may make LRU bad. And if several threads
1638 * hit limits, it will see a contention on a node. But freeing from remote
1639 * node means more costs for memory reclaim because of memory latency.
1640 *
1641 * Now, we use round-robin. Better algorithm is welcomed.
1642 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001643int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001644{
1645 int node;
1646
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001647 mem_cgroup_may_update_nodemask(memcg);
1648 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001649
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001650 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001651 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001652 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001653 /*
1654 * We call this when we hit limit, not when pages are added to LRU.
1655 * No LRU may hold pages because all pages are UNEVICTABLE or
1656 * memcg is too small and all pages are not on LRU. In that case,
1657 * we use curret node.
1658 */
1659 if (unlikely(node == MAX_NUMNODES))
1660 node = numa_node_id();
1661
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001662 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001663 return node;
1664}
1665
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001666/*
1667 * Check all nodes whether it contains reclaimable pages or not.
1668 * For quick scan, we make use of scan_nodes. This will allow us to skip
1669 * unused nodes. But scan_nodes is lazily updated and may not cotain
1670 * enough new information. We need to do double check.
1671 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001672bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001673{
1674 int nid;
1675
1676 /*
1677 * quick check...making use of scan_node.
1678 * We can skip unused nodes.
1679 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001680 if (!nodes_empty(memcg->scan_nodes)) {
1681 for (nid = first_node(memcg->scan_nodes);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001682 nid < MAX_NUMNODES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001683 nid = next_node(nid, memcg->scan_nodes)) {
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001684
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001685 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001686 return true;
1687 }
1688 }
1689 /*
1690 * Check rest of nodes.
1691 */
1692 for_each_node_state(nid, N_HIGH_MEMORY) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001693 if (node_isset(nid, memcg->scan_nodes))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001694 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001695 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001696 return true;
1697 }
1698 return false;
1699}
1700
Ying Han889976d2011-05-26 16:25:33 -07001701#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001702int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001703{
1704 return 0;
1705}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001706
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001707bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001708{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001709 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001710}
Ying Han889976d2011-05-26 16:25:33 -07001711#endif
1712
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001713/*
1714 * Scan the hierarchy if needed to reclaim memory. We remember the last child
1715 * we reclaimed from, so that we don't end up penalizing one child extensively
1716 * based on its position in the children list.
Balbir Singh6d61ef42009-01-07 18:08:06 -08001717 *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001718 * root_memcg is the original ancestor that we've been reclaim from.
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001719 *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001720 * We give up and return to the caller when we visit root_memcg twice.
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001721 * (other groups can be removed while we're walking....)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001722 *
1723 * If shrink==true, for avoiding to free too much, this returns immedieately.
Balbir Singh6d61ef42009-01-07 18:08:06 -08001724 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001725static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_memcg,
Balbir Singh4e416952009-09-23 15:56:39 -07001726 struct zone *zone,
Balbir Singh75822b42009-09-23 15:56:38 -07001727 gfp_t gfp_mask,
Ying Han0ae5e892011-05-26 16:25:25 -07001728 unsigned long reclaim_options,
1729 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001730{
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001731 struct mem_cgroup *victim;
1732 int ret, total = 0;
1733 int loop = 0;
Balbir Singh75822b42009-09-23 15:56:38 -07001734 bool noswap = reclaim_options & MEM_CGROUP_RECLAIM_NOSWAP;
1735 bool shrink = reclaim_options & MEM_CGROUP_RECLAIM_SHRINK;
Balbir Singh4e416952009-09-23 15:56:39 -07001736 bool check_soft = reclaim_options & MEM_CGROUP_RECLAIM_SOFT;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001737 unsigned long excess;
Johannes Weiner185efc02011-09-14 16:21:58 -07001738 unsigned long nr_scanned;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001739
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001740 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001741
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07001742 /* If memsw_is_minimum==1, swap-out is of-no-use. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001743 if (!check_soft && !shrink && root_memcg->memsw_is_minimum)
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07001744 noswap = true;
1745
Balbir Singh4e416952009-09-23 15:56:39 -07001746 while (1) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001747 victim = mem_cgroup_select_victim(root_memcg);
1748 if (victim == root_memcg) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001749 loop++;
KAMEZAWA Hiroyukifbc29a22011-06-15 15:08:46 -07001750 /*
1751 * We are not draining per cpu cached charges during
1752 * soft limit reclaim because global reclaim doesn't
1753 * care about charges. It tries to free some memory and
1754 * charges will not give any.
1755 */
1756 if (!check_soft && loop >= 1)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001757 drain_all_stock_async(root_memcg);
Balbir Singh4e416952009-09-23 15:56:39 -07001758 if (loop >= 2) {
1759 /*
1760 * If we have not been able to reclaim
1761 * anything, it might because there are
1762 * no reclaimable pages under this hierarchy
1763 */
1764 if (!check_soft || !total) {
1765 css_put(&victim->css);
1766 break;
1767 }
1768 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001769 * We want to do more targeted reclaim.
Balbir Singh4e416952009-09-23 15:56:39 -07001770 * excess >> 2 is not to excessive so as to
1771 * reclaim too much, nor too less that we keep
1772 * coming back to reclaim from this cgroup
1773 */
1774 if (total >= (excess >> 2) ||
1775 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS)) {
1776 css_put(&victim->css);
1777 break;
1778 }
1779 }
1780 }
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001781 if (!mem_cgroup_reclaimable(victim, noswap)) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001782 /* this cgroup's local usage == 0 */
1783 css_put(&victim->css);
Balbir Singh6d61ef42009-01-07 18:08:06 -08001784 continue;
1785 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001786 /* we use swappiness of local cgroup */
Ying Han0ae5e892011-05-26 16:25:25 -07001787 if (check_soft) {
Balbir Singh4e416952009-09-23 15:56:39 -07001788 ret = mem_cgroup_shrink_node_zone(victim, gfp_mask,
Johannes Weiner185efc02011-09-14 16:21:58 -07001789 noswap, zone, &nr_scanned);
1790 *total_scanned += nr_scanned;
Ying Han0ae5e892011-05-26 16:25:25 -07001791 } else
Balbir Singh4e416952009-09-23 15:56:39 -07001792 ret = try_to_free_mem_cgroup_pages(victim, gfp_mask,
Johannes Weiner185efc02011-09-14 16:21:58 -07001793 noswap);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001794 css_put(&victim->css);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001795 /*
1796 * At shrinking usage, we can't check we should stop here or
1797 * reclaim more. It's depends on callers. last_scanned_child
1798 * will work enough for keeping fairness under tree.
1799 */
1800 if (shrink)
1801 return ret;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001802 total += ret;
Balbir Singh4e416952009-09-23 15:56:39 -07001803 if (check_soft) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001804 if (!res_counter_soft_limit_excess(&root_memcg->res))
Balbir Singh4e416952009-09-23 15:56:39 -07001805 return total;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001806 } else if (mem_cgroup_margin(root_memcg))
Johannes Weiner4fd14eb2011-05-26 16:25:35 -07001807 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001808 }
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001809 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001810}
1811
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001812/*
1813 * Check OOM-Killer is already running under our hierarchy.
1814 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001815 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001816 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001817static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001818{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001819 struct mem_cgroup *iter, *failed = NULL;
1820 bool cond = true;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001821
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001822 for_each_mem_cgroup_tree_cond(iter, memcg, cond) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001823 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001824 /*
1825 * this subtree of our hierarchy is already locked
1826 * so we cannot give a lock.
1827 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001828 failed = iter;
1829 cond = false;
Johannes Weiner23751be2011-08-25 15:59:16 -07001830 } else
1831 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001832 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001833
Michal Hocko79dfdac2011-07-26 16:08:23 -07001834 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001835 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001836
1837 /*
1838 * OK, we failed to lock the whole subtree so we have to clean up
1839 * what we set up to the failing subtree
1840 */
1841 cond = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001842 for_each_mem_cgroup_tree_cond(iter, memcg, cond) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001843 if (iter == failed) {
1844 cond = false;
1845 continue;
1846 }
1847 iter->oom_lock = false;
1848 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001849 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001850}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001851
Michal Hocko79dfdac2011-07-26 16:08:23 -07001852/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001853 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001854 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001855static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001856{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001857 struct mem_cgroup *iter;
1858
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001859 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001860 iter->oom_lock = false;
1861 return 0;
1862}
1863
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001864static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001865{
1866 struct mem_cgroup *iter;
1867
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001868 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001869 atomic_inc(&iter->under_oom);
1870}
1871
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001872static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001873{
1874 struct mem_cgroup *iter;
1875
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001876 /*
1877 * When a new child is created while the hierarchy is under oom,
1878 * mem_cgroup_oom_lock() may not be called. We have to use
1879 * atomic_add_unless() here.
1880 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001881 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001882 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001883}
1884
Michal Hocko1af8efe2011-07-26 16:08:24 -07001885static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001886static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1887
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001888struct oom_wait_info {
1889 struct mem_cgroup *mem;
1890 wait_queue_t wait;
1891};
1892
1893static int memcg_oom_wake_function(wait_queue_t *wait,
1894 unsigned mode, int sync, void *arg)
1895{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001896 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg,
1897 *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001898 struct oom_wait_info *oom_wait_info;
1899
1900 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001901 oom_wait_memcg = oom_wait_info->mem;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001902
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001903 /*
1904 * Both of oom_wait_info->mem and wake_mem are stable under us.
1905 * Then we can use css_is_ancestor without taking care of RCU.
1906 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001907 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1908 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001909 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001910 return autoremove_wake_function(wait, mode, sync, arg);
1911}
1912
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001913static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001914{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001915 /* for filtering, pass "memcg" as argument. */
1916 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001917}
1918
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001919static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001920{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001921 if (memcg && atomic_read(&memcg->under_oom))
1922 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001923}
1924
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001925/*
1926 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1927 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001928bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001929{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001930 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001931 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001932
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001933 owait.mem = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001934 owait.wait.flags = 0;
1935 owait.wait.func = memcg_oom_wake_function;
1936 owait.wait.private = current;
1937 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001938 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001939 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001940
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001941 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001942 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001943 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001944 /*
1945 * Even if signal_pending(), we can't quit charge() loop without
1946 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1947 * under OOM is always welcomed, use TASK_KILLABLE here.
1948 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001949 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001950 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001951 need_to_kill = false;
1952 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001953 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001954 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001955
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001956 if (need_to_kill) {
1957 finish_wait(&memcg_oom_waitq, &owait.wait);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001958 mem_cgroup_out_of_memory(memcg, mask);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001959 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001960 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001961 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001962 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001963 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001964 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001965 mem_cgroup_oom_unlock(memcg);
1966 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001967 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001968
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001969 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001970
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001971 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1972 return false;
1973 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001974 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001975 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001976}
1977
Balbir Singhd69b0422009-06-17 16:26:34 -07001978/*
1979 * Currently used to update mapped file statistics, but the routine can be
1980 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001981 *
1982 * Notes: Race condition
1983 *
1984 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1985 * it tends to be costly. But considering some conditions, we doesn't need
1986 * to do so _always_.
1987 *
1988 * Considering "charge", lock_page_cgroup() is not required because all
1989 * file-stat operations happen after a page is attached to radix-tree. There
1990 * are no race with "charge".
1991 *
1992 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1993 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1994 * if there are race with "uncharge". Statistics itself is properly handled
1995 * by flags.
1996 *
1997 * Considering "move", this is an only case we see a race. To make the race
1998 * small, we check MEM_CGROUP_ON_MOVE percpu value and detect there are
1999 * possibility of race condition. If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002000 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002001
Greg Thelen2a7106f2011-01-13 15:47:37 -08002002void mem_cgroup_update_page_stat(struct page *page,
2003 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002004{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002005 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002006 struct page_cgroup *pc = lookup_page_cgroup(page);
2007 bool need_unlock = false;
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002008 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002009
Balbir Singhd69b0422009-06-17 16:26:34 -07002010 if (unlikely(!pc))
2011 return;
2012
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002013 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002014 memcg = pc->mem_cgroup;
2015 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002016 goto out;
2017 /* pc->mem_cgroup is unstable ? */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002018 if (unlikely(mem_cgroup_stealed(memcg)) || PageTransHuge(page)) {
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002019 /* take a lock against to access pc->mem_cgroup */
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002020 move_lock_page_cgroup(pc, &flags);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002021 need_unlock = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002022 memcg = pc->mem_cgroup;
2023 if (!memcg || !PageCgroupUsed(pc))
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002024 goto out;
2025 }
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002026
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002027 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002028 case MEMCG_NR_FILE_MAPPED:
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002029 if (val > 0)
2030 SetPageCgroupFileMapped(pc);
2031 else if (!page_mapped(page))
KAMEZAWA Hiroyuki0c270f82010-10-27 15:33:39 -07002032 ClearPageCgroupFileMapped(pc);
Greg Thelen2a7106f2011-01-13 15:47:37 -08002033 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002034 break;
2035 default:
2036 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002037 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002038
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002039 this_cpu_add(memcg->stat->count[idx], val);
Greg Thelen2a7106f2011-01-13 15:47:37 -08002040
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002041out:
2042 if (unlikely(need_unlock))
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002043 move_unlock_page_cgroup(pc, &flags);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002044 rcu_read_unlock();
2045 return;
Balbir Singhd69b0422009-06-17 16:26:34 -07002046}
Greg Thelen2a7106f2011-01-13 15:47:37 -08002047EXPORT_SYMBOL(mem_cgroup_update_page_stat);
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002048
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002049/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002050 * size of first charge trial. "32" comes from vmscan.c's magic value.
2051 * TODO: maybe necessary to use big numbers in big irons.
2052 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002053#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002054struct memcg_stock_pcp {
2055 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002056 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002057 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002058 unsigned long flags;
2059#define FLUSHING_CACHED_CHARGE (0)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002060};
2061static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002062static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002063
2064/*
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002065 * Try to consume stocked charge on this cpu. If success, one page is consumed
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002066 * from local stock and true is returned. If the stock is 0 or charges from a
2067 * cgroup which is not current target, returns false. This stock will be
2068 * refilled.
2069 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002070static bool consume_stock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002071{
2072 struct memcg_stock_pcp *stock;
2073 bool ret = true;
2074
2075 stock = &get_cpu_var(memcg_stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002076 if (memcg == stock->cached && stock->nr_pages)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002077 stock->nr_pages--;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002078 else /* need to call res_counter_charge */
2079 ret = false;
2080 put_cpu_var(memcg_stock);
2081 return ret;
2082}
2083
2084/*
2085 * Returns stocks cached in percpu to res_counter and reset cached information.
2086 */
2087static void drain_stock(struct memcg_stock_pcp *stock)
2088{
2089 struct mem_cgroup *old = stock->cached;
2090
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002091 if (stock->nr_pages) {
2092 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2093
2094 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002095 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002096 res_counter_uncharge(&old->memsw, bytes);
2097 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002098 }
2099 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002100}
2101
2102/*
2103 * This must be called under preempt disabled or must be called by
2104 * a thread which is pinned to local cpu.
2105 */
2106static void drain_local_stock(struct work_struct *dummy)
2107{
2108 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2109 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002110 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002111}
2112
2113/*
2114 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002115 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002116 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002117static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002118{
2119 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2120
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002121 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002122 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002123 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002124 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002125 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002126 put_cpu_var(memcg_stock);
2127}
2128
2129/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002130 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002131 * of the hierarchy under it. sync flag says whether we should block
2132 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002133 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002134static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002135{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002136 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002137
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002138 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002139 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002140 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002141 for_each_online_cpu(cpu) {
2142 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002143 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002144
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002145 memcg = stock->cached;
2146 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002147 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002148 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002149 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002150 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2151 if (cpu == curcpu)
2152 drain_local_stock(&stock->work);
2153 else
2154 schedule_work_on(cpu, &stock->work);
2155 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002156 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002157 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002158
2159 if (!sync)
2160 goto out;
2161
2162 for_each_online_cpu(cpu) {
2163 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002164 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002165 flush_work(&stock->work);
2166 }
2167out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002168 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002169}
2170
2171/*
2172 * Tries to drain stocked charges in other cpus. This function is asynchronous
2173 * and just put a work per cpu for draining localy on each cpu. Caller can
2174 * expects some charges will be back to res_counter later but cannot wait for
2175 * it.
2176 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002177static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002178{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002179 /*
2180 * If someone calls draining, avoid adding more kworker runs.
2181 */
2182 if (!mutex_trylock(&percpu_charge_mutex))
2183 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002184 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002185 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002186}
2187
2188/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002189static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002190{
2191 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002192 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002193 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002194 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002195}
2196
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002197/*
2198 * This function drains percpu counter value from DEAD cpu and
2199 * move it to local cpu. Note that this function can be preempted.
2200 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002201static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002202{
2203 int i;
2204
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002205 spin_lock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002206 for (i = 0; i < MEM_CGROUP_STAT_DATA; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002207 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002208
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002209 per_cpu(memcg->stat->count[i], cpu) = 0;
2210 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002211 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002212 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002213 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002214
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002215 per_cpu(memcg->stat->events[i], cpu) = 0;
2216 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002217 }
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002218 /* need to clear ON_MOVE value, works as a kind of lock. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002219 per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) = 0;
2220 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002221}
2222
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002223static void synchronize_mem_cgroup_on_move(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002224{
2225 int idx = MEM_CGROUP_ON_MOVE;
2226
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002227 spin_lock(&memcg->pcp_counter_lock);
2228 per_cpu(memcg->stat->count[idx], cpu) = memcg->nocpu_base.count[idx];
2229 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002230}
2231
2232static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002233 unsigned long action,
2234 void *hcpu)
2235{
2236 int cpu = (unsigned long)hcpu;
2237 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002238 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002239
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002240 if ((action == CPU_ONLINE)) {
2241 for_each_mem_cgroup_all(iter)
2242 synchronize_mem_cgroup_on_move(iter, cpu);
2243 return NOTIFY_OK;
2244 }
2245
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002246 if ((action != CPU_DEAD) || action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002247 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002248
2249 for_each_mem_cgroup_all(iter)
2250 mem_cgroup_drain_pcp_counter(iter, cpu);
2251
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002252 stock = &per_cpu(memcg_stock, cpu);
2253 drain_stock(stock);
2254 return NOTIFY_OK;
2255}
2256
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002257
2258/* See __mem_cgroup_try_charge() for details */
2259enum {
2260 CHARGE_OK, /* success */
2261 CHARGE_RETRY, /* need to retry but retry is not bad */
2262 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2263 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2264 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2265};
2266
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002267static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002268 unsigned int nr_pages, bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002269{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002270 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002271 struct mem_cgroup *mem_over_limit;
2272 struct res_counter *fail_res;
2273 unsigned long flags = 0;
2274 int ret;
2275
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002276 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002277
2278 if (likely(!ret)) {
2279 if (!do_swap_account)
2280 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002281 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002282 if (likely(!ret))
2283 return CHARGE_OK;
2284
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002285 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002286 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2287 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2288 } else
2289 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002290 /*
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002291 * nr_pages can be either a huge page (HPAGE_PMD_NR), a batch
2292 * of regular pages (CHARGE_BATCH), or a single regular page (1).
Johannes Weiner9221edb2011-02-01 15:52:42 -08002293 *
2294 * Never reclaim on behalf of optional batching, retry with a
2295 * single page instead.
2296 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002297 if (nr_pages == CHARGE_BATCH)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002298 return CHARGE_RETRY;
2299
2300 if (!(gfp_mask & __GFP_WAIT))
2301 return CHARGE_WOULDBLOCK;
2302
2303 ret = mem_cgroup_hierarchical_reclaim(mem_over_limit, NULL,
Ying Han0ae5e892011-05-26 16:25:25 -07002304 gfp_mask, flags, NULL);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002305 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002306 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002307 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002308 * Even though the limit is exceeded at this point, reclaim
2309 * may have been able to free some pages. Retry the charge
2310 * before killing the task.
2311 *
2312 * Only for regular pages, though: huge pages are rather
2313 * unlikely to succeed so close to the limit, and we fall back
2314 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002315 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002316 if (nr_pages == 1 && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002317 return CHARGE_RETRY;
2318
2319 /*
2320 * At task move, charge accounts can be doubly counted. So, it's
2321 * better to wait until the end of task_move if something is going on.
2322 */
2323 if (mem_cgroup_wait_acct_move(mem_over_limit))
2324 return CHARGE_RETRY;
2325
2326 /* If we don't need to call oom-killer at el, return immediately */
2327 if (!oom_check)
2328 return CHARGE_NOMEM;
2329 /* check OOM */
2330 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask))
2331 return CHARGE_OOM_DIE;
2332
2333 return CHARGE_RETRY;
2334}
2335
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002336/*
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002337 * Unlike exported interface, "oom" parameter is added. if oom==true,
2338 * oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002339 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002340static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002341 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002342 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002343 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002344 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002345{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002346 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002347 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002348 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002349 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002350
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002351 /*
2352 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2353 * in system level. So, allow to go ahead dying process in addition to
2354 * MEMDIE process.
2355 */
2356 if (unlikely(test_thread_flag(TIF_MEMDIE)
2357 || fatal_signal_pending(current)))
2358 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002359
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002360 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002361 * We always charge the cgroup the mm_struct belongs to.
2362 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002363 * thread group leader migrates. It's possible that mm is not
2364 * set, if so charge the init_mm (happens for pagecache usage).
2365 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002366 if (!*ptr && !mm)
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002367 goto bypass;
2368again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002369 if (*ptr) { /* css should be a valid one */
2370 memcg = *ptr;
2371 VM_BUG_ON(css_is_removed(&memcg->css));
2372 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002373 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002374 if (nr_pages == 1 && consume_stock(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002375 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002376 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002377 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002378 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002379
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002380 rcu_read_lock();
2381 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002382 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002383 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002384 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002385 * race with swapoff. Then, we have small risk of mis-accouning.
2386 * But such kind of mis-account by race always happens because
2387 * we don't have cgroup_mutex(). It's overkill and we allo that
2388 * small race, here.
2389 * (*) swapoff at el will charge against mm-struct not against
2390 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002391 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002392 memcg = mem_cgroup_from_task(p);
2393 if (!memcg || mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002394 rcu_read_unlock();
2395 goto done;
2396 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002397 if (nr_pages == 1 && consume_stock(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002398 /*
2399 * It seems dagerous to access memcg without css_get().
2400 * But considering how consume_stok works, it's not
2401 * necessary. If consume_stock success, some charges
2402 * from this memcg are cached on this cpu. So, we
2403 * don't need to call css_get()/css_tryget() before
2404 * calling consume_stock().
2405 */
2406 rcu_read_unlock();
2407 goto done;
2408 }
2409 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002410 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002411 rcu_read_unlock();
2412 goto again;
2413 }
2414 rcu_read_unlock();
2415 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002416
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002417 do {
2418 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002419
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002420 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002421 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002422 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002423 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002424 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002425
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002426 oom_check = false;
2427 if (oom && !nr_oom_retries) {
2428 oom_check = true;
2429 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2430 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002431
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002432 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002433 switch (ret) {
2434 case CHARGE_OK:
2435 break;
2436 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002437 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002438 css_put(&memcg->css);
2439 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002440 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002441 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002442 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002443 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002444 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002445 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002446 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002447 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002448 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002449 /* If oom, we never return -ENOMEM */
2450 nr_oom_retries--;
2451 break;
2452 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002453 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002454 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002455 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002456 } while (ret != CHARGE_OK);
2457
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002458 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002459 refill_stock(memcg, batch - nr_pages);
2460 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002461done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002462 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002463 return 0;
2464nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002465 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002466 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002467bypass:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002468 *ptr = NULL;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002469 return 0;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002470}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002471
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002472/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002473 * Somemtimes we have to undo a charge we got by try_charge().
2474 * This function is for that and do uncharge, put css's refcnt.
2475 * gotten by try_charge().
2476 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002477static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002478 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002479{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002480 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002481 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002482
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002483 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002484 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002485 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002486 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002487}
2488
2489/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002490 * A helper function to get mem_cgroup from ID. must be called under
2491 * rcu_read_lock(). The caller must check css_is_removed() or some if
2492 * it's concern. (dropping refcnt from swap can be called against removed
2493 * memcg.)
2494 */
2495static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2496{
2497 struct cgroup_subsys_state *css;
2498
2499 /* ID 0 is unused ID */
2500 if (!id)
2501 return NULL;
2502 css = css_lookup(&mem_cgroup_subsys, id);
2503 if (!css)
2504 return NULL;
2505 return container_of(css, struct mem_cgroup, css);
2506}
2507
Wu Fengguange42d9d52009-12-16 12:19:59 +01002508struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002509{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002510 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002511 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002512 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002513 swp_entry_t ent;
2514
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002515 VM_BUG_ON(!PageLocked(page));
2516
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002517 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002518 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002519 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002520 memcg = pc->mem_cgroup;
2521 if (memcg && !css_tryget(&memcg->css))
2522 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002523 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002524 ent.val = page_private(page);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002525 id = lookup_swap_cgroup(ent);
2526 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002527 memcg = mem_cgroup_lookup(id);
2528 if (memcg && !css_tryget(&memcg->css))
2529 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002530 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002531 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002532 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002533 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002534}
2535
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002536static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002537 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002538 unsigned int nr_pages,
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002539 struct page_cgroup *pc,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002540 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002541{
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002542 lock_page_cgroup(pc);
2543 if (unlikely(PageCgroupUsed(pc))) {
2544 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002545 __mem_cgroup_cancel_charge(memcg, nr_pages);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002546 return;
2547 }
2548 /*
2549 * we don't need page_cgroup_lock about tail pages, becase they are not
2550 * accessed by any other context at this point.
2551 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002552 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002553 /*
2554 * We access a page_cgroup asynchronously without lock_page_cgroup().
2555 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2556 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2557 * before USED bit, we need memory barrier here.
2558 * See mem_cgroup_add_lru_list(), etc.
2559 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002560 smp_wmb();
Balbir Singh4b3bde42009-09-23 15:56:32 -07002561 switch (ctype) {
2562 case MEM_CGROUP_CHARGE_TYPE_CACHE:
2563 case MEM_CGROUP_CHARGE_TYPE_SHMEM:
2564 SetPageCgroupCache(pc);
2565 SetPageCgroupUsed(pc);
2566 break;
2567 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
2568 ClearPageCgroupCache(pc);
2569 SetPageCgroupUsed(pc);
2570 break;
2571 default:
2572 break;
2573 }
Hugh Dickins3be91272008-02-07 00:14:19 -08002574
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002575 mem_cgroup_charge_statistics(memcg, PageCgroupCache(pc), nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002576 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002577 /*
2578 * "charge_statistics" updated event counter. Then, check it.
2579 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2580 * if they exceeds softlimit.
2581 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002582 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002583}
2584
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002585#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2586
2587#define PCGF_NOCOPY_AT_SPLIT ((1 << PCG_LOCK) | (1 << PCG_MOVE_LOCK) |\
2588 (1 << PCG_ACCT_LRU) | (1 << PCG_MIGRATION))
2589/*
2590 * Because tail pages are not marked as "used", set it. We're under
2591 * zone->lru_lock, 'splitting on pmd' and compund_lock.
2592 */
2593void mem_cgroup_split_huge_fixup(struct page *head, struct page *tail)
2594{
2595 struct page_cgroup *head_pc = lookup_page_cgroup(head);
2596 struct page_cgroup *tail_pc = lookup_page_cgroup(tail);
2597 unsigned long flags;
2598
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002599 if (mem_cgroup_disabled())
2600 return;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002601 /*
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -08002602 * We have no races with charge/uncharge but will have races with
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002603 * page state accounting.
2604 */
2605 move_lock_page_cgroup(head_pc, &flags);
2606
2607 tail_pc->mem_cgroup = head_pc->mem_cgroup;
2608 smp_wmb(); /* see __commit_charge() */
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -08002609 if (PageCgroupAcctLRU(head_pc)) {
2610 enum lru_list lru;
2611 struct mem_cgroup_per_zone *mz;
2612
2613 /*
2614 * LRU flags cannot be copied because we need to add tail
2615 *.page to LRU by generic call and our hook will be called.
2616 * We hold lru_lock, then, reduce counter directly.
2617 */
2618 lru = page_lru(head);
Johannes Weiner97a6c372011-03-23 16:42:27 -07002619 mz = page_cgroup_zoneinfo(head_pc->mem_cgroup, head);
KAMEZAWA Hiroyukiece35ca2011-01-20 14:44:24 -08002620 MEM_CGROUP_ZSTAT(mz, lru) -= 1;
2621 }
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002622 tail_pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2623 move_unlock_page_cgroup(head_pc, &flags);
2624}
2625#endif
2626
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002627/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07002628 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07002629 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002630 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002631 * @pc: page_cgroup of the page.
2632 * @from: mem_cgroup which the page is moved from.
2633 * @to: mem_cgroup which the page is moved to. @from != @to.
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002634 * @uncharge: whether we should call uncharge and css_put against @from.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002635 *
2636 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002637 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002638 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002639 *
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002640 * This function doesn't do "charge" nor css_get to new cgroup. It should be
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002641 * done by a caller(__mem_cgroup_try_charge would be useful). If @uncharge is
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002642 * true, this function does "uncharge" from old cgroup, but it doesn't if
2643 * @uncharge is false, so a caller should do "uncharge".
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002644 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002645static int mem_cgroup_move_account(struct page *page,
2646 unsigned int nr_pages,
2647 struct page_cgroup *pc,
2648 struct mem_cgroup *from,
2649 struct mem_cgroup *to,
2650 bool uncharge)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002651{
Johannes Weinerde3638d2011-03-23 16:42:28 -07002652 unsigned long flags;
2653 int ret;
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002654
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002655 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07002656 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07002657 /*
2658 * The page is isolated from LRU. So, collapse function
2659 * will not handle this page. But page splitting can happen.
2660 * Do this check under compound_page_lock(). The caller should
2661 * hold it.
2662 */
2663 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002664 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07002665 goto out;
2666
2667 lock_page_cgroup(pc);
2668
2669 ret = -EINVAL;
2670 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2671 goto unlock;
2672
2673 move_lock_page_cgroup(pc, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002674
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002675 if (PageCgroupFileMapped(pc)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08002676 /* Update mapped_file data for mem_cgroup */
2677 preempt_disable();
2678 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2679 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2680 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07002681 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002682 mem_cgroup_charge_statistics(from, PageCgroupCache(pc), -nr_pages);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002683 if (uncharge)
2684 /* This is not "cancel", but cancel_charge does all we need. */
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002685 __mem_cgroup_cancel_charge(from, nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07002686
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002687 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002688 pc->mem_cgroup = to;
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002689 mem_cgroup_charge_statistics(to, PageCgroupCache(pc), nr_pages);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002690 /*
2691 * We charges against "to" which may not have any tasks. Then, "to"
2692 * can be under rmdir(). But in current implementation, caller of
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002693 * this function is just force_empty() and move charge, so it's
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002694 * guaranteed that "to" is never removed. So, we don't check rmdir
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002695 * status here.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002696 */
Johannes Weinerde3638d2011-03-23 16:42:28 -07002697 move_unlock_page_cgroup(pc, &flags);
2698 ret = 0;
2699unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002700 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08002701 /*
2702 * check events
2703 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002704 memcg_check_events(to, page);
2705 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002706out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002707 return ret;
2708}
2709
2710/*
2711 * move charges to its parent.
2712 */
2713
Johannes Weiner5564e882011-03-23 16:42:29 -07002714static int mem_cgroup_move_parent(struct page *page,
2715 struct page_cgroup *pc,
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002716 struct mem_cgroup *child,
2717 gfp_t gfp_mask)
2718{
2719 struct cgroup *cg = child->css.cgroup;
2720 struct cgroup *pcg = cg->parent;
2721 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002722 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07002723 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002724 int ret;
2725
2726 /* Is ROOT ? */
2727 if (!pcg)
2728 return -EINVAL;
2729
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002730 ret = -EBUSY;
2731 if (!get_page_unless_zero(page))
2732 goto out;
2733 if (isolate_lru_page(page))
2734 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08002735
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002736 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002737
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002738 parent = mem_cgroup_from_cont(pcg);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002739 ret = __mem_cgroup_try_charge(NULL, gfp_mask, nr_pages, &parent, false);
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002740 if (ret || !parent)
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002741 goto put_back;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002742
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002743 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002744 flags = compound_lock_irqsave(page);
2745
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002746 ret = mem_cgroup_move_account(page, nr_pages, pc, child, parent, true);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002747 if (ret)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002748 __mem_cgroup_cancel_charge(parent, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002749
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002750 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002751 compound_unlock_irqrestore(page, flags);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002752put_back:
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002753 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002754put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08002755 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002756out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002757 return ret;
2758}
2759
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002760/*
2761 * Charge the memory controller for page usage.
2762 * Return
2763 * 0 if the charge was successful
2764 * < 0 if the cgroup is over its limit
2765 */
2766static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002767 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002768{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002769 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002770 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08002771 struct page_cgroup *pc;
2772 bool oom = true;
2773 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08002774
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002775 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002776 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002777 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08002778 /*
2779 * Never OOM-kill a process for a huge page. The
2780 * fault handler will fall back to regular pages.
2781 */
2782 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002783 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002784
2785 pc = lookup_page_cgroup(page);
Johannes Weineraf4a6622011-03-23 16:42:24 -07002786 BUG_ON(!pc); /* XXX: remove this and move pc lookup into commit */
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002787
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002788 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
2789 if (ret || !memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002790 return ret;
2791
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002792 __mem_cgroup_commit_charge(memcg, page, nr_pages, pc, ctype);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002793 return 0;
2794}
2795
2796int mem_cgroup_newpage_charge(struct page *page,
2797 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002798{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002799 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002800 return 0;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07002801 /*
2802 * If already mapped, we don't have to account.
2803 * If page cache, page->mapping has address_space.
2804 * But page->mapping may have out-of-use anon_vma pointer,
2805 * detecit it by PageAnon() check. newly-mapped-anon's page->mapping
2806 * is NULL.
2807 */
2808 if (page_mapped(page) || (page->mapping && !PageAnon(page)))
2809 return 0;
2810 if (unlikely(!mm))
2811 mm = &init_mm;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002812 return mem_cgroup_charge_common(page, mm, gfp_mask,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002813 MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002814}
2815
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002816static void
2817__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
2818 enum charge_type ctype);
2819
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002820static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002821__mem_cgroup_commit_charge_lrucare(struct page *page, struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002822 enum charge_type ctype)
2823{
2824 struct page_cgroup *pc = lookup_page_cgroup(page);
2825 /*
2826 * In some case, SwapCache, FUSE(splice_buf->radixtree), the page
2827 * is already on LRU. It means the page may on some other page_cgroup's
2828 * LRU. Take care of it.
2829 */
2830 mem_cgroup_lru_del_before_commit(page);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002831 __mem_cgroup_commit_charge(memcg, page, 1, pc, ctype);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002832 mem_cgroup_lru_add_after_commit(page);
2833 return;
2834}
2835
Balbir Singhe1a1cd52008-02-07 00:14:02 -08002836int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2837 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -08002838{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002839 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002840 int ret;
2841
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002842 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002843 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002844 if (PageCompound(page))
2845 return 0;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07002846
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002847 if (unlikely(!mm))
Balbir Singh8697d332008-02-07 00:13:59 -08002848 mm = &init_mm;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07002849
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002850 if (page_is_file_cache(page)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002851 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, &memcg, true);
2852 if (ret || !memcg)
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002853 return ret;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002854
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002855 /*
2856 * FUSE reuses pages without going through the final
2857 * put that would remove them from the LRU list, make
2858 * sure that they get relinked properly.
2859 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002860 __mem_cgroup_commit_charge_lrucare(page, memcg,
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002861 MEM_CGROUP_CHARGE_TYPE_CACHE);
2862 return ret;
2863 }
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002864 /* shmem */
2865 if (PageSwapCache(page)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002866 ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &memcg);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002867 if (!ret)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002868 __mem_cgroup_commit_charge_swapin(page, memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002869 MEM_CGROUP_CHARGE_TYPE_SHMEM);
2870 } else
2871 ret = mem_cgroup_charge_common(page, mm, gfp_mask,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002872 MEM_CGROUP_CHARGE_TYPE_SHMEM);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002873
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002874 return ret;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07002875}
2876
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002877/*
2878 * While swap-in, try_charge -> commit or cancel, the page is locked.
2879 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02002880 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002881 * "commit()" or removed by "cancel()"
2882 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002883int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2884 struct page *page,
2885 gfp_t mask, struct mem_cgroup **ptr)
2886{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002887 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002888 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002889
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07002890 *ptr = NULL;
2891
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002892 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002893 return 0;
2894
2895 if (!do_swap_account)
2896 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002897 /*
2898 * A racing thread's fault, or swapoff, may have already updated
Hugh Dickins407f9c82009-12-14 17:59:30 -08002899 * the pte, and even removed page from swap cache: in those cases
2900 * do_swap_page()'s pte_same() test will fail; but there's also a
2901 * KSM case which does need to charge the page.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002902 */
2903 if (!PageSwapCache(page))
Hugh Dickins407f9c82009-12-14 17:59:30 -08002904 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002905 memcg = try_get_mem_cgroup_from_page(page);
2906 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002907 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002908 *ptr = memcg;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002909 ret = __mem_cgroup_try_charge(NULL, mask, 1, ptr, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002910 css_put(&memcg->css);
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002911 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002912charge_cur_mm:
2913 if (unlikely(!mm))
2914 mm = &init_mm;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002915 return __mem_cgroup_try_charge(mm, mask, 1, ptr, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002916}
2917
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002918static void
2919__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
2920 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002921{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002922 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002923 return;
2924 if (!ptr)
2925 return;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002926 cgroup_exclude_rmdir(&ptr->css);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002927
2928 __mem_cgroup_commit_charge_lrucare(page, ptr, ctype);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002929 /*
2930 * Now swap is on-memory. This means this page may be
2931 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002932 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2933 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2934 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002935 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002936 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002937 swp_entry_t ent = {.val = page_private(page)};
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002938 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002939 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002940
2941 id = swap_cgroup_record(ent, 0);
2942 rcu_read_lock();
2943 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002944 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002945 /*
2946 * This recorded memcg can be obsolete one. So, avoid
2947 * calling css_tryget
2948 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002949 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07002950 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002951 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002952 mem_cgroup_put(memcg);
2953 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002954 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002955 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002956 /*
2957 * At swapin, we may charge account against cgroup which has no tasks.
2958 * So, rmdir()->pre_destroy() can be called while we do this charge.
2959 * In that case, we need to call pre_destroy() again. check it here.
2960 */
2961 cgroup_release_and_wakeup_rmdir(&ptr->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002962}
2963
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002964void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
2965{
2966 __mem_cgroup_commit_charge_swapin(page, ptr,
2967 MEM_CGROUP_CHARGE_TYPE_MAPPED);
2968}
2969
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002970void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002971{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002972 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002973 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002974 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002975 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002976 __mem_cgroup_cancel_charge(memcg, 1);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002977}
2978
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002979static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002980 unsigned int nr_pages,
2981 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002982{
2983 struct memcg_batch_info *batch = NULL;
2984 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002985
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002986 /* If swapout, usage of swap doesn't decrease */
2987 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2988 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002989
2990 batch = &current->memcg_batch;
2991 /*
2992 * In usual, we do css_get() when we remember memcg pointer.
2993 * But in this case, we keep res->usage until end of a series of
2994 * uncharges. Then, it's ok to ignore memcg's refcnt.
2995 */
2996 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002997 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002998 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002999 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003000 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003001 * the same cgroup and we have chance to coalesce uncharges.
3002 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3003 * because we want to do uncharge as soon as possible.
3004 */
3005
3006 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
3007 goto direct_uncharge;
3008
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003009 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08003010 goto direct_uncharge;
3011
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003012 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003013 * In typical case, batch->memcg == mem. This means we can
3014 * merge a series of uncharges to an uncharge of res_counter.
3015 * If not, we uncharge res_counter ony by one.
3016 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003017 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003018 goto direct_uncharge;
3019 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003020 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003021 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003022 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003023 return;
3024direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003025 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003026 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003027 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
3028 if (unlikely(batch->memcg != memcg))
3029 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003030 return;
3031}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003032
Balbir Singh8697d332008-02-07 00:13:59 -08003033/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003034 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003035 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003036static struct mem_cgroup *
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003037__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003038{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003039 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003040 unsigned int nr_pages = 1;
3041 struct page_cgroup *pc;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003042
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003043 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003044 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07003045
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003046 if (PageSwapCache(page))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003047 return NULL;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003048
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003049 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003050 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003051 VM_BUG_ON(!PageTransHuge(page));
3052 }
Balbir Singh8697d332008-02-07 00:13:59 -08003053 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003054 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003055 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003056 pc = lookup_page_cgroup(page);
3057 if (unlikely(!pc || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003058 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003059
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003060 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003061
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003062 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003063
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003064 if (!PageCgroupUsed(pc))
3065 goto unlock_out;
3066
3067 switch (ctype) {
3068 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003069 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003070 /* See mem_cgroup_prepare_migration() */
3071 if (page_mapped(page) || PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003072 goto unlock_out;
3073 break;
3074 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
3075 if (!PageAnon(page)) { /* Shared memory */
3076 if (page->mapping && !page_is_file_cache(page))
3077 goto unlock_out;
3078 } else if (page_mapped(page)) /* Anon */
3079 goto unlock_out;
3080 break;
3081 default:
3082 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003083 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003084
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003085 mem_cgroup_charge_statistics(memcg, PageCgroupCache(pc), -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07003086
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003087 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08003088 /*
3089 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3090 * freed from LRU. This is safe because uncharged page is expected not
3091 * to be reused (freed soon). Exception is SwapCache, it's handled by
3092 * special functions.
3093 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003094
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003095 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003096 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003097 * even after unlock, we have memcg->res.usage here and this memcg
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003098 * will never be freed.
3099 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003100 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003101 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003102 mem_cgroup_swap_statistics(memcg, true);
3103 mem_cgroup_get(memcg);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003104 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003105 if (!mem_cgroup_is_root(memcg))
3106 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003107
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003108 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003109
3110unlock_out:
3111 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003112 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003113}
3114
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003115void mem_cgroup_uncharge_page(struct page *page)
3116{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003117 /* early check. */
3118 if (page_mapped(page))
3119 return;
3120 if (page->mapping && !PageAnon(page))
3121 return;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003122 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
3123}
3124
3125void mem_cgroup_uncharge_cache_page(struct page *page)
3126{
3127 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003128 VM_BUG_ON(page->mapping);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003129 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
3130}
3131
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003132/*
3133 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3134 * In that cases, pages are freed continuously and we can expect pages
3135 * are in the same memcg. All these calls itself limits the number of
3136 * pages freed at once, then uncharge_start/end() is called properly.
3137 * This may be called prural(2) times in a context,
3138 */
3139
3140void mem_cgroup_uncharge_start(void)
3141{
3142 current->memcg_batch.do_batch++;
3143 /* We can do nest. */
3144 if (current->memcg_batch.do_batch == 1) {
3145 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003146 current->memcg_batch.nr_pages = 0;
3147 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003148 }
3149}
3150
3151void mem_cgroup_uncharge_end(void)
3152{
3153 struct memcg_batch_info *batch = &current->memcg_batch;
3154
3155 if (!batch->do_batch)
3156 return;
3157
3158 batch->do_batch--;
3159 if (batch->do_batch) /* If stacked, do nothing. */
3160 return;
3161
3162 if (!batch->memcg)
3163 return;
3164 /*
3165 * This "batch->memcg" is valid without any css_get/put etc...
3166 * bacause we hide charges behind us.
3167 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003168 if (batch->nr_pages)
3169 res_counter_uncharge(&batch->memcg->res,
3170 batch->nr_pages * PAGE_SIZE);
3171 if (batch->memsw_nr_pages)
3172 res_counter_uncharge(&batch->memcg->memsw,
3173 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003174 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003175 /* forget this pointer (for sanity check) */
3176 batch->memcg = NULL;
3177}
3178
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003179#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003180/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003181 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003182 * memcg information is recorded to swap_cgroup of "ent"
3183 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003184void
3185mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003186{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003187 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003188 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003189
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003190 if (!swapout) /* this was a swap cache but the swap is unused ! */
3191 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
3192
3193 memcg = __mem_cgroup_uncharge_common(page, ctype);
3194
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003195 /*
3196 * record memcg information, if swapout && memcg != NULL,
3197 * mem_cgroup_get() was called in uncharge().
3198 */
3199 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003200 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003201}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003202#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003203
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003204#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
3205/*
3206 * called from swap_entry_free(). remove record in swap_cgroup and
3207 * uncharge "memsw" account.
3208 */
3209void mem_cgroup_uncharge_swap(swp_entry_t ent)
3210{
3211 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003212 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003213
3214 if (!do_swap_account)
3215 return;
3216
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003217 id = swap_cgroup_record(ent, 0);
3218 rcu_read_lock();
3219 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003220 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003221 /*
3222 * We uncharge this because swap is freed.
3223 * This memcg can be obsolete one. We avoid calling css_tryget
3224 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003225 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07003226 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003227 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003228 mem_cgroup_put(memcg);
3229 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003230 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003231}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003232
3233/**
3234 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3235 * @entry: swap entry to be moved
3236 * @from: mem_cgroup which the entry is moved from
3237 * @to: mem_cgroup which the entry is moved to
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003238 * @need_fixup: whether we should fixup res_counters and refcounts.
Daisuke Nishimura02491442010-03-10 15:22:17 -08003239 *
3240 * It succeeds only when the swap_cgroup's record for this entry is the same
3241 * as the mem_cgroup's id of @from.
3242 *
3243 * Returns 0 on success, -EINVAL on failure.
3244 *
3245 * The caller must have charged to @to, IOW, called res_counter_charge() about
3246 * both res and memsw, and called css_get().
3247 */
3248static int mem_cgroup_move_swap_account(swp_entry_t entry,
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003249 struct mem_cgroup *from, struct mem_cgroup *to, bool need_fixup)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003250{
3251 unsigned short old_id, new_id;
3252
3253 old_id = css_id(&from->css);
3254 new_id = css_id(&to->css);
3255
3256 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003257 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003258 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003259 /*
3260 * This function is only called from task migration context now.
3261 * It postpones res_counter and refcount handling till the end
3262 * of task migration(mem_cgroup_clear_mc()) for performance
3263 * improvement. But we cannot postpone mem_cgroup_get(to)
3264 * because if the process that has been moved to @to does
3265 * swap-in, the refcount of @to might be decreased to 0.
3266 */
Daisuke Nishimura02491442010-03-10 15:22:17 -08003267 mem_cgroup_get(to);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003268 if (need_fixup) {
3269 if (!mem_cgroup_is_root(from))
3270 res_counter_uncharge(&from->memsw, PAGE_SIZE);
3271 mem_cgroup_put(from);
3272 /*
3273 * we charged both to->res and to->memsw, so we should
3274 * uncharge to->res.
3275 */
3276 if (!mem_cgroup_is_root(to))
3277 res_counter_uncharge(&to->res, PAGE_SIZE);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003278 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08003279 return 0;
3280 }
3281 return -EINVAL;
3282}
3283#else
3284static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003285 struct mem_cgroup *from, struct mem_cgroup *to, bool need_fixup)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003286{
3287 return -EINVAL;
3288}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003289#endif
3290
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003291/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003292 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
3293 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003294 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003295int mem_cgroup_prepare_migration(struct page *page,
Miklos Szeredief6a3c62011-03-22 16:30:52 -07003296 struct page *newpage, struct mem_cgroup **ptr, gfp_t gfp_mask)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003297{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003298 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003299 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003300 enum charge_type ctype;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003301 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003302
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003303 *ptr = NULL;
3304
Andrea Arcangeliec168512011-01-13 15:46:56 -08003305 VM_BUG_ON(PageTransHuge(page));
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003306 if (mem_cgroup_disabled())
Balbir Singh40779602008-04-04 14:29:59 -07003307 return 0;
3308
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003309 pc = lookup_page_cgroup(page);
3310 lock_page_cgroup(pc);
3311 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003312 memcg = pc->mem_cgroup;
3313 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003314 /*
3315 * At migrating an anonymous page, its mapcount goes down
3316 * to 0 and uncharge() will be called. But, even if it's fully
3317 * unmapped, migration may fail and this page has to be
3318 * charged again. We set MIGRATION flag here and delay uncharge
3319 * until end_migration() is called
3320 *
3321 * Corner Case Thinking
3322 * A)
3323 * When the old page was mapped as Anon and it's unmap-and-freed
3324 * while migration was ongoing.
3325 * If unmap finds the old page, uncharge() of it will be delayed
3326 * until end_migration(). If unmap finds a new page, it's
3327 * uncharged when it make mapcount to be 1->0. If unmap code
3328 * finds swap_migration_entry, the new page will not be mapped
3329 * and end_migration() will find it(mapcount==0).
3330 *
3331 * B)
3332 * When the old page was mapped but migraion fails, the kernel
3333 * remaps it. A charge for it is kept by MIGRATION flag even
3334 * if mapcount goes down to 0. We can do remap successfully
3335 * without charging it again.
3336 *
3337 * C)
3338 * The "old" page is under lock_page() until the end of
3339 * migration, so, the old page itself will not be swapped-out.
3340 * If the new page is swapped out before end_migraton, our
3341 * hook to usual swap-out path will catch the event.
3342 */
3343 if (PageAnon(page))
3344 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003345 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003346 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003347 /*
3348 * If the page is not charged at this point,
3349 * we return here.
3350 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003351 if (!memcg)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003352 return 0;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003353
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003354 *ptr = memcg;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003355 ret = __mem_cgroup_try_charge(NULL, gfp_mask, 1, ptr, false);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003356 css_put(&memcg->css);/* drop extra refcnt */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003357 if (ret || *ptr == NULL) {
3358 if (PageAnon(page)) {
3359 lock_page_cgroup(pc);
3360 ClearPageCgroupMigration(pc);
3361 unlock_page_cgroup(pc);
3362 /*
3363 * The old page may be fully unmapped while we kept it.
3364 */
3365 mem_cgroup_uncharge_page(page);
3366 }
3367 return -ENOMEM;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003368 }
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003369 /*
3370 * We charge new page before it's used/mapped. So, even if unlock_page()
3371 * is called before end_migration, we can catch all events on this new
3372 * page. In the case new page is migrated but not remapped, new page's
3373 * mapcount will be finally 0 and we call uncharge in end_migration().
3374 */
3375 pc = lookup_page_cgroup(newpage);
3376 if (PageAnon(page))
3377 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
3378 else if (page_is_file_cache(page))
3379 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
3380 else
3381 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003382 __mem_cgroup_commit_charge(memcg, page, 1, pc, ctype);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003383 return ret;
3384}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08003385
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003386/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003387void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003388 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003389{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003390 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003391 struct page_cgroup *pc;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003392
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003393 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003394 return;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003395 /* blocks rmdir() */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003396 cgroup_exclude_rmdir(&memcg->css);
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003397 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003398 used = oldpage;
3399 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003400 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003401 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003402 unused = oldpage;
3403 }
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003404 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003405 * We disallowed uncharge of pages under migration because mapcount
3406 * of the page goes down to zero, temporarly.
3407 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003408 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003409 pc = lookup_page_cgroup(oldpage);
3410 lock_page_cgroup(pc);
3411 ClearPageCgroupMigration(pc);
3412 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003413
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003414 __mem_cgroup_uncharge_common(unused, MEM_CGROUP_CHARGE_TYPE_FORCE);
3415
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003416 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003417 * If a page is a file cache, radix-tree replacement is very atomic
3418 * and we can skip this check. When it was an Anon page, its mapcount
3419 * goes down to 0. But because we added MIGRATION flage, it's not
3420 * uncharged yet. There are several case but page->mapcount check
3421 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3422 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003423 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003424 if (PageAnon(used))
3425 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003426 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003427 * At migration, we may charge account against cgroup which has no
3428 * tasks.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003429 * So, rmdir()->pre_destroy() can be called while we do this charge.
3430 * In that case, we need to call pre_destroy() again. check it here.
3431 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003432 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003433}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08003434
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003435/*
3436 * At replace page cache, newpage is not under any memcg but it's on
3437 * LRU. So, this function doesn't touch res_counter but handles LRU
3438 * in correct way. Both pages are locked so we cannot race with uncharge.
3439 */
3440void mem_cgroup_replace_page_cache(struct page *oldpage,
3441 struct page *newpage)
3442{
3443 struct mem_cgroup *memcg;
3444 struct page_cgroup *pc;
3445 struct zone *zone;
3446 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3447 unsigned long flags;
3448
3449 if (mem_cgroup_disabled())
3450 return;
3451
3452 pc = lookup_page_cgroup(oldpage);
3453 /* fix accounting on old pages */
3454 lock_page_cgroup(pc);
3455 memcg = pc->mem_cgroup;
3456 mem_cgroup_charge_statistics(memcg, PageCgroupCache(pc), -1);
3457 ClearPageCgroupUsed(pc);
3458 unlock_page_cgroup(pc);
3459
3460 if (PageSwapBacked(oldpage))
3461 type = MEM_CGROUP_CHARGE_TYPE_SHMEM;
3462
3463 zone = page_zone(newpage);
3464 pc = lookup_page_cgroup(newpage);
3465 /*
3466 * Even if newpage->mapping was NULL before starting replacement,
3467 * the newpage may be on LRU(or pagevec for LRU) already. We lock
3468 * LRU while we overwrite pc->mem_cgroup.
3469 */
3470 spin_lock_irqsave(&zone->lru_lock, flags);
3471 if (PageLRU(newpage))
3472 del_page_from_lru_list(zone, newpage, page_lru(newpage));
3473 __mem_cgroup_commit_charge(memcg, newpage, 1, pc, type);
3474 if (PageLRU(newpage))
3475 add_page_to_lru_list(zone, newpage, page_lru(newpage));
3476 spin_unlock_irqrestore(&zone->lru_lock, flags);
3477}
3478
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003479#ifdef CONFIG_DEBUG_VM
3480static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3481{
3482 struct page_cgroup *pc;
3483
3484 pc = lookup_page_cgroup(page);
3485 if (likely(pc) && PageCgroupUsed(pc))
3486 return pc;
3487 return NULL;
3488}
3489
3490bool mem_cgroup_bad_page_check(struct page *page)
3491{
3492 if (mem_cgroup_disabled())
3493 return false;
3494
3495 return lookup_page_cgroup_used(page) != NULL;
3496}
3497
3498void mem_cgroup_print_bad_page(struct page *page)
3499{
3500 struct page_cgroup *pc;
3501
3502 pc = lookup_page_cgroup_used(page);
3503 if (pc) {
3504 int ret = -1;
3505 char *path;
3506
3507 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p",
3508 pc, pc->flags, pc->mem_cgroup);
3509
3510 path = kmalloc(PATH_MAX, GFP_KERNEL);
3511 if (path) {
3512 rcu_read_lock();
3513 ret = cgroup_path(pc->mem_cgroup->css.cgroup,
3514 path, PATH_MAX);
3515 rcu_read_unlock();
3516 }
3517
3518 printk(KERN_CONT "(%s)\n",
3519 (ret < 0) ? "cannot get the path" : path);
3520 kfree(path);
3521 }
3522}
3523#endif
3524
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003525static DEFINE_MUTEX(set_limit_mutex);
3526
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003527static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003528 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003529{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003530 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003531 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003532 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003533 int children = mem_cgroup_count_children(memcg);
3534 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003535 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003536
3537 /*
3538 * For keeping hierarchical_reclaim simple, how long we should retry
3539 * is depends on callers. We set our retry-count to be function
3540 * of # of children which we should visit in this loop.
3541 */
3542 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3543
3544 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003545
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003546 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003547 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003548 if (signal_pending(current)) {
3549 ret = -EINTR;
3550 break;
3551 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003552 /*
3553 * Rather than hide all in some function, I do this in
3554 * open coded manner. You see what this really does.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003555 * We have to guarantee memcg->res.limit < memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003556 */
3557 mutex_lock(&set_limit_mutex);
3558 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3559 if (memswlimit < val) {
3560 ret = -EINVAL;
3561 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003562 break;
3563 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003564
3565 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3566 if (memlimit < val)
3567 enlarge = 1;
3568
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003569 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003570 if (!ret) {
3571 if (memswlimit == val)
3572 memcg->memsw_is_minimum = true;
3573 else
3574 memcg->memsw_is_minimum = false;
3575 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003576 mutex_unlock(&set_limit_mutex);
3577
3578 if (!ret)
3579 break;
3580
Bob Liuaa20d482009-12-15 16:47:14 -08003581 mem_cgroup_hierarchical_reclaim(memcg, NULL, GFP_KERNEL,
Ying Han0ae5e892011-05-26 16:25:25 -07003582 MEM_CGROUP_RECLAIM_SHRINK,
3583 NULL);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003584 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3585 /* Usage is reduced ? */
3586 if (curusage >= oldusage)
3587 retry_count--;
3588 else
3589 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003590 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003591 if (!ret && enlarge)
3592 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003593
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003594 return ret;
3595}
3596
Li Zefan338c8432009-06-17 16:27:15 -07003597static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3598 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003599{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003600 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003601 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003602 int children = mem_cgroup_count_children(memcg);
3603 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003604 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003605
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003606 /* see mem_cgroup_resize_res_limit */
3607 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3608 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003609 while (retry_count) {
3610 if (signal_pending(current)) {
3611 ret = -EINTR;
3612 break;
3613 }
3614 /*
3615 * Rather than hide all in some function, I do this in
3616 * open coded manner. You see what this really does.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003617 * We have to guarantee memcg->res.limit < memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003618 */
3619 mutex_lock(&set_limit_mutex);
3620 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3621 if (memlimit > val) {
3622 ret = -EINVAL;
3623 mutex_unlock(&set_limit_mutex);
3624 break;
3625 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003626 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3627 if (memswlimit < val)
3628 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003629 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003630 if (!ret) {
3631 if (memlimit == val)
3632 memcg->memsw_is_minimum = true;
3633 else
3634 memcg->memsw_is_minimum = false;
3635 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003636 mutex_unlock(&set_limit_mutex);
3637
3638 if (!ret)
3639 break;
3640
Balbir Singh4e416952009-09-23 15:56:39 -07003641 mem_cgroup_hierarchical_reclaim(memcg, NULL, GFP_KERNEL,
Balbir Singh75822b42009-09-23 15:56:38 -07003642 MEM_CGROUP_RECLAIM_NOSWAP |
Ying Han0ae5e892011-05-26 16:25:25 -07003643 MEM_CGROUP_RECLAIM_SHRINK,
3644 NULL);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003645 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003646 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003647 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003648 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003649 else
3650 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003651 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003652 if (!ret && enlarge)
3653 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003654 return ret;
3655}
3656
Balbir Singh4e416952009-09-23 15:56:39 -07003657unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
Ying Han0ae5e892011-05-26 16:25:25 -07003658 gfp_t gfp_mask,
3659 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003660{
3661 unsigned long nr_reclaimed = 0;
3662 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3663 unsigned long reclaimed;
3664 int loop = 0;
3665 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003666 unsigned long long excess;
Ying Han0ae5e892011-05-26 16:25:25 -07003667 unsigned long nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003668
3669 if (order > 0)
3670 return 0;
3671
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07003672 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
Balbir Singh4e416952009-09-23 15:56:39 -07003673 /*
3674 * This loop can run a while, specially if mem_cgroup's continuously
3675 * keep exceeding their soft limit and putting the system under
3676 * pressure
3677 */
3678 do {
3679 if (next_mz)
3680 mz = next_mz;
3681 else
3682 mz = mem_cgroup_largest_soft_limit_node(mctz);
3683 if (!mz)
3684 break;
3685
Ying Han0ae5e892011-05-26 16:25:25 -07003686 nr_scanned = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07003687 reclaimed = mem_cgroup_hierarchical_reclaim(mz->mem, zone,
3688 gfp_mask,
Ying Han0ae5e892011-05-26 16:25:25 -07003689 MEM_CGROUP_RECLAIM_SOFT,
3690 &nr_scanned);
Balbir Singh4e416952009-09-23 15:56:39 -07003691 nr_reclaimed += reclaimed;
Ying Han0ae5e892011-05-26 16:25:25 -07003692 *total_scanned += nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003693 spin_lock(&mctz->lock);
3694
3695 /*
3696 * If we failed to reclaim anything from this memory cgroup
3697 * it is time to move on to the next cgroup
3698 */
3699 next_mz = NULL;
3700 if (!reclaimed) {
3701 do {
3702 /*
3703 * Loop until we find yet another one.
3704 *
3705 * By the time we get the soft_limit lock
3706 * again, someone might have aded the
3707 * group back on the RB tree. Iterate to
3708 * make sure we get a different mem.
3709 * mem_cgroup_largest_soft_limit_node returns
3710 * NULL if no other cgroup is present on
3711 * the tree
3712 */
3713 next_mz =
3714 __mem_cgroup_largest_soft_limit_node(mctz);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003715 if (next_mz == mz)
Balbir Singh4e416952009-09-23 15:56:39 -07003716 css_put(&next_mz->mem->css);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003717 else /* next_mz == NULL or other memcg */
Balbir Singh4e416952009-09-23 15:56:39 -07003718 break;
3719 } while (1);
3720 }
Balbir Singh4e416952009-09-23 15:56:39 -07003721 __mem_cgroup_remove_exceeded(mz->mem, mz, mctz);
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003722 excess = res_counter_soft_limit_excess(&mz->mem->res);
Balbir Singh4e416952009-09-23 15:56:39 -07003723 /*
3724 * One school of thought says that we should not add
3725 * back the node to the tree if reclaim returns 0.
3726 * But our reclaim could return 0, simply because due
3727 * to priority we are exposing a smaller subset of
3728 * memory to reclaim from. Consider this as a longer
3729 * term TODO.
3730 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003731 /* If excess == 0, no tree ops */
3732 __mem_cgroup_insert_exceeded(mz->mem, mz, mctz, excess);
Balbir Singh4e416952009-09-23 15:56:39 -07003733 spin_unlock(&mctz->lock);
3734 css_put(&mz->mem->css);
3735 loop++;
3736 /*
3737 * Could not reclaim anything and there are no more
3738 * mem cgroups to try or we seem to be looping without
3739 * reclaiming anything.
3740 */
3741 if (!nr_reclaimed &&
3742 (next_mz == NULL ||
3743 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3744 break;
3745 } while (!nr_reclaimed);
3746 if (next_mz)
3747 css_put(&next_mz->mem->css);
3748 return nr_reclaimed;
3749}
3750
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07003751/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003752 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003753 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
3754 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003755static int mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003756 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003757{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003758 struct zone *zone;
3759 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003760 struct page_cgroup *pc, *busy;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003761 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003762 struct list_head *list;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003763 int ret = 0;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003764
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003765 zone = &NODE_DATA(node)->node_zones[zid];
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003766 mz = mem_cgroup_zoneinfo(memcg, node, zid);
Christoph Lameterb69408e2008-10-18 20:26:14 -07003767 list = &mz->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003768
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003769 loop = MEM_CGROUP_ZSTAT(mz, lru);
3770 /* give some margin against EBUSY etc...*/
3771 loop += 256;
3772 busy = NULL;
3773 while (loop--) {
Johannes Weiner5564e882011-03-23 16:42:29 -07003774 struct page *page;
3775
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003776 ret = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003777 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003778 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003779 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003780 break;
3781 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003782 pc = list_entry(list->prev, struct page_cgroup, lru);
3783 if (busy == pc) {
3784 list_move(&pc->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003785 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003786 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003787 continue;
3788 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003789 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003790
Johannes Weiner6b3ae582011-03-23 16:42:30 -07003791 page = lookup_cgroup_page(pc);
Johannes Weiner5564e882011-03-23 16:42:29 -07003792
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003793 ret = mem_cgroup_move_parent(page, pc, memcg, GFP_KERNEL);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003794 if (ret == -ENOMEM)
3795 break;
3796
3797 if (ret == -EBUSY || ret == -EINVAL) {
3798 /* found lock contention or "pc" is obsolete. */
3799 busy = pc;
3800 cond_resched();
3801 } else
3802 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003803 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003804
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003805 if (!ret && !list_empty(list))
3806 return -EBUSY;
3807 return ret;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003808}
3809
3810/*
3811 * make mem_cgroup's charge to be 0 if there is no task.
3812 * This enables deleting this mem_cgroup.
3813 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003814static int mem_cgroup_force_empty(struct mem_cgroup *memcg, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003815{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003816 int ret;
3817 int node, zid, shrink;
3818 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003819 struct cgroup *cgrp = memcg->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003820
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003821 css_get(&memcg->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003822
3823 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003824 /* should free all ? */
3825 if (free_all)
3826 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003827move_account:
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003828 do {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003829 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003830 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003831 goto out;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003832 ret = -EINTR;
3833 if (signal_pending(current))
3834 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003835 /* This is for making all *used* pages to be on LRU. */
3836 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003837 drain_all_stock_sync(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003838 ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003839 mem_cgroup_start_move(memcg);
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08003840 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003841 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07003842 enum lru_list l;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003843 for_each_lru(l) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003844 ret = mem_cgroup_force_empty_list(memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003845 node, zid, l);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003846 if (ret)
3847 break;
3848 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003849 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003850 if (ret)
3851 break;
3852 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003853 mem_cgroup_end_move(memcg);
3854 memcg_oom_recover(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003855 /* it seems parent cgroup doesn't have enough mem */
3856 if (ret == -ENOMEM)
3857 goto try_to_free;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003858 cond_resched();
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003859 /* "ret" should also be checked to ensure all lists are empty. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003860 } while (memcg->res.usage > 0 || ret);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003861out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003862 css_put(&memcg->css);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003863 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003864
3865try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003866 /* returns EBUSY if there is a task or if we come here twice. */
3867 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003868 ret = -EBUSY;
3869 goto out;
3870 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003871 /* we call try-to-free pages for make this cgroup empty */
3872 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003873 /* try to free all pages in this cgroup */
3874 shrink = 1;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003875 while (nr_retries && memcg->res.usage > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003876 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003877
3878 if (signal_pending(current)) {
3879 ret = -EINTR;
3880 goto out;
3881 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003882 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07003883 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003884 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003885 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003886 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003887 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003888 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003889
3890 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003891 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003892 /* try move_account...there may be some *locked* pages. */
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003893 goto move_account;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003894}
3895
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003896int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
3897{
3898 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3899}
3900
3901
Balbir Singh18f59ea2009-01-07 18:08:07 -08003902static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3903{
3904 return mem_cgroup_from_cont(cont)->use_hierarchy;
3905}
3906
3907static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3908 u64 val)
3909{
3910 int retval = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003911 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003912 struct cgroup *parent = cont->parent;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003913 struct mem_cgroup *parent_memcg = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003914
3915 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003916 parent_memcg = mem_cgroup_from_cont(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003917
3918 cgroup_lock();
3919 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003920 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003921 * in the child subtrees. If it is unset, then the change can
3922 * occur, provided the current cgroup has no children.
3923 *
3924 * For the root cgroup, parent_mem is NULL, we allow value to be
3925 * set if there are no children.
3926 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003927 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003928 (val == 1 || val == 0)) {
3929 if (list_empty(&cont->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003930 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003931 else
3932 retval = -EBUSY;
3933 } else
3934 retval = -EINVAL;
3935 cgroup_unlock();
3936
3937 return retval;
3938}
3939
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003940
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003941static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003942 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003943{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003944 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003945 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003946
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003947 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003948 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003949 val += mem_cgroup_read_stat(iter, idx);
3950
3951 if (val < 0) /* race ? */
3952 val = 0;
3953 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003954}
3955
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003956static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003957{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003958 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003959
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003960 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003961 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00003962 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003963 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00003964 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003965 }
3966
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003967 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
3968 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003969
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003970 if (swap)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003971 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAPOUT);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003972
3973 return val << PAGE_SHIFT;
3974}
3975
Paul Menage2c3daa72008-04-29 00:59:58 -07003976static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003977{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003978 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003979 u64 val;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003980 int type, name;
3981
3982 type = MEMFILE_TYPE(cft->private);
3983 name = MEMFILE_ATTR(cft->private);
3984 switch (type) {
3985 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003986 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003987 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003988 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003989 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003990 break;
3991 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003992 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003993 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003994 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003995 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003996 break;
3997 default:
3998 BUG();
3999 break;
4000 }
4001 return val;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004002}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004003/*
4004 * The user of this function is...
4005 * RES_LIMIT.
4006 */
Paul Menage856c13a2008-07-25 01:47:04 -07004007static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
4008 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004009{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004010 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004011 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004012 unsigned long long val;
4013 int ret;
4014
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004015 type = MEMFILE_TYPE(cft->private);
4016 name = MEMFILE_ATTR(cft->private);
4017 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004018 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07004019 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
4020 ret = -EINVAL;
4021 break;
4022 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004023 /* This function does all necessary parse...reuse it */
4024 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004025 if (ret)
4026 break;
4027 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004028 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004029 else
4030 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004031 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07004032 case RES_SOFT_LIMIT:
4033 ret = res_counter_memparse_write_strategy(buffer, &val);
4034 if (ret)
4035 break;
4036 /*
4037 * For memsw, soft limits are hard to implement in terms
4038 * of semantics, for now, we support soft limits for
4039 * control without swap
4040 */
4041 if (type == _MEM)
4042 ret = res_counter_set_soft_limit(&memcg->res, val);
4043 else
4044 ret = -EINVAL;
4045 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004046 default:
4047 ret = -EINVAL; /* should be BUG() ? */
4048 break;
4049 }
4050 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004051}
4052
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004053static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
4054 unsigned long long *mem_limit, unsigned long long *memsw_limit)
4055{
4056 struct cgroup *cgroup;
4057 unsigned long long min_limit, min_memsw_limit, tmp;
4058
4059 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4060 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4061 cgroup = memcg->css.cgroup;
4062 if (!memcg->use_hierarchy)
4063 goto out;
4064
4065 while (cgroup->parent) {
4066 cgroup = cgroup->parent;
4067 memcg = mem_cgroup_from_cont(cgroup);
4068 if (!memcg->use_hierarchy)
4069 break;
4070 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4071 min_limit = min(min_limit, tmp);
4072 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4073 min_memsw_limit = min(min_memsw_limit, tmp);
4074 }
4075out:
4076 *mem_limit = min_limit;
4077 *memsw_limit = min_memsw_limit;
4078 return;
4079}
4080
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004081static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004082{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004083 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004084 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004085
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004086 memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004087 type = MEMFILE_TYPE(event);
4088 name = MEMFILE_ATTR(event);
4089 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004090 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004091 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004092 res_counter_reset_max(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004093 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004094 res_counter_reset_max(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004095 break;
4096 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004097 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004098 res_counter_reset_failcnt(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004099 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004100 res_counter_reset_failcnt(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004101 break;
4102 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004103
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004104 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004105}
4106
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004107static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
4108 struct cftype *cft)
4109{
4110 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
4111}
4112
Daisuke Nishimura02491442010-03-10 15:22:17 -08004113#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004114static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4115 struct cftype *cft, u64 val)
4116{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004117 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004118
4119 if (val >= (1 << NR_MOVE_TYPE))
4120 return -EINVAL;
4121 /*
4122 * We check this value several times in both in can_attach() and
4123 * attach(), so we need cgroup lock to prevent this value from being
4124 * inconsistent.
4125 */
4126 cgroup_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004127 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004128 cgroup_unlock();
4129
4130 return 0;
4131}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004132#else
4133static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4134 struct cftype *cft, u64 val)
4135{
4136 return -ENOSYS;
4137}
4138#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004139
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004140
4141/* For read statistics */
4142enum {
4143 MCS_CACHE,
4144 MCS_RSS,
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -08004145 MCS_FILE_MAPPED,
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004146 MCS_PGPGIN,
4147 MCS_PGPGOUT,
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004148 MCS_SWAP,
Ying Han456f9982011-05-26 16:25:38 -07004149 MCS_PGFAULT,
4150 MCS_PGMAJFAULT,
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004151 MCS_INACTIVE_ANON,
4152 MCS_ACTIVE_ANON,
4153 MCS_INACTIVE_FILE,
4154 MCS_ACTIVE_FILE,
4155 MCS_UNEVICTABLE,
4156 NR_MCS_STAT,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004157};
4158
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004159struct mcs_total_stat {
4160 s64 stat[NR_MCS_STAT];
4161};
4162
4163struct {
4164 char *local_name;
4165 char *total_name;
4166} memcg_stat_strings[NR_MCS_STAT] = {
4167 {"cache", "total_cache"},
4168 {"rss", "total_rss"},
Balbir Singhd69b0422009-06-17 16:26:34 -07004169 {"mapped_file", "total_mapped_file"},
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004170 {"pgpgin", "total_pgpgin"},
4171 {"pgpgout", "total_pgpgout"},
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004172 {"swap", "total_swap"},
Ying Han456f9982011-05-26 16:25:38 -07004173 {"pgfault", "total_pgfault"},
4174 {"pgmajfault", "total_pgmajfault"},
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004175 {"inactive_anon", "total_inactive_anon"},
4176 {"active_anon", "total_active_anon"},
4177 {"inactive_file", "total_inactive_file"},
4178 {"active_file", "total_active_file"},
4179 {"unevictable", "total_unevictable"}
4180};
4181
4182
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004183static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004184mem_cgroup_get_local_stat(struct mem_cgroup *memcg, struct mcs_total_stat *s)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004185{
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004186 s64 val;
4187
4188 /* per cpu stat */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004189 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_CACHE);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004190 s->stat[MCS_CACHE] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004191 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_RSS);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004192 s->stat[MCS_RSS] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004193 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_FILE_MAPPED);
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -08004194 s->stat[MCS_FILE_MAPPED] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004195 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGPGIN);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004196 s->stat[MCS_PGPGIN] += val;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004197 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGPGOUT);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004198 s->stat[MCS_PGPGOUT] += val;
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004199 if (do_swap_account) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004200 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_SWAPOUT);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004201 s->stat[MCS_SWAP] += val * PAGE_SIZE;
4202 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004203 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGFAULT);
Ying Han456f9982011-05-26 16:25:38 -07004204 s->stat[MCS_PGFAULT] += val;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004205 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGMAJFAULT);
Ying Han456f9982011-05-26 16:25:38 -07004206 s->stat[MCS_PGMAJFAULT] += val;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004207
4208 /* per zone stat */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004209 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_INACTIVE_ANON));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004210 s->stat[MCS_INACTIVE_ANON] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004211 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_ACTIVE_ANON));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004212 s->stat[MCS_ACTIVE_ANON] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004213 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_INACTIVE_FILE));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004214 s->stat[MCS_INACTIVE_FILE] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004215 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_ACTIVE_FILE));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004216 s->stat[MCS_ACTIVE_FILE] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004217 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004218 s->stat[MCS_UNEVICTABLE] += val * PAGE_SIZE;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004219}
4220
4221static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004222mem_cgroup_get_total_stat(struct mem_cgroup *memcg, struct mcs_total_stat *s)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004223{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004224 struct mem_cgroup *iter;
4225
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004226 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004227 mem_cgroup_get_local_stat(iter, s);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004228}
4229
Ying Han406eb0c2011-05-26 16:25:37 -07004230#ifdef CONFIG_NUMA
4231static int mem_control_numa_stat_show(struct seq_file *m, void *arg)
4232{
4233 int nid;
4234 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
4235 unsigned long node_nr;
4236 struct cgroup *cont = m->private;
4237 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
4238
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004239 total_nr = mem_cgroup_nr_lru_pages(mem_cont, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004240 seq_printf(m, "total=%lu", total_nr);
4241 for_each_node_state(nid, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004242 node_nr = mem_cgroup_node_nr_lru_pages(mem_cont, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004243 seq_printf(m, " N%d=%lu", nid, node_nr);
4244 }
4245 seq_putc(m, '\n');
4246
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004247 file_nr = mem_cgroup_nr_lru_pages(mem_cont, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004248 seq_printf(m, "file=%lu", file_nr);
4249 for_each_node_state(nid, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004250 node_nr = mem_cgroup_node_nr_lru_pages(mem_cont, nid,
4251 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004252 seq_printf(m, " N%d=%lu", nid, node_nr);
4253 }
4254 seq_putc(m, '\n');
4255
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004256 anon_nr = mem_cgroup_nr_lru_pages(mem_cont, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004257 seq_printf(m, "anon=%lu", anon_nr);
4258 for_each_node_state(nid, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004259 node_nr = mem_cgroup_node_nr_lru_pages(mem_cont, nid,
4260 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004261 seq_printf(m, " N%d=%lu", nid, node_nr);
4262 }
4263 seq_putc(m, '\n');
4264
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004265 unevictable_nr = mem_cgroup_nr_lru_pages(mem_cont, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004266 seq_printf(m, "unevictable=%lu", unevictable_nr);
4267 for_each_node_state(nid, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004268 node_nr = mem_cgroup_node_nr_lru_pages(mem_cont, nid,
4269 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004270 seq_printf(m, " N%d=%lu", nid, node_nr);
4271 }
4272 seq_putc(m, '\n');
4273 return 0;
4274}
4275#endif /* CONFIG_NUMA */
4276
Paul Menagec64745c2008-04-29 01:00:02 -07004277static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
4278 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004279{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004280 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004281 struct mcs_total_stat mystat;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004282 int i;
4283
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004284 memset(&mystat, 0, sizeof(mystat));
4285 mem_cgroup_get_local_stat(mem_cont, &mystat);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004286
Ying Han406eb0c2011-05-26 16:25:37 -07004287
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004288 for (i = 0; i < NR_MCS_STAT; i++) {
4289 if (i == MCS_SWAP && !do_swap_account)
4290 continue;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004291 cb->fill(cb, memcg_stat_strings[i].local_name, mystat.stat[i]);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004292 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004293
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004294 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004295 {
4296 unsigned long long limit, memsw_limit;
4297 memcg_get_hierarchical_limit(mem_cont, &limit, &memsw_limit);
4298 cb->fill(cb, "hierarchical_memory_limit", limit);
4299 if (do_swap_account)
4300 cb->fill(cb, "hierarchical_memsw_limit", memsw_limit);
4301 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004302
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004303 memset(&mystat, 0, sizeof(mystat));
4304 mem_cgroup_get_total_stat(mem_cont, &mystat);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004305 for (i = 0; i < NR_MCS_STAT; i++) {
4306 if (i == MCS_SWAP && !do_swap_account)
4307 continue;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004308 cb->fill(cb, memcg_stat_strings[i].total_name, mystat.stat[i]);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004309 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004310
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004311#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004312 {
4313 int nid, zid;
4314 struct mem_cgroup_per_zone *mz;
4315 unsigned long recent_rotated[2] = {0, 0};
4316 unsigned long recent_scanned[2] = {0, 0};
4317
4318 for_each_online_node(nid)
4319 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
4320 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
4321
4322 recent_rotated[0] +=
4323 mz->reclaim_stat.recent_rotated[0];
4324 recent_rotated[1] +=
4325 mz->reclaim_stat.recent_rotated[1];
4326 recent_scanned[0] +=
4327 mz->reclaim_stat.recent_scanned[0];
4328 recent_scanned[1] +=
4329 mz->reclaim_stat.recent_scanned[1];
4330 }
4331 cb->fill(cb, "recent_rotated_anon", recent_rotated[0]);
4332 cb->fill(cb, "recent_rotated_file", recent_rotated[1]);
4333 cb->fill(cb, "recent_scanned_anon", recent_scanned[0]);
4334 cb->fill(cb, "recent_scanned_file", recent_scanned[1]);
4335 }
4336#endif
4337
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004338 return 0;
4339}
4340
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004341static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
4342{
4343 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4344
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004345 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004346}
4347
4348static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
4349 u64 val)
4350{
4351 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4352 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08004353
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004354 if (val > 100)
4355 return -EINVAL;
4356
4357 if (cgrp->parent == NULL)
4358 return -EINVAL;
4359
4360 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08004361
4362 cgroup_lock();
4363
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004364 /* If under hierarchy, only empty-root can set this value */
4365 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08004366 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
4367 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004368 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08004369 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004370
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004371 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004372
Li Zefan068b38c2009-01-15 13:51:26 -08004373 cgroup_unlock();
4374
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004375 return 0;
4376}
4377
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004378static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4379{
4380 struct mem_cgroup_threshold_ary *t;
4381 u64 usage;
4382 int i;
4383
4384 rcu_read_lock();
4385 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004386 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004387 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004388 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004389
4390 if (!t)
4391 goto unlock;
4392
4393 usage = mem_cgroup_usage(memcg, swap);
4394
4395 /*
4396 * current_threshold points to threshold just below usage.
4397 * If it's not true, a threshold was crossed after last
4398 * call of __mem_cgroup_threshold().
4399 */
Phil Carmody5407a562010-05-26 14:42:42 -07004400 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004401
4402 /*
4403 * Iterate backward over array of thresholds starting from
4404 * current_threshold and check if a threshold is crossed.
4405 * If none of thresholds below usage is crossed, we read
4406 * only one element of the array here.
4407 */
4408 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4409 eventfd_signal(t->entries[i].eventfd, 1);
4410
4411 /* i = current_threshold + 1 */
4412 i++;
4413
4414 /*
4415 * Iterate forward over array of thresholds starting from
4416 * current_threshold+1 and check if a threshold is crossed.
4417 * If none of thresholds above usage is crossed, we read
4418 * only one element of the array here.
4419 */
4420 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4421 eventfd_signal(t->entries[i].eventfd, 1);
4422
4423 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004424 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004425unlock:
4426 rcu_read_unlock();
4427}
4428
4429static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4430{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004431 while (memcg) {
4432 __mem_cgroup_threshold(memcg, false);
4433 if (do_swap_account)
4434 __mem_cgroup_threshold(memcg, true);
4435
4436 memcg = parent_mem_cgroup(memcg);
4437 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004438}
4439
4440static int compare_thresholds(const void *a, const void *b)
4441{
4442 const struct mem_cgroup_threshold *_a = a;
4443 const struct mem_cgroup_threshold *_b = b;
4444
4445 return _a->threshold - _b->threshold;
4446}
4447
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004448static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004449{
4450 struct mem_cgroup_eventfd_list *ev;
4451
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004452 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004453 eventfd_signal(ev->eventfd, 1);
4454 return 0;
4455}
4456
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004457static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004458{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004459 struct mem_cgroup *iter;
4460
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004461 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004462 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004463}
4464
4465static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4466 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004467{
4468 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004469 struct mem_cgroup_thresholds *thresholds;
4470 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004471 int type = MEMFILE_TYPE(cft->private);
4472 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004473 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004474
4475 ret = res_counter_memparse_write_strategy(args, &threshold);
4476 if (ret)
4477 return ret;
4478
4479 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004480
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004481 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004482 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004483 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004484 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004485 else
4486 BUG();
4487
4488 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4489
4490 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004491 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004492 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4493
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004494 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004495
4496 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004497 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004498 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004499 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004500 ret = -ENOMEM;
4501 goto unlock;
4502 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004503 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004504
4505 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004506 if (thresholds->primary) {
4507 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004508 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004509 }
4510
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004511 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004512 new->entries[size - 1].eventfd = eventfd;
4513 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004514
4515 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004516 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004517 compare_thresholds, NULL);
4518
4519 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004520 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004521 for (i = 0; i < size; i++) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004522 if (new->entries[i].threshold < usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004523 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004524 * new->current_threshold will not be used until
4525 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004526 * it here.
4527 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004528 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004529 }
4530 }
4531
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004532 /* Free old spare buffer and save old primary buffer as spare */
4533 kfree(thresholds->spare);
4534 thresholds->spare = thresholds->primary;
4535
4536 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004537
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004538 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004539 synchronize_rcu();
4540
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004541unlock:
4542 mutex_unlock(&memcg->thresholds_lock);
4543
4544 return ret;
4545}
4546
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004547static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004548 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004549{
4550 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004551 struct mem_cgroup_thresholds *thresholds;
4552 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004553 int type = MEMFILE_TYPE(cft->private);
4554 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004555 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004556
4557 mutex_lock(&memcg->thresholds_lock);
4558 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004559 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004560 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004561 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004562 else
4563 BUG();
4564
4565 /*
4566 * Something went wrong if we trying to unregister a threshold
4567 * if we don't have thresholds
4568 */
4569 BUG_ON(!thresholds);
4570
4571 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4572
4573 /* Check if a threshold crossed before removing */
4574 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4575
4576 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004577 size = 0;
4578 for (i = 0; i < thresholds->primary->size; i++) {
4579 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004580 size++;
4581 }
4582
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004583 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004584
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004585 /* Set thresholds array to NULL if we don't have thresholds */
4586 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004587 kfree(new);
4588 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004589 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004590 }
4591
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004592 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004593
4594 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004595 new->current_threshold = -1;
4596 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4597 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004598 continue;
4599
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004600 new->entries[j] = thresholds->primary->entries[i];
4601 if (new->entries[j].threshold < usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004602 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004603 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004604 * until rcu_assign_pointer(), so it's safe to increment
4605 * it here.
4606 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004607 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004608 }
4609 j++;
4610 }
4611
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004612swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004613 /* Swap primary and spare array */
4614 thresholds->spare = thresholds->primary;
4615 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004616
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004617 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004618 synchronize_rcu();
4619
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004620 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004621}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004622
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004623static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4624 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4625{
4626 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4627 struct mem_cgroup_eventfd_list *event;
4628 int type = MEMFILE_TYPE(cft->private);
4629
4630 BUG_ON(type != _OOM_TYPE);
4631 event = kmalloc(sizeof(*event), GFP_KERNEL);
4632 if (!event)
4633 return -ENOMEM;
4634
Michal Hocko1af8efe2011-07-26 16:08:24 -07004635 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004636
4637 event->eventfd = eventfd;
4638 list_add(&event->list, &memcg->oom_notify);
4639
4640 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004641 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004642 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004643 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004644
4645 return 0;
4646}
4647
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004648static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004649 struct cftype *cft, struct eventfd_ctx *eventfd)
4650{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004651 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004652 struct mem_cgroup_eventfd_list *ev, *tmp;
4653 int type = MEMFILE_TYPE(cft->private);
4654
4655 BUG_ON(type != _OOM_TYPE);
4656
Michal Hocko1af8efe2011-07-26 16:08:24 -07004657 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004658
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004659 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004660 if (ev->eventfd == eventfd) {
4661 list_del(&ev->list);
4662 kfree(ev);
4663 }
4664 }
4665
Michal Hocko1af8efe2011-07-26 16:08:24 -07004666 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004667}
4668
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004669static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4670 struct cftype *cft, struct cgroup_map_cb *cb)
4671{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004672 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004673
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004674 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004675
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004676 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004677 cb->fill(cb, "under_oom", 1);
4678 else
4679 cb->fill(cb, "under_oom", 0);
4680 return 0;
4681}
4682
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004683static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4684 struct cftype *cft, u64 val)
4685{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004686 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004687 struct mem_cgroup *parent;
4688
4689 /* cannot set to root cgroup and only 0 and 1 are allowed */
4690 if (!cgrp->parent || !((val == 0) || (val == 1)))
4691 return -EINVAL;
4692
4693 parent = mem_cgroup_from_cont(cgrp->parent);
4694
4695 cgroup_lock();
4696 /* oom-kill-disable is a flag for subhierarchy. */
4697 if ((parent->use_hierarchy) ||
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004698 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004699 cgroup_unlock();
4700 return -EINVAL;
4701 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004702 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004703 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004704 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004705 cgroup_unlock();
4706 return 0;
4707}
4708
Ying Han406eb0c2011-05-26 16:25:37 -07004709#ifdef CONFIG_NUMA
4710static const struct file_operations mem_control_numa_stat_file_operations = {
4711 .read = seq_read,
4712 .llseek = seq_lseek,
4713 .release = single_release,
4714};
4715
4716static int mem_control_numa_stat_open(struct inode *unused, struct file *file)
4717{
4718 struct cgroup *cont = file->f_dentry->d_parent->d_fsdata;
4719
4720 file->f_op = &mem_control_numa_stat_file_operations;
4721 return single_open(file, mem_control_numa_stat_show, cont);
4722}
4723#endif /* CONFIG_NUMA */
4724
Glauber Costae5671df2011-12-11 21:47:01 +00004725#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
Glauber Costae5671df2011-12-11 21:47:01 +00004726static int register_kmem_files(struct cgroup *cont, struct cgroup_subsys *ss)
4727{
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004728 /*
4729 * Part of this would be better living in a separate allocation
4730 * function, leaving us with just the cgroup tree population work.
4731 * We, however, depend on state such as network's proto_list that
4732 * is only initialized after cgroup creation. I found the less
4733 * cumbersome way to deal with it to defer it all to populate time
4734 */
Glauber Costa65c64ce2011-12-22 01:02:27 +00004735 return mem_cgroup_sockets_init(cont, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00004736};
4737
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004738static void kmem_cgroup_destroy(struct cgroup_subsys *ss,
4739 struct cgroup *cont)
4740{
4741 mem_cgroup_sockets_destroy(cont, ss);
4742}
Glauber Costae5671df2011-12-11 21:47:01 +00004743#else
4744static int register_kmem_files(struct cgroup *cont, struct cgroup_subsys *ss)
4745{
4746 return 0;
4747}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004748
4749static void kmem_cgroup_destroy(struct cgroup_subsys *ss,
4750 struct cgroup *cont)
4751{
4752}
Glauber Costae5671df2011-12-11 21:47:01 +00004753#endif
4754
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004755static struct cftype mem_cgroup_files[] = {
4756 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004757 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004758 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Paul Menage2c3daa72008-04-29 00:59:58 -07004759 .read_u64 = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004760 .register_event = mem_cgroup_usage_register_event,
4761 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004762 },
4763 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004764 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004765 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004766 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004767 .read_u64 = mem_cgroup_read,
4768 },
4769 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004770 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004771 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07004772 .write_string = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -07004773 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004774 },
4775 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004776 .name = "soft_limit_in_bytes",
4777 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4778 .write_string = mem_cgroup_write,
4779 .read_u64 = mem_cgroup_read,
4780 },
4781 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004782 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004783 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004784 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -07004785 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004786 },
Balbir Singh8697d332008-02-07 00:13:59 -08004787 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004788 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -07004789 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004790 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004791 {
4792 .name = "force_empty",
4793 .trigger = mem_cgroup_force_empty_write,
4794 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004795 {
4796 .name = "use_hierarchy",
4797 .write_u64 = mem_cgroup_hierarchy_write,
4798 .read_u64 = mem_cgroup_hierarchy_read,
4799 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004800 {
4801 .name = "swappiness",
4802 .read_u64 = mem_cgroup_swappiness_read,
4803 .write_u64 = mem_cgroup_swappiness_write,
4804 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004805 {
4806 .name = "move_charge_at_immigrate",
4807 .read_u64 = mem_cgroup_move_charge_read,
4808 .write_u64 = mem_cgroup_move_charge_write,
4809 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004810 {
4811 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004812 .read_map = mem_cgroup_oom_control_read,
4813 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004814 .register_event = mem_cgroup_oom_register_event,
4815 .unregister_event = mem_cgroup_oom_unregister_event,
4816 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4817 },
Ying Han406eb0c2011-05-26 16:25:37 -07004818#ifdef CONFIG_NUMA
4819 {
4820 .name = "numa_stat",
4821 .open = mem_control_numa_stat_open,
KAMEZAWA Hiroyuki89577122011-06-15 15:08:41 -07004822 .mode = S_IRUGO,
Ying Han406eb0c2011-05-26 16:25:37 -07004823 },
4824#endif
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004825};
4826
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004827#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
4828static struct cftype memsw_cgroup_files[] = {
4829 {
4830 .name = "memsw.usage_in_bytes",
4831 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
4832 .read_u64 = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004833 .register_event = mem_cgroup_usage_register_event,
4834 .unregister_event = mem_cgroup_usage_unregister_event,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004835 },
4836 {
4837 .name = "memsw.max_usage_in_bytes",
4838 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4839 .trigger = mem_cgroup_reset,
4840 .read_u64 = mem_cgroup_read,
4841 },
4842 {
4843 .name = "memsw.limit_in_bytes",
4844 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4845 .write_string = mem_cgroup_write,
4846 .read_u64 = mem_cgroup_read,
4847 },
4848 {
4849 .name = "memsw.failcnt",
4850 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4851 .trigger = mem_cgroup_reset,
4852 .read_u64 = mem_cgroup_read,
4853 },
4854};
4855
4856static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
4857{
4858 if (!do_swap_account)
4859 return 0;
4860 return cgroup_add_files(cont, ss, memsw_cgroup_files,
4861 ARRAY_SIZE(memsw_cgroup_files));
4862};
4863#else
4864static int register_memsw_files(struct cgroup *cont, struct cgroup_subsys *ss)
4865{
4866 return 0;
4867}
4868#endif
4869
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004870static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004871{
4872 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004873 struct mem_cgroup_per_zone *mz;
Christoph Lameterb69408e2008-10-18 20:26:14 -07004874 enum lru_list l;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004875 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004876 /*
4877 * This routine is called against possible nodes.
4878 * But it's BUG to call kmalloc() against offline node.
4879 *
4880 * TODO: this routine can waste much memory for nodes which will
4881 * never be onlined. It's better to use memory hotplug callback
4882 * function.
4883 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004884 if (!node_state(node, N_NORMAL_MEMORY))
4885 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004886 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004887 if (!pn)
4888 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004889
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004890 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4891 mz = &pn->zoneinfo[zone];
Christoph Lameterb69408e2008-10-18 20:26:14 -07004892 for_each_lru(l)
4893 INIT_LIST_HEAD(&mz->lists[l]);
Balbir Singhf64c3f52009-09-23 15:56:37 -07004894 mz->usage_in_excess = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07004895 mz->on_tree = false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004896 mz->mem = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004897 }
Igor Mammedov0a619e52011-11-02 13:38:21 -07004898 memcg->info.nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004899 return 0;
4900}
4901
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004902static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004903{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004904 kfree(memcg->info.nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004905}
4906
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004907static struct mem_cgroup *mem_cgroup_alloc(void)
4908{
4909 struct mem_cgroup *mem;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004910 int size = sizeof(struct mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004911
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004912 /* Can be very big if MAX_NUMNODES is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08004913 if (size < PAGE_SIZE)
Jesper Juhl17295c82011-01-13 15:47:42 -08004914 mem = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004915 else
Jesper Juhl17295c82011-01-13 15:47:42 -08004916 mem = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004917
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004918 if (!mem)
4919 return NULL;
4920
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004921 mem->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004922 if (!mem->stat)
4923 goto out_free;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07004924 spin_lock_init(&mem->pcp_counter_lock);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004925 return mem;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004926
4927out_free:
4928 if (size < PAGE_SIZE)
4929 kfree(mem);
4930 else
4931 vfree(mem);
4932 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004933}
4934
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004935/*
4936 * At destroying mem_cgroup, references from swap_cgroup can remain.
4937 * (scanning all at force_empty is too costly...)
4938 *
4939 * Instead of clearing all references at force_empty, we remember
4940 * the number of reference from swap_cgroup and free mem_cgroup when
4941 * it goes down to 0.
4942 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004943 * Removal of cgroup itself succeeds regardless of refs from swap.
4944 */
4945
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004946static void __mem_cgroup_free(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004947{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004948 int node;
4949
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004950 mem_cgroup_remove_from_trees(memcg);
4951 free_css_id(&mem_cgroup_subsys, &memcg->css);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004952
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004953 for_each_node_state(node, N_POSSIBLE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004954 free_mem_cgroup_per_zone_info(memcg, node);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004955
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004956 free_percpu(memcg->stat);
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004957 if (sizeof(struct mem_cgroup) < PAGE_SIZE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004958 kfree(memcg);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004959 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004960 vfree(memcg);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004961}
4962
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004963static void mem_cgroup_get(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004964{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004965 atomic_inc(&memcg->refcnt);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004966}
4967
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004968static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004969{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004970 if (atomic_sub_and_test(count, &memcg->refcnt)) {
4971 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4972 __mem_cgroup_free(memcg);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004973 if (parent)
4974 mem_cgroup_put(parent);
4975 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004976}
4977
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004978static void mem_cgroup_put(struct mem_cgroup *memcg)
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004979{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004980 __mem_cgroup_put(memcg, 1);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004981}
4982
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004983/*
4984 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4985 */
Glauber Costae1aab162011-12-11 21:47:03 +00004986struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004987{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004988 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004989 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004990 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004991}
Glauber Costae1aab162011-12-11 21:47:03 +00004992EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004993
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004994#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
4995static void __init enable_swap_cgroup(void)
4996{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004997 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004998 do_swap_account = 1;
4999}
5000#else
5001static void __init enable_swap_cgroup(void)
5002{
5003}
5004#endif
5005
Balbir Singhf64c3f52009-09-23 15:56:37 -07005006static int mem_cgroup_soft_limit_tree_init(void)
5007{
5008 struct mem_cgroup_tree_per_node *rtpn;
5009 struct mem_cgroup_tree_per_zone *rtpz;
5010 int tmp, node, zone;
5011
5012 for_each_node_state(node, N_POSSIBLE) {
5013 tmp = node;
5014 if (!node_state(node, N_NORMAL_MEMORY))
5015 tmp = -1;
5016 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
5017 if (!rtpn)
5018 return 1;
5019
5020 soft_limit_tree.rb_tree_per_node[node] = rtpn;
5021
5022 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5023 rtpz = &rtpn->rb_tree_per_zone[zone];
5024 rtpz->rb_root = RB_ROOT;
5025 spin_lock_init(&rtpz->lock);
5026 }
5027 }
5028 return 0;
5029}
5030
Li Zefan0eb253e2009-01-15 13:51:25 -08005031static struct cgroup_subsys_state * __ref
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005032mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
5033{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005034 struct mem_cgroup *memcg, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005035 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005036 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005037
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005038 memcg = mem_cgroup_alloc();
5039 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005040 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005041
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005042 for_each_node_state(node, N_POSSIBLE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005043 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005044 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005045
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005046 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005047 if (cont->parent == NULL) {
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08005048 int cpu;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005049 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005050 parent = NULL;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005051 if (mem_cgroup_soft_limit_tree_init())
5052 goto free_out;
Hillf Dantona41c58a2011-12-19 17:11:57 -08005053 root_mem_cgroup = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08005054 for_each_possible_cpu(cpu) {
5055 struct memcg_stock_pcp *stock =
5056 &per_cpu(memcg_stock, cpu);
5057 INIT_WORK(&stock->work, drain_local_stock);
5058 }
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07005059 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005060 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005061 parent = mem_cgroup_from_cont(cont->parent);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005062 memcg->use_hierarchy = parent->use_hierarchy;
5063 memcg->oom_kill_disable = parent->oom_kill_disable;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005064 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005065
Balbir Singh18f59ea2009-01-07 18:08:07 -08005066 if (parent && parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005067 res_counter_init(&memcg->res, &parent->res);
5068 res_counter_init(&memcg->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005069 /*
5070 * We increment refcnt of the parent to ensure that we can
5071 * safely access it on res_counter_charge/uncharge.
5072 * This refcnt will be decremented when freeing this
5073 * mem_cgroup(see mem_cgroup_put).
5074 */
5075 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005076 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005077 res_counter_init(&memcg->res, NULL);
5078 res_counter_init(&memcg->memsw, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005079 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005080 memcg->last_scanned_child = 0;
5081 memcg->last_scanned_node = MAX_NUMNODES;
5082 INIT_LIST_HEAD(&memcg->oom_notify);
Balbir Singh6d61ef42009-01-07 18:08:06 -08005083
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005084 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005085 memcg->swappiness = mem_cgroup_swappiness(parent);
5086 atomic_set(&memcg->refcnt, 1);
5087 memcg->move_charge_at_immigrate = 0;
5088 mutex_init(&memcg->thresholds_lock);
5089 return &memcg->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005090free_out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005091 __mem_cgroup_free(memcg);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005092 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005093}
5094
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005095static int mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005096 struct cgroup *cont)
5097{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005098 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005099
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005100 return mem_cgroup_force_empty(memcg, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005101}
5102
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005103static void mem_cgroup_destroy(struct cgroup_subsys *ss,
5104 struct cgroup *cont)
5105{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005106 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005107
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005108 kmem_cgroup_destroy(ss, cont);
5109
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005110 mem_cgroup_put(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005111}
5112
5113static int mem_cgroup_populate(struct cgroup_subsys *ss,
5114 struct cgroup *cont)
5115{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005116 int ret;
5117
5118 ret = cgroup_add_files(cont, ss, mem_cgroup_files,
5119 ARRAY_SIZE(mem_cgroup_files));
5120
5121 if (!ret)
5122 ret = register_memsw_files(cont, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00005123
5124 if (!ret)
5125 ret = register_kmem_files(cont, ss);
5126
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005127 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005128}
5129
Daisuke Nishimura02491442010-03-10 15:22:17 -08005130#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005131/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005132#define PRECHARGE_COUNT_AT_ONCE 256
5133static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005134{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005135 int ret = 0;
5136 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005137 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005138
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005139 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005140 mc.precharge += count;
5141 /* we don't need css_get for root */
5142 return ret;
5143 }
5144 /* try to charge at once */
5145 if (count > 1) {
5146 struct res_counter *dummy;
5147 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005148 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005149 * by cgroup_lock_live_cgroup() that it is not removed and we
5150 * are still under the same cgroup_mutex. So we can postpone
5151 * css_get().
5152 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005153 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005154 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005155 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005156 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005157 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005158 goto one_by_one;
5159 }
5160 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005161 return ret;
5162 }
5163one_by_one:
5164 /* fall back to one by one charge */
5165 while (count--) {
5166 if (signal_pending(current)) {
5167 ret = -EINTR;
5168 break;
5169 }
5170 if (!batch_count--) {
5171 batch_count = PRECHARGE_COUNT_AT_ONCE;
5172 cond_resched();
5173 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005174 ret = __mem_cgroup_try_charge(NULL,
5175 GFP_KERNEL, 1, &memcg, false);
5176 if (ret || !memcg)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005177 /* mem_cgroup_clear_mc() will do uncharge later */
5178 return -ENOMEM;
5179 mc.precharge++;
5180 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005181 return ret;
5182}
5183
5184/**
5185 * is_target_pte_for_mc - check a pte whether it is valid for move charge
5186 * @vma: the vma the pte to be checked belongs
5187 * @addr: the address corresponding to the pte to be checked
5188 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005189 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005190 *
5191 * Returns
5192 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5193 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5194 * move charge. if @target is not NULL, the page is stored in target->page
5195 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005196 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5197 * target for charge migration. if @target is not NULL, the entry is stored
5198 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005199 *
5200 * Called with pte lock held.
5201 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005202union mc_target {
5203 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005204 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005205};
5206
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005207enum mc_target_type {
5208 MC_TARGET_NONE, /* not used */
5209 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005210 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005211};
5212
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005213static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5214 unsigned long addr, pte_t ptent)
5215{
5216 struct page *page = vm_normal_page(vma, addr, ptent);
5217
5218 if (!page || !page_mapped(page))
5219 return NULL;
5220 if (PageAnon(page)) {
5221 /* we don't move shared anon */
5222 if (!move_anon() || page_mapcount(page) > 2)
5223 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005224 } else if (!move_file())
5225 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005226 return NULL;
5227 if (!get_page_unless_zero(page))
5228 return NULL;
5229
5230 return page;
5231}
5232
5233static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5234 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5235{
5236 int usage_count;
5237 struct page *page = NULL;
5238 swp_entry_t ent = pte_to_swp_entry(ptent);
5239
5240 if (!move_anon() || non_swap_entry(ent))
5241 return NULL;
5242 usage_count = mem_cgroup_count_swap_user(ent, &page);
5243 if (usage_count > 1) { /* we don't move shared anon */
5244 if (page)
5245 put_page(page);
5246 return NULL;
5247 }
5248 if (do_swap_account)
5249 entry->val = ent.val;
5250
5251 return page;
5252}
5253
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005254static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5255 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5256{
5257 struct page *page = NULL;
5258 struct inode *inode;
5259 struct address_space *mapping;
5260 pgoff_t pgoff;
5261
5262 if (!vma->vm_file) /* anonymous vma */
5263 return NULL;
5264 if (!move_file())
5265 return NULL;
5266
5267 inode = vma->vm_file->f_path.dentry->d_inode;
5268 mapping = vma->vm_file->f_mapping;
5269 if (pte_none(ptent))
5270 pgoff = linear_page_index(vma, addr);
5271 else /* pte_file(ptent) is true */
5272 pgoff = pte_to_pgoff(ptent);
5273
5274 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005275 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005276
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005277#ifdef CONFIG_SWAP
5278 /* shmem/tmpfs may report page out on swap: account for that too. */
5279 if (radix_tree_exceptional_entry(page)) {
5280 swp_entry_t swap = radix_to_swp_entry(page);
5281 if (do_swap_account)
5282 *entry = swap;
5283 page = find_get_page(&swapper_space, swap.val);
5284 }
5285#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005286 return page;
5287}
5288
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005289static int is_target_pte_for_mc(struct vm_area_struct *vma,
5290 unsigned long addr, pte_t ptent, union mc_target *target)
5291{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005292 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005293 struct page_cgroup *pc;
5294 int ret = 0;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005295 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005296
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005297 if (pte_present(ptent))
5298 page = mc_handle_present_pte(vma, addr, ptent);
5299 else if (is_swap_pte(ptent))
5300 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005301 else if (pte_none(ptent) || pte_file(ptent))
5302 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005303
5304 if (!page && !ent.val)
Daisuke Nishimura02491442010-03-10 15:22:17 -08005305 return 0;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005306 if (page) {
5307 pc = lookup_page_cgroup(page);
5308 /*
5309 * Do only loose check w/o page_cgroup lock.
5310 * mem_cgroup_move_account() checks the pc is valid or not under
5311 * the lock.
5312 */
5313 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5314 ret = MC_TARGET_PAGE;
5315 if (target)
5316 target->page = page;
5317 }
5318 if (!ret || !target)
5319 put_page(page);
5320 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005321 /* There is a swap entry and a page doesn't exist or isn't charged */
5322 if (ent.val && !ret &&
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005323 css_id(&mc.from->css) == lookup_swap_cgroup(ent)) {
5324 ret = MC_TARGET_SWAP;
5325 if (target)
5326 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005327 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005328 return ret;
5329}
5330
5331static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5332 unsigned long addr, unsigned long end,
5333 struct mm_walk *walk)
5334{
5335 struct vm_area_struct *vma = walk->private;
5336 pte_t *pte;
5337 spinlock_t *ptl;
5338
Dave Hansen03319322011-03-22 16:32:56 -07005339 split_huge_page_pmd(walk->mm, pmd);
5340
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005341 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5342 for (; addr != end; pte++, addr += PAGE_SIZE)
5343 if (is_target_pte_for_mc(vma, addr, *pte, NULL))
5344 mc.precharge++; /* increment precharge temporarily */
5345 pte_unmap_unlock(pte - 1, ptl);
5346 cond_resched();
5347
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005348 return 0;
5349}
5350
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005351static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5352{
5353 unsigned long precharge;
5354 struct vm_area_struct *vma;
5355
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005356 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005357 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5358 struct mm_walk mem_cgroup_count_precharge_walk = {
5359 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5360 .mm = mm,
5361 .private = vma,
5362 };
5363 if (is_vm_hugetlb_page(vma))
5364 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005365 walk_page_range(vma->vm_start, vma->vm_end,
5366 &mem_cgroup_count_precharge_walk);
5367 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005368 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005369
5370 precharge = mc.precharge;
5371 mc.precharge = 0;
5372
5373 return precharge;
5374}
5375
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005376static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5377{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005378 unsigned long precharge = mem_cgroup_count_precharge(mm);
5379
5380 VM_BUG_ON(mc.moving_task);
5381 mc.moving_task = current;
5382 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005383}
5384
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005385/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5386static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005387{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005388 struct mem_cgroup *from = mc.from;
5389 struct mem_cgroup *to = mc.to;
5390
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005391 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005392 if (mc.precharge) {
5393 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
5394 mc.precharge = 0;
5395 }
5396 /*
5397 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5398 * we must uncharge here.
5399 */
5400 if (mc.moved_charge) {
5401 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
5402 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005403 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005404 /* we must fixup refcnts and charges */
5405 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005406 /* uncharge swap account from the old cgroup */
5407 if (!mem_cgroup_is_root(mc.from))
5408 res_counter_uncharge(&mc.from->memsw,
5409 PAGE_SIZE * mc.moved_swap);
5410 __mem_cgroup_put(mc.from, mc.moved_swap);
5411
5412 if (!mem_cgroup_is_root(mc.to)) {
5413 /*
5414 * we charged both to->res and to->memsw, so we should
5415 * uncharge to->res.
5416 */
5417 res_counter_uncharge(&mc.to->res,
5418 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005419 }
5420 /* we've already done mem_cgroup_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005421 mc.moved_swap = 0;
5422 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005423 memcg_oom_recover(from);
5424 memcg_oom_recover(to);
5425 wake_up_all(&mc.waitq);
5426}
5427
5428static void mem_cgroup_clear_mc(void)
5429{
5430 struct mem_cgroup *from = mc.from;
5431
5432 /*
5433 * we must clear moving_task before waking up waiters at the end of
5434 * task migration.
5435 */
5436 mc.moving_task = NULL;
5437 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005438 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005439 mc.from = NULL;
5440 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005441 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005442 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005443}
5444
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005445static int mem_cgroup_can_attach(struct cgroup_subsys *ss,
5446 struct cgroup *cgroup,
Tejun Heo2f7ee562011-12-12 18:12:21 -08005447 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005448{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005449 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005450 int ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005451 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005452
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005453 if (memcg->move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005454 struct mm_struct *mm;
5455 struct mem_cgroup *from = mem_cgroup_from_task(p);
5456
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005457 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005458
5459 mm = get_task_mm(p);
5460 if (!mm)
5461 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005462 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005463 if (mm->owner == p) {
5464 VM_BUG_ON(mc.from);
5465 VM_BUG_ON(mc.to);
5466 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005467 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005468 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005469 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005470 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005471 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005472 mc.to = memcg;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005473 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005474 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005475
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005476 ret = mem_cgroup_precharge_mc(mm);
5477 if (ret)
5478 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005479 }
5480 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005481 }
5482 return ret;
5483}
5484
5485static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss,
5486 struct cgroup *cgroup,
Tejun Heo2f7ee562011-12-12 18:12:21 -08005487 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005488{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005489 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005490}
5491
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005492static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5493 unsigned long addr, unsigned long end,
5494 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005495{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005496 int ret = 0;
5497 struct vm_area_struct *vma = walk->private;
5498 pte_t *pte;
5499 spinlock_t *ptl;
5500
Dave Hansen03319322011-03-22 16:32:56 -07005501 split_huge_page_pmd(walk->mm, pmd);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005502retry:
5503 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5504 for (; addr != end; addr += PAGE_SIZE) {
5505 pte_t ptent = *(pte++);
5506 union mc_target target;
5507 int type;
5508 struct page *page;
5509 struct page_cgroup *pc;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005510 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005511
5512 if (!mc.precharge)
5513 break;
5514
5515 type = is_target_pte_for_mc(vma, addr, ptent, &target);
5516 switch (type) {
5517 case MC_TARGET_PAGE:
5518 page = target.page;
5519 if (isolate_lru_page(page))
5520 goto put;
5521 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07005522 if (!mem_cgroup_move_account(page, 1, pc,
5523 mc.from, mc.to, false)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005524 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005525 /* we uncharge from mc.from later. */
5526 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005527 }
5528 putback_lru_page(page);
5529put: /* is_target_pte_for_mc() gets the page */
5530 put_page(page);
5531 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005532 case MC_TARGET_SWAP:
5533 ent = target.ent;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005534 if (!mem_cgroup_move_swap_account(ent,
5535 mc.from, mc.to, false)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005536 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005537 /* we fixup refcnts and charges later. */
5538 mc.moved_swap++;
5539 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08005540 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005541 default:
5542 break;
5543 }
5544 }
5545 pte_unmap_unlock(pte - 1, ptl);
5546 cond_resched();
5547
5548 if (addr != end) {
5549 /*
5550 * We have consumed all precharges we got in can_attach().
5551 * We try charge one by one, but don't do any additional
5552 * charges to mc.to if we have failed in charge once in attach()
5553 * phase.
5554 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005555 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005556 if (!ret)
5557 goto retry;
5558 }
5559
5560 return ret;
5561}
5562
5563static void mem_cgroup_move_charge(struct mm_struct *mm)
5564{
5565 struct vm_area_struct *vma;
5566
5567 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005568retry:
5569 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5570 /*
5571 * Someone who are holding the mmap_sem might be waiting in
5572 * waitq. So we cancel all extra charges, wake up all waiters,
5573 * and retry. Because we cancel precharges, we might not be able
5574 * to move enough charges, but moving charge is a best-effort
5575 * feature anyway, so it wouldn't be a big problem.
5576 */
5577 __mem_cgroup_clear_mc();
5578 cond_resched();
5579 goto retry;
5580 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005581 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5582 int ret;
5583 struct mm_walk mem_cgroup_move_charge_walk = {
5584 .pmd_entry = mem_cgroup_move_charge_pte_range,
5585 .mm = mm,
5586 .private = vma,
5587 };
5588 if (is_vm_hugetlb_page(vma))
5589 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005590 ret = walk_page_range(vma->vm_start, vma->vm_end,
5591 &mem_cgroup_move_charge_walk);
5592 if (ret)
5593 /*
5594 * means we have consumed all precharges and failed in
5595 * doing additional charge. Just abandon here.
5596 */
5597 break;
5598 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005599 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005600}
5601
Balbir Singh67e465a2008-02-07 00:13:54 -08005602static void mem_cgroup_move_task(struct cgroup_subsys *ss,
5603 struct cgroup *cont,
Tejun Heo2f7ee562011-12-12 18:12:21 -08005604 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08005605{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005606 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005607 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005608
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005609 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005610 if (mc.to)
5611 mem_cgroup_move_charge(mm);
5612 put_swap_token(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005613 mmput(mm);
5614 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005615 if (mc.to)
5616 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005617}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005618#else /* !CONFIG_MMU */
5619static int mem_cgroup_can_attach(struct cgroup_subsys *ss,
5620 struct cgroup *cgroup,
Tejun Heo2f7ee562011-12-12 18:12:21 -08005621 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005622{
5623 return 0;
5624}
5625static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss,
5626 struct cgroup *cgroup,
Tejun Heo2f7ee562011-12-12 18:12:21 -08005627 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005628{
5629}
5630static void mem_cgroup_move_task(struct cgroup_subsys *ss,
5631 struct cgroup *cont,
Tejun Heo2f7ee562011-12-12 18:12:21 -08005632 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005633{
5634}
5635#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005636
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005637struct cgroup_subsys mem_cgroup_subsys = {
5638 .name = "memory",
5639 .subsys_id = mem_cgroup_subsys_id,
5640 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005641 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005642 .destroy = mem_cgroup_destroy,
5643 .populate = mem_cgroup_populate,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005644 .can_attach = mem_cgroup_can_attach,
5645 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005646 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005647 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005648 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005649};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005650
5651#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08005652static int __init enable_swap_account(char *s)
5653{
5654 /* consider enabled if no parameter or 1 is given */
Michal Hockoa2c89902011-05-24 17:12:50 -07005655 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005656 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07005657 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005658 really_do_swap_account = 0;
5659 return 1;
5660}
Michal Hockoa2c89902011-05-24 17:12:50 -07005661__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005662
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005663#endif