blob: 7acf43bf04a270cf2bf90f342c66142d1c5cf675 [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>
Michal Hocko4bd2c1e2012-10-08 16:33:10 -070054#include <net/ip.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +000055#include <net/tcp_memcontrol.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080056
Balbir Singh8697d332008-02-07 00:13:59 -080057#include <asm/uaccess.h>
58
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070059#include <trace/events/vmscan.h>
60
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070061struct cgroup_subsys mem_cgroup_subsys __read_mostly;
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070062#define MEM_CGROUP_RECLAIM_RETRIES 5
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -070063static struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080064
Andrew Mortonc255a452012-07-31 16:43:02 -070065#ifdef CONFIG_MEMCG_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070066/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080067int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080068
69/* for remember boot option*/
Andrew Mortonc255a452012-07-31 16:43:02 -070070#ifdef CONFIG_MEMCG_SWAP_ENABLED
Michal Hockoa42c3902010-11-24 12:57:08 -080071static int really_do_swap_account __initdata = 1;
72#else
73static int really_do_swap_account __initdata = 0;
74#endif
75
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080076#else
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -070077#define do_swap_account 0
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080078#endif
79
80
Balbir Singh8cdea7c2008-02-07 00:13:50 -080081/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080082 * Statistics for memory cgroup.
83 */
84enum mem_cgroup_stat_index {
85 /*
86 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
87 */
88 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
Balbir Singhd69b0422009-06-17 16:26:34 -070089 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -080090 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -070091 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080092 MEM_CGROUP_STAT_NSTATS,
93};
94
Johannes Weineraf7c4b02012-05-29 15:07:08 -070095static const char * const mem_cgroup_stat_names[] = {
96 "cache",
97 "rss",
98 "mapped_file",
99 "swap",
100};
101
Johannes Weinere9f89742011-03-23 16:42:37 -0700102enum mem_cgroup_events_index {
103 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
104 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -0700105 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
106 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700107 MEM_CGROUP_EVENTS_NSTATS,
108};
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700109
110static const char * const mem_cgroup_events_names[] = {
111 "pgpgin",
112 "pgpgout",
113 "pgfault",
114 "pgmajfault",
115};
116
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700117/*
118 * Per memcg event counter is incremented at every pagein/pageout. With THP,
119 * it will be incremated by the number of pages. This counter is used for
120 * for trigger some periodic events. This is straightforward and better
121 * than using jiffies etc. to handle periodic memcg event.
122 */
123enum mem_cgroup_events_target {
124 MEM_CGROUP_TARGET_THRESH,
125 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700126 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700127 MEM_CGROUP_NTARGETS,
128};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700129#define THRESHOLDS_EVENTS_TARGET 128
130#define SOFTLIMIT_EVENTS_TARGET 1024
131#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700132
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800133struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700134 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700135 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700136 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700137 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800138};
139
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800140struct mem_cgroup_reclaim_iter {
141 /* css_id of the last scanned hierarchy member */
142 int position;
143 /* scan generation, increased every round-trip */
144 unsigned int generation;
145};
146
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800147/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800148 * per-zone information in memory controller.
149 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800150struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800151 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700152 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800153
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800154 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
155
Balbir Singhf64c3f52009-09-23 15:56:37 -0700156 struct rb_node tree_node; /* RB tree node */
157 unsigned long long usage_in_excess;/* Set to the value by which */
158 /* the soft limit is exceeded*/
159 bool on_tree;
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700160 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700161 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800162};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800163
164struct mem_cgroup_per_node {
165 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
166};
167
168struct mem_cgroup_lru_info {
169 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
170};
171
172/*
Balbir Singhf64c3f52009-09-23 15:56:37 -0700173 * Cgroups above their limits are maintained in a RB-Tree, independent of
174 * their hierarchy representation
175 */
176
177struct mem_cgroup_tree_per_zone {
178 struct rb_root rb_root;
179 spinlock_t lock;
180};
181
182struct mem_cgroup_tree_per_node {
183 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
184};
185
186struct mem_cgroup_tree {
187 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
188};
189
190static struct mem_cgroup_tree soft_limit_tree __read_mostly;
191
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800192struct mem_cgroup_threshold {
193 struct eventfd_ctx *eventfd;
194 u64 threshold;
195};
196
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700197/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800198struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700199 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700200 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800201 /* Size of entries[] */
202 unsigned int size;
203 /* Array of thresholds */
204 struct mem_cgroup_threshold entries[0];
205};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700206
207struct mem_cgroup_thresholds {
208 /* Primary thresholds array */
209 struct mem_cgroup_threshold_ary *primary;
210 /*
211 * Spare threshold array.
212 * This is needed to make mem_cgroup_unregister_event() "never fail".
213 * It must be able to store at least primary->size - 1 entries.
214 */
215 struct mem_cgroup_threshold_ary *spare;
216};
217
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700218/* for OOM */
219struct mem_cgroup_eventfd_list {
220 struct list_head list;
221 struct eventfd_ctx *eventfd;
222};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800223
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700224static void mem_cgroup_threshold(struct mem_cgroup *memcg);
225static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800226
Balbir Singhf64c3f52009-09-23 15:56:37 -0700227/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800228 * The memory controller data structure. The memory controller controls both
229 * page cache and RSS per cgroup. We would eventually like to provide
230 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
231 * to help the administrator determine what knobs to tune.
232 *
233 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800234 * we hit the water mark. May be even add a low water mark, such that
235 * no reclaim occurs from a cgroup at it's low water mark, this is
236 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800237 */
238struct mem_cgroup {
239 struct cgroup_subsys_state css;
240 /*
241 * the counter to account for memory usage
242 */
243 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700244
245 union {
246 /*
247 * the counter to account for mem+swap usage.
248 */
249 struct res_counter memsw;
250
251 /*
252 * rcu_freeing is used only when freeing struct mem_cgroup,
253 * so put it into a union to avoid wasting more memory.
254 * It must be disjoint from the css field. It could be
255 * in a union with the res field, but res plays a much
256 * larger part in mem_cgroup life than memsw, and might
257 * be of interest, even at time of free, when debugging.
258 * So share rcu_head with the less interesting memsw.
259 */
260 struct rcu_head rcu_freeing;
261 /*
Glauber Costa3afe36b2012-05-29 15:07:10 -0700262 * We also need some space for a worker in deferred freeing.
263 * By the time we call it, rcu_freeing is no longer in use.
Hugh Dickins59927fb2012-03-15 15:17:07 -0700264 */
265 struct work_struct work_freeing;
266 };
267
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800268 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800269 * Per cgroup active and inactive list, similar to the
270 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800271 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800272 struct mem_cgroup_lru_info info;
Ying Han889976d2011-05-26 16:25:33 -0700273 int last_scanned_node;
274#if MAX_NUMNODES > 1
275 nodemask_t scan_nodes;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700276 atomic_t numainfo_events;
277 atomic_t numainfo_updating;
Ying Han889976d2011-05-26 16:25:33 -0700278#endif
Balbir Singh18f59ea2009-01-07 18:08:07 -0800279 /*
280 * Should the accounting and control be hierarchical, per subtree?
281 */
282 bool use_hierarchy;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700283
284 bool oom_lock;
285 atomic_t under_oom;
286
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800287 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800288
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700289 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700290 /* OOM-Killer disable */
291 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800292
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700293 /* set when res.limit == memsw.limit */
294 bool memsw_is_minimum;
295
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800296 /* protect arrays of thresholds */
297 struct mutex thresholds_lock;
298
299 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700300 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700301
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800302 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700303 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700304
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700305 /* For oom notifier event fd */
306 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700307
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800308 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800309 * Should we move charges of a task when a task is moved into this
310 * mem_cgroup ? And what type of charges should we move ?
311 */
312 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800313 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700314 * set > 0 if pages under this cgroup are moving to other cgroup.
315 */
316 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700317 /* taken only while moving_account > 0 */
318 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700319 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800320 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800321 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700322 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700323 /*
324 * used when a cpu is offlined or other synchronizations
325 * See mem_cgroup_read_stat().
326 */
327 struct mem_cgroup_stat_cpu nocpu_base;
328 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000329
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700330#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000331 struct tcp_memcontrol tcp_mem;
332#endif
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800333};
334
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800335/* Stuffs for move charges at task migration. */
336/*
337 * Types of charges to be moved. "move_charge_at_immitgrate" is treated as a
338 * left-shifted bitmap of these types.
339 */
340enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800341 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700342 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800343 NR_MOVE_TYPE,
344};
345
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800346/* "mc" and its members are protected by cgroup_mutex */
347static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800348 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800349 struct mem_cgroup *from;
350 struct mem_cgroup *to;
351 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800352 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800353 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800354 struct task_struct *moving_task; /* a task moving charges */
355 wait_queue_head_t waitq; /* a waitq for other context */
356} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700357 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800358 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
359};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800360
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700361static bool move_anon(void)
362{
363 return test_bit(MOVE_CHARGE_TYPE_ANON,
364 &mc.to->move_charge_at_immigrate);
365}
366
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700367static bool move_file(void)
368{
369 return test_bit(MOVE_CHARGE_TYPE_FILE,
370 &mc.to->move_charge_at_immigrate);
371}
372
Balbir Singh4e416952009-09-23 15:56:39 -0700373/*
374 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
375 * limit reclaim to prevent infinite loops, if they ever occur.
376 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700377#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
378#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700379
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800380enum charge_type {
381 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700382 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800383 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700384 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700385 NR_CHARGE_TYPE,
386};
387
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800388/* for encoding cft->private value on file */
Glauber Costa65c64ce2011-12-22 01:02:27 +0000389#define _MEM (0)
390#define _MEMSWAP (1)
391#define _OOM_TYPE (2)
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700392#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
393#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800394#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700395/* Used for OOM nofiier */
396#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800397
Balbir Singh75822b42009-09-23 15:56:38 -0700398/*
399 * Reclaim flags for mem_cgroup_hierarchical_reclaim
400 */
401#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
402#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
403#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
404#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
405
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700406static void mem_cgroup_get(struct mem_cgroup *memcg);
407static void mem_cgroup_put(struct mem_cgroup *memcg);
Glauber Costae1aab162011-12-11 21:47:03 +0000408
Wanpeng Lib2145142012-07-31 16:46:01 -0700409static inline
410struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
411{
412 return container_of(s, struct mem_cgroup, css);
413}
414
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700415static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
416{
417 return (memcg == root_mem_cgroup);
418}
419
Glauber Costae1aab162011-12-11 21:47:03 +0000420/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700421#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000422
Glauber Costae1aab162011-12-11 21:47:03 +0000423void sock_update_memcg(struct sock *sk)
424{
Glauber Costa376be5f2012-01-20 04:57:14 +0000425 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000426 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700427 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000428
429 BUG_ON(!sk->sk_prot->proto_cgroup);
430
Glauber Costaf3f511e2012-01-05 20:16:39 +0000431 /* Socket cloning can throw us here with sk_cgrp already
432 * filled. It won't however, necessarily happen from
433 * process context. So the test for root memcg given
434 * the current task's memcg won't help us in this case.
435 *
436 * Respecting the original socket's memcg is a better
437 * decision in this case.
438 */
439 if (sk->sk_cgrp) {
440 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
441 mem_cgroup_get(sk->sk_cgrp->memcg);
442 return;
443 }
444
Glauber Costae1aab162011-12-11 21:47:03 +0000445 rcu_read_lock();
446 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700447 cg_proto = sk->sk_prot->proto_cgroup(memcg);
448 if (!mem_cgroup_is_root(memcg) && memcg_proto_active(cg_proto)) {
Glauber Costae1aab162011-12-11 21:47:03 +0000449 mem_cgroup_get(memcg);
Glauber Costa3f134612012-05-29 15:07:11 -0700450 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000451 }
452 rcu_read_unlock();
453 }
454}
455EXPORT_SYMBOL(sock_update_memcg);
456
457void sock_release_memcg(struct sock *sk)
458{
Glauber Costa376be5f2012-01-20 04:57:14 +0000459 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000460 struct mem_cgroup *memcg;
461 WARN_ON(!sk->sk_cgrp->memcg);
462 memcg = sk->sk_cgrp->memcg;
463 mem_cgroup_put(memcg);
464 }
465}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000466
467struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
468{
469 if (!memcg || mem_cgroup_is_root(memcg))
470 return NULL;
471
472 return &memcg->tcp_mem.cg_proto;
473}
474EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000475
Glauber Costa3f134612012-05-29 15:07:11 -0700476static void disarm_sock_keys(struct mem_cgroup *memcg)
477{
478 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
479 return;
480 static_key_slow_dec(&memcg_socket_limit_enabled);
481}
482#else
483static void disarm_sock_keys(struct mem_cgroup *memcg)
484{
485}
486#endif
487
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700488static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800489
Balbir Singhf64c3f52009-09-23 15:56:37 -0700490static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700491mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700492{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700493 return &memcg->info.nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700494}
495
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700496struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100497{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700498 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100499}
500
Balbir Singhf64c3f52009-09-23 15:56:37 -0700501static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700502page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700503{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700504 int nid = page_to_nid(page);
505 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700506
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700507 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700508}
509
510static struct mem_cgroup_tree_per_zone *
511soft_limit_tree_node_zone(int nid, int zid)
512{
513 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
514}
515
516static struct mem_cgroup_tree_per_zone *
517soft_limit_tree_from_page(struct page *page)
518{
519 int nid = page_to_nid(page);
520 int zid = page_zonenum(page);
521
522 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
523}
524
525static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700526__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700527 struct mem_cgroup_per_zone *mz,
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700528 struct mem_cgroup_tree_per_zone *mctz,
529 unsigned long long new_usage_in_excess)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700530{
531 struct rb_node **p = &mctz->rb_root.rb_node;
532 struct rb_node *parent = NULL;
533 struct mem_cgroup_per_zone *mz_node;
534
535 if (mz->on_tree)
536 return;
537
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700538 mz->usage_in_excess = new_usage_in_excess;
539 if (!mz->usage_in_excess)
540 return;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700541 while (*p) {
542 parent = *p;
543 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
544 tree_node);
545 if (mz->usage_in_excess < mz_node->usage_in_excess)
546 p = &(*p)->rb_left;
547 /*
548 * We can't avoid mem cgroups that are over their soft
549 * limit by the same amount
550 */
551 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
552 p = &(*p)->rb_right;
553 }
554 rb_link_node(&mz->tree_node, parent, p);
555 rb_insert_color(&mz->tree_node, &mctz->rb_root);
556 mz->on_tree = true;
Balbir Singh4e416952009-09-23 15:56:39 -0700557}
558
559static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700560__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -0700561 struct mem_cgroup_per_zone *mz,
562 struct mem_cgroup_tree_per_zone *mctz)
563{
564 if (!mz->on_tree)
565 return;
566 rb_erase(&mz->tree_node, &mctz->rb_root);
567 mz->on_tree = false;
568}
569
570static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700571mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700572 struct mem_cgroup_per_zone *mz,
573 struct mem_cgroup_tree_per_zone *mctz)
574{
575 spin_lock(&mctz->lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700576 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700577 spin_unlock(&mctz->lock);
578}
579
Balbir Singhf64c3f52009-09-23 15:56:37 -0700580
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700581static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700582{
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700583 unsigned long long excess;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700584 struct mem_cgroup_per_zone *mz;
585 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700586 int nid = page_to_nid(page);
587 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700588 mctz = soft_limit_tree_from_page(page);
589
590 /*
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700591 * Necessary to update all ancestors when hierarchy is used.
592 * because their event counter is not touched.
Balbir Singhf64c3f52009-09-23 15:56:37 -0700593 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700594 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
595 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
596 excess = res_counter_soft_limit_excess(&memcg->res);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700597 /*
598 * We have to update the tree if mz is on RB-tree or
599 * mem is over its softlimit.
600 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700601 if (excess || mz->on_tree) {
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700602 spin_lock(&mctz->lock);
603 /* if on-tree, remove it */
604 if (mz->on_tree)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700605 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700606 /*
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700607 * Insert again. mz->usage_in_excess will be updated.
608 * If excess is 0, no tree ops.
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700609 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700610 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700611 spin_unlock(&mctz->lock);
612 }
Balbir Singhf64c3f52009-09-23 15:56:37 -0700613 }
614}
615
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700616static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700617{
618 int node, zone;
619 struct mem_cgroup_per_zone *mz;
620 struct mem_cgroup_tree_per_zone *mctz;
621
Bob Liu3ed28fa2012-01-12 17:19:04 -0800622 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -0700623 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700624 mz = mem_cgroup_zoneinfo(memcg, node, zone);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700625 mctz = soft_limit_tree_node_zone(node, zone);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700626 mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700627 }
628 }
629}
630
Balbir Singh4e416952009-09-23 15:56:39 -0700631static struct mem_cgroup_per_zone *
632__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
633{
634 struct rb_node *rightmost = NULL;
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700635 struct mem_cgroup_per_zone *mz;
Balbir Singh4e416952009-09-23 15:56:39 -0700636
637retry:
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700638 mz = NULL;
Balbir Singh4e416952009-09-23 15:56:39 -0700639 rightmost = rb_last(&mctz->rb_root);
640 if (!rightmost)
641 goto done; /* Nothing to reclaim from */
642
643 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
644 /*
645 * Remove the node now but someone else can add it back,
646 * we will to add it back at the end of reclaim to its correct
647 * position in the tree.
648 */
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700649 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
650 if (!res_counter_soft_limit_excess(&mz->memcg->res) ||
651 !css_tryget(&mz->memcg->css))
Balbir Singh4e416952009-09-23 15:56:39 -0700652 goto retry;
653done:
654 return mz;
655}
656
657static struct mem_cgroup_per_zone *
658mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
659{
660 struct mem_cgroup_per_zone *mz;
661
662 spin_lock(&mctz->lock);
663 mz = __mem_cgroup_largest_soft_limit_node(mctz);
664 spin_unlock(&mctz->lock);
665 return mz;
666}
667
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700668/*
669 * Implementation Note: reading percpu statistics for memcg.
670 *
671 * Both of vmstat[] and percpu_counter has threshold and do periodic
672 * synchronization to implement "quick" read. There are trade-off between
673 * reading cost and precision of value. Then, we may have a chance to implement
674 * a periodic synchronizion of counter in memcg's counter.
675 *
676 * But this _read() function is used for user interface now. The user accounts
677 * memory usage by memory cgroup and he _always_ requires exact value because
678 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
679 * have to visit all online cpus and make sum. So, for now, unnecessary
680 * synchronization is not implemented. (just implemented for cpu hotplug)
681 *
682 * If there are kernel internal actions which can make use of some not-exact
683 * value, and reading all cpu value can be performance bottleneck in some
684 * common workload, threashold and synchonization as vmstat[] should be
685 * implemented.
686 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700687static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700688 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800689{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700690 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800691 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800692
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700693 get_online_cpus();
694 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700695 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700696#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700697 spin_lock(&memcg->pcp_counter_lock);
698 val += memcg->nocpu_base.count[idx];
699 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700700#endif
701 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800702 return val;
703}
704
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700705static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700706 bool charge)
707{
708 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700709 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700710}
711
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700712static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700713 enum mem_cgroup_events_index idx)
714{
715 unsigned long val = 0;
716 int cpu;
717
718 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700719 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700720#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700721 spin_lock(&memcg->pcp_counter_lock);
722 val += memcg->nocpu_base.events[idx];
723 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700724#endif
725 return val;
726}
727
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700728static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700729 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800730{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800731 preempt_disable();
732
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700733 /*
734 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
735 * counted as CACHE even if it's on ANON LRU.
736 */
737 if (anon)
738 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700739 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800740 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700741 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700742 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700743
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800744 /* pagein of a big page is an event. So, ignore page size */
745 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700746 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800747 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700748 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800749 nr_pages = -nr_pages; /* for event */
750 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800751
Johannes Weiner13114712012-05-29 15:07:07 -0700752 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800753
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800754 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800755}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800756
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700757unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700758mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700759{
760 struct mem_cgroup_per_zone *mz;
761
762 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
763 return mz->lru_size[lru];
764}
765
766static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700767mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700768 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700769{
770 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700771 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700772 unsigned long ret = 0;
773
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700774 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700775
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700776 for_each_lru(lru) {
777 if (BIT(lru) & lru_mask)
778 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700779 }
780 return ret;
781}
782
783static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700784mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700785 int nid, unsigned int lru_mask)
786{
Ying Han889976d2011-05-26 16:25:33 -0700787 u64 total = 0;
788 int zid;
789
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700790 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700791 total += mem_cgroup_zone_nr_lru_pages(memcg,
792 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700793
Ying Han889976d2011-05-26 16:25:33 -0700794 return total;
795}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700796
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700797static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700798 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800799{
Ying Han889976d2011-05-26 16:25:33 -0700800 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800801 u64 total = 0;
802
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700803 for_each_node_state(nid, N_HIGH_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700804 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800805 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800806}
807
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800808static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
809 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800810{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700811 unsigned long val, next;
812
Johannes Weiner13114712012-05-29 15:07:07 -0700813 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700814 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700815 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800816 if ((long)next - (long)val < 0) {
817 switch (target) {
818 case MEM_CGROUP_TARGET_THRESH:
819 next = val + THRESHOLDS_EVENTS_TARGET;
820 break;
821 case MEM_CGROUP_TARGET_SOFTLIMIT:
822 next = val + SOFTLIMIT_EVENTS_TARGET;
823 break;
824 case MEM_CGROUP_TARGET_NUMAINFO:
825 next = val + NUMAINFO_EVENTS_TARGET;
826 break;
827 default:
828 break;
829 }
830 __this_cpu_write(memcg->stat->targets[target], next);
831 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700832 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800833 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800834}
835
836/*
837 * Check events in order.
838 *
839 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700840static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800841{
Steven Rostedt47994012011-11-02 13:38:33 -0700842 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800843 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800844 if (unlikely(mem_cgroup_event_ratelimit(memcg,
845 MEM_CGROUP_TARGET_THRESH))) {
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800846 bool do_softlimit;
847 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800848
849 do_softlimit = mem_cgroup_event_ratelimit(memcg,
850 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700851#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800852 do_numainfo = mem_cgroup_event_ratelimit(memcg,
853 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700854#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800855 preempt_enable();
856
857 mem_cgroup_threshold(memcg);
858 if (unlikely(do_softlimit))
859 mem_cgroup_update_tree(memcg, page);
860#if MAX_NUMNODES > 1
861 if (unlikely(do_numainfo))
862 atomic_inc(&memcg->numainfo_events);
863#endif
864 } else
865 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800866}
867
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000868struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800869{
Wanpeng Lib2145142012-07-31 16:46:01 -0700870 return mem_cgroup_from_css(
871 cgroup_subsys_state(cont, mem_cgroup_subsys_id));
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800872}
873
Balbir Singhcf475ad2008-04-29 01:00:16 -0700874struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800875{
Balbir Singh31a78f22008-09-28 23:09:31 +0100876 /*
877 * mm_update_next_owner() may clear mm->owner to NULL
878 * if it races with swapoff, page migration, etc.
879 * So this can be called with p == NULL.
880 */
881 if (unlikely(!p))
882 return NULL;
883
Wanpeng Lib2145142012-07-31 16:46:01 -0700884 return mem_cgroup_from_css(task_subsys_state(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800885}
886
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700887struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800888{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700889 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700890
891 if (!mm)
892 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800893 /*
894 * Because we have no locks, mm->owner's may be being moved to other
895 * cgroup. We use css_tryget() here even if this looks
896 * pessimistic (rather than adding locks here).
897 */
898 rcu_read_lock();
899 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700900 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
901 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800902 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700903 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800904 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700905 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800906}
907
Johannes Weiner56600482012-01-12 17:17:59 -0800908/**
909 * mem_cgroup_iter - iterate over memory cgroup hierarchy
910 * @root: hierarchy root
911 * @prev: previously returned memcg, NULL on first invocation
912 * @reclaim: cookie for shared reclaim walks, NULL for full walks
913 *
914 * Returns references to children of the hierarchy below @root, or
915 * @root itself, or %NULL after a full round-trip.
916 *
917 * Caller must pass the return value in @prev on subsequent
918 * invocations for reference counting, or use mem_cgroup_iter_break()
919 * to cancel a hierarchy walk before the round-trip is complete.
920 *
921 * Reclaimers can specify a zone and a priority level in @reclaim to
922 * divide up the memcgs in the hierarchy among all concurrent
923 * reclaimers operating on the same zone and priority.
924 */
925struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
926 struct mem_cgroup *prev,
927 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700928{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800929 struct mem_cgroup *memcg = NULL;
930 int id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700931
Johannes Weiner56600482012-01-12 17:17:59 -0800932 if (mem_cgroup_disabled())
933 return NULL;
934
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700935 if (!root)
936 root = root_mem_cgroup;
937
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800938 if (prev && !reclaim)
939 id = css_id(&prev->css);
940
941 if (prev && prev != root)
942 css_put(&prev->css);
943
944 if (!root->use_hierarchy && root != root_mem_cgroup) {
945 if (prev)
946 return NULL;
947 return root;
948 }
949
950 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800951 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800952 struct cgroup_subsys_state *css;
953
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800954 if (reclaim) {
955 int nid = zone_to_nid(reclaim->zone);
956 int zid = zone_idx(reclaim->zone);
957 struct mem_cgroup_per_zone *mz;
958
959 mz = mem_cgroup_zoneinfo(root, nid, zid);
960 iter = &mz->reclaim_iter[reclaim->priority];
961 if (prev && reclaim->generation != iter->generation)
962 return NULL;
963 id = iter->position;
964 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800965
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700966 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800967 css = css_get_next(&mem_cgroup_subsys, id + 1, &root->css, &id);
968 if (css) {
969 if (css == &root->css || css_tryget(css))
Wanpeng Lib2145142012-07-31 16:46:01 -0700970 memcg = mem_cgroup_from_css(css);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800971 } else
972 id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700973 rcu_read_unlock();
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700974
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800975 if (reclaim) {
976 iter->position = id;
977 if (!css)
978 iter->generation++;
979 else if (!prev && memcg)
980 reclaim->generation = iter->generation;
981 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800982
983 if (prev && !css)
984 return NULL;
985 }
986 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700987}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800988
Johannes Weiner56600482012-01-12 17:17:59 -0800989/**
990 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
991 * @root: hierarchy root
992 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
993 */
994void mem_cgroup_iter_break(struct mem_cgroup *root,
995 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800996{
997 if (!root)
998 root = root_mem_cgroup;
999 if (prev && prev != root)
1000 css_put(&prev->css);
1001}
1002
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001003/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001004 * Iteration constructs for visiting all cgroups (under a tree). If
1005 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1006 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001007 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001008#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001009 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001010 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001011 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001012
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001013#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001014 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001015 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001016 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001017
Ying Han456f9982011-05-26 16:25:38 -07001018void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
1019{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001020 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001021
1022 if (!mm)
1023 return;
1024
1025 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001026 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1027 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001028 goto out;
1029
1030 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001031 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001032 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1033 break;
1034 case PGMAJFAULT:
1035 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001036 break;
1037 default:
1038 BUG();
1039 }
1040out:
1041 rcu_read_unlock();
1042}
1043EXPORT_SYMBOL(mem_cgroup_count_vm_event);
1044
Johannes Weiner925b7672012-01-12 17:18:15 -08001045/**
1046 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1047 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001048 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001049 *
1050 * Returns the lru list vector holding pages for the given @zone and
1051 * @mem. This can be the global zone lruvec, if the memory controller
1052 * is disabled.
1053 */
1054struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1055 struct mem_cgroup *memcg)
1056{
1057 struct mem_cgroup_per_zone *mz;
1058
1059 if (mem_cgroup_disabled())
1060 return &zone->lruvec;
1061
1062 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
1063 return &mz->lruvec;
1064}
1065
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001066/*
1067 * Following LRU functions are allowed to be used without PCG_LOCK.
1068 * Operations are called by routine of global LRU independently from memcg.
1069 * What we have to take care of here is validness of pc->mem_cgroup.
1070 *
1071 * Changes to pc->mem_cgroup happens when
1072 * 1. charge
1073 * 2. moving account
1074 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1075 * It is added to LRU before charge.
1076 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1077 * When moving account, the page is not on LRU. It's isolated.
1078 */
1079
Johannes Weiner925b7672012-01-12 17:18:15 -08001080/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001081 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001082 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001083 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001084 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001085struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001086{
1087 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001088 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001089 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001090
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001091 if (mem_cgroup_disabled())
Johannes Weiner925b7672012-01-12 17:18:15 -08001092 return &zone->lruvec;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001093
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001094 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001095 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001096
1097 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001098 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001099 * an uncharged page off lru does nothing to secure
1100 * its former mem_cgroup from sudden removal.
1101 *
1102 * Our caller holds lru_lock, and PageCgroupUsed is updated
1103 * under page_cgroup lock: between them, they make all uses
1104 * of pc->mem_cgroup safe.
1105 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001106 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001107 pc->mem_cgroup = memcg = root_mem_cgroup;
1108
Johannes Weiner925b7672012-01-12 17:18:15 -08001109 mz = page_cgroup_zoneinfo(memcg, page);
Johannes Weiner925b7672012-01-12 17:18:15 -08001110 return &mz->lruvec;
1111}
1112
1113/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001114 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1115 * @lruvec: mem_cgroup per zone lru vector
1116 * @lru: index of lru list the page is sitting on
1117 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001118 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001119 * This function must be called when a page is added to or removed from an
1120 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001121 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001122void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1123 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001124{
1125 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001126 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001127
1128 if (mem_cgroup_disabled())
1129 return;
1130
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001131 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1132 lru_size = mz->lru_size + lru;
1133 *lru_size += nr_pages;
1134 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001135}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001136
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001137/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001138 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001139 * hierarchy subtree
1140 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001141bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1142 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001143{
Johannes Weiner91c637342012-05-29 15:06:24 -07001144 if (root_memcg == memcg)
1145 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001146 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001147 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001148 return css_is_ancestor(&memcg->css, &root_memcg->css);
1149}
1150
1151static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1152 struct mem_cgroup *memcg)
1153{
1154 bool ret;
1155
Johannes Weiner91c637342012-05-29 15:06:24 -07001156 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001157 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001158 rcu_read_unlock();
1159 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001160}
1161
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001162int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001163{
1164 int ret;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001165 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001166 struct task_struct *p;
David Rientjes4c4a2212008-02-07 00:14:06 -08001167
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001168 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001169 if (p) {
1170 curr = try_get_mem_cgroup_from_mm(p->mm);
1171 task_unlock(p);
1172 } else {
1173 /*
1174 * All threads may have already detached their mm's, but the oom
1175 * killer still needs to detect if they have already been oom
1176 * killed to prevent needlessly killing additional tasks.
1177 */
1178 task_lock(task);
1179 curr = mem_cgroup_from_task(task);
1180 if (curr)
1181 css_get(&curr->css);
1182 task_unlock(task);
1183 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001184 if (!curr)
1185 return 0;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001186 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001187 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001188 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001189 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1190 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001191 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001192 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001193 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001194 return ret;
1195}
1196
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001197int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001198{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001199 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001200 unsigned long inactive;
1201 unsigned long active;
1202 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001203
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001204 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1205 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001206
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001207 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1208 if (gb)
1209 inactive_ratio = int_sqrt(10 * gb);
1210 else
1211 inactive_ratio = 1;
1212
Johannes Weiner9b272972011-11-02 13:38:23 -07001213 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001214}
1215
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001216int mem_cgroup_inactive_file_is_low(struct lruvec *lruvec)
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001217{
1218 unsigned long active;
1219 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001220
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001221 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_FILE);
1222 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_FILE);
Rik van Riel56e49d22009-06-16 15:32:28 -07001223
1224 return (active > inactive);
1225}
1226
Balbir Singh6d61ef42009-01-07 18:08:06 -08001227#define mem_cgroup_from_res_counter(counter, member) \
1228 container_of(counter, struct mem_cgroup, member)
1229
Johannes Weiner19942822011-02-01 15:52:43 -08001230/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001231 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001232 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001233 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001234 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001235 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001236 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001237static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001238{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001239 unsigned long long margin;
1240
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001241 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001242 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001243 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001244 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001245}
1246
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001247int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001248{
1249 struct cgroup *cgrp = memcg->css.cgroup;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001250
1251 /* root ? */
1252 if (cgrp->parent == NULL)
1253 return vm_swappiness;
1254
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001255 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001256}
1257
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001258/*
1259 * memcg->moving_account is used for checking possibility that some thread is
1260 * calling move_account(). When a thread on CPU-A starts moving pages under
1261 * a memcg, other threads should check memcg->moving_account under
1262 * rcu_read_lock(), like this:
1263 *
1264 * CPU-A CPU-B
1265 * rcu_read_lock()
1266 * memcg->moving_account+1 if (memcg->mocing_account)
1267 * take heavy locks.
1268 * synchronize_rcu() update something.
1269 * rcu_read_unlock()
1270 * start move here.
1271 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001272
1273/* for quick checking without looking up memcg */
1274atomic_t memcg_moving __read_mostly;
1275
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001276static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001277{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001278 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001279 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001280 synchronize_rcu();
1281}
1282
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001283static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001284{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001285 /*
1286 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1287 * We check NULL in callee rather than caller.
1288 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001289 if (memcg) {
1290 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001291 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001292 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001293}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001294
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001295/*
1296 * 2 routines for checking "mem" is under move_account() or not.
1297 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001298 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1299 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001300 * pc->mem_cgroup may be overwritten.
1301 *
1302 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1303 * under hierarchy of moving cgroups. This is for
1304 * waiting at hith-memory prressure caused by "move".
1305 */
1306
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001307static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001308{
1309 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001310 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001311}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001312
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001313static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001314{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001315 struct mem_cgroup *from;
1316 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001317 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001318 /*
1319 * Unlike task_move routines, we access mc.to, mc.from not under
1320 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1321 */
1322 spin_lock(&mc.lock);
1323 from = mc.from;
1324 to = mc.to;
1325 if (!from)
1326 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001327
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001328 ret = mem_cgroup_same_or_subtree(memcg, from)
1329 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001330unlock:
1331 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001332 return ret;
1333}
1334
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001335static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001336{
1337 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001338 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001339 DEFINE_WAIT(wait);
1340 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1341 /* moving charge context might have finished. */
1342 if (mc.moving_task)
1343 schedule();
1344 finish_wait(&mc.waitq, &wait);
1345 return true;
1346 }
1347 }
1348 return false;
1349}
1350
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001351/*
1352 * Take this lock when
1353 * - a code tries to modify page's memcg while it's USED.
1354 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001355 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001356 */
1357static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1358 unsigned long *flags)
1359{
1360 spin_lock_irqsave(&memcg->move_lock, *flags);
1361}
1362
1363static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1364 unsigned long *flags)
1365{
1366 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1367}
1368
Balbir Singhe2224322009-04-02 16:57:39 -07001369/**
Kirill A. Shutemov6a6135b2010-03-10 15:22:25 -08001370 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
Balbir Singhe2224322009-04-02 16:57:39 -07001371 * @memcg: The memory cgroup that went over limit
1372 * @p: Task that is going to be killed
1373 *
1374 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1375 * enabled
1376 */
1377void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1378{
1379 struct cgroup *task_cgrp;
1380 struct cgroup *mem_cgrp;
1381 /*
1382 * Need a buffer in BSS, can't rely on allocations. The code relies
1383 * on the assumption that OOM is serialized for memory controller.
1384 * If this assumption is broken, revisit this code.
1385 */
1386 static char memcg_name[PATH_MAX];
1387 int ret;
1388
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001389 if (!memcg || !p)
Balbir Singhe2224322009-04-02 16:57:39 -07001390 return;
1391
Balbir Singhe2224322009-04-02 16:57:39 -07001392 rcu_read_lock();
1393
1394 mem_cgrp = memcg->css.cgroup;
1395 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1396
1397 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1398 if (ret < 0) {
1399 /*
1400 * Unfortunately, we are unable to convert to a useful name
1401 * But we'll still print out the usage information
1402 */
1403 rcu_read_unlock();
1404 goto done;
1405 }
1406 rcu_read_unlock();
1407
1408 printk(KERN_INFO "Task in %s killed", memcg_name);
1409
1410 rcu_read_lock();
1411 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1412 if (ret < 0) {
1413 rcu_read_unlock();
1414 goto done;
1415 }
1416 rcu_read_unlock();
1417
1418 /*
1419 * Continues from above, so we don't need an KERN_ level
1420 */
1421 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1422done:
1423
1424 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1425 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1426 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1427 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1428 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1429 "failcnt %llu\n",
1430 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1431 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1432 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
1433}
1434
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001435/*
1436 * This function returns the number of memcg under hierarchy tree. Returns
1437 * 1(self count) if no children.
1438 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001439static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001440{
1441 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001442 struct mem_cgroup *iter;
1443
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001444 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001445 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001446 return num;
1447}
1448
Balbir Singh6d61ef42009-01-07 18:08:06 -08001449/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001450 * Return the memory (and swap, if configured) limit for a memcg.
1451 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001452static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001453{
1454 u64 limit;
1455 u64 memsw;
1456
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001457 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1458 limit += total_swap_pages << PAGE_SHIFT;
1459
David Rientjesa63d83f2010-08-09 17:19:46 -07001460 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1461 /*
1462 * If memsw is finite and limits the amount of swap space available
1463 * to this memcg, return that limit.
1464 */
1465 return min(limit, memsw);
1466}
1467
David Rientjes876aafb2012-07-31 16:43:48 -07001468void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1469 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001470{
1471 struct mem_cgroup *iter;
1472 unsigned long chosen_points = 0;
1473 unsigned long totalpages;
1474 unsigned int points = 0;
1475 struct task_struct *chosen = NULL;
1476
David Rientjes876aafb2012-07-31 16:43:48 -07001477 /*
1478 * If current has a pending SIGKILL, then automatically select it. The
1479 * goal is to allow it to allocate so that it may quickly exit and free
1480 * its memory.
1481 */
1482 if (fatal_signal_pending(current)) {
1483 set_thread_flag(TIF_MEMDIE);
1484 return;
1485 }
1486
1487 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001488 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1489 for_each_mem_cgroup_tree(iter, memcg) {
1490 struct cgroup *cgroup = iter->css.cgroup;
1491 struct cgroup_iter it;
1492 struct task_struct *task;
1493
1494 cgroup_iter_start(cgroup, &it);
1495 while ((task = cgroup_iter_next(cgroup, &it))) {
1496 switch (oom_scan_process_thread(task, totalpages, NULL,
1497 false)) {
1498 case OOM_SCAN_SELECT:
1499 if (chosen)
1500 put_task_struct(chosen);
1501 chosen = task;
1502 chosen_points = ULONG_MAX;
1503 get_task_struct(chosen);
1504 /* fall through */
1505 case OOM_SCAN_CONTINUE:
1506 continue;
1507 case OOM_SCAN_ABORT:
1508 cgroup_iter_end(cgroup, &it);
1509 mem_cgroup_iter_break(memcg, iter);
1510 if (chosen)
1511 put_task_struct(chosen);
1512 return;
1513 case OOM_SCAN_OK:
1514 break;
1515 };
1516 points = oom_badness(task, memcg, NULL, totalpages);
1517 if (points > chosen_points) {
1518 if (chosen)
1519 put_task_struct(chosen);
1520 chosen = task;
1521 chosen_points = points;
1522 get_task_struct(chosen);
1523 }
1524 }
1525 cgroup_iter_end(cgroup, &it);
1526 }
1527
1528 if (!chosen)
1529 return;
1530 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001531 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1532 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001533}
1534
Johannes Weiner56600482012-01-12 17:17:59 -08001535static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1536 gfp_t gfp_mask,
1537 unsigned long flags)
1538{
1539 unsigned long total = 0;
1540 bool noswap = false;
1541 int loop;
1542
1543 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1544 noswap = true;
1545 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1546 noswap = true;
1547
1548 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1549 if (loop)
1550 drain_all_stock_async(memcg);
1551 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1552 /*
1553 * Allow limit shrinkers, which are triggered directly
1554 * by userspace, to catch signals and stop reclaim
1555 * after minimal progress, regardless of the margin.
1556 */
1557 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1558 break;
1559 if (mem_cgroup_margin(memcg))
1560 break;
1561 /*
1562 * If nothing was reclaimed after two attempts, there
1563 * may be no reclaimable pages in this hierarchy.
1564 */
1565 if (loop && !total)
1566 break;
1567 }
1568 return total;
1569}
1570
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001571/**
1572 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001573 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001574 * @nid: the node ID to be checked.
1575 * @noswap : specify true here if the user wants flle only information.
1576 *
1577 * This function returns whether the specified memcg contains any
1578 * reclaimable pages on a node. Returns true if there are any reclaimable
1579 * pages in the node.
1580 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001581static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001582 int nid, bool noswap)
1583{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001584 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001585 return true;
1586 if (noswap || !total_swap_pages)
1587 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001588 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001589 return true;
1590 return false;
1591
1592}
Ying Han889976d2011-05-26 16:25:33 -07001593#if MAX_NUMNODES > 1
1594
1595/*
1596 * Always updating the nodemask is not very good - even if we have an empty
1597 * list or the wrong list here, we can start from some node and traverse all
1598 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1599 *
1600 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001601static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001602{
1603 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001604 /*
1605 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1606 * pagein/pageout changes since the last update.
1607 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001608 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001609 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001610 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001611 return;
1612
Ying Han889976d2011-05-26 16:25:33 -07001613 /* make a nodemask where this memcg uses memory from */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001614 memcg->scan_nodes = node_states[N_HIGH_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001615
1616 for_each_node_mask(nid, node_states[N_HIGH_MEMORY]) {
1617
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001618 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1619 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001620 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001621
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001622 atomic_set(&memcg->numainfo_events, 0);
1623 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001624}
1625
1626/*
1627 * Selecting a node where we start reclaim from. Because what we need is just
1628 * reducing usage counter, start from anywhere is O,K. Considering
1629 * memory reclaim from current node, there are pros. and cons.
1630 *
1631 * Freeing memory from current node means freeing memory from a node which
1632 * we'll use or we've used. So, it may make LRU bad. And if several threads
1633 * hit limits, it will see a contention on a node. But freeing from remote
1634 * node means more costs for memory reclaim because of memory latency.
1635 *
1636 * Now, we use round-robin. Better algorithm is welcomed.
1637 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001638int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001639{
1640 int node;
1641
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001642 mem_cgroup_may_update_nodemask(memcg);
1643 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001644
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001645 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001646 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001647 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001648 /*
1649 * We call this when we hit limit, not when pages are added to LRU.
1650 * No LRU may hold pages because all pages are UNEVICTABLE or
1651 * memcg is too small and all pages are not on LRU. In that case,
1652 * we use curret node.
1653 */
1654 if (unlikely(node == MAX_NUMNODES))
1655 node = numa_node_id();
1656
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001657 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001658 return node;
1659}
1660
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001661/*
1662 * Check all nodes whether it contains reclaimable pages or not.
1663 * For quick scan, we make use of scan_nodes. This will allow us to skip
1664 * unused nodes. But scan_nodes is lazily updated and may not cotain
1665 * enough new information. We need to do double check.
1666 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001667static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001668{
1669 int nid;
1670
1671 /*
1672 * quick check...making use of scan_node.
1673 * We can skip unused nodes.
1674 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001675 if (!nodes_empty(memcg->scan_nodes)) {
1676 for (nid = first_node(memcg->scan_nodes);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001677 nid < MAX_NUMNODES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001678 nid = next_node(nid, memcg->scan_nodes)) {
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001679
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001680 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001681 return true;
1682 }
1683 }
1684 /*
1685 * Check rest of nodes.
1686 */
1687 for_each_node_state(nid, N_HIGH_MEMORY) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001688 if (node_isset(nid, memcg->scan_nodes))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001689 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001690 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001691 return true;
1692 }
1693 return false;
1694}
1695
Ying Han889976d2011-05-26 16:25:33 -07001696#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001697int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001698{
1699 return 0;
1700}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001701
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001702static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001703{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001704 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001705}
Ying Han889976d2011-05-26 16:25:33 -07001706#endif
1707
Johannes Weiner56600482012-01-12 17:17:59 -08001708static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1709 struct zone *zone,
1710 gfp_t gfp_mask,
1711 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001712{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001713 struct mem_cgroup *victim = NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001714 int total = 0;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001715 int loop = 0;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001716 unsigned long excess;
Johannes Weiner185efc02011-09-14 16:21:58 -07001717 unsigned long nr_scanned;
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001718 struct mem_cgroup_reclaim_cookie reclaim = {
1719 .zone = zone,
1720 .priority = 0,
1721 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001722
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001723 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001724
Balbir Singh4e416952009-09-23 15:56:39 -07001725 while (1) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001726 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001727 if (!victim) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001728 loop++;
Balbir Singh4e416952009-09-23 15:56:39 -07001729 if (loop >= 2) {
1730 /*
1731 * If we have not been able to reclaim
1732 * anything, it might because there are
1733 * no reclaimable pages under this hierarchy
1734 */
Johannes Weiner56600482012-01-12 17:17:59 -08001735 if (!total)
Balbir Singh4e416952009-09-23 15:56:39 -07001736 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001737 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001738 * We want to do more targeted reclaim.
Balbir Singh4e416952009-09-23 15:56:39 -07001739 * excess >> 2 is not to excessive so as to
1740 * reclaim too much, nor too less that we keep
1741 * coming back to reclaim from this cgroup
1742 */
1743 if (total >= (excess >> 2) ||
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001744 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
Balbir Singh4e416952009-09-23 15:56:39 -07001745 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001746 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001747 continue;
Balbir Singh4e416952009-09-23 15:56:39 -07001748 }
Johannes Weiner56600482012-01-12 17:17:59 -08001749 if (!mem_cgroup_reclaimable(victim, false))
Balbir Singh6d61ef42009-01-07 18:08:06 -08001750 continue;
Johannes Weiner56600482012-01-12 17:17:59 -08001751 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1752 zone, &nr_scanned);
1753 *total_scanned += nr_scanned;
1754 if (!res_counter_soft_limit_excess(&root_memcg->res))
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001755 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001756 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001757 mem_cgroup_iter_break(root_memcg, victim);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001758 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001759}
1760
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001761/*
1762 * Check OOM-Killer is already running under our hierarchy.
1763 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001764 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001765 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001766static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001767{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001768 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001769
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001770 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001771 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001772 /*
1773 * this subtree of our hierarchy is already locked
1774 * so we cannot give a lock.
1775 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001776 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001777 mem_cgroup_iter_break(memcg, iter);
1778 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001779 } else
1780 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001781 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001782
Michal Hocko79dfdac2011-07-26 16:08:23 -07001783 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001784 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001785
1786 /*
1787 * OK, we failed to lock the whole subtree so we have to clean up
1788 * what we set up to the failing subtree
1789 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001790 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001791 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001792 mem_cgroup_iter_break(memcg, iter);
1793 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001794 }
1795 iter->oom_lock = false;
1796 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001797 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001798}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001799
Michal Hocko79dfdac2011-07-26 16:08:23 -07001800/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001801 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001802 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001803static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001804{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001805 struct mem_cgroup *iter;
1806
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001807 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001808 iter->oom_lock = false;
1809 return 0;
1810}
1811
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001812static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001813{
1814 struct mem_cgroup *iter;
1815
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001816 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001817 atomic_inc(&iter->under_oom);
1818}
1819
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001820static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001821{
1822 struct mem_cgroup *iter;
1823
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001824 /*
1825 * When a new child is created while the hierarchy is under oom,
1826 * mem_cgroup_oom_lock() may not be called. We have to use
1827 * atomic_add_unless() here.
1828 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001829 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001830 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001831}
1832
Michal Hocko1af8efe2011-07-26 16:08:24 -07001833static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001834static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1835
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001836struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001837 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001838 wait_queue_t wait;
1839};
1840
1841static int memcg_oom_wake_function(wait_queue_t *wait,
1842 unsigned mode, int sync, void *arg)
1843{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001844 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1845 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001846 struct oom_wait_info *oom_wait_info;
1847
1848 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001849 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001850
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001851 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001852 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001853 * Then we can use css_is_ancestor without taking care of RCU.
1854 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001855 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1856 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001857 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001858 return autoremove_wake_function(wait, mode, sync, arg);
1859}
1860
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001861static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001862{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001863 /* for filtering, pass "memcg" as argument. */
1864 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001865}
1866
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001867static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001868{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001869 if (memcg && atomic_read(&memcg->under_oom))
1870 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001871}
1872
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001873/*
1874 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1875 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001876static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
1877 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001878{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001879 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001880 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001881
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001882 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001883 owait.wait.flags = 0;
1884 owait.wait.func = memcg_oom_wake_function;
1885 owait.wait.private = current;
1886 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001887 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001888 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001889
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001890 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001891 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001892 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001893 /*
1894 * Even if signal_pending(), we can't quit charge() loop without
1895 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1896 * under OOM is always welcomed, use TASK_KILLABLE here.
1897 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001898 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001899 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001900 need_to_kill = false;
1901 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001902 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001903 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001904
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001905 if (need_to_kill) {
1906 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07001907 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001908 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001909 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001910 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001911 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001912 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001913 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001914 mem_cgroup_oom_unlock(memcg);
1915 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001916 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001917
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001918 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001919
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001920 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1921 return false;
1922 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001923 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001924 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001925}
1926
Balbir Singhd69b0422009-06-17 16:26:34 -07001927/*
1928 * Currently used to update mapped file statistics, but the routine can be
1929 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001930 *
1931 * Notes: Race condition
1932 *
1933 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1934 * it tends to be costly. But considering some conditions, we doesn't need
1935 * to do so _always_.
1936 *
1937 * Considering "charge", lock_page_cgroup() is not required because all
1938 * file-stat operations happen after a page is attached to radix-tree. There
1939 * are no race with "charge".
1940 *
1941 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1942 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1943 * if there are race with "uncharge". Statistics itself is properly handled
1944 * by flags.
1945 *
1946 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001947 * small, we check mm->moving_account and detect there are possibility of race
1948 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07001949 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001950
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001951void __mem_cgroup_begin_update_page_stat(struct page *page,
1952 bool *locked, unsigned long *flags)
1953{
1954 struct mem_cgroup *memcg;
1955 struct page_cgroup *pc;
1956
1957 pc = lookup_page_cgroup(page);
1958again:
1959 memcg = pc->mem_cgroup;
1960 if (unlikely(!memcg || !PageCgroupUsed(pc)))
1961 return;
1962 /*
1963 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07001964 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001965 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001966 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001967 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001968 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001969 return;
1970
1971 move_lock_mem_cgroup(memcg, flags);
1972 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
1973 move_unlock_mem_cgroup(memcg, flags);
1974 goto again;
1975 }
1976 *locked = true;
1977}
1978
1979void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
1980{
1981 struct page_cgroup *pc = lookup_page_cgroup(page);
1982
1983 /*
1984 * It's guaranteed that pc->mem_cgroup never changes while
1985 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07001986 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001987 */
1988 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
1989}
1990
Greg Thelen2a7106f2011-01-13 15:47:37 -08001991void mem_cgroup_update_page_stat(struct page *page,
1992 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07001993{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001994 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001995 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08001996 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07001997
Johannes Weinercfa44942012-01-12 17:18:38 -08001998 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07001999 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002000
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002001 memcg = pc->mem_cgroup;
2002 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002003 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002004
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002005 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002006 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08002007 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002008 break;
2009 default:
2010 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002011 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002012
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002013 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002014}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002015
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002016/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002017 * size of first charge trial. "32" comes from vmscan.c's magic value.
2018 * TODO: maybe necessary to use big numbers in big irons.
2019 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002020#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002021struct memcg_stock_pcp {
2022 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002023 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002024 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002025 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002026#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002027};
2028static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002029static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002030
2031/*
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002032 * Try to consume stocked charge on this cpu. If success, one page is consumed
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002033 * from local stock and true is returned. If the stock is 0 or charges from a
2034 * cgroup which is not current target, returns false. This stock will be
2035 * refilled.
2036 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002037static bool consume_stock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002038{
2039 struct memcg_stock_pcp *stock;
2040 bool ret = true;
2041
2042 stock = &get_cpu_var(memcg_stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002043 if (memcg == stock->cached && stock->nr_pages)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002044 stock->nr_pages--;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002045 else /* need to call res_counter_charge */
2046 ret = false;
2047 put_cpu_var(memcg_stock);
2048 return ret;
2049}
2050
2051/*
2052 * Returns stocks cached in percpu to res_counter and reset cached information.
2053 */
2054static void drain_stock(struct memcg_stock_pcp *stock)
2055{
2056 struct mem_cgroup *old = stock->cached;
2057
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002058 if (stock->nr_pages) {
2059 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2060
2061 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002062 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002063 res_counter_uncharge(&old->memsw, bytes);
2064 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002065 }
2066 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002067}
2068
2069/*
2070 * This must be called under preempt disabled or must be called by
2071 * a thread which is pinned to local cpu.
2072 */
2073static void drain_local_stock(struct work_struct *dummy)
2074{
2075 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2076 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002077 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002078}
2079
2080/*
2081 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002082 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002083 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002084static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002085{
2086 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2087
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002088 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002089 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002090 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002091 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002092 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002093 put_cpu_var(memcg_stock);
2094}
2095
2096/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002097 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002098 * of the hierarchy under it. sync flag says whether we should block
2099 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002100 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002101static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002102{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002103 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002104
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002105 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002106 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002107 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002108 for_each_online_cpu(cpu) {
2109 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002110 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002111
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002112 memcg = stock->cached;
2113 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002114 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002115 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002116 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002117 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2118 if (cpu == curcpu)
2119 drain_local_stock(&stock->work);
2120 else
2121 schedule_work_on(cpu, &stock->work);
2122 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002123 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002124 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002125
2126 if (!sync)
2127 goto out;
2128
2129 for_each_online_cpu(cpu) {
2130 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002131 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002132 flush_work(&stock->work);
2133 }
2134out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002135 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002136}
2137
2138/*
2139 * Tries to drain stocked charges in other cpus. This function is asynchronous
2140 * and just put a work per cpu for draining localy on each cpu. Caller can
2141 * expects some charges will be back to res_counter later but cannot wait for
2142 * it.
2143 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002144static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002145{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002146 /*
2147 * If someone calls draining, avoid adding more kworker runs.
2148 */
2149 if (!mutex_trylock(&percpu_charge_mutex))
2150 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002151 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002152 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002153}
2154
2155/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002156static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002157{
2158 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002159 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002160 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002161 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002162}
2163
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002164/*
2165 * This function drains percpu counter value from DEAD cpu and
2166 * move it to local cpu. Note that this function can be preempted.
2167 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002168static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002169{
2170 int i;
2171
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002172 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002173 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002174 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002175
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002176 per_cpu(memcg->stat->count[i], cpu) = 0;
2177 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002178 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002179 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002180 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002181
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002182 per_cpu(memcg->stat->events[i], cpu) = 0;
2183 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002184 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002185 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002186}
2187
2188static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002189 unsigned long action,
2190 void *hcpu)
2191{
2192 int cpu = (unsigned long)hcpu;
2193 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002194 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002195
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002196 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002197 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002198
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002199 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002200 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002201
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002202 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002203 mem_cgroup_drain_pcp_counter(iter, cpu);
2204
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002205 stock = &per_cpu(memcg_stock, cpu);
2206 drain_stock(stock);
2207 return NOTIFY_OK;
2208}
2209
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002210
2211/* See __mem_cgroup_try_charge() for details */
2212enum {
2213 CHARGE_OK, /* success */
2214 CHARGE_RETRY, /* need to retry but retry is not bad */
2215 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2216 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2217 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2218};
2219
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002220static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002221 unsigned int nr_pages, bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002222{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002223 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002224 struct mem_cgroup *mem_over_limit;
2225 struct res_counter *fail_res;
2226 unsigned long flags = 0;
2227 int ret;
2228
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002229 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002230
2231 if (likely(!ret)) {
2232 if (!do_swap_account)
2233 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002234 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002235 if (likely(!ret))
2236 return CHARGE_OK;
2237
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002238 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002239 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2240 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2241 } else
2242 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002243 /*
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002244 * nr_pages can be either a huge page (HPAGE_PMD_NR), a batch
2245 * of regular pages (CHARGE_BATCH), or a single regular page (1).
Johannes Weiner9221edb2011-02-01 15:52:42 -08002246 *
2247 * Never reclaim on behalf of optional batching, retry with a
2248 * single page instead.
2249 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002250 if (nr_pages == CHARGE_BATCH)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002251 return CHARGE_RETRY;
2252
2253 if (!(gfp_mask & __GFP_WAIT))
2254 return CHARGE_WOULDBLOCK;
2255
Johannes Weiner56600482012-01-12 17:17:59 -08002256 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002257 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002258 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002259 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002260 * Even though the limit is exceeded at this point, reclaim
2261 * may have been able to free some pages. Retry the charge
2262 * before killing the task.
2263 *
2264 * Only for regular pages, though: huge pages are rather
2265 * unlikely to succeed so close to the limit, and we fall back
2266 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002267 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002268 if (nr_pages == 1 && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002269 return CHARGE_RETRY;
2270
2271 /*
2272 * At task move, charge accounts can be doubly counted. So, it's
2273 * better to wait until the end of task_move if something is going on.
2274 */
2275 if (mem_cgroup_wait_acct_move(mem_over_limit))
2276 return CHARGE_RETRY;
2277
2278 /* If we don't need to call oom-killer at el, return immediately */
2279 if (!oom_check)
2280 return CHARGE_NOMEM;
2281 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002282 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002283 return CHARGE_OOM_DIE;
2284
2285 return CHARGE_RETRY;
2286}
2287
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002288/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002289 * __mem_cgroup_try_charge() does
2290 * 1. detect memcg to be charged against from passed *mm and *ptr,
2291 * 2. update res_counter
2292 * 3. call memory reclaim if necessary.
2293 *
2294 * In some special case, if the task is fatal, fatal_signal_pending() or
2295 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2296 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2297 * as possible without any hazards. 2: all pages should have a valid
2298 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2299 * pointer, that is treated as a charge to root_mem_cgroup.
2300 *
2301 * So __mem_cgroup_try_charge() will return
2302 * 0 ... on success, filling *ptr with a valid memcg pointer.
2303 * -ENOMEM ... charge failure because of resource limits.
2304 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2305 *
2306 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2307 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002308 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002309static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002310 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002311 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002312 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002313 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002314{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002315 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002316 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002317 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002318 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002319
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002320 /*
2321 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2322 * in system level. So, allow to go ahead dying process in addition to
2323 * MEMDIE process.
2324 */
2325 if (unlikely(test_thread_flag(TIF_MEMDIE)
2326 || fatal_signal_pending(current)))
2327 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002328
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002329 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002330 * We always charge the cgroup the mm_struct belongs to.
2331 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002332 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002333 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002334 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002335 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002336 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002337again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002338 if (*ptr) { /* css should be a valid one */
2339 memcg = *ptr;
2340 VM_BUG_ON(css_is_removed(&memcg->css));
2341 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002342 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002343 if (nr_pages == 1 && consume_stock(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002344 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002345 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002346 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002347 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002348
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002349 rcu_read_lock();
2350 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002351 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002352 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002353 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002354 * race with swapoff. Then, we have small risk of mis-accouning.
2355 * But such kind of mis-account by race always happens because
2356 * we don't have cgroup_mutex(). It's overkill and we allo that
2357 * small race, here.
2358 * (*) swapoff at el will charge against mm-struct not against
2359 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002360 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002361 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002362 if (!memcg)
2363 memcg = root_mem_cgroup;
2364 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002365 rcu_read_unlock();
2366 goto done;
2367 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002368 if (nr_pages == 1 && consume_stock(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002369 /*
2370 * It seems dagerous to access memcg without css_get().
2371 * But considering how consume_stok works, it's not
2372 * necessary. If consume_stock success, some charges
2373 * from this memcg are cached on this cpu. So, we
2374 * don't need to call css_get()/css_tryget() before
2375 * calling consume_stock().
2376 */
2377 rcu_read_unlock();
2378 goto done;
2379 }
2380 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002381 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002382 rcu_read_unlock();
2383 goto again;
2384 }
2385 rcu_read_unlock();
2386 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002387
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002388 do {
2389 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002390
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002391 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002392 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002393 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002394 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002395 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002396
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002397 oom_check = false;
2398 if (oom && !nr_oom_retries) {
2399 oom_check = true;
2400 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2401 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002402
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002403 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002404 switch (ret) {
2405 case CHARGE_OK:
2406 break;
2407 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002408 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002409 css_put(&memcg->css);
2410 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002411 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002412 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002413 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002414 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002415 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002416 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002417 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002418 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002419 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002420 /* If oom, we never return -ENOMEM */
2421 nr_oom_retries--;
2422 break;
2423 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002424 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002425 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002426 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002427 } while (ret != CHARGE_OK);
2428
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002429 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002430 refill_stock(memcg, batch - nr_pages);
2431 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002432done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002433 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002434 return 0;
2435nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002436 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002437 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002438bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002439 *ptr = root_mem_cgroup;
2440 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002441}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002442
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002443/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002444 * Somemtimes we have to undo a charge we got by try_charge().
2445 * This function is for that and do uncharge, put css's refcnt.
2446 * gotten by try_charge().
2447 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002448static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002449 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002450{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002451 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002452 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002453
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002454 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002455 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002456 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002457 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002458}
2459
2460/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002461 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2462 * This is useful when moving usage to parent cgroup.
2463 */
2464static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2465 unsigned int nr_pages)
2466{
2467 unsigned long bytes = nr_pages * PAGE_SIZE;
2468
2469 if (mem_cgroup_is_root(memcg))
2470 return;
2471
2472 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2473 if (do_swap_account)
2474 res_counter_uncharge_until(&memcg->memsw,
2475 memcg->memsw.parent, bytes);
2476}
2477
2478/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002479 * A helper function to get mem_cgroup from ID. must be called under
2480 * rcu_read_lock(). The caller must check css_is_removed() or some if
2481 * it's concern. (dropping refcnt from swap can be called against removed
2482 * memcg.)
2483 */
2484static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2485{
2486 struct cgroup_subsys_state *css;
2487
2488 /* ID 0 is unused ID */
2489 if (!id)
2490 return NULL;
2491 css = css_lookup(&mem_cgroup_subsys, id);
2492 if (!css)
2493 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002494 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002495}
2496
Wu Fengguange42d9d52009-12-16 12:19:59 +01002497struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002498{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002499 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002500 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002501 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002502 swp_entry_t ent;
2503
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002504 VM_BUG_ON(!PageLocked(page));
2505
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002506 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002507 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002508 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002509 memcg = pc->mem_cgroup;
2510 if (memcg && !css_tryget(&memcg->css))
2511 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002512 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002513 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002514 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002515 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002516 memcg = mem_cgroup_lookup(id);
2517 if (memcg && !css_tryget(&memcg->css))
2518 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002519 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002520 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002521 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002522 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002523}
2524
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002525static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002526 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002527 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002528 enum charge_type ctype,
2529 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002530{
Johannes Weinerce587e62012-04-24 20:22:33 +02002531 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002532 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002533 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002534 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002535 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002536
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002537 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002538 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002539 /*
2540 * we don't need page_cgroup_lock about tail pages, becase they are not
2541 * accessed by any other context at this point.
2542 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002543
2544 /*
2545 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2546 * may already be on some other mem_cgroup's LRU. Take care of it.
2547 */
2548 if (lrucare) {
2549 zone = page_zone(page);
2550 spin_lock_irq(&zone->lru_lock);
2551 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002552 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002553 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002554 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002555 was_on_lru = true;
2556 }
2557 }
2558
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002559 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002560 /*
2561 * We access a page_cgroup asynchronously without lock_page_cgroup().
2562 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2563 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2564 * before USED bit, we need memory barrier here.
2565 * See mem_cgroup_add_lru_list(), etc.
2566 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002567 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002568 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002569
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002570 if (lrucare) {
2571 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002572 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002573 VM_BUG_ON(PageLRU(page));
2574 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002575 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002576 }
2577 spin_unlock_irq(&zone->lru_lock);
2578 }
2579
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002580 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002581 anon = true;
2582 else
2583 anon = false;
2584
2585 mem_cgroup_charge_statistics(memcg, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002586 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002587
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002588 /*
2589 * "charge_statistics" updated event counter. Then, check it.
2590 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2591 * if they exceeds softlimit.
2592 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002593 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002594}
2595
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002596#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2597
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002598#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002599/*
2600 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002601 * zone->lru_lock, 'splitting on pmd' and compound_lock.
2602 * charge/uncharge will be never happen and move_account() is done under
2603 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002604 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002605void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002606{
2607 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002608 struct page_cgroup *pc;
2609 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002610
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002611 if (mem_cgroup_disabled())
2612 return;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002613 for (i = 1; i < HPAGE_PMD_NR; i++) {
2614 pc = head_pc + i;
2615 pc->mem_cgroup = head_pc->mem_cgroup;
2616 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002617 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2618 }
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002619}
Hugh Dickins12d27102012-01-12 17:19:52 -08002620#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002621
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002622/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07002623 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07002624 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002625 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002626 * @pc: page_cgroup of the page.
2627 * @from: mem_cgroup which the page is moved from.
2628 * @to: mem_cgroup which the page is moved to. @from != @to.
2629 *
2630 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002631 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002632 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002633 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002634 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
2635 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002636 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002637static int mem_cgroup_move_account(struct page *page,
2638 unsigned int nr_pages,
2639 struct page_cgroup *pc,
2640 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002641 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002642{
Johannes Weinerde3638d2011-03-23 16:42:28 -07002643 unsigned long flags;
2644 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002645 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002646
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002647 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07002648 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07002649 /*
2650 * The page is isolated from LRU. So, collapse function
2651 * will not handle this page. But page splitting can happen.
2652 * Do this check under compound_page_lock(). The caller should
2653 * hold it.
2654 */
2655 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002656 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07002657 goto out;
2658
2659 lock_page_cgroup(pc);
2660
2661 ret = -EINVAL;
2662 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2663 goto unlock;
2664
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002665 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002666
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07002667 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08002668 /* Update mapped_file data for mem_cgroup */
2669 preempt_disable();
2670 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2671 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2672 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07002673 }
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002674 mem_cgroup_charge_statistics(from, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07002675
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002676 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002677 pc->mem_cgroup = to;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002678 mem_cgroup_charge_statistics(to, anon, nr_pages);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002679 /*
2680 * We charges against "to" which may not have any tasks. Then, "to"
2681 * can be under rmdir(). But in current implementation, caller of
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002682 * this function is just force_empty() and move charge, so it's
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002683 * guaranteed that "to" is never removed. So, we don't check rmdir
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002684 * status here.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002685 */
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002686 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002687 ret = 0;
2688unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002689 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08002690 /*
2691 * check events
2692 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002693 memcg_check_events(to, page);
2694 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002695out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002696 return ret;
2697}
2698
2699/*
2700 * move charges to its parent.
2701 */
2702
Johannes Weiner5564e882011-03-23 16:42:29 -07002703static int mem_cgroup_move_parent(struct page *page,
2704 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07002705 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002706{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002707 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002708 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07002709 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002710 int ret;
2711
2712 /* Is ROOT ? */
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002713 if (mem_cgroup_is_root(child))
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002714 return -EINVAL;
2715
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002716 ret = -EBUSY;
2717 if (!get_page_unless_zero(page))
2718 goto out;
2719 if (isolate_lru_page(page))
2720 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08002721
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002722 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002723
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002724 parent = parent_mem_cgroup(child);
2725 /*
2726 * If no parent, move charges to root cgroup.
2727 */
2728 if (!parent)
2729 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002730
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002731 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002732 flags = compound_lock_irqsave(page);
2733
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002734 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002735 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002736 if (!ret)
2737 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002738
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002739 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002740 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002741 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002742put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08002743 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002744out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002745 return ret;
2746}
2747
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002748/*
2749 * Charge the memory controller for page usage.
2750 * Return
2751 * 0 if the charge was successful
2752 * < 0 if the cgroup is over its limit
2753 */
2754static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002755 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002756{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002757 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002758 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08002759 bool oom = true;
2760 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08002761
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002762 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002763 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002764 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08002765 /*
2766 * Never OOM-kill a process for a huge page. The
2767 * fault handler will fall back to regular pages.
2768 */
2769 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002770 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002771
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002772 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002773 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002774 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02002775 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002776 return 0;
2777}
2778
2779int mem_cgroup_newpage_charge(struct page *page,
2780 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002781{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002782 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002783 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08002784 VM_BUG_ON(page_mapped(page));
2785 VM_BUG_ON(page->mapping && !PageAnon(page));
2786 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002787 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002788 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002789}
2790
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002791/*
2792 * While swap-in, try_charge -> commit or cancel, the page is locked.
2793 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02002794 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002795 * "commit()" or removed by "cancel()"
2796 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002797static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2798 struct page *page,
2799 gfp_t mask,
2800 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002801{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002802 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07002803 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002804 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002805
Johannes Weiner90deb782012-07-31 16:45:47 -07002806 pc = lookup_page_cgroup(page);
2807 /*
2808 * Every swap fault against a single page tries to charge the
2809 * page, bail as early as possible. shmem_unuse() encounters
2810 * already charged pages, too. The USED bit is protected by
2811 * the page lock, which serializes swap cache removal, which
2812 * in turn serializes uncharging.
2813 */
2814 if (PageCgroupUsed(pc))
2815 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002816 if (!do_swap_account)
2817 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002818 memcg = try_get_mem_cgroup_from_page(page);
2819 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002820 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08002821 *memcgp = memcg;
2822 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002823 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002824 if (ret == -EINTR)
2825 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002826 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002827charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002828 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
2829 if (ret == -EINTR)
2830 ret = 0;
2831 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002832}
2833
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002834int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
2835 gfp_t gfp_mask, struct mem_cgroup **memcgp)
2836{
2837 *memcgp = NULL;
2838 if (mem_cgroup_disabled())
2839 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07002840 /*
2841 * A racing thread's fault, or swapoff, may have already
2842 * updated the pte, and even removed page from swap cache: in
2843 * those cases unuse_pte()'s pte_same() test will fail; but
2844 * there's also a KSM case which does need to charge the page.
2845 */
2846 if (!PageSwapCache(page)) {
2847 int ret;
2848
2849 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
2850 if (ret == -EINTR)
2851 ret = 0;
2852 return ret;
2853 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002854 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
2855}
2856
Johannes Weiner827a03d2012-07-31 16:45:36 -07002857void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
2858{
2859 if (mem_cgroup_disabled())
2860 return;
2861 if (!memcg)
2862 return;
2863 __mem_cgroup_cancel_charge(memcg, 1);
2864}
2865
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002866static void
Johannes Weiner72835c82012-01-12 17:18:32 -08002867__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002868 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002869{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002870 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002871 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002872 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002873 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002874 cgroup_exclude_rmdir(&memcg->css);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002875
Johannes Weinerce587e62012-04-24 20:22:33 +02002876 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002877 /*
2878 * Now swap is on-memory. This means this page may be
2879 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002880 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2881 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2882 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002883 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002884 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002885 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07002886 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002887 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002888 /*
2889 * At swapin, we may charge account against cgroup which has no tasks.
2890 * So, rmdir()->pre_destroy() can be called while we do this charge.
2891 * In that case, we need to call pre_destroy() again. check it here.
2892 */
Johannes Weiner72835c82012-01-12 17:18:32 -08002893 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002894}
2895
Johannes Weiner72835c82012-01-12 17:18:32 -08002896void mem_cgroup_commit_charge_swapin(struct page *page,
2897 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002898{
Johannes Weiner72835c82012-01-12 17:18:32 -08002899 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002900 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002901}
2902
Johannes Weiner827a03d2012-07-31 16:45:36 -07002903int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2904 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002905{
Johannes Weiner827a03d2012-07-31 16:45:36 -07002906 struct mem_cgroup *memcg = NULL;
2907 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
2908 int ret;
2909
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002910 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07002911 return 0;
2912 if (PageCompound(page))
2913 return 0;
2914
Johannes Weiner827a03d2012-07-31 16:45:36 -07002915 if (!PageSwapCache(page))
2916 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
2917 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002918 ret = __mem_cgroup_try_charge_swapin(mm, page,
2919 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07002920 if (!ret)
2921 __mem_cgroup_commit_charge_swapin(page, memcg, type);
2922 }
2923 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002924}
2925
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002926static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002927 unsigned int nr_pages,
2928 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002929{
2930 struct memcg_batch_info *batch = NULL;
2931 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002932
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002933 /* If swapout, usage of swap doesn't decrease */
2934 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2935 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002936
2937 batch = &current->memcg_batch;
2938 /*
2939 * In usual, we do css_get() when we remember memcg pointer.
2940 * But in this case, we keep res->usage until end of a series of
2941 * uncharges. Then, it's ok to ignore memcg's refcnt.
2942 */
2943 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002944 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002945 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002946 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002947 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002948 * the same cgroup and we have chance to coalesce uncharges.
2949 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
2950 * because we want to do uncharge as soon as possible.
2951 */
2952
2953 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
2954 goto direct_uncharge;
2955
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002956 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08002957 goto direct_uncharge;
2958
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002959 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002960 * In typical case, batch->memcg == mem. This means we can
2961 * merge a series of uncharges to an uncharge of res_counter.
2962 * If not, we uncharge res_counter ony by one.
2963 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002964 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002965 goto direct_uncharge;
2966 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002967 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002968 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002969 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002970 return;
2971direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002972 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002973 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002974 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
2975 if (unlikely(batch->memcg != memcg))
2976 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002977}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002978
Balbir Singh8697d332008-02-07 00:13:59 -08002979/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07002980 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002981 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002982static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07002983__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
2984 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002985{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002986 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002987 unsigned int nr_pages = 1;
2988 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002989 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002990
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002991 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002992 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07002993
Johannes Weiner0c59b892012-07-31 16:45:31 -07002994 VM_BUG_ON(PageSwapCache(page));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002995
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002996 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002997 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002998 VM_BUG_ON(!PageTransHuge(page));
2999 }
Balbir Singh8697d332008-02-07 00:13:59 -08003000 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003001 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003002 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003003 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003004 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003005 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003006
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003007 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003008
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003009 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003010
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003011 if (!PageCgroupUsed(pc))
3012 goto unlock_out;
3013
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003014 anon = PageAnon(page);
3015
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003016 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003017 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003018 /*
3019 * Generally PageAnon tells if it's the anon statistics to be
3020 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
3021 * used before page reached the stage of being marked PageAnon.
3022 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003023 anon = true;
3024 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003025 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003026 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07003027 if (page_mapped(page))
3028 goto unlock_out;
3029 /*
3030 * Pages under migration may not be uncharged. But
3031 * end_migration() /must/ be the one uncharging the
3032 * unused post-migration page and so it has to call
3033 * here with the migration bit still set. See the
3034 * res_counter handling below.
3035 */
3036 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003037 goto unlock_out;
3038 break;
3039 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
3040 if (!PageAnon(page)) { /* Shared memory */
3041 if (page->mapping && !page_is_file_cache(page))
3042 goto unlock_out;
3043 } else if (page_mapped(page)) /* Anon */
3044 goto unlock_out;
3045 break;
3046 default:
3047 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003048 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003049
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003050 mem_cgroup_charge_statistics(memcg, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07003051
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003052 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08003053 /*
3054 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3055 * freed from LRU. This is safe because uncharged page is expected not
3056 * to be reused (freed soon). Exception is SwapCache, it's handled by
3057 * special functions.
3058 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003059
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003060 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003061 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003062 * even after unlock, we have memcg->res.usage here and this memcg
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003063 * will never be freed.
3064 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003065 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003066 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003067 mem_cgroup_swap_statistics(memcg, true);
3068 mem_cgroup_get(memcg);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003069 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003070 /*
3071 * Migration does not charge the res_counter for the
3072 * replacement page, so leave it alone when phasing out the
3073 * page that is unused after the migration.
3074 */
3075 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003076 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003077
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003078 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003079
3080unlock_out:
3081 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003082 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003083}
3084
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003085void mem_cgroup_uncharge_page(struct page *page)
3086{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003087 /* early check. */
3088 if (page_mapped(page))
3089 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08003090 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner0c59b892012-07-31 16:45:31 -07003091 if (PageSwapCache(page))
3092 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07003093 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003094}
3095
3096void mem_cgroup_uncharge_cache_page(struct page *page)
3097{
3098 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003099 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07003100 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003101}
3102
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003103/*
3104 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3105 * In that cases, pages are freed continuously and we can expect pages
3106 * are in the same memcg. All these calls itself limits the number of
3107 * pages freed at once, then uncharge_start/end() is called properly.
3108 * This may be called prural(2) times in a context,
3109 */
3110
3111void mem_cgroup_uncharge_start(void)
3112{
3113 current->memcg_batch.do_batch++;
3114 /* We can do nest. */
3115 if (current->memcg_batch.do_batch == 1) {
3116 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003117 current->memcg_batch.nr_pages = 0;
3118 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003119 }
3120}
3121
3122void mem_cgroup_uncharge_end(void)
3123{
3124 struct memcg_batch_info *batch = &current->memcg_batch;
3125
3126 if (!batch->do_batch)
3127 return;
3128
3129 batch->do_batch--;
3130 if (batch->do_batch) /* If stacked, do nothing. */
3131 return;
3132
3133 if (!batch->memcg)
3134 return;
3135 /*
3136 * This "batch->memcg" is valid without any css_get/put etc...
3137 * bacause we hide charges behind us.
3138 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003139 if (batch->nr_pages)
3140 res_counter_uncharge(&batch->memcg->res,
3141 batch->nr_pages * PAGE_SIZE);
3142 if (batch->memsw_nr_pages)
3143 res_counter_uncharge(&batch->memcg->memsw,
3144 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003145 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003146 /* forget this pointer (for sanity check) */
3147 batch->memcg = NULL;
3148}
3149
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003150#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003151/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003152 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003153 * memcg information is recorded to swap_cgroup of "ent"
3154 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003155void
3156mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003157{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003158 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003159 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003160
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003161 if (!swapout) /* this was a swap cache but the swap is unused ! */
3162 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
3163
Johannes Weiner0030f532012-07-31 16:45:25 -07003164 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003165
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003166 /*
3167 * record memcg information, if swapout && memcg != NULL,
3168 * mem_cgroup_get() was called in uncharge().
3169 */
3170 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003171 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003172}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003173#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003174
Andrew Mortonc255a452012-07-31 16:43:02 -07003175#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003176/*
3177 * called from swap_entry_free(). remove record in swap_cgroup and
3178 * uncharge "memsw" account.
3179 */
3180void mem_cgroup_uncharge_swap(swp_entry_t ent)
3181{
3182 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003183 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003184
3185 if (!do_swap_account)
3186 return;
3187
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003188 id = swap_cgroup_record(ent, 0);
3189 rcu_read_lock();
3190 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003191 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003192 /*
3193 * We uncharge this because swap is freed.
3194 * This memcg can be obsolete one. We avoid calling css_tryget
3195 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003196 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07003197 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003198 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003199 mem_cgroup_put(memcg);
3200 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003201 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003202}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003203
3204/**
3205 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3206 * @entry: swap entry to be moved
3207 * @from: mem_cgroup which the entry is moved from
3208 * @to: mem_cgroup which the entry is moved to
3209 *
3210 * It succeeds only when the swap_cgroup's record for this entry is the same
3211 * as the mem_cgroup's id of @from.
3212 *
3213 * Returns 0 on success, -EINVAL on failure.
3214 *
3215 * The caller must have charged to @to, IOW, called res_counter_charge() about
3216 * both res and memsw, and called css_get().
3217 */
3218static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003219 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003220{
3221 unsigned short old_id, new_id;
3222
3223 old_id = css_id(&from->css);
3224 new_id = css_id(&to->css);
3225
3226 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003227 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003228 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003229 /*
3230 * This function is only called from task migration context now.
3231 * It postpones res_counter and refcount handling till the end
3232 * of task migration(mem_cgroup_clear_mc()) for performance
3233 * improvement. But we cannot postpone mem_cgroup_get(to)
3234 * because if the process that has been moved to @to does
3235 * swap-in, the refcount of @to might be decreased to 0.
3236 */
Daisuke Nishimura02491442010-03-10 15:22:17 -08003237 mem_cgroup_get(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003238 return 0;
3239 }
3240 return -EINVAL;
3241}
3242#else
3243static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003244 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003245{
3246 return -EINVAL;
3247}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003248#endif
3249
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003250/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003251 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
3252 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003253 */
Johannes Weiner0030f532012-07-31 16:45:25 -07003254void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
3255 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003256{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003257 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003258 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003259 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003260
Johannes Weiner72835c82012-01-12 17:18:32 -08003261 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003262
Andrea Arcangeliec168512011-01-13 15:46:56 -08003263 VM_BUG_ON(PageTransHuge(page));
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003264 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07003265 return;
Balbir Singh40779602008-04-04 14:29:59 -07003266
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003267 pc = lookup_page_cgroup(page);
3268 lock_page_cgroup(pc);
3269 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003270 memcg = pc->mem_cgroup;
3271 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003272 /*
3273 * At migrating an anonymous page, its mapcount goes down
3274 * to 0 and uncharge() will be called. But, even if it's fully
3275 * unmapped, migration may fail and this page has to be
3276 * charged again. We set MIGRATION flag here and delay uncharge
3277 * until end_migration() is called
3278 *
3279 * Corner Case Thinking
3280 * A)
3281 * When the old page was mapped as Anon and it's unmap-and-freed
3282 * while migration was ongoing.
3283 * If unmap finds the old page, uncharge() of it will be delayed
3284 * until end_migration(). If unmap finds a new page, it's
3285 * uncharged when it make mapcount to be 1->0. If unmap code
3286 * finds swap_migration_entry, the new page will not be mapped
3287 * and end_migration() will find it(mapcount==0).
3288 *
3289 * B)
3290 * When the old page was mapped but migraion fails, the kernel
3291 * remaps it. A charge for it is kept by MIGRATION flag even
3292 * if mapcount goes down to 0. We can do remap successfully
3293 * without charging it again.
3294 *
3295 * C)
3296 * The "old" page is under lock_page() until the end of
3297 * migration, so, the old page itself will not be swapped-out.
3298 * If the new page is swapped out before end_migraton, our
3299 * hook to usual swap-out path will catch the event.
3300 */
3301 if (PageAnon(page))
3302 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003303 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003304 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003305 /*
3306 * If the page is not charged at this point,
3307 * we return here.
3308 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003309 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07003310 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003311
Johannes Weiner72835c82012-01-12 17:18:32 -08003312 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003313 /*
3314 * We charge new page before it's used/mapped. So, even if unlock_page()
3315 * is called before end_migration, we can catch all events on this new
3316 * page. In the case new page is migrated but not remapped, new page's
3317 * mapcount will be finally 0 and we call uncharge in end_migration().
3318 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003319 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003320 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003321 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07003322 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07003323 /*
3324 * The page is committed to the memcg, but it's not actually
3325 * charged to the res_counter since we plan on replacing the
3326 * old one and only one page is going to be left afterwards.
3327 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003328 __mem_cgroup_commit_charge(memcg, newpage, 1, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003329}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08003330
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003331/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003332void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003333 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003334{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003335 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003336 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003337 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003338
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003339 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003340 return;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003341 /* blocks rmdir() */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003342 cgroup_exclude_rmdir(&memcg->css);
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003343 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003344 used = oldpage;
3345 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003346 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003347 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003348 unused = oldpage;
3349 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003350 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07003351 __mem_cgroup_uncharge_common(unused,
3352 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
3353 : MEM_CGROUP_CHARGE_TYPE_CACHE,
3354 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07003355 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003356 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003357 * We disallowed uncharge of pages under migration because mapcount
3358 * of the page goes down to zero, temporarly.
3359 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003360 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003361 pc = lookup_page_cgroup(oldpage);
3362 lock_page_cgroup(pc);
3363 ClearPageCgroupMigration(pc);
3364 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003365
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003366 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003367 * If a page is a file cache, radix-tree replacement is very atomic
3368 * and we can skip this check. When it was an Anon page, its mapcount
3369 * goes down to 0. But because we added MIGRATION flage, it's not
3370 * uncharged yet. There are several case but page->mapcount check
3371 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3372 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003373 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003374 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003375 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003376 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003377 * At migration, we may charge account against cgroup which has no
3378 * tasks.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003379 * So, rmdir()->pre_destroy() can be called while we do this charge.
3380 * In that case, we need to call pre_destroy() again. check it here.
3381 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003382 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003383}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08003384
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003385/*
3386 * At replace page cache, newpage is not under any memcg but it's on
3387 * LRU. So, this function doesn't touch res_counter but handles LRU
3388 * in correct way. Both pages are locked so we cannot race with uncharge.
3389 */
3390void mem_cgroup_replace_page_cache(struct page *oldpage,
3391 struct page *newpage)
3392{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003393 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003394 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003395 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003396
3397 if (mem_cgroup_disabled())
3398 return;
3399
3400 pc = lookup_page_cgroup(oldpage);
3401 /* fix accounting on old pages */
3402 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003403 if (PageCgroupUsed(pc)) {
3404 memcg = pc->mem_cgroup;
3405 mem_cgroup_charge_statistics(memcg, false, -1);
3406 ClearPageCgroupUsed(pc);
3407 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003408 unlock_page_cgroup(pc);
3409
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003410 /*
3411 * When called from shmem_replace_page(), in some cases the
3412 * oldpage has already been charged, and in some cases not.
3413 */
3414 if (!memcg)
3415 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003416 /*
3417 * Even if newpage->mapping was NULL before starting replacement,
3418 * the newpage may be on LRU(or pagevec for LRU) already. We lock
3419 * LRU while we overwrite pc->mem_cgroup.
3420 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003421 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003422}
3423
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003424#ifdef CONFIG_DEBUG_VM
3425static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3426{
3427 struct page_cgroup *pc;
3428
3429 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003430 /*
3431 * Can be NULL while feeding pages into the page allocator for
3432 * the first time, i.e. during boot or memory hotplug;
3433 * or when mem_cgroup_disabled().
3434 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003435 if (likely(pc) && PageCgroupUsed(pc))
3436 return pc;
3437 return NULL;
3438}
3439
3440bool mem_cgroup_bad_page_check(struct page *page)
3441{
3442 if (mem_cgroup_disabled())
3443 return false;
3444
3445 return lookup_page_cgroup_used(page) != NULL;
3446}
3447
3448void mem_cgroup_print_bad_page(struct page *page)
3449{
3450 struct page_cgroup *pc;
3451
3452 pc = lookup_page_cgroup_used(page);
3453 if (pc) {
Hugh Dickins90b3fea2012-01-12 17:19:54 -08003454 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003455 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003456 }
3457}
3458#endif
3459
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003460static DEFINE_MUTEX(set_limit_mutex);
3461
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003462static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003463 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003464{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003465 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003466 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003467 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003468 int children = mem_cgroup_count_children(memcg);
3469 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003470 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003471
3472 /*
3473 * For keeping hierarchical_reclaim simple, how long we should retry
3474 * is depends on callers. We set our retry-count to be function
3475 * of # of children which we should visit in this loop.
3476 */
3477 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3478
3479 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003480
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003481 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003482 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003483 if (signal_pending(current)) {
3484 ret = -EINTR;
3485 break;
3486 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003487 /*
3488 * Rather than hide all in some function, I do this in
3489 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003490 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003491 */
3492 mutex_lock(&set_limit_mutex);
3493 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3494 if (memswlimit < val) {
3495 ret = -EINVAL;
3496 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003497 break;
3498 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003499
3500 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3501 if (memlimit < val)
3502 enlarge = 1;
3503
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003504 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003505 if (!ret) {
3506 if (memswlimit == val)
3507 memcg->memsw_is_minimum = true;
3508 else
3509 memcg->memsw_is_minimum = false;
3510 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003511 mutex_unlock(&set_limit_mutex);
3512
3513 if (!ret)
3514 break;
3515
Johannes Weiner56600482012-01-12 17:17:59 -08003516 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3517 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003518 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3519 /* Usage is reduced ? */
3520 if (curusage >= oldusage)
3521 retry_count--;
3522 else
3523 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003524 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003525 if (!ret && enlarge)
3526 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003527
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003528 return ret;
3529}
3530
Li Zefan338c8432009-06-17 16:27:15 -07003531static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3532 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003533{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003534 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003535 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003536 int children = mem_cgroup_count_children(memcg);
3537 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003538 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003539
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003540 /* see mem_cgroup_resize_res_limit */
3541 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3542 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003543 while (retry_count) {
3544 if (signal_pending(current)) {
3545 ret = -EINTR;
3546 break;
3547 }
3548 /*
3549 * Rather than hide all in some function, I do this in
3550 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003551 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003552 */
3553 mutex_lock(&set_limit_mutex);
3554 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3555 if (memlimit > val) {
3556 ret = -EINVAL;
3557 mutex_unlock(&set_limit_mutex);
3558 break;
3559 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003560 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3561 if (memswlimit < val)
3562 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003563 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003564 if (!ret) {
3565 if (memlimit == val)
3566 memcg->memsw_is_minimum = true;
3567 else
3568 memcg->memsw_is_minimum = false;
3569 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003570 mutex_unlock(&set_limit_mutex);
3571
3572 if (!ret)
3573 break;
3574
Johannes Weiner56600482012-01-12 17:17:59 -08003575 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3576 MEM_CGROUP_RECLAIM_NOSWAP |
3577 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003578 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003579 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003580 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003581 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003582 else
3583 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003584 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003585 if (!ret && enlarge)
3586 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003587 return ret;
3588}
3589
Balbir Singh4e416952009-09-23 15:56:39 -07003590unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
Ying Han0ae5e892011-05-26 16:25:25 -07003591 gfp_t gfp_mask,
3592 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003593{
3594 unsigned long nr_reclaimed = 0;
3595 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3596 unsigned long reclaimed;
3597 int loop = 0;
3598 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003599 unsigned long long excess;
Ying Han0ae5e892011-05-26 16:25:25 -07003600 unsigned long nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003601
3602 if (order > 0)
3603 return 0;
3604
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07003605 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
Balbir Singh4e416952009-09-23 15:56:39 -07003606 /*
3607 * This loop can run a while, specially if mem_cgroup's continuously
3608 * keep exceeding their soft limit and putting the system under
3609 * pressure
3610 */
3611 do {
3612 if (next_mz)
3613 mz = next_mz;
3614 else
3615 mz = mem_cgroup_largest_soft_limit_node(mctz);
3616 if (!mz)
3617 break;
3618
Ying Han0ae5e892011-05-26 16:25:25 -07003619 nr_scanned = 0;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003620 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
Johannes Weiner56600482012-01-12 17:17:59 -08003621 gfp_mask, &nr_scanned);
Balbir Singh4e416952009-09-23 15:56:39 -07003622 nr_reclaimed += reclaimed;
Ying Han0ae5e892011-05-26 16:25:25 -07003623 *total_scanned += nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003624 spin_lock(&mctz->lock);
3625
3626 /*
3627 * If we failed to reclaim anything from this memory cgroup
3628 * it is time to move on to the next cgroup
3629 */
3630 next_mz = NULL;
3631 if (!reclaimed) {
3632 do {
3633 /*
3634 * Loop until we find yet another one.
3635 *
3636 * By the time we get the soft_limit lock
3637 * again, someone might have aded the
3638 * group back on the RB tree. Iterate to
3639 * make sure we get a different mem.
3640 * mem_cgroup_largest_soft_limit_node returns
3641 * NULL if no other cgroup is present on
3642 * the tree
3643 */
3644 next_mz =
3645 __mem_cgroup_largest_soft_limit_node(mctz);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003646 if (next_mz == mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003647 css_put(&next_mz->memcg->css);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003648 else /* next_mz == NULL or other memcg */
Balbir Singh4e416952009-09-23 15:56:39 -07003649 break;
3650 } while (1);
3651 }
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003652 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
3653 excess = res_counter_soft_limit_excess(&mz->memcg->res);
Balbir Singh4e416952009-09-23 15:56:39 -07003654 /*
3655 * One school of thought says that we should not add
3656 * back the node to the tree if reclaim returns 0.
3657 * But our reclaim could return 0, simply because due
3658 * to priority we are exposing a smaller subset of
3659 * memory to reclaim from. Consider this as a longer
3660 * term TODO.
3661 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003662 /* If excess == 0, no tree ops */
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003663 __mem_cgroup_insert_exceeded(mz->memcg, mz, mctz, excess);
Balbir Singh4e416952009-09-23 15:56:39 -07003664 spin_unlock(&mctz->lock);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003665 css_put(&mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003666 loop++;
3667 /*
3668 * Could not reclaim anything and there are no more
3669 * mem cgroups to try or we seem to be looping without
3670 * reclaiming anything.
3671 */
3672 if (!nr_reclaimed &&
3673 (next_mz == NULL ||
3674 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3675 break;
3676 } while (!nr_reclaimed);
3677 if (next_mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003678 css_put(&next_mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003679 return nr_reclaimed;
3680}
3681
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07003682/*
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003683 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
3684 * reclaim the pages page themselves - it just removes the page_cgroups.
3685 * Returns true if some page_cgroups were not freed, indicating that the caller
3686 * must retry this operation.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003687 */
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003688static bool mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003689 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003690{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003691 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003692 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003693 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08003694 struct page *busy;
3695 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003696
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003697 zone = &NODE_DATA(node)->node_zones[zid];
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003698 mz = mem_cgroup_zoneinfo(memcg, node, zid);
Johannes Weiner6290df52012-01-12 17:18:10 -08003699 list = &mz->lruvec.lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003700
Hugh Dickins1eb49272012-03-21 16:34:19 -07003701 loop = mz->lru_size[lru];
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003702 /* give some margin against EBUSY etc...*/
3703 loop += 256;
3704 busy = NULL;
3705 while (loop--) {
Johannes Weiner925b7672012-01-12 17:18:15 -08003706 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07003707 struct page *page;
3708
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003709 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003710 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003711 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003712 break;
3713 }
Johannes Weiner925b7672012-01-12 17:18:15 -08003714 page = list_entry(list->prev, struct page, lru);
3715 if (busy == page) {
3716 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003717 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003718 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003719 continue;
3720 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003721 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003722
Johannes Weiner925b7672012-01-12 17:18:15 -08003723 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07003724
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003725 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003726 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08003727 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003728 cond_resched();
3729 } else
3730 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003731 }
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003732 return !list_empty(list);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003733}
3734
3735/*
3736 * make mem_cgroup's charge to be 0 if there is no task.
3737 * This enables deleting this mem_cgroup.
3738 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003739static int mem_cgroup_force_empty(struct mem_cgroup *memcg, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003740{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003741 int ret;
3742 int node, zid, shrink;
3743 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003744 struct cgroup *cgrp = memcg->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003745
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003746 css_get(&memcg->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003747
3748 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003749 /* should free all ? */
3750 if (free_all)
3751 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003752move_account:
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003753 do {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003754 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003755 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003756 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003757 /* This is for making all *used* pages to be on LRU. */
3758 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003759 drain_all_stock_sync(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003760 ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003761 mem_cgroup_start_move(memcg);
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08003762 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003763 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003764 enum lru_list lru;
3765 for_each_lru(lru) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003766 ret = mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003767 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003768 if (ret)
3769 break;
3770 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003771 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003772 if (ret)
3773 break;
3774 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003775 mem_cgroup_end_move(memcg);
3776 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003777 cond_resched();
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003778 /* "ret" should also be checked to ensure all lists are empty. */
Glauber Costa569530f2012-04-12 12:49:13 -07003779 } while (res_counter_read_u64(&memcg->res, RES_USAGE) > 0 || ret);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003780out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003781 css_put(&memcg->css);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003782 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003783
3784try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003785 /* returns EBUSY if there is a task or if we come here twice. */
3786 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003787 ret = -EBUSY;
3788 goto out;
3789 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003790 /* we call try-to-free pages for make this cgroup empty */
3791 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003792 /* try to free all pages in this cgroup */
3793 shrink = 1;
Glauber Costa569530f2012-04-12 12:49:13 -07003794 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003795 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003796
3797 if (signal_pending(current)) {
3798 ret = -EINTR;
3799 goto out;
3800 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003801 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07003802 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003803 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003804 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003805 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003806 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003807 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003808
3809 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003810 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003811 /* try move_account...there may be some *locked* pages. */
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003812 goto move_account;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003813}
3814
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07003815static int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003816{
3817 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3818}
3819
3820
Balbir Singh18f59ea2009-01-07 18:08:07 -08003821static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3822{
3823 return mem_cgroup_from_cont(cont)->use_hierarchy;
3824}
3825
3826static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3827 u64 val)
3828{
3829 int retval = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003830 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003831 struct cgroup *parent = cont->parent;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003832 struct mem_cgroup *parent_memcg = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003833
3834 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003835 parent_memcg = mem_cgroup_from_cont(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003836
3837 cgroup_lock();
Glauber Costa567fb432012-07-31 16:43:07 -07003838
3839 if (memcg->use_hierarchy == val)
3840 goto out;
3841
Balbir Singh18f59ea2009-01-07 18:08:07 -08003842 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003843 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003844 * in the child subtrees. If it is unset, then the change can
3845 * occur, provided the current cgroup has no children.
3846 *
3847 * For the root cgroup, parent_mem is NULL, we allow value to be
3848 * set if there are no children.
3849 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003850 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003851 (val == 1 || val == 0)) {
3852 if (list_empty(&cont->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003853 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003854 else
3855 retval = -EBUSY;
3856 } else
3857 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07003858
3859out:
Balbir Singh18f59ea2009-01-07 18:08:07 -08003860 cgroup_unlock();
3861
3862 return retval;
3863}
3864
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003865
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003866static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003867 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003868{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003869 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003870 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003871
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003872 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003873 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003874 val += mem_cgroup_read_stat(iter, idx);
3875
3876 if (val < 0) /* race ? */
3877 val = 0;
3878 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003879}
3880
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003881static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003882{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003883 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003884
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003885 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003886 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00003887 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003888 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00003889 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003890 }
3891
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003892 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
3893 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003894
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003895 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07003896 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003897
3898 return val << PAGE_SHIFT;
3899}
3900
Tejun Heoaf36f902012-04-01 12:09:55 -07003901static ssize_t mem_cgroup_read(struct cgroup *cont, struct cftype *cft,
3902 struct file *file, char __user *buf,
3903 size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003904{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003905 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Tejun Heoaf36f902012-04-01 12:09:55 -07003906 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003907 u64 val;
Tejun Heoaf36f902012-04-01 12:09:55 -07003908 int type, name, len;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003909
3910 type = MEMFILE_TYPE(cft->private);
3911 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003912
3913 if (!do_swap_account && type == _MEMSWAP)
3914 return -EOPNOTSUPP;
3915
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003916 switch (type) {
3917 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003918 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003919 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003920 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003921 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003922 break;
3923 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003924 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003925 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003926 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003927 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003928 break;
3929 default:
3930 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003931 }
Tejun Heoaf36f902012-04-01 12:09:55 -07003932
3933 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
3934 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003935}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003936/*
3937 * The user of this function is...
3938 * RES_LIMIT.
3939 */
Paul Menage856c13a2008-07-25 01:47:04 -07003940static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
3941 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003942{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003943 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003944 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003945 unsigned long long val;
3946 int ret;
3947
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003948 type = MEMFILE_TYPE(cft->private);
3949 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003950
3951 if (!do_swap_account && type == _MEMSWAP)
3952 return -EOPNOTSUPP;
3953
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003954 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003955 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07003956 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3957 ret = -EINVAL;
3958 break;
3959 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003960 /* This function does all necessary parse...reuse it */
3961 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003962 if (ret)
3963 break;
3964 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003965 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003966 else
3967 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003968 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07003969 case RES_SOFT_LIMIT:
3970 ret = res_counter_memparse_write_strategy(buffer, &val);
3971 if (ret)
3972 break;
3973 /*
3974 * For memsw, soft limits are hard to implement in terms
3975 * of semantics, for now, we support soft limits for
3976 * control without swap
3977 */
3978 if (type == _MEM)
3979 ret = res_counter_set_soft_limit(&memcg->res, val);
3980 else
3981 ret = -EINVAL;
3982 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003983 default:
3984 ret = -EINVAL; /* should be BUG() ? */
3985 break;
3986 }
3987 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003988}
3989
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08003990static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
3991 unsigned long long *mem_limit, unsigned long long *memsw_limit)
3992{
3993 struct cgroup *cgroup;
3994 unsigned long long min_limit, min_memsw_limit, tmp;
3995
3996 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3997 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3998 cgroup = memcg->css.cgroup;
3999 if (!memcg->use_hierarchy)
4000 goto out;
4001
4002 while (cgroup->parent) {
4003 cgroup = cgroup->parent;
4004 memcg = mem_cgroup_from_cont(cgroup);
4005 if (!memcg->use_hierarchy)
4006 break;
4007 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4008 min_limit = min(min_limit, tmp);
4009 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4010 min_memsw_limit = min(min_memsw_limit, tmp);
4011 }
4012out:
4013 *mem_limit = min_limit;
4014 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004015}
4016
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004017static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004018{
Tejun Heoaf36f902012-04-01 12:09:55 -07004019 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004020 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004021
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004022 type = MEMFILE_TYPE(event);
4023 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07004024
4025 if (!do_swap_account && type == _MEMSWAP)
4026 return -EOPNOTSUPP;
4027
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004028 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004029 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004030 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004031 res_counter_reset_max(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004032 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004033 res_counter_reset_max(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004034 break;
4035 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004036 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004037 res_counter_reset_failcnt(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004038 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004039 res_counter_reset_failcnt(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004040 break;
4041 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004042
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004043 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004044}
4045
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004046static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
4047 struct cftype *cft)
4048{
4049 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
4050}
4051
Daisuke Nishimura02491442010-03-10 15:22:17 -08004052#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004053static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4054 struct cftype *cft, u64 val)
4055{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004056 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004057
4058 if (val >= (1 << NR_MOVE_TYPE))
4059 return -EINVAL;
4060 /*
4061 * We check this value several times in both in can_attach() and
4062 * attach(), so we need cgroup lock to prevent this value from being
4063 * inconsistent.
4064 */
4065 cgroup_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004066 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004067 cgroup_unlock();
4068
4069 return 0;
4070}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004071#else
4072static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4073 struct cftype *cft, u64 val)
4074{
4075 return -ENOSYS;
4076}
4077#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004078
Ying Han406eb0c2011-05-26 16:25:37 -07004079#ifdef CONFIG_NUMA
Wanpeng Liab215882012-07-31 16:43:09 -07004080static int memcg_numa_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weinerfada52c2012-05-29 15:07:06 -07004081 struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07004082{
4083 int nid;
4084 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
4085 unsigned long node_nr;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004086 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Ying Han406eb0c2011-05-26 16:25:37 -07004087
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004088 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004089 seq_printf(m, "total=%lu", total_nr);
4090 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004091 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004092 seq_printf(m, " N%d=%lu", nid, node_nr);
4093 }
4094 seq_putc(m, '\n');
4095
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004096 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004097 seq_printf(m, "file=%lu", file_nr);
4098 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004099 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004100 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004101 seq_printf(m, " N%d=%lu", nid, node_nr);
4102 }
4103 seq_putc(m, '\n');
4104
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004105 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004106 seq_printf(m, "anon=%lu", anon_nr);
4107 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004108 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004109 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004110 seq_printf(m, " N%d=%lu", nid, node_nr);
4111 }
4112 seq_putc(m, '\n');
4113
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004114 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004115 seq_printf(m, "unevictable=%lu", unevictable_nr);
4116 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004117 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004118 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004119 seq_printf(m, " N%d=%lu", nid, node_nr);
4120 }
4121 seq_putc(m, '\n');
4122 return 0;
4123}
4124#endif /* CONFIG_NUMA */
4125
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004126static const char * const mem_cgroup_lru_names[] = {
4127 "inactive_anon",
4128 "active_anon",
4129 "inactive_file",
4130 "active_file",
4131 "unevictable",
4132};
4133
4134static inline void mem_cgroup_lru_names_not_uptodate(void)
4135{
4136 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
4137}
4138
Wanpeng Liab215882012-07-31 16:43:09 -07004139static int memcg_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004140 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004141{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004142 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004143 struct mem_cgroup *mi;
4144 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004145
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004146 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004147 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004148 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004149 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
4150 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004151 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004152
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004153 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
4154 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
4155 mem_cgroup_read_events(memcg, i));
4156
4157 for (i = 0; i < NR_LRU_LISTS; i++)
4158 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
4159 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
4160
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004161 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004162 {
4163 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004164 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004165 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004166 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004167 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4168 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004169 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004170
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004171 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
4172 long long val = 0;
4173
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004174 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004175 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004176 for_each_mem_cgroup_tree(mi, memcg)
4177 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
4178 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
4179 }
4180
4181 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
4182 unsigned long long val = 0;
4183
4184 for_each_mem_cgroup_tree(mi, memcg)
4185 val += mem_cgroup_read_events(mi, i);
4186 seq_printf(m, "total_%s %llu\n",
4187 mem_cgroup_events_names[i], val);
4188 }
4189
4190 for (i = 0; i < NR_LRU_LISTS; i++) {
4191 unsigned long long val = 0;
4192
4193 for_each_mem_cgroup_tree(mi, memcg)
4194 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
4195 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004196 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004197
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004198#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004199 {
4200 int nid, zid;
4201 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07004202 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004203 unsigned long recent_rotated[2] = {0, 0};
4204 unsigned long recent_scanned[2] = {0, 0};
4205
4206 for_each_online_node(nid)
4207 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004208 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07004209 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004210
Hugh Dickins89abfab2012-05-29 15:06:53 -07004211 recent_rotated[0] += rstat->recent_rotated[0];
4212 recent_rotated[1] += rstat->recent_rotated[1];
4213 recent_scanned[0] += rstat->recent_scanned[0];
4214 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004215 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004216 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
4217 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
4218 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
4219 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004220 }
4221#endif
4222
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004223 return 0;
4224}
4225
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004226static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
4227{
4228 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4229
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004230 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004231}
4232
4233static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
4234 u64 val)
4235{
4236 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4237 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08004238
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004239 if (val > 100)
4240 return -EINVAL;
4241
4242 if (cgrp->parent == NULL)
4243 return -EINVAL;
4244
4245 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08004246
4247 cgroup_lock();
4248
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004249 /* If under hierarchy, only empty-root can set this value */
4250 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08004251 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
4252 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004253 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08004254 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004255
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004256 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004257
Li Zefan068b38c2009-01-15 13:51:26 -08004258 cgroup_unlock();
4259
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004260 return 0;
4261}
4262
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004263static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4264{
4265 struct mem_cgroup_threshold_ary *t;
4266 u64 usage;
4267 int i;
4268
4269 rcu_read_lock();
4270 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004271 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004272 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004273 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004274
4275 if (!t)
4276 goto unlock;
4277
4278 usage = mem_cgroup_usage(memcg, swap);
4279
4280 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004281 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004282 * If it's not true, a threshold was crossed after last
4283 * call of __mem_cgroup_threshold().
4284 */
Phil Carmody5407a562010-05-26 14:42:42 -07004285 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004286
4287 /*
4288 * Iterate backward over array of thresholds starting from
4289 * current_threshold and check if a threshold is crossed.
4290 * If none of thresholds below usage is crossed, we read
4291 * only one element of the array here.
4292 */
4293 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4294 eventfd_signal(t->entries[i].eventfd, 1);
4295
4296 /* i = current_threshold + 1 */
4297 i++;
4298
4299 /*
4300 * Iterate forward over array of thresholds starting from
4301 * current_threshold+1 and check if a threshold is crossed.
4302 * If none of thresholds above usage is crossed, we read
4303 * only one element of the array here.
4304 */
4305 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4306 eventfd_signal(t->entries[i].eventfd, 1);
4307
4308 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004309 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004310unlock:
4311 rcu_read_unlock();
4312}
4313
4314static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4315{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004316 while (memcg) {
4317 __mem_cgroup_threshold(memcg, false);
4318 if (do_swap_account)
4319 __mem_cgroup_threshold(memcg, true);
4320
4321 memcg = parent_mem_cgroup(memcg);
4322 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004323}
4324
4325static int compare_thresholds(const void *a, const void *b)
4326{
4327 const struct mem_cgroup_threshold *_a = a;
4328 const struct mem_cgroup_threshold *_b = b;
4329
4330 return _a->threshold - _b->threshold;
4331}
4332
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004333static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004334{
4335 struct mem_cgroup_eventfd_list *ev;
4336
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004337 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004338 eventfd_signal(ev->eventfd, 1);
4339 return 0;
4340}
4341
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004342static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004343{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004344 struct mem_cgroup *iter;
4345
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004346 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004347 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004348}
4349
4350static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4351 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004352{
4353 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004354 struct mem_cgroup_thresholds *thresholds;
4355 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004356 int type = MEMFILE_TYPE(cft->private);
4357 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004358 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004359
4360 ret = res_counter_memparse_write_strategy(args, &threshold);
4361 if (ret)
4362 return ret;
4363
4364 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004365
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004366 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004367 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004368 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004369 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004370 else
4371 BUG();
4372
4373 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4374
4375 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004376 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004377 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4378
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004379 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004380
4381 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004382 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004383 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004384 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004385 ret = -ENOMEM;
4386 goto unlock;
4387 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004388 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004389
4390 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004391 if (thresholds->primary) {
4392 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004393 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004394 }
4395
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004396 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004397 new->entries[size - 1].eventfd = eventfd;
4398 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004399
4400 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004401 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004402 compare_thresholds, NULL);
4403
4404 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004405 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004406 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004407 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004408 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004409 * new->current_threshold will not be used until
4410 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004411 * it here.
4412 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004413 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004414 } else
4415 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004416 }
4417
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004418 /* Free old spare buffer and save old primary buffer as spare */
4419 kfree(thresholds->spare);
4420 thresholds->spare = thresholds->primary;
4421
4422 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004423
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004424 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004425 synchronize_rcu();
4426
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004427unlock:
4428 mutex_unlock(&memcg->thresholds_lock);
4429
4430 return ret;
4431}
4432
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004433static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004434 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004435{
4436 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004437 struct mem_cgroup_thresholds *thresholds;
4438 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004439 int type = MEMFILE_TYPE(cft->private);
4440 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004441 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004442
4443 mutex_lock(&memcg->thresholds_lock);
4444 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004445 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004446 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004447 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004448 else
4449 BUG();
4450
Anton Vorontsov371528c2012-02-24 05:14:46 +04004451 if (!thresholds->primary)
4452 goto unlock;
4453
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004454 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4455
4456 /* Check if a threshold crossed before removing */
4457 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4458
4459 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004460 size = 0;
4461 for (i = 0; i < thresholds->primary->size; i++) {
4462 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004463 size++;
4464 }
4465
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004466 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004467
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004468 /* Set thresholds array to NULL if we don't have thresholds */
4469 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004470 kfree(new);
4471 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004472 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004473 }
4474
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004475 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004476
4477 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004478 new->current_threshold = -1;
4479 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4480 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004481 continue;
4482
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004483 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004484 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004485 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004486 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004487 * until rcu_assign_pointer(), so it's safe to increment
4488 * it here.
4489 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004490 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004491 }
4492 j++;
4493 }
4494
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004495swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004496 /* Swap primary and spare array */
4497 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004498 /* If all events are unregistered, free the spare array */
4499 if (!new) {
4500 kfree(thresholds->spare);
4501 thresholds->spare = NULL;
4502 }
4503
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004504 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004505
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004506 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004507 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04004508unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004509 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004510}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004511
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004512static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4513 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4514{
4515 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4516 struct mem_cgroup_eventfd_list *event;
4517 int type = MEMFILE_TYPE(cft->private);
4518
4519 BUG_ON(type != _OOM_TYPE);
4520 event = kmalloc(sizeof(*event), GFP_KERNEL);
4521 if (!event)
4522 return -ENOMEM;
4523
Michal Hocko1af8efe2011-07-26 16:08:24 -07004524 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004525
4526 event->eventfd = eventfd;
4527 list_add(&event->list, &memcg->oom_notify);
4528
4529 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004530 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004531 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004532 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004533
4534 return 0;
4535}
4536
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004537static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004538 struct cftype *cft, struct eventfd_ctx *eventfd)
4539{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004540 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004541 struct mem_cgroup_eventfd_list *ev, *tmp;
4542 int type = MEMFILE_TYPE(cft->private);
4543
4544 BUG_ON(type != _OOM_TYPE);
4545
Michal Hocko1af8efe2011-07-26 16:08:24 -07004546 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004547
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004548 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004549 if (ev->eventfd == eventfd) {
4550 list_del(&ev->list);
4551 kfree(ev);
4552 }
4553 }
4554
Michal Hocko1af8efe2011-07-26 16:08:24 -07004555 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004556}
4557
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004558static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4559 struct cftype *cft, struct cgroup_map_cb *cb)
4560{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004561 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004562
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004563 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004564
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004565 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004566 cb->fill(cb, "under_oom", 1);
4567 else
4568 cb->fill(cb, "under_oom", 0);
4569 return 0;
4570}
4571
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004572static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4573 struct cftype *cft, u64 val)
4574{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004575 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004576 struct mem_cgroup *parent;
4577
4578 /* cannot set to root cgroup and only 0 and 1 are allowed */
4579 if (!cgrp->parent || !((val == 0) || (val == 1)))
4580 return -EINVAL;
4581
4582 parent = mem_cgroup_from_cont(cgrp->parent);
4583
4584 cgroup_lock();
4585 /* oom-kill-disable is a flag for subhierarchy. */
4586 if ((parent->use_hierarchy) ||
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004587 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004588 cgroup_unlock();
4589 return -EINVAL;
4590 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004591 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004592 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004593 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004594 cgroup_unlock();
4595 return 0;
4596}
4597
Andrew Mortonc255a452012-07-31 16:43:02 -07004598#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03004599static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004600{
Glauber Costa1d62e432012-04-09 19:36:33 -03004601 return mem_cgroup_sockets_init(memcg, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00004602};
4603
Glauber Costa1d62e432012-04-09 19:36:33 -03004604static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004605{
Glauber Costa1d62e432012-04-09 19:36:33 -03004606 mem_cgroup_sockets_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004607}
Glauber Costae5671df2011-12-11 21:47:01 +00004608#else
Glauber Costacbe128e32012-04-09 19:36:34 -03004609static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004610{
4611 return 0;
4612}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004613
Glauber Costa1d62e432012-04-09 19:36:33 -03004614static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004615{
4616}
Glauber Costae5671df2011-12-11 21:47:01 +00004617#endif
4618
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004619static struct cftype mem_cgroup_files[] = {
4620 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004621 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004622 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004623 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004624 .register_event = mem_cgroup_usage_register_event,
4625 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004626 },
4627 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004628 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004629 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004630 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004631 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004632 },
4633 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004634 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004635 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07004636 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004637 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004638 },
4639 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004640 .name = "soft_limit_in_bytes",
4641 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4642 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004643 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07004644 },
4645 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004646 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004647 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004648 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004649 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004650 },
Balbir Singh8697d332008-02-07 00:13:59 -08004651 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004652 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004653 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004654 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004655 {
4656 .name = "force_empty",
4657 .trigger = mem_cgroup_force_empty_write,
4658 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004659 {
4660 .name = "use_hierarchy",
4661 .write_u64 = mem_cgroup_hierarchy_write,
4662 .read_u64 = mem_cgroup_hierarchy_read,
4663 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004664 {
4665 .name = "swappiness",
4666 .read_u64 = mem_cgroup_swappiness_read,
4667 .write_u64 = mem_cgroup_swappiness_write,
4668 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004669 {
4670 .name = "move_charge_at_immigrate",
4671 .read_u64 = mem_cgroup_move_charge_read,
4672 .write_u64 = mem_cgroup_move_charge_write,
4673 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004674 {
4675 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004676 .read_map = mem_cgroup_oom_control_read,
4677 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004678 .register_event = mem_cgroup_oom_register_event,
4679 .unregister_event = mem_cgroup_oom_unregister_event,
4680 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4681 },
Ying Han406eb0c2011-05-26 16:25:37 -07004682#ifdef CONFIG_NUMA
4683 {
4684 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004685 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07004686 },
4687#endif
Andrew Mortonc255a452012-07-31 16:43:02 -07004688#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004689 {
4690 .name = "memsw.usage_in_bytes",
4691 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004692 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004693 .register_event = mem_cgroup_usage_register_event,
4694 .unregister_event = mem_cgroup_usage_unregister_event,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004695 },
4696 {
4697 .name = "memsw.max_usage_in_bytes",
4698 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4699 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004700 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004701 },
4702 {
4703 .name = "memsw.limit_in_bytes",
4704 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4705 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004706 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004707 },
4708 {
4709 .name = "memsw.failcnt",
4710 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4711 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004712 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004713 },
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004714#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07004715 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07004716};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004717
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004718static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004719{
4720 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004721 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004722 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004723 /*
4724 * This routine is called against possible nodes.
4725 * But it's BUG to call kmalloc() against offline node.
4726 *
4727 * TODO: this routine can waste much memory for nodes which will
4728 * never be onlined. It's better to use memory hotplug callback
4729 * function.
4730 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004731 if (!node_state(node, N_NORMAL_MEMORY))
4732 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004733 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004734 if (!pn)
4735 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004736
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004737 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4738 mz = &pn->zoneinfo[zone];
Konstantin Khlebnikov7f5e86c2012-05-29 15:06:58 -07004739 lruvec_init(&mz->lruvec, &NODE_DATA(node)->node_zones[zone]);
Balbir Singhf64c3f52009-09-23 15:56:37 -07004740 mz->usage_in_excess = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07004741 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004742 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004743 }
Igor Mammedov0a619e52011-11-02 13:38:21 -07004744 memcg->info.nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004745 return 0;
4746}
4747
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004748static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004749{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004750 kfree(memcg->info.nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004751}
4752
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004753static struct mem_cgroup *mem_cgroup_alloc(void)
4754{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004755 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004756 int size = sizeof(struct mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004757
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004758 /* Can be very big if MAX_NUMNODES is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08004759 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004760 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004761 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004762 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004763
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004764 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004765 return NULL;
4766
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004767 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
4768 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004769 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004770 spin_lock_init(&memcg->pcp_counter_lock);
4771 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004772
4773out_free:
4774 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004775 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004776 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004777 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004778 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004779}
4780
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004781/*
Glauber Costa3afe36b2012-05-29 15:07:10 -07004782 * Helpers for freeing a kmalloc()ed/vzalloc()ed mem_cgroup by RCU,
Hugh Dickins59927fb2012-03-15 15:17:07 -07004783 * but in process context. The work_freeing structure is overlaid
4784 * on the rcu_freeing structure, which itself is overlaid on memsw.
4785 */
Glauber Costa3afe36b2012-05-29 15:07:10 -07004786static void free_work(struct work_struct *work)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004787{
4788 struct mem_cgroup *memcg;
Glauber Costa3afe36b2012-05-29 15:07:10 -07004789 int size = sizeof(struct mem_cgroup);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004790
4791 memcg = container_of(work, struct mem_cgroup, work_freeing);
Glauber Costa3f134612012-05-29 15:07:11 -07004792 /*
4793 * We need to make sure that (at least for now), the jump label
4794 * destruction code runs outside of the cgroup lock. This is because
4795 * get_online_cpus(), which is called from the static_branch update,
4796 * can't be called inside the cgroup_lock. cpusets are the ones
4797 * enforcing this dependency, so if they ever change, we might as well.
4798 *
4799 * schedule_work() will guarantee this happens. Be careful if you need
4800 * to move this code around, and make sure it is outside
4801 * the cgroup_lock.
4802 */
4803 disarm_sock_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004804 if (size < PAGE_SIZE)
4805 kfree(memcg);
4806 else
4807 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004808}
Glauber Costa3afe36b2012-05-29 15:07:10 -07004809
4810static void free_rcu(struct rcu_head *rcu_head)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004811{
4812 struct mem_cgroup *memcg;
4813
4814 memcg = container_of(rcu_head, struct mem_cgroup, rcu_freeing);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004815 INIT_WORK(&memcg->work_freeing, free_work);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004816 schedule_work(&memcg->work_freeing);
4817}
4818
4819/*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004820 * At destroying mem_cgroup, references from swap_cgroup can remain.
4821 * (scanning all at force_empty is too costly...)
4822 *
4823 * Instead of clearing all references at force_empty, we remember
4824 * the number of reference from swap_cgroup and free mem_cgroup when
4825 * it goes down to 0.
4826 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004827 * Removal of cgroup itself succeeds regardless of refs from swap.
4828 */
4829
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004830static void __mem_cgroup_free(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004831{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004832 int node;
4833
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004834 mem_cgroup_remove_from_trees(memcg);
4835 free_css_id(&mem_cgroup_subsys, &memcg->css);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004836
Bob Liu3ed28fa2012-01-12 17:19:04 -08004837 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004838 free_mem_cgroup_per_zone_info(memcg, node);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004839
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004840 free_percpu(memcg->stat);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004841 call_rcu(&memcg->rcu_freeing, free_rcu);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004842}
4843
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004844static void mem_cgroup_get(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004845{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004846 atomic_inc(&memcg->refcnt);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004847}
4848
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004849static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004850{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004851 if (atomic_sub_and_test(count, &memcg->refcnt)) {
4852 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4853 __mem_cgroup_free(memcg);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004854 if (parent)
4855 mem_cgroup_put(parent);
4856 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004857}
4858
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004859static void mem_cgroup_put(struct mem_cgroup *memcg)
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004860{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004861 __mem_cgroup_put(memcg, 1);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004862}
4863
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004864/*
4865 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4866 */
Glauber Costae1aab162011-12-11 21:47:03 +00004867struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004868{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004869 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004870 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004871 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004872}
Glauber Costae1aab162011-12-11 21:47:03 +00004873EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004874
Andrew Mortonc255a452012-07-31 16:43:02 -07004875#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004876static void __init enable_swap_cgroup(void)
4877{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004878 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004879 do_swap_account = 1;
4880}
4881#else
4882static void __init enable_swap_cgroup(void)
4883{
4884}
4885#endif
4886
Balbir Singhf64c3f52009-09-23 15:56:37 -07004887static int mem_cgroup_soft_limit_tree_init(void)
4888{
4889 struct mem_cgroup_tree_per_node *rtpn;
4890 struct mem_cgroup_tree_per_zone *rtpz;
4891 int tmp, node, zone;
4892
Bob Liu3ed28fa2012-01-12 17:19:04 -08004893 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -07004894 tmp = node;
4895 if (!node_state(node, N_NORMAL_MEMORY))
4896 tmp = -1;
4897 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
4898 if (!rtpn)
Michal Hockoc3cecc62012-01-12 17:18:50 -08004899 goto err_cleanup;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004900
4901 soft_limit_tree.rb_tree_per_node[node] = rtpn;
4902
4903 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4904 rtpz = &rtpn->rb_tree_per_zone[zone];
4905 rtpz->rb_root = RB_ROOT;
4906 spin_lock_init(&rtpz->lock);
4907 }
4908 }
4909 return 0;
Michal Hockoc3cecc62012-01-12 17:18:50 -08004910
4911err_cleanup:
Bob Liu3ed28fa2012-01-12 17:19:04 -08004912 for_each_node(node) {
Michal Hockoc3cecc62012-01-12 17:18:50 -08004913 if (!soft_limit_tree.rb_tree_per_node[node])
4914 break;
4915 kfree(soft_limit_tree.rb_tree_per_node[node]);
4916 soft_limit_tree.rb_tree_per_node[node] = NULL;
4917 }
4918 return 1;
4919
Balbir Singhf64c3f52009-09-23 15:56:37 -07004920}
4921
Li Zefan0eb253e2009-01-15 13:51:25 -08004922static struct cgroup_subsys_state * __ref
Li Zefan761b3ef2012-01-31 13:47:36 +08004923mem_cgroup_create(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004924{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004925 struct mem_cgroup *memcg, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004926 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004927 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004928
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004929 memcg = mem_cgroup_alloc();
4930 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004931 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004932
Bob Liu3ed28fa2012-01-12 17:19:04 -08004933 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004934 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004935 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004936
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004937 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004938 if (cont->parent == NULL) {
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004939 int cpu;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004940 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004941 parent = NULL;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004942 if (mem_cgroup_soft_limit_tree_init())
4943 goto free_out;
Hillf Dantona41c58a2011-12-19 17:11:57 -08004944 root_mem_cgroup = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004945 for_each_possible_cpu(cpu) {
4946 struct memcg_stock_pcp *stock =
4947 &per_cpu(memcg_stock, cpu);
4948 INIT_WORK(&stock->work, drain_local_stock);
4949 }
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07004950 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004951 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004952 parent = mem_cgroup_from_cont(cont->parent);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004953 memcg->use_hierarchy = parent->use_hierarchy;
4954 memcg->oom_kill_disable = parent->oom_kill_disable;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004955 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004956
Balbir Singh18f59ea2009-01-07 18:08:07 -08004957 if (parent && parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004958 res_counter_init(&memcg->res, &parent->res);
4959 res_counter_init(&memcg->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004960 /*
4961 * We increment refcnt of the parent to ensure that we can
4962 * safely access it on res_counter_charge/uncharge.
4963 * This refcnt will be decremented when freeing this
4964 * mem_cgroup(see mem_cgroup_put).
4965 */
4966 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004967 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004968 res_counter_init(&memcg->res, NULL);
4969 res_counter_init(&memcg->memsw, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004970 /*
4971 * Deeper hierachy with use_hierarchy == false doesn't make
4972 * much sense so let cgroup subsystem know about this
4973 * unfortunate state in our controller.
4974 */
4975 if (parent && parent != root_mem_cgroup)
4976 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004977 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004978 memcg->last_scanned_node = MAX_NUMNODES;
4979 INIT_LIST_HEAD(&memcg->oom_notify);
Balbir Singh6d61ef42009-01-07 18:08:06 -08004980
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004981 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004982 memcg->swappiness = mem_cgroup_swappiness(parent);
4983 atomic_set(&memcg->refcnt, 1);
4984 memcg->move_charge_at_immigrate = 0;
4985 mutex_init(&memcg->thresholds_lock);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07004986 spin_lock_init(&memcg->move_lock);
Glauber Costacbe128e32012-04-09 19:36:34 -03004987
4988 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
4989 if (error) {
4990 /*
4991 * We call put now because our (and parent's) refcnts
4992 * are already in place. mem_cgroup_put() will internally
4993 * call __mem_cgroup_free, so return directly
4994 */
4995 mem_cgroup_put(memcg);
4996 return ERR_PTR(error);
4997 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004998 return &memcg->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004999free_out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005000 __mem_cgroup_free(memcg);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005001 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005002}
5003
Li Zefan761b3ef2012-01-31 13:47:36 +08005004static int mem_cgroup_pre_destroy(struct cgroup *cont)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005005{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005006 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005007
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005008 return mem_cgroup_force_empty(memcg, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005009}
5010
Li Zefan761b3ef2012-01-31 13:47:36 +08005011static void mem_cgroup_destroy(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005012{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005013 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005014
Glauber Costa1d62e432012-04-09 19:36:33 -03005015 kmem_cgroup_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005016
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005017 mem_cgroup_put(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005018}
5019
Daisuke Nishimura02491442010-03-10 15:22:17 -08005020#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005021/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005022#define PRECHARGE_COUNT_AT_ONCE 256
5023static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005024{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005025 int ret = 0;
5026 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005027 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005028
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005029 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005030 mc.precharge += count;
5031 /* we don't need css_get for root */
5032 return ret;
5033 }
5034 /* try to charge at once */
5035 if (count > 1) {
5036 struct res_counter *dummy;
5037 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005038 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005039 * by cgroup_lock_live_cgroup() that it is not removed and we
5040 * are still under the same cgroup_mutex. So we can postpone
5041 * css_get().
5042 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005043 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005044 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005045 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005046 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005047 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005048 goto one_by_one;
5049 }
5050 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005051 return ret;
5052 }
5053one_by_one:
5054 /* fall back to one by one charge */
5055 while (count--) {
5056 if (signal_pending(current)) {
5057 ret = -EINTR;
5058 break;
5059 }
5060 if (!batch_count--) {
5061 batch_count = PRECHARGE_COUNT_AT_ONCE;
5062 cond_resched();
5063 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005064 ret = __mem_cgroup_try_charge(NULL,
5065 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005066 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005067 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005068 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005069 mc.precharge++;
5070 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005071 return ret;
5072}
5073
5074/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005075 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005076 * @vma: the vma the pte to be checked belongs
5077 * @addr: the address corresponding to the pte to be checked
5078 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005079 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005080 *
5081 * Returns
5082 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5083 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5084 * move charge. if @target is not NULL, the page is stored in target->page
5085 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005086 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5087 * target for charge migration. if @target is not NULL, the entry is stored
5088 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005089 *
5090 * Called with pte lock held.
5091 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005092union mc_target {
5093 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005094 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005095};
5096
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005097enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005098 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005099 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005100 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005101};
5102
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005103static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5104 unsigned long addr, pte_t ptent)
5105{
5106 struct page *page = vm_normal_page(vma, addr, ptent);
5107
5108 if (!page || !page_mapped(page))
5109 return NULL;
5110 if (PageAnon(page)) {
5111 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005112 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005113 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005114 } else if (!move_file())
5115 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005116 return NULL;
5117 if (!get_page_unless_zero(page))
5118 return NULL;
5119
5120 return page;
5121}
5122
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005123#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005124static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5125 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5126{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005127 struct page *page = NULL;
5128 swp_entry_t ent = pte_to_swp_entry(ptent);
5129
5130 if (!move_anon() || non_swap_entry(ent))
5131 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005132 /*
5133 * Because lookup_swap_cache() updates some statistics counter,
5134 * we call find_get_page() with swapper_space directly.
5135 */
5136 page = find_get_page(&swapper_space, ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005137 if (do_swap_account)
5138 entry->val = ent.val;
5139
5140 return page;
5141}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005142#else
5143static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5144 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5145{
5146 return NULL;
5147}
5148#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005149
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005150static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5151 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5152{
5153 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005154 struct address_space *mapping;
5155 pgoff_t pgoff;
5156
5157 if (!vma->vm_file) /* anonymous vma */
5158 return NULL;
5159 if (!move_file())
5160 return NULL;
5161
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005162 mapping = vma->vm_file->f_mapping;
5163 if (pte_none(ptent))
5164 pgoff = linear_page_index(vma, addr);
5165 else /* pte_file(ptent) is true */
5166 pgoff = pte_to_pgoff(ptent);
5167
5168 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005169 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005170
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005171#ifdef CONFIG_SWAP
5172 /* shmem/tmpfs may report page out on swap: account for that too. */
5173 if (radix_tree_exceptional_entry(page)) {
5174 swp_entry_t swap = radix_to_swp_entry(page);
5175 if (do_swap_account)
5176 *entry = swap;
5177 page = find_get_page(&swapper_space, swap.val);
5178 }
5179#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005180 return page;
5181}
5182
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005183static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005184 unsigned long addr, pte_t ptent, union mc_target *target)
5185{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005186 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005187 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005188 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005189 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005190
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005191 if (pte_present(ptent))
5192 page = mc_handle_present_pte(vma, addr, ptent);
5193 else if (is_swap_pte(ptent))
5194 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005195 else if (pte_none(ptent) || pte_file(ptent))
5196 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005197
5198 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005199 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005200 if (page) {
5201 pc = lookup_page_cgroup(page);
5202 /*
5203 * Do only loose check w/o page_cgroup lock.
5204 * mem_cgroup_move_account() checks the pc is valid or not under
5205 * the lock.
5206 */
5207 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5208 ret = MC_TARGET_PAGE;
5209 if (target)
5210 target->page = page;
5211 }
5212 if (!ret || !target)
5213 put_page(page);
5214 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005215 /* There is a swap entry and a page doesn't exist or isn't charged */
5216 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08005217 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005218 ret = MC_TARGET_SWAP;
5219 if (target)
5220 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005221 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005222 return ret;
5223}
5224
Naoya Horiguchi12724852012-03-21 16:34:28 -07005225#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5226/*
5227 * We don't consider swapping or file mapped pages because THP does not
5228 * support them for now.
5229 * Caller should make sure that pmd_trans_huge(pmd) is true.
5230 */
5231static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5232 unsigned long addr, pmd_t pmd, union mc_target *target)
5233{
5234 struct page *page = NULL;
5235 struct page_cgroup *pc;
5236 enum mc_target_type ret = MC_TARGET_NONE;
5237
5238 page = pmd_page(pmd);
5239 VM_BUG_ON(!page || !PageHead(page));
5240 if (!move_anon())
5241 return ret;
5242 pc = lookup_page_cgroup(page);
5243 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5244 ret = MC_TARGET_PAGE;
5245 if (target) {
5246 get_page(page);
5247 target->page = page;
5248 }
5249 }
5250 return ret;
5251}
5252#else
5253static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5254 unsigned long addr, pmd_t pmd, union mc_target *target)
5255{
5256 return MC_TARGET_NONE;
5257}
5258#endif
5259
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005260static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5261 unsigned long addr, unsigned long end,
5262 struct mm_walk *walk)
5263{
5264 struct vm_area_struct *vma = walk->private;
5265 pte_t *pte;
5266 spinlock_t *ptl;
5267
Naoya Horiguchi12724852012-03-21 16:34:28 -07005268 if (pmd_trans_huge_lock(pmd, vma) == 1) {
5269 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5270 mc.precharge += HPAGE_PMD_NR;
5271 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005272 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005273 }
Dave Hansen03319322011-03-22 16:32:56 -07005274
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005275 if (pmd_trans_unstable(pmd))
5276 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005277 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5278 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005279 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005280 mc.precharge++; /* increment precharge temporarily */
5281 pte_unmap_unlock(pte - 1, ptl);
5282 cond_resched();
5283
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005284 return 0;
5285}
5286
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005287static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5288{
5289 unsigned long precharge;
5290 struct vm_area_struct *vma;
5291
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005292 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005293 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5294 struct mm_walk mem_cgroup_count_precharge_walk = {
5295 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5296 .mm = mm,
5297 .private = vma,
5298 };
5299 if (is_vm_hugetlb_page(vma))
5300 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005301 walk_page_range(vma->vm_start, vma->vm_end,
5302 &mem_cgroup_count_precharge_walk);
5303 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005304 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005305
5306 precharge = mc.precharge;
5307 mc.precharge = 0;
5308
5309 return precharge;
5310}
5311
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005312static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5313{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005314 unsigned long precharge = mem_cgroup_count_precharge(mm);
5315
5316 VM_BUG_ON(mc.moving_task);
5317 mc.moving_task = current;
5318 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005319}
5320
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005321/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5322static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005323{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005324 struct mem_cgroup *from = mc.from;
5325 struct mem_cgroup *to = mc.to;
5326
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005327 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005328 if (mc.precharge) {
5329 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
5330 mc.precharge = 0;
5331 }
5332 /*
5333 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5334 * we must uncharge here.
5335 */
5336 if (mc.moved_charge) {
5337 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
5338 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005339 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005340 /* we must fixup refcnts and charges */
5341 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005342 /* uncharge swap account from the old cgroup */
5343 if (!mem_cgroup_is_root(mc.from))
5344 res_counter_uncharge(&mc.from->memsw,
5345 PAGE_SIZE * mc.moved_swap);
5346 __mem_cgroup_put(mc.from, mc.moved_swap);
5347
5348 if (!mem_cgroup_is_root(mc.to)) {
5349 /*
5350 * we charged both to->res and to->memsw, so we should
5351 * uncharge to->res.
5352 */
5353 res_counter_uncharge(&mc.to->res,
5354 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005355 }
5356 /* we've already done mem_cgroup_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005357 mc.moved_swap = 0;
5358 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005359 memcg_oom_recover(from);
5360 memcg_oom_recover(to);
5361 wake_up_all(&mc.waitq);
5362}
5363
5364static void mem_cgroup_clear_mc(void)
5365{
5366 struct mem_cgroup *from = mc.from;
5367
5368 /*
5369 * we must clear moving_task before waking up waiters at the end of
5370 * task migration.
5371 */
5372 mc.moving_task = NULL;
5373 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005374 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005375 mc.from = NULL;
5376 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005377 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005378 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005379}
5380
Li Zefan761b3ef2012-01-31 13:47:36 +08005381static int mem_cgroup_can_attach(struct cgroup *cgroup,
5382 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005383{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005384 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005385 int ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005386 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005387
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005388 if (memcg->move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005389 struct mm_struct *mm;
5390 struct mem_cgroup *from = mem_cgroup_from_task(p);
5391
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005392 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005393
5394 mm = get_task_mm(p);
5395 if (!mm)
5396 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005397 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005398 if (mm->owner == p) {
5399 VM_BUG_ON(mc.from);
5400 VM_BUG_ON(mc.to);
5401 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005402 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005403 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005404 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005405 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005406 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005407 mc.to = memcg;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005408 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005409 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005410
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005411 ret = mem_cgroup_precharge_mc(mm);
5412 if (ret)
5413 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005414 }
5415 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005416 }
5417 return ret;
5418}
5419
Li Zefan761b3ef2012-01-31 13:47:36 +08005420static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5421 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005422{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005423 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005424}
5425
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005426static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5427 unsigned long addr, unsigned long end,
5428 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005429{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005430 int ret = 0;
5431 struct vm_area_struct *vma = walk->private;
5432 pte_t *pte;
5433 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005434 enum mc_target_type target_type;
5435 union mc_target target;
5436 struct page *page;
5437 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005438
Naoya Horiguchi12724852012-03-21 16:34:28 -07005439 /*
5440 * We don't take compound_lock() here but no race with splitting thp
5441 * happens because:
5442 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
5443 * under splitting, which means there's no concurrent thp split,
5444 * - if another thread runs into split_huge_page() just after we
5445 * entered this if-block, the thread must wait for page table lock
5446 * to be unlocked in __split_huge_page_splitting(), where the main
5447 * part of thp split is not executed yet.
5448 */
5449 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07005450 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005451 spin_unlock(&vma->vm_mm->page_table_lock);
5452 return 0;
5453 }
5454 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5455 if (target_type == MC_TARGET_PAGE) {
5456 page = target.page;
5457 if (!isolate_lru_page(page)) {
5458 pc = lookup_page_cgroup(page);
5459 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005460 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005461 mc.precharge -= HPAGE_PMD_NR;
5462 mc.moved_charge += HPAGE_PMD_NR;
5463 }
5464 putback_lru_page(page);
5465 }
5466 put_page(page);
5467 }
5468 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005469 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005470 }
5471
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005472 if (pmd_trans_unstable(pmd))
5473 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005474retry:
5475 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5476 for (; addr != end; addr += PAGE_SIZE) {
5477 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08005478 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005479
5480 if (!mc.precharge)
5481 break;
5482
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005483 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005484 case MC_TARGET_PAGE:
5485 page = target.page;
5486 if (isolate_lru_page(page))
5487 goto put;
5488 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07005489 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005490 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005491 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005492 /* we uncharge from mc.from later. */
5493 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005494 }
5495 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005496put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005497 put_page(page);
5498 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005499 case MC_TARGET_SWAP:
5500 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07005501 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005502 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005503 /* we fixup refcnts and charges later. */
5504 mc.moved_swap++;
5505 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08005506 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005507 default:
5508 break;
5509 }
5510 }
5511 pte_unmap_unlock(pte - 1, ptl);
5512 cond_resched();
5513
5514 if (addr != end) {
5515 /*
5516 * We have consumed all precharges we got in can_attach().
5517 * We try charge one by one, but don't do any additional
5518 * charges to mc.to if we have failed in charge once in attach()
5519 * phase.
5520 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005521 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005522 if (!ret)
5523 goto retry;
5524 }
5525
5526 return ret;
5527}
5528
5529static void mem_cgroup_move_charge(struct mm_struct *mm)
5530{
5531 struct vm_area_struct *vma;
5532
5533 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005534retry:
5535 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5536 /*
5537 * Someone who are holding the mmap_sem might be waiting in
5538 * waitq. So we cancel all extra charges, wake up all waiters,
5539 * and retry. Because we cancel precharges, we might not be able
5540 * to move enough charges, but moving charge is a best-effort
5541 * feature anyway, so it wouldn't be a big problem.
5542 */
5543 __mem_cgroup_clear_mc();
5544 cond_resched();
5545 goto retry;
5546 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005547 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5548 int ret;
5549 struct mm_walk mem_cgroup_move_charge_walk = {
5550 .pmd_entry = mem_cgroup_move_charge_pte_range,
5551 .mm = mm,
5552 .private = vma,
5553 };
5554 if (is_vm_hugetlb_page(vma))
5555 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005556 ret = walk_page_range(vma->vm_start, vma->vm_end,
5557 &mem_cgroup_move_charge_walk);
5558 if (ret)
5559 /*
5560 * means we have consumed all precharges and failed in
5561 * doing additional charge. Just abandon here.
5562 */
5563 break;
5564 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005565 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005566}
5567
Li Zefan761b3ef2012-01-31 13:47:36 +08005568static void mem_cgroup_move_task(struct cgroup *cont,
5569 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08005570{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005571 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005572 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005573
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005574 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005575 if (mc.to)
5576 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005577 mmput(mm);
5578 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005579 if (mc.to)
5580 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005581}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005582#else /* !CONFIG_MMU */
Li Zefan761b3ef2012-01-31 13:47:36 +08005583static int mem_cgroup_can_attach(struct cgroup *cgroup,
5584 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005585{
5586 return 0;
5587}
Li Zefan761b3ef2012-01-31 13:47:36 +08005588static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5589 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005590{
5591}
Li Zefan761b3ef2012-01-31 13:47:36 +08005592static void mem_cgroup_move_task(struct cgroup *cont,
5593 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005594{
5595}
5596#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005597
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005598struct cgroup_subsys mem_cgroup_subsys = {
5599 .name = "memory",
5600 .subsys_id = mem_cgroup_subsys_id,
5601 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005602 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005603 .destroy = mem_cgroup_destroy,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005604 .can_attach = mem_cgroup_can_attach,
5605 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005606 .attach = mem_cgroup_move_task,
Tejun Heo6bc10342012-04-01 12:09:55 -07005607 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005608 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005609 .use_id = 1,
Tejun Heo48ddbe12012-04-01 12:09:56 -07005610 .__DEPRECATED_clear_css_refs = true,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005611};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005612
Andrew Mortonc255a452012-07-31 16:43:02 -07005613#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08005614static int __init enable_swap_account(char *s)
5615{
5616 /* consider enabled if no parameter or 1 is given */
Michal Hockoa2c89902011-05-24 17:12:50 -07005617 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005618 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07005619 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005620 really_do_swap_account = 0;
5621 return 1;
5622}
Michal Hockoa2c89902011-05-24 17:12:50 -07005623__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005624
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005625#endif