blob: 93a7e36ded89f264194c77c7f8cd27c5f02410fa [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;
David Rientjesa63d83f2010-08-09 17:19:46 -07001455
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001456 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001457
David Rientjesa63d83f2010-08-09 17:19:46 -07001458 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001459 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001460 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001461 if (mem_cgroup_swappiness(memcg)) {
1462 u64 memsw;
1463
1464 limit += total_swap_pages << PAGE_SHIFT;
1465 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1466
1467 /*
1468 * If memsw is finite and limits the amount of swap space
1469 * available to this memcg, return that limit.
1470 */
1471 limit = min(limit, memsw);
1472 }
1473
1474 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001475}
1476
David Rientjes876aafb2012-07-31 16:43:48 -07001477void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1478 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001479{
1480 struct mem_cgroup *iter;
1481 unsigned long chosen_points = 0;
1482 unsigned long totalpages;
1483 unsigned int points = 0;
1484 struct task_struct *chosen = NULL;
1485
David Rientjes876aafb2012-07-31 16:43:48 -07001486 /*
1487 * If current has a pending SIGKILL, then automatically select it. The
1488 * goal is to allow it to allocate so that it may quickly exit and free
1489 * its memory.
1490 */
1491 if (fatal_signal_pending(current)) {
1492 set_thread_flag(TIF_MEMDIE);
1493 return;
1494 }
1495
1496 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001497 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1498 for_each_mem_cgroup_tree(iter, memcg) {
1499 struct cgroup *cgroup = iter->css.cgroup;
1500 struct cgroup_iter it;
1501 struct task_struct *task;
1502
1503 cgroup_iter_start(cgroup, &it);
1504 while ((task = cgroup_iter_next(cgroup, &it))) {
1505 switch (oom_scan_process_thread(task, totalpages, NULL,
1506 false)) {
1507 case OOM_SCAN_SELECT:
1508 if (chosen)
1509 put_task_struct(chosen);
1510 chosen = task;
1511 chosen_points = ULONG_MAX;
1512 get_task_struct(chosen);
1513 /* fall through */
1514 case OOM_SCAN_CONTINUE:
1515 continue;
1516 case OOM_SCAN_ABORT:
1517 cgroup_iter_end(cgroup, &it);
1518 mem_cgroup_iter_break(memcg, iter);
1519 if (chosen)
1520 put_task_struct(chosen);
1521 return;
1522 case OOM_SCAN_OK:
1523 break;
1524 };
1525 points = oom_badness(task, memcg, NULL, totalpages);
1526 if (points > chosen_points) {
1527 if (chosen)
1528 put_task_struct(chosen);
1529 chosen = task;
1530 chosen_points = points;
1531 get_task_struct(chosen);
1532 }
1533 }
1534 cgroup_iter_end(cgroup, &it);
1535 }
1536
1537 if (!chosen)
1538 return;
1539 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001540 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1541 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001542}
1543
Johannes Weiner56600482012-01-12 17:17:59 -08001544static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1545 gfp_t gfp_mask,
1546 unsigned long flags)
1547{
1548 unsigned long total = 0;
1549 bool noswap = false;
1550 int loop;
1551
1552 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1553 noswap = true;
1554 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1555 noswap = true;
1556
1557 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1558 if (loop)
1559 drain_all_stock_async(memcg);
1560 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1561 /*
1562 * Allow limit shrinkers, which are triggered directly
1563 * by userspace, to catch signals and stop reclaim
1564 * after minimal progress, regardless of the margin.
1565 */
1566 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1567 break;
1568 if (mem_cgroup_margin(memcg))
1569 break;
1570 /*
1571 * If nothing was reclaimed after two attempts, there
1572 * may be no reclaimable pages in this hierarchy.
1573 */
1574 if (loop && !total)
1575 break;
1576 }
1577 return total;
1578}
1579
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001580/**
1581 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001582 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001583 * @nid: the node ID to be checked.
1584 * @noswap : specify true here if the user wants flle only information.
1585 *
1586 * This function returns whether the specified memcg contains any
1587 * reclaimable pages on a node. Returns true if there are any reclaimable
1588 * pages in the node.
1589 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001590static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001591 int nid, bool noswap)
1592{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001593 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001594 return true;
1595 if (noswap || !total_swap_pages)
1596 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001597 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001598 return true;
1599 return false;
1600
1601}
Ying Han889976d2011-05-26 16:25:33 -07001602#if MAX_NUMNODES > 1
1603
1604/*
1605 * Always updating the nodemask is not very good - even if we have an empty
1606 * list or the wrong list here, we can start from some node and traverse all
1607 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1608 *
1609 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001610static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001611{
1612 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001613 /*
1614 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1615 * pagein/pageout changes since the last update.
1616 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001617 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001618 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001619 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001620 return;
1621
Ying Han889976d2011-05-26 16:25:33 -07001622 /* make a nodemask where this memcg uses memory from */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001623 memcg->scan_nodes = node_states[N_HIGH_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001624
1625 for_each_node_mask(nid, node_states[N_HIGH_MEMORY]) {
1626
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001627 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1628 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001629 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001630
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001631 atomic_set(&memcg->numainfo_events, 0);
1632 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001633}
1634
1635/*
1636 * Selecting a node where we start reclaim from. Because what we need is just
1637 * reducing usage counter, start from anywhere is O,K. Considering
1638 * memory reclaim from current node, there are pros. and cons.
1639 *
1640 * Freeing memory from current node means freeing memory from a node which
1641 * we'll use or we've used. So, it may make LRU bad. And if several threads
1642 * hit limits, it will see a contention on a node. But freeing from remote
1643 * node means more costs for memory reclaim because of memory latency.
1644 *
1645 * Now, we use round-robin. Better algorithm is welcomed.
1646 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001647int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001648{
1649 int node;
1650
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001651 mem_cgroup_may_update_nodemask(memcg);
1652 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001653
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001654 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001655 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001656 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001657 /*
1658 * We call this when we hit limit, not when pages are added to LRU.
1659 * No LRU may hold pages because all pages are UNEVICTABLE or
1660 * memcg is too small and all pages are not on LRU. In that case,
1661 * we use curret node.
1662 */
1663 if (unlikely(node == MAX_NUMNODES))
1664 node = numa_node_id();
1665
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001666 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001667 return node;
1668}
1669
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001670/*
1671 * Check all nodes whether it contains reclaimable pages or not.
1672 * For quick scan, we make use of scan_nodes. This will allow us to skip
1673 * unused nodes. But scan_nodes is lazily updated and may not cotain
1674 * enough new information. We need to do double check.
1675 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001676static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001677{
1678 int nid;
1679
1680 /*
1681 * quick check...making use of scan_node.
1682 * We can skip unused nodes.
1683 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001684 if (!nodes_empty(memcg->scan_nodes)) {
1685 for (nid = first_node(memcg->scan_nodes);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001686 nid < MAX_NUMNODES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001687 nid = next_node(nid, memcg->scan_nodes)) {
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001688
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001689 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001690 return true;
1691 }
1692 }
1693 /*
1694 * Check rest of nodes.
1695 */
1696 for_each_node_state(nid, N_HIGH_MEMORY) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001697 if (node_isset(nid, memcg->scan_nodes))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001698 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001699 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001700 return true;
1701 }
1702 return false;
1703}
1704
Ying Han889976d2011-05-26 16:25:33 -07001705#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001706int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001707{
1708 return 0;
1709}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001710
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001711static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001712{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001713 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001714}
Ying Han889976d2011-05-26 16:25:33 -07001715#endif
1716
Johannes Weiner56600482012-01-12 17:17:59 -08001717static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1718 struct zone *zone,
1719 gfp_t gfp_mask,
1720 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001721{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001722 struct mem_cgroup *victim = NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001723 int total = 0;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001724 int loop = 0;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001725 unsigned long excess;
Johannes Weiner185efc02011-09-14 16:21:58 -07001726 unsigned long nr_scanned;
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001727 struct mem_cgroup_reclaim_cookie reclaim = {
1728 .zone = zone,
1729 .priority = 0,
1730 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001731
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001732 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001733
Balbir Singh4e416952009-09-23 15:56:39 -07001734 while (1) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001735 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001736 if (!victim) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001737 loop++;
Balbir Singh4e416952009-09-23 15:56:39 -07001738 if (loop >= 2) {
1739 /*
1740 * If we have not been able to reclaim
1741 * anything, it might because there are
1742 * no reclaimable pages under this hierarchy
1743 */
Johannes Weiner56600482012-01-12 17:17:59 -08001744 if (!total)
Balbir Singh4e416952009-09-23 15:56:39 -07001745 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001746 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001747 * We want to do more targeted reclaim.
Balbir Singh4e416952009-09-23 15:56:39 -07001748 * excess >> 2 is not to excessive so as to
1749 * reclaim too much, nor too less that we keep
1750 * coming back to reclaim from this cgroup
1751 */
1752 if (total >= (excess >> 2) ||
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001753 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
Balbir Singh4e416952009-09-23 15:56:39 -07001754 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001755 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001756 continue;
Balbir Singh4e416952009-09-23 15:56:39 -07001757 }
Johannes Weiner56600482012-01-12 17:17:59 -08001758 if (!mem_cgroup_reclaimable(victim, false))
Balbir Singh6d61ef42009-01-07 18:08:06 -08001759 continue;
Johannes Weiner56600482012-01-12 17:17:59 -08001760 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1761 zone, &nr_scanned);
1762 *total_scanned += nr_scanned;
1763 if (!res_counter_soft_limit_excess(&root_memcg->res))
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001764 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001765 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001766 mem_cgroup_iter_break(root_memcg, victim);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001767 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001768}
1769
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001770/*
1771 * Check OOM-Killer is already running under our hierarchy.
1772 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001773 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001774 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001775static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001776{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001777 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001778
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001779 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001780 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001781 /*
1782 * this subtree of our hierarchy is already locked
1783 * so we cannot give a lock.
1784 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001785 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001786 mem_cgroup_iter_break(memcg, iter);
1787 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001788 } else
1789 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001790 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001791
Michal Hocko79dfdac2011-07-26 16:08:23 -07001792 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001793 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001794
1795 /*
1796 * OK, we failed to lock the whole subtree so we have to clean up
1797 * what we set up to the failing subtree
1798 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001799 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001800 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001801 mem_cgroup_iter_break(memcg, iter);
1802 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001803 }
1804 iter->oom_lock = false;
1805 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001806 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001807}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001808
Michal Hocko79dfdac2011-07-26 16:08:23 -07001809/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001810 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001811 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001812static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001813{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001814 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 iter->oom_lock = false;
1818 return 0;
1819}
1820
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001821static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001822{
1823 struct mem_cgroup *iter;
1824
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001825 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001826 atomic_inc(&iter->under_oom);
1827}
1828
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001829static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001830{
1831 struct mem_cgroup *iter;
1832
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001833 /*
1834 * When a new child is created while the hierarchy is under oom,
1835 * mem_cgroup_oom_lock() may not be called. We have to use
1836 * atomic_add_unless() here.
1837 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001838 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001839 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001840}
1841
Michal Hocko1af8efe2011-07-26 16:08:24 -07001842static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001843static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1844
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001845struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001846 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001847 wait_queue_t wait;
1848};
1849
1850static int memcg_oom_wake_function(wait_queue_t *wait,
1851 unsigned mode, int sync, void *arg)
1852{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001853 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1854 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001855 struct oom_wait_info *oom_wait_info;
1856
1857 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001858 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001859
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001860 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001861 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001862 * Then we can use css_is_ancestor without taking care of RCU.
1863 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001864 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1865 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001866 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001867 return autoremove_wake_function(wait, mode, sync, arg);
1868}
1869
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001870static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001871{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001872 /* for filtering, pass "memcg" as argument. */
1873 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001874}
1875
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001876static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001877{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001878 if (memcg && atomic_read(&memcg->under_oom))
1879 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001880}
1881
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001882/*
1883 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1884 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001885static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
1886 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001887{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001888 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001889 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001890
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001891 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001892 owait.wait.flags = 0;
1893 owait.wait.func = memcg_oom_wake_function;
1894 owait.wait.private = current;
1895 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001896 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001897 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001898
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001899 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001900 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001901 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001902 /*
1903 * Even if signal_pending(), we can't quit charge() loop without
1904 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1905 * under OOM is always welcomed, use TASK_KILLABLE here.
1906 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001907 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001908 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001909 need_to_kill = false;
1910 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001911 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001912 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001913
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001914 if (need_to_kill) {
1915 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07001916 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001917 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001918 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001919 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001920 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001921 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001922 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001923 mem_cgroup_oom_unlock(memcg);
1924 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001925 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001926
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001927 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001928
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001929 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1930 return false;
1931 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001932 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001933 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001934}
1935
Balbir Singhd69b0422009-06-17 16:26:34 -07001936/*
1937 * Currently used to update mapped file statistics, but the routine can be
1938 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001939 *
1940 * Notes: Race condition
1941 *
1942 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1943 * it tends to be costly. But considering some conditions, we doesn't need
1944 * to do so _always_.
1945 *
1946 * Considering "charge", lock_page_cgroup() is not required because all
1947 * file-stat operations happen after a page is attached to radix-tree. There
1948 * are no race with "charge".
1949 *
1950 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1951 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1952 * if there are race with "uncharge". Statistics itself is properly handled
1953 * by flags.
1954 *
1955 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001956 * small, we check mm->moving_account and detect there are possibility of race
1957 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07001958 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001959
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001960void __mem_cgroup_begin_update_page_stat(struct page *page,
1961 bool *locked, unsigned long *flags)
1962{
1963 struct mem_cgroup *memcg;
1964 struct page_cgroup *pc;
1965
1966 pc = lookup_page_cgroup(page);
1967again:
1968 memcg = pc->mem_cgroup;
1969 if (unlikely(!memcg || !PageCgroupUsed(pc)))
1970 return;
1971 /*
1972 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07001973 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001974 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001975 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001976 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001977 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001978 return;
1979
1980 move_lock_mem_cgroup(memcg, flags);
1981 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
1982 move_unlock_mem_cgroup(memcg, flags);
1983 goto again;
1984 }
1985 *locked = true;
1986}
1987
1988void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
1989{
1990 struct page_cgroup *pc = lookup_page_cgroup(page);
1991
1992 /*
1993 * It's guaranteed that pc->mem_cgroup never changes while
1994 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07001995 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001996 */
1997 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
1998}
1999
Greg Thelen2a7106f2011-01-13 15:47:37 -08002000void mem_cgroup_update_page_stat(struct page *page,
2001 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002002{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002003 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002004 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002005 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002006
Johannes Weinercfa44942012-01-12 17:18:38 -08002007 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002008 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002009
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002010 memcg = pc->mem_cgroup;
2011 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002012 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002013
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002014 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002015 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08002016 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002017 break;
2018 default:
2019 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002020 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002021
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002022 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002023}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002024
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002025/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002026 * size of first charge trial. "32" comes from vmscan.c's magic value.
2027 * TODO: maybe necessary to use big numbers in big irons.
2028 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002029#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002030struct memcg_stock_pcp {
2031 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002032 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002033 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002034 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002035#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002036};
2037static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002038static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002039
2040/*
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002041 * Try to consume stocked charge on this cpu. If success, one page is consumed
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002042 * from local stock and true is returned. If the stock is 0 or charges from a
2043 * cgroup which is not current target, returns false. This stock will be
2044 * refilled.
2045 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002046static bool consume_stock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002047{
2048 struct memcg_stock_pcp *stock;
2049 bool ret = true;
2050
2051 stock = &get_cpu_var(memcg_stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002052 if (memcg == stock->cached && stock->nr_pages)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002053 stock->nr_pages--;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002054 else /* need to call res_counter_charge */
2055 ret = false;
2056 put_cpu_var(memcg_stock);
2057 return ret;
2058}
2059
2060/*
2061 * Returns stocks cached in percpu to res_counter and reset cached information.
2062 */
2063static void drain_stock(struct memcg_stock_pcp *stock)
2064{
2065 struct mem_cgroup *old = stock->cached;
2066
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002067 if (stock->nr_pages) {
2068 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2069
2070 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002071 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002072 res_counter_uncharge(&old->memsw, bytes);
2073 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002074 }
2075 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002076}
2077
2078/*
2079 * This must be called under preempt disabled or must be called by
2080 * a thread which is pinned to local cpu.
2081 */
2082static void drain_local_stock(struct work_struct *dummy)
2083{
2084 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2085 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002086 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002087}
2088
2089/*
2090 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002091 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002092 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002093static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002094{
2095 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2096
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002097 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002098 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002099 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002100 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002101 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002102 put_cpu_var(memcg_stock);
2103}
2104
2105/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002106 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002107 * of the hierarchy under it. sync flag says whether we should block
2108 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002109 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002110static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002111{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002112 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002113
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002114 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002115 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002116 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002117 for_each_online_cpu(cpu) {
2118 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002119 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002120
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002121 memcg = stock->cached;
2122 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002123 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002124 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002125 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002126 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2127 if (cpu == curcpu)
2128 drain_local_stock(&stock->work);
2129 else
2130 schedule_work_on(cpu, &stock->work);
2131 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002132 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002133 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002134
2135 if (!sync)
2136 goto out;
2137
2138 for_each_online_cpu(cpu) {
2139 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002140 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002141 flush_work(&stock->work);
2142 }
2143out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002144 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002145}
2146
2147/*
2148 * Tries to drain stocked charges in other cpus. This function is asynchronous
2149 * and just put a work per cpu for draining localy on each cpu. Caller can
2150 * expects some charges will be back to res_counter later but cannot wait for
2151 * it.
2152 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002153static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002154{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002155 /*
2156 * If someone calls draining, avoid adding more kworker runs.
2157 */
2158 if (!mutex_trylock(&percpu_charge_mutex))
2159 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002160 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002161 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002162}
2163
2164/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002165static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002166{
2167 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002168 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002169 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002170 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002171}
2172
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002173/*
2174 * This function drains percpu counter value from DEAD cpu and
2175 * move it to local cpu. Note that this function can be preempted.
2176 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002177static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002178{
2179 int i;
2180
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002181 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002182 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002183 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002184
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002185 per_cpu(memcg->stat->count[i], cpu) = 0;
2186 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002187 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002188 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002189 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002190
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002191 per_cpu(memcg->stat->events[i], cpu) = 0;
2192 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002193 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002194 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002195}
2196
2197static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002198 unsigned long action,
2199 void *hcpu)
2200{
2201 int cpu = (unsigned long)hcpu;
2202 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002203 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002204
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002205 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002206 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002207
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002208 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002209 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002210
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002211 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002212 mem_cgroup_drain_pcp_counter(iter, cpu);
2213
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002214 stock = &per_cpu(memcg_stock, cpu);
2215 drain_stock(stock);
2216 return NOTIFY_OK;
2217}
2218
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002219
2220/* See __mem_cgroup_try_charge() for details */
2221enum {
2222 CHARGE_OK, /* success */
2223 CHARGE_RETRY, /* need to retry but retry is not bad */
2224 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2225 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2226 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2227};
2228
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002229static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002230 unsigned int nr_pages, bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002231{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002232 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002233 struct mem_cgroup *mem_over_limit;
2234 struct res_counter *fail_res;
2235 unsigned long flags = 0;
2236 int ret;
2237
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002238 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002239
2240 if (likely(!ret)) {
2241 if (!do_swap_account)
2242 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002243 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002244 if (likely(!ret))
2245 return CHARGE_OK;
2246
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002247 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002248 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2249 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2250 } else
2251 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002252 /*
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002253 * nr_pages can be either a huge page (HPAGE_PMD_NR), a batch
2254 * of regular pages (CHARGE_BATCH), or a single regular page (1).
Johannes Weiner9221edb2011-02-01 15:52:42 -08002255 *
2256 * Never reclaim on behalf of optional batching, retry with a
2257 * single page instead.
2258 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002259 if (nr_pages == CHARGE_BATCH)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002260 return CHARGE_RETRY;
2261
2262 if (!(gfp_mask & __GFP_WAIT))
2263 return CHARGE_WOULDBLOCK;
2264
Johannes Weiner56600482012-01-12 17:17:59 -08002265 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002266 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002267 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002268 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002269 * Even though the limit is exceeded at this point, reclaim
2270 * may have been able to free some pages. Retry the charge
2271 * before killing the task.
2272 *
2273 * Only for regular pages, though: huge pages are rather
2274 * unlikely to succeed so close to the limit, and we fall back
2275 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002276 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002277 if (nr_pages == 1 && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002278 return CHARGE_RETRY;
2279
2280 /*
2281 * At task move, charge accounts can be doubly counted. So, it's
2282 * better to wait until the end of task_move if something is going on.
2283 */
2284 if (mem_cgroup_wait_acct_move(mem_over_limit))
2285 return CHARGE_RETRY;
2286
2287 /* If we don't need to call oom-killer at el, return immediately */
2288 if (!oom_check)
2289 return CHARGE_NOMEM;
2290 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002291 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002292 return CHARGE_OOM_DIE;
2293
2294 return CHARGE_RETRY;
2295}
2296
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002297/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002298 * __mem_cgroup_try_charge() does
2299 * 1. detect memcg to be charged against from passed *mm and *ptr,
2300 * 2. update res_counter
2301 * 3. call memory reclaim if necessary.
2302 *
2303 * In some special case, if the task is fatal, fatal_signal_pending() or
2304 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2305 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2306 * as possible without any hazards. 2: all pages should have a valid
2307 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2308 * pointer, that is treated as a charge to root_mem_cgroup.
2309 *
2310 * So __mem_cgroup_try_charge() will return
2311 * 0 ... on success, filling *ptr with a valid memcg pointer.
2312 * -ENOMEM ... charge failure because of resource limits.
2313 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2314 *
2315 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2316 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002317 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002318static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002319 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002320 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002321 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002322 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002323{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002324 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002325 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002326 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002327 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002328
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002329 /*
2330 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2331 * in system level. So, allow to go ahead dying process in addition to
2332 * MEMDIE process.
2333 */
2334 if (unlikely(test_thread_flag(TIF_MEMDIE)
2335 || fatal_signal_pending(current)))
2336 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002337
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002338 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002339 * We always charge the cgroup the mm_struct belongs to.
2340 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002341 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002342 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002343 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002344 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002345 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002346again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002347 if (*ptr) { /* css should be a valid one */
2348 memcg = *ptr;
2349 VM_BUG_ON(css_is_removed(&memcg->css));
2350 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002351 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002352 if (nr_pages == 1 && consume_stock(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002353 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002354 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002355 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002356 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002357
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002358 rcu_read_lock();
2359 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002360 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002361 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002362 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002363 * race with swapoff. Then, we have small risk of mis-accouning.
2364 * But such kind of mis-account by race always happens because
2365 * we don't have cgroup_mutex(). It's overkill and we allo that
2366 * small race, here.
2367 * (*) swapoff at el will charge against mm-struct not against
2368 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002369 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002370 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002371 if (!memcg)
2372 memcg = root_mem_cgroup;
2373 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002374 rcu_read_unlock();
2375 goto done;
2376 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002377 if (nr_pages == 1 && consume_stock(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002378 /*
2379 * It seems dagerous to access memcg without css_get().
2380 * But considering how consume_stok works, it's not
2381 * necessary. If consume_stock success, some charges
2382 * from this memcg are cached on this cpu. So, we
2383 * don't need to call css_get()/css_tryget() before
2384 * calling consume_stock().
2385 */
2386 rcu_read_unlock();
2387 goto done;
2388 }
2389 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002390 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002391 rcu_read_unlock();
2392 goto again;
2393 }
2394 rcu_read_unlock();
2395 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002396
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002397 do {
2398 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002399
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002400 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002401 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002402 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002403 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002404 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002405
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002406 oom_check = false;
2407 if (oom && !nr_oom_retries) {
2408 oom_check = true;
2409 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2410 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002411
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002412 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002413 switch (ret) {
2414 case CHARGE_OK:
2415 break;
2416 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002417 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002418 css_put(&memcg->css);
2419 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002420 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002421 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002422 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002423 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002424 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002425 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002426 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002427 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002428 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002429 /* If oom, we never return -ENOMEM */
2430 nr_oom_retries--;
2431 break;
2432 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002433 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002434 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002435 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002436 } while (ret != CHARGE_OK);
2437
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002438 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002439 refill_stock(memcg, batch - nr_pages);
2440 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002441done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002442 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002443 return 0;
2444nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002445 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002446 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002447bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002448 *ptr = root_mem_cgroup;
2449 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002450}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002451
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002452/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002453 * Somemtimes we have to undo a charge we got by try_charge().
2454 * This function is for that and do uncharge, put css's refcnt.
2455 * gotten by try_charge().
2456 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002457static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002458 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002459{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002460 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002461 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002462
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002463 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002464 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002465 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002466 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002467}
2468
2469/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002470 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2471 * This is useful when moving usage to parent cgroup.
2472 */
2473static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2474 unsigned int nr_pages)
2475{
2476 unsigned long bytes = nr_pages * PAGE_SIZE;
2477
2478 if (mem_cgroup_is_root(memcg))
2479 return;
2480
2481 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2482 if (do_swap_account)
2483 res_counter_uncharge_until(&memcg->memsw,
2484 memcg->memsw.parent, bytes);
2485}
2486
2487/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002488 * A helper function to get mem_cgroup from ID. must be called under
2489 * rcu_read_lock(). The caller must check css_is_removed() or some if
2490 * it's concern. (dropping refcnt from swap can be called against removed
2491 * memcg.)
2492 */
2493static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2494{
2495 struct cgroup_subsys_state *css;
2496
2497 /* ID 0 is unused ID */
2498 if (!id)
2499 return NULL;
2500 css = css_lookup(&mem_cgroup_subsys, id);
2501 if (!css)
2502 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002503 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002504}
2505
Wu Fengguange42d9d52009-12-16 12:19:59 +01002506struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002507{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002508 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002509 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002510 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002511 swp_entry_t ent;
2512
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002513 VM_BUG_ON(!PageLocked(page));
2514
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002515 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002516 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002517 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002518 memcg = pc->mem_cgroup;
2519 if (memcg && !css_tryget(&memcg->css))
2520 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002521 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002522 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002523 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002524 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002525 memcg = mem_cgroup_lookup(id);
2526 if (memcg && !css_tryget(&memcg->css))
2527 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002528 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002529 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002530 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002531 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002532}
2533
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002534static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002535 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002536 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002537 enum charge_type ctype,
2538 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002539{
Johannes Weinerce587e62012-04-24 20:22:33 +02002540 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002541 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002542 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002543 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002544 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002545
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002546 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002547 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002548 /*
2549 * we don't need page_cgroup_lock about tail pages, becase they are not
2550 * accessed by any other context at this point.
2551 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002552
2553 /*
2554 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2555 * may already be on some other mem_cgroup's LRU. Take care of it.
2556 */
2557 if (lrucare) {
2558 zone = page_zone(page);
2559 spin_lock_irq(&zone->lru_lock);
2560 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002561 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002562 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002563 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002564 was_on_lru = true;
2565 }
2566 }
2567
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002568 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002569 /*
2570 * We access a page_cgroup asynchronously without lock_page_cgroup().
2571 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2572 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2573 * before USED bit, we need memory barrier here.
2574 * See mem_cgroup_add_lru_list(), etc.
2575 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002576 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002577 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002578
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002579 if (lrucare) {
2580 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002581 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002582 VM_BUG_ON(PageLRU(page));
2583 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002584 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002585 }
2586 spin_unlock_irq(&zone->lru_lock);
2587 }
2588
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002589 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002590 anon = true;
2591 else
2592 anon = false;
2593
2594 mem_cgroup_charge_statistics(memcg, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002595 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002596
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002597 /*
2598 * "charge_statistics" updated event counter. Then, check it.
2599 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2600 * if they exceeds softlimit.
2601 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002602 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002603}
2604
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002605#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2606
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002607#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002608/*
2609 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002610 * zone->lru_lock, 'splitting on pmd' and compound_lock.
2611 * charge/uncharge will be never happen and move_account() is done under
2612 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002613 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002614void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002615{
2616 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002617 struct page_cgroup *pc;
2618 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002619
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002620 if (mem_cgroup_disabled())
2621 return;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002622 for (i = 1; i < HPAGE_PMD_NR; i++) {
2623 pc = head_pc + i;
2624 pc->mem_cgroup = head_pc->mem_cgroup;
2625 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002626 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2627 }
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002628}
Hugh Dickins12d27102012-01-12 17:19:52 -08002629#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002630
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002631/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07002632 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07002633 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002634 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002635 * @pc: page_cgroup of the page.
2636 * @from: mem_cgroup which the page is moved from.
2637 * @to: mem_cgroup which the page is moved to. @from != @to.
2638 *
2639 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002640 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002641 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002642 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002643 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
2644 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002645 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002646static int mem_cgroup_move_account(struct page *page,
2647 unsigned int nr_pages,
2648 struct page_cgroup *pc,
2649 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002650 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002651{
Johannes Weinerde3638d2011-03-23 16:42:28 -07002652 unsigned long flags;
2653 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002654 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002655
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002656 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07002657 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07002658 /*
2659 * The page is isolated from LRU. So, collapse function
2660 * will not handle this page. But page splitting can happen.
2661 * Do this check under compound_page_lock(). The caller should
2662 * hold it.
2663 */
2664 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002665 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07002666 goto out;
2667
2668 lock_page_cgroup(pc);
2669
2670 ret = -EINVAL;
2671 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2672 goto unlock;
2673
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002674 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002675
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07002676 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08002677 /* Update mapped_file data for mem_cgroup */
2678 preempt_disable();
2679 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2680 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2681 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07002682 }
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002683 mem_cgroup_charge_statistics(from, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07002684
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002685 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002686 pc->mem_cgroup = to;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002687 mem_cgroup_charge_statistics(to, anon, nr_pages);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002688 /*
2689 * We charges against "to" which may not have any tasks. Then, "to"
2690 * can be under rmdir(). But in current implementation, caller of
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002691 * this function is just force_empty() and move charge, so it's
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002692 * guaranteed that "to" is never removed. So, we don't check rmdir
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002693 * status here.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002694 */
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002695 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002696 ret = 0;
2697unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002698 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08002699 /*
2700 * check events
2701 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002702 memcg_check_events(to, page);
2703 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002704out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002705 return ret;
2706}
2707
2708/*
2709 * move charges to its parent.
2710 */
2711
Johannes Weiner5564e882011-03-23 16:42:29 -07002712static int mem_cgroup_move_parent(struct page *page,
2713 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07002714 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002715{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002716 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002717 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07002718 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002719 int ret;
2720
2721 /* Is ROOT ? */
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002722 if (mem_cgroup_is_root(child))
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002723 return -EINVAL;
2724
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002725 ret = -EBUSY;
2726 if (!get_page_unless_zero(page))
2727 goto out;
2728 if (isolate_lru_page(page))
2729 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08002730
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002731 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002732
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002733 parent = parent_mem_cgroup(child);
2734 /*
2735 * If no parent, move charges to root cgroup.
2736 */
2737 if (!parent)
2738 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002739
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002740 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002741 flags = compound_lock_irqsave(page);
2742
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002743 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002744 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002745 if (!ret)
2746 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002747
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002748 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002749 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002750 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002751put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08002752 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002753out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002754 return ret;
2755}
2756
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002757/*
2758 * Charge the memory controller for page usage.
2759 * Return
2760 * 0 if the charge was successful
2761 * < 0 if the cgroup is over its limit
2762 */
2763static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002764 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002765{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002766 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002767 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08002768 bool oom = true;
2769 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08002770
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002771 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002772 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002773 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08002774 /*
2775 * Never OOM-kill a process for a huge page. The
2776 * fault handler will fall back to regular pages.
2777 */
2778 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002779 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002780
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002781 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002782 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002783 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02002784 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002785 return 0;
2786}
2787
2788int mem_cgroup_newpage_charge(struct page *page,
2789 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002790{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002791 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002792 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08002793 VM_BUG_ON(page_mapped(page));
2794 VM_BUG_ON(page->mapping && !PageAnon(page));
2795 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002796 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002797 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002798}
2799
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002800/*
2801 * While swap-in, try_charge -> commit or cancel, the page is locked.
2802 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02002803 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002804 * "commit()" or removed by "cancel()"
2805 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002806static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2807 struct page *page,
2808 gfp_t mask,
2809 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002810{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002811 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07002812 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002813 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002814
Johannes Weiner90deb782012-07-31 16:45:47 -07002815 pc = lookup_page_cgroup(page);
2816 /*
2817 * Every swap fault against a single page tries to charge the
2818 * page, bail as early as possible. shmem_unuse() encounters
2819 * already charged pages, too. The USED bit is protected by
2820 * the page lock, which serializes swap cache removal, which
2821 * in turn serializes uncharging.
2822 */
2823 if (PageCgroupUsed(pc))
2824 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002825 if (!do_swap_account)
2826 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002827 memcg = try_get_mem_cgroup_from_page(page);
2828 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002829 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08002830 *memcgp = memcg;
2831 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002832 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002833 if (ret == -EINTR)
2834 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002835 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002836charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002837 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
2838 if (ret == -EINTR)
2839 ret = 0;
2840 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002841}
2842
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002843int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
2844 gfp_t gfp_mask, struct mem_cgroup **memcgp)
2845{
2846 *memcgp = NULL;
2847 if (mem_cgroup_disabled())
2848 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07002849 /*
2850 * A racing thread's fault, or swapoff, may have already
2851 * updated the pte, and even removed page from swap cache: in
2852 * those cases unuse_pte()'s pte_same() test will fail; but
2853 * there's also a KSM case which does need to charge the page.
2854 */
2855 if (!PageSwapCache(page)) {
2856 int ret;
2857
2858 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
2859 if (ret == -EINTR)
2860 ret = 0;
2861 return ret;
2862 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002863 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
2864}
2865
Johannes Weiner827a03d2012-07-31 16:45:36 -07002866void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
2867{
2868 if (mem_cgroup_disabled())
2869 return;
2870 if (!memcg)
2871 return;
2872 __mem_cgroup_cancel_charge(memcg, 1);
2873}
2874
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002875static void
Johannes Weiner72835c82012-01-12 17:18:32 -08002876__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002877 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002878{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002879 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002880 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002881 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002882 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002883 cgroup_exclude_rmdir(&memcg->css);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002884
Johannes Weinerce587e62012-04-24 20:22:33 +02002885 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002886 /*
2887 * Now swap is on-memory. This means this page may be
2888 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002889 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2890 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2891 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002892 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002893 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002894 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07002895 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002896 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002897 /*
2898 * At swapin, we may charge account against cgroup which has no tasks.
2899 * So, rmdir()->pre_destroy() can be called while we do this charge.
2900 * In that case, we need to call pre_destroy() again. check it here.
2901 */
Johannes Weiner72835c82012-01-12 17:18:32 -08002902 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002903}
2904
Johannes Weiner72835c82012-01-12 17:18:32 -08002905void mem_cgroup_commit_charge_swapin(struct page *page,
2906 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002907{
Johannes Weiner72835c82012-01-12 17:18:32 -08002908 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002909 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002910}
2911
Johannes Weiner827a03d2012-07-31 16:45:36 -07002912int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2913 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002914{
Johannes Weiner827a03d2012-07-31 16:45:36 -07002915 struct mem_cgroup *memcg = NULL;
2916 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
2917 int ret;
2918
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002919 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07002920 return 0;
2921 if (PageCompound(page))
2922 return 0;
2923
Johannes Weiner827a03d2012-07-31 16:45:36 -07002924 if (!PageSwapCache(page))
2925 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
2926 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002927 ret = __mem_cgroup_try_charge_swapin(mm, page,
2928 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07002929 if (!ret)
2930 __mem_cgroup_commit_charge_swapin(page, memcg, type);
2931 }
2932 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002933}
2934
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002935static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002936 unsigned int nr_pages,
2937 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002938{
2939 struct memcg_batch_info *batch = NULL;
2940 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002941
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002942 /* If swapout, usage of swap doesn't decrease */
2943 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2944 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002945
2946 batch = &current->memcg_batch;
2947 /*
2948 * In usual, we do css_get() when we remember memcg pointer.
2949 * But in this case, we keep res->usage until end of a series of
2950 * uncharges. Then, it's ok to ignore memcg's refcnt.
2951 */
2952 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002953 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002954 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002955 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002956 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002957 * the same cgroup and we have chance to coalesce uncharges.
2958 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
2959 * because we want to do uncharge as soon as possible.
2960 */
2961
2962 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
2963 goto direct_uncharge;
2964
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002965 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08002966 goto direct_uncharge;
2967
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002968 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002969 * In typical case, batch->memcg == mem. This means we can
2970 * merge a series of uncharges to an uncharge of res_counter.
2971 * If not, we uncharge res_counter ony by one.
2972 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002973 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002974 goto direct_uncharge;
2975 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002976 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002977 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002978 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002979 return;
2980direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002981 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002982 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002983 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
2984 if (unlikely(batch->memcg != memcg))
2985 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002986}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002987
Balbir Singh8697d332008-02-07 00:13:59 -08002988/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07002989 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002990 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002991static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07002992__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
2993 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002994{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002995 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002996 unsigned int nr_pages = 1;
2997 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002998 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002999
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003000 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003001 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07003002
Johannes Weiner0c59b892012-07-31 16:45:31 -07003003 VM_BUG_ON(PageSwapCache(page));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003004
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003005 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003006 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003007 VM_BUG_ON(!PageTransHuge(page));
3008 }
Balbir Singh8697d332008-02-07 00:13:59 -08003009 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003010 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003011 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003012 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003013 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003014 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003015
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003016 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003017
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003018 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003019
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003020 if (!PageCgroupUsed(pc))
3021 goto unlock_out;
3022
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003023 anon = PageAnon(page);
3024
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003025 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003026 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003027 /*
3028 * Generally PageAnon tells if it's the anon statistics to be
3029 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
3030 * used before page reached the stage of being marked PageAnon.
3031 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003032 anon = true;
3033 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003034 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003035 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07003036 if (page_mapped(page))
3037 goto unlock_out;
3038 /*
3039 * Pages under migration may not be uncharged. But
3040 * end_migration() /must/ be the one uncharging the
3041 * unused post-migration page and so it has to call
3042 * here with the migration bit still set. See the
3043 * res_counter handling below.
3044 */
3045 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003046 goto unlock_out;
3047 break;
3048 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
3049 if (!PageAnon(page)) { /* Shared memory */
3050 if (page->mapping && !page_is_file_cache(page))
3051 goto unlock_out;
3052 } else if (page_mapped(page)) /* Anon */
3053 goto unlock_out;
3054 break;
3055 default:
3056 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003057 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003058
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003059 mem_cgroup_charge_statistics(memcg, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07003060
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003061 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08003062 /*
3063 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3064 * freed from LRU. This is safe because uncharged page is expected not
3065 * to be reused (freed soon). Exception is SwapCache, it's handled by
3066 * special functions.
3067 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003068
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003069 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003070 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003071 * even after unlock, we have memcg->res.usage here and this memcg
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003072 * will never be freed.
3073 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003074 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003075 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003076 mem_cgroup_swap_statistics(memcg, true);
3077 mem_cgroup_get(memcg);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003078 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003079 /*
3080 * Migration does not charge the res_counter for the
3081 * replacement page, so leave it alone when phasing out the
3082 * page that is unused after the migration.
3083 */
3084 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003085 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003086
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003087 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003088
3089unlock_out:
3090 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003091 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003092}
3093
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003094void mem_cgroup_uncharge_page(struct page *page)
3095{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003096 /* early check. */
3097 if (page_mapped(page))
3098 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08003099 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner0c59b892012-07-31 16:45:31 -07003100 if (PageSwapCache(page))
3101 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07003102 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003103}
3104
3105void mem_cgroup_uncharge_cache_page(struct page *page)
3106{
3107 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003108 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07003109 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003110}
3111
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003112/*
3113 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3114 * In that cases, pages are freed continuously and we can expect pages
3115 * are in the same memcg. All these calls itself limits the number of
3116 * pages freed at once, then uncharge_start/end() is called properly.
3117 * This may be called prural(2) times in a context,
3118 */
3119
3120void mem_cgroup_uncharge_start(void)
3121{
3122 current->memcg_batch.do_batch++;
3123 /* We can do nest. */
3124 if (current->memcg_batch.do_batch == 1) {
3125 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003126 current->memcg_batch.nr_pages = 0;
3127 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003128 }
3129}
3130
3131void mem_cgroup_uncharge_end(void)
3132{
3133 struct memcg_batch_info *batch = &current->memcg_batch;
3134
3135 if (!batch->do_batch)
3136 return;
3137
3138 batch->do_batch--;
3139 if (batch->do_batch) /* If stacked, do nothing. */
3140 return;
3141
3142 if (!batch->memcg)
3143 return;
3144 /*
3145 * This "batch->memcg" is valid without any css_get/put etc...
3146 * bacause we hide charges behind us.
3147 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003148 if (batch->nr_pages)
3149 res_counter_uncharge(&batch->memcg->res,
3150 batch->nr_pages * PAGE_SIZE);
3151 if (batch->memsw_nr_pages)
3152 res_counter_uncharge(&batch->memcg->memsw,
3153 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003154 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003155 /* forget this pointer (for sanity check) */
3156 batch->memcg = NULL;
3157}
3158
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003159#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003160/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003161 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003162 * memcg information is recorded to swap_cgroup of "ent"
3163 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003164void
3165mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003166{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003167 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003168 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003169
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003170 if (!swapout) /* this was a swap cache but the swap is unused ! */
3171 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
3172
Johannes Weiner0030f532012-07-31 16:45:25 -07003173 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003174
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003175 /*
3176 * record memcg information, if swapout && memcg != NULL,
3177 * mem_cgroup_get() was called in uncharge().
3178 */
3179 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003180 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003181}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003182#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003183
Andrew Mortonc255a452012-07-31 16:43:02 -07003184#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003185/*
3186 * called from swap_entry_free(). remove record in swap_cgroup and
3187 * uncharge "memsw" account.
3188 */
3189void mem_cgroup_uncharge_swap(swp_entry_t ent)
3190{
3191 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003192 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003193
3194 if (!do_swap_account)
3195 return;
3196
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003197 id = swap_cgroup_record(ent, 0);
3198 rcu_read_lock();
3199 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003200 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003201 /*
3202 * We uncharge this because swap is freed.
3203 * This memcg can be obsolete one. We avoid calling css_tryget
3204 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003205 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07003206 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003207 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003208 mem_cgroup_put(memcg);
3209 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003210 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003211}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003212
3213/**
3214 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3215 * @entry: swap entry to be moved
3216 * @from: mem_cgroup which the entry is moved from
3217 * @to: mem_cgroup which the entry is moved to
3218 *
3219 * It succeeds only when the swap_cgroup's record for this entry is the same
3220 * as the mem_cgroup's id of @from.
3221 *
3222 * Returns 0 on success, -EINVAL on failure.
3223 *
3224 * The caller must have charged to @to, IOW, called res_counter_charge() about
3225 * both res and memsw, and called css_get().
3226 */
3227static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003228 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003229{
3230 unsigned short old_id, new_id;
3231
3232 old_id = css_id(&from->css);
3233 new_id = css_id(&to->css);
3234
3235 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003236 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003237 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003238 /*
3239 * This function is only called from task migration context now.
3240 * It postpones res_counter and refcount handling till the end
3241 * of task migration(mem_cgroup_clear_mc()) for performance
3242 * improvement. But we cannot postpone mem_cgroup_get(to)
3243 * because if the process that has been moved to @to does
3244 * swap-in, the refcount of @to might be decreased to 0.
3245 */
Daisuke Nishimura02491442010-03-10 15:22:17 -08003246 mem_cgroup_get(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003247 return 0;
3248 }
3249 return -EINVAL;
3250}
3251#else
3252static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003253 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003254{
3255 return -EINVAL;
3256}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003257#endif
3258
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003259/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003260 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
3261 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003262 */
Johannes Weiner0030f532012-07-31 16:45:25 -07003263void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
3264 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003265{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003266 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003267 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003268 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003269
Johannes Weiner72835c82012-01-12 17:18:32 -08003270 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003271
Andrea Arcangeliec168512011-01-13 15:46:56 -08003272 VM_BUG_ON(PageTransHuge(page));
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003273 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07003274 return;
Balbir Singh40779602008-04-04 14:29:59 -07003275
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003276 pc = lookup_page_cgroup(page);
3277 lock_page_cgroup(pc);
3278 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003279 memcg = pc->mem_cgroup;
3280 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003281 /*
3282 * At migrating an anonymous page, its mapcount goes down
3283 * to 0 and uncharge() will be called. But, even if it's fully
3284 * unmapped, migration may fail and this page has to be
3285 * charged again. We set MIGRATION flag here and delay uncharge
3286 * until end_migration() is called
3287 *
3288 * Corner Case Thinking
3289 * A)
3290 * When the old page was mapped as Anon and it's unmap-and-freed
3291 * while migration was ongoing.
3292 * If unmap finds the old page, uncharge() of it will be delayed
3293 * until end_migration(). If unmap finds a new page, it's
3294 * uncharged when it make mapcount to be 1->0. If unmap code
3295 * finds swap_migration_entry, the new page will not be mapped
3296 * and end_migration() will find it(mapcount==0).
3297 *
3298 * B)
3299 * When the old page was mapped but migraion fails, the kernel
3300 * remaps it. A charge for it is kept by MIGRATION flag even
3301 * if mapcount goes down to 0. We can do remap successfully
3302 * without charging it again.
3303 *
3304 * C)
3305 * The "old" page is under lock_page() until the end of
3306 * migration, so, the old page itself will not be swapped-out.
3307 * If the new page is swapped out before end_migraton, our
3308 * hook to usual swap-out path will catch the event.
3309 */
3310 if (PageAnon(page))
3311 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003312 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003313 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003314 /*
3315 * If the page is not charged at this point,
3316 * we return here.
3317 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003318 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07003319 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003320
Johannes Weiner72835c82012-01-12 17:18:32 -08003321 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003322 /*
3323 * We charge new page before it's used/mapped. So, even if unlock_page()
3324 * is called before end_migration, we can catch all events on this new
3325 * page. In the case new page is migrated but not remapped, new page's
3326 * mapcount will be finally 0 and we call uncharge in end_migration().
3327 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003328 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003329 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003330 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07003331 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07003332 /*
3333 * The page is committed to the memcg, but it's not actually
3334 * charged to the res_counter since we plan on replacing the
3335 * old one and only one page is going to be left afterwards.
3336 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003337 __mem_cgroup_commit_charge(memcg, newpage, 1, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003338}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08003339
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003340/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003341void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003342 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003343{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003344 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003345 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003346 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003347
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003348 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003349 return;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003350 /* blocks rmdir() */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003351 cgroup_exclude_rmdir(&memcg->css);
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003352 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003353 used = oldpage;
3354 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003355 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003356 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003357 unused = oldpage;
3358 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003359 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07003360 __mem_cgroup_uncharge_common(unused,
3361 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
3362 : MEM_CGROUP_CHARGE_TYPE_CACHE,
3363 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07003364 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003365 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003366 * We disallowed uncharge of pages under migration because mapcount
3367 * of the page goes down to zero, temporarly.
3368 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003369 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003370 pc = lookup_page_cgroup(oldpage);
3371 lock_page_cgroup(pc);
3372 ClearPageCgroupMigration(pc);
3373 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003374
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003375 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003376 * If a page is a file cache, radix-tree replacement is very atomic
3377 * and we can skip this check. When it was an Anon page, its mapcount
3378 * goes down to 0. But because we added MIGRATION flage, it's not
3379 * uncharged yet. There are several case but page->mapcount check
3380 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3381 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003382 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003383 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003384 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003385 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003386 * At migration, we may charge account against cgroup which has no
3387 * tasks.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003388 * So, rmdir()->pre_destroy() can be called while we do this charge.
3389 * In that case, we need to call pre_destroy() again. check it here.
3390 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003391 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003392}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08003393
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003394/*
3395 * At replace page cache, newpage is not under any memcg but it's on
3396 * LRU. So, this function doesn't touch res_counter but handles LRU
3397 * in correct way. Both pages are locked so we cannot race with uncharge.
3398 */
3399void mem_cgroup_replace_page_cache(struct page *oldpage,
3400 struct page *newpage)
3401{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003402 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003403 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003404 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003405
3406 if (mem_cgroup_disabled())
3407 return;
3408
3409 pc = lookup_page_cgroup(oldpage);
3410 /* fix accounting on old pages */
3411 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003412 if (PageCgroupUsed(pc)) {
3413 memcg = pc->mem_cgroup;
3414 mem_cgroup_charge_statistics(memcg, false, -1);
3415 ClearPageCgroupUsed(pc);
3416 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003417 unlock_page_cgroup(pc);
3418
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003419 /*
3420 * When called from shmem_replace_page(), in some cases the
3421 * oldpage has already been charged, and in some cases not.
3422 */
3423 if (!memcg)
3424 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003425 /*
3426 * Even if newpage->mapping was NULL before starting replacement,
3427 * the newpage may be on LRU(or pagevec for LRU) already. We lock
3428 * LRU while we overwrite pc->mem_cgroup.
3429 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003430 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003431}
3432
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003433#ifdef CONFIG_DEBUG_VM
3434static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3435{
3436 struct page_cgroup *pc;
3437
3438 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003439 /*
3440 * Can be NULL while feeding pages into the page allocator for
3441 * the first time, i.e. during boot or memory hotplug;
3442 * or when mem_cgroup_disabled().
3443 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003444 if (likely(pc) && PageCgroupUsed(pc))
3445 return pc;
3446 return NULL;
3447}
3448
3449bool mem_cgroup_bad_page_check(struct page *page)
3450{
3451 if (mem_cgroup_disabled())
3452 return false;
3453
3454 return lookup_page_cgroup_used(page) != NULL;
3455}
3456
3457void mem_cgroup_print_bad_page(struct page *page)
3458{
3459 struct page_cgroup *pc;
3460
3461 pc = lookup_page_cgroup_used(page);
3462 if (pc) {
Hugh Dickins90b3fea2012-01-12 17:19:54 -08003463 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003464 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003465 }
3466}
3467#endif
3468
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003469static DEFINE_MUTEX(set_limit_mutex);
3470
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003471static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003472 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003473{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003474 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003475 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003476 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003477 int children = mem_cgroup_count_children(memcg);
3478 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003479 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003480
3481 /*
3482 * For keeping hierarchical_reclaim simple, how long we should retry
3483 * is depends on callers. We set our retry-count to be function
3484 * of # of children which we should visit in this loop.
3485 */
3486 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3487
3488 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003489
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003490 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003491 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003492 if (signal_pending(current)) {
3493 ret = -EINTR;
3494 break;
3495 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003496 /*
3497 * Rather than hide all in some function, I do this in
3498 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003499 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003500 */
3501 mutex_lock(&set_limit_mutex);
3502 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3503 if (memswlimit < val) {
3504 ret = -EINVAL;
3505 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003506 break;
3507 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003508
3509 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3510 if (memlimit < val)
3511 enlarge = 1;
3512
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003513 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003514 if (!ret) {
3515 if (memswlimit == val)
3516 memcg->memsw_is_minimum = true;
3517 else
3518 memcg->memsw_is_minimum = false;
3519 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003520 mutex_unlock(&set_limit_mutex);
3521
3522 if (!ret)
3523 break;
3524
Johannes Weiner56600482012-01-12 17:17:59 -08003525 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3526 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003527 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3528 /* Usage is reduced ? */
3529 if (curusage >= oldusage)
3530 retry_count--;
3531 else
3532 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003533 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003534 if (!ret && enlarge)
3535 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003536
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003537 return ret;
3538}
3539
Li Zefan338c8432009-06-17 16:27:15 -07003540static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3541 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003542{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003543 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003544 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003545 int children = mem_cgroup_count_children(memcg);
3546 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003547 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003548
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003549 /* see mem_cgroup_resize_res_limit */
3550 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3551 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003552 while (retry_count) {
3553 if (signal_pending(current)) {
3554 ret = -EINTR;
3555 break;
3556 }
3557 /*
3558 * Rather than hide all in some function, I do this in
3559 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003560 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003561 */
3562 mutex_lock(&set_limit_mutex);
3563 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3564 if (memlimit > val) {
3565 ret = -EINVAL;
3566 mutex_unlock(&set_limit_mutex);
3567 break;
3568 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003569 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3570 if (memswlimit < val)
3571 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003572 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003573 if (!ret) {
3574 if (memlimit == val)
3575 memcg->memsw_is_minimum = true;
3576 else
3577 memcg->memsw_is_minimum = false;
3578 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003579 mutex_unlock(&set_limit_mutex);
3580
3581 if (!ret)
3582 break;
3583
Johannes Weiner56600482012-01-12 17:17:59 -08003584 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3585 MEM_CGROUP_RECLAIM_NOSWAP |
3586 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003587 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003588 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003589 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003590 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003591 else
3592 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003593 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003594 if (!ret && enlarge)
3595 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003596 return ret;
3597}
3598
Balbir Singh4e416952009-09-23 15:56:39 -07003599unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
Ying Han0ae5e892011-05-26 16:25:25 -07003600 gfp_t gfp_mask,
3601 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003602{
3603 unsigned long nr_reclaimed = 0;
3604 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3605 unsigned long reclaimed;
3606 int loop = 0;
3607 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003608 unsigned long long excess;
Ying Han0ae5e892011-05-26 16:25:25 -07003609 unsigned long nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003610
3611 if (order > 0)
3612 return 0;
3613
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07003614 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
Balbir Singh4e416952009-09-23 15:56:39 -07003615 /*
3616 * This loop can run a while, specially if mem_cgroup's continuously
3617 * keep exceeding their soft limit and putting the system under
3618 * pressure
3619 */
3620 do {
3621 if (next_mz)
3622 mz = next_mz;
3623 else
3624 mz = mem_cgroup_largest_soft_limit_node(mctz);
3625 if (!mz)
3626 break;
3627
Ying Han0ae5e892011-05-26 16:25:25 -07003628 nr_scanned = 0;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003629 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
Johannes Weiner56600482012-01-12 17:17:59 -08003630 gfp_mask, &nr_scanned);
Balbir Singh4e416952009-09-23 15:56:39 -07003631 nr_reclaimed += reclaimed;
Ying Han0ae5e892011-05-26 16:25:25 -07003632 *total_scanned += nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003633 spin_lock(&mctz->lock);
3634
3635 /*
3636 * If we failed to reclaim anything from this memory cgroup
3637 * it is time to move on to the next cgroup
3638 */
3639 next_mz = NULL;
3640 if (!reclaimed) {
3641 do {
3642 /*
3643 * Loop until we find yet another one.
3644 *
3645 * By the time we get the soft_limit lock
3646 * again, someone might have aded the
3647 * group back on the RB tree. Iterate to
3648 * make sure we get a different mem.
3649 * mem_cgroup_largest_soft_limit_node returns
3650 * NULL if no other cgroup is present on
3651 * the tree
3652 */
3653 next_mz =
3654 __mem_cgroup_largest_soft_limit_node(mctz);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003655 if (next_mz == mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003656 css_put(&next_mz->memcg->css);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003657 else /* next_mz == NULL or other memcg */
Balbir Singh4e416952009-09-23 15:56:39 -07003658 break;
3659 } while (1);
3660 }
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003661 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
3662 excess = res_counter_soft_limit_excess(&mz->memcg->res);
Balbir Singh4e416952009-09-23 15:56:39 -07003663 /*
3664 * One school of thought says that we should not add
3665 * back the node to the tree if reclaim returns 0.
3666 * But our reclaim could return 0, simply because due
3667 * to priority we are exposing a smaller subset of
3668 * memory to reclaim from. Consider this as a longer
3669 * term TODO.
3670 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003671 /* If excess == 0, no tree ops */
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003672 __mem_cgroup_insert_exceeded(mz->memcg, mz, mctz, excess);
Balbir Singh4e416952009-09-23 15:56:39 -07003673 spin_unlock(&mctz->lock);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003674 css_put(&mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003675 loop++;
3676 /*
3677 * Could not reclaim anything and there are no more
3678 * mem cgroups to try or we seem to be looping without
3679 * reclaiming anything.
3680 */
3681 if (!nr_reclaimed &&
3682 (next_mz == NULL ||
3683 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3684 break;
3685 } while (!nr_reclaimed);
3686 if (next_mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003687 css_put(&next_mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003688 return nr_reclaimed;
3689}
3690
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07003691/*
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003692 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
3693 * reclaim the pages page themselves - it just removes the page_cgroups.
3694 * Returns true if some page_cgroups were not freed, indicating that the caller
3695 * must retry this operation.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003696 */
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003697static bool mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003698 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003699{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003700 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003701 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003702 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08003703 struct page *busy;
3704 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003705
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003706 zone = &NODE_DATA(node)->node_zones[zid];
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003707 mz = mem_cgroup_zoneinfo(memcg, node, zid);
Johannes Weiner6290df52012-01-12 17:18:10 -08003708 list = &mz->lruvec.lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003709
Hugh Dickins1eb49272012-03-21 16:34:19 -07003710 loop = mz->lru_size[lru];
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003711 /* give some margin against EBUSY etc...*/
3712 loop += 256;
3713 busy = NULL;
3714 while (loop--) {
Johannes Weiner925b7672012-01-12 17:18:15 -08003715 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07003716 struct page *page;
3717
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003718 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003719 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003720 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003721 break;
3722 }
Johannes Weiner925b7672012-01-12 17:18:15 -08003723 page = list_entry(list->prev, struct page, lru);
3724 if (busy == page) {
3725 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003726 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003727 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003728 continue;
3729 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003730 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003731
Johannes Weiner925b7672012-01-12 17:18:15 -08003732 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07003733
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003734 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003735 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08003736 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003737 cond_resched();
3738 } else
3739 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003740 }
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003741 return !list_empty(list);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003742}
3743
3744/*
3745 * make mem_cgroup's charge to be 0 if there is no task.
3746 * This enables deleting this mem_cgroup.
3747 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003748static int mem_cgroup_force_empty(struct mem_cgroup *memcg, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003749{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003750 int ret;
3751 int node, zid, shrink;
3752 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003753 struct cgroup *cgrp = memcg->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003754
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003755 css_get(&memcg->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003756
3757 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003758 /* should free all ? */
3759 if (free_all)
3760 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003761move_account:
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003762 do {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003763 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003764 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003765 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003766 /* This is for making all *used* pages to be on LRU. */
3767 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003768 drain_all_stock_sync(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003769 ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003770 mem_cgroup_start_move(memcg);
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08003771 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003772 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003773 enum lru_list lru;
3774 for_each_lru(lru) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003775 ret = mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003776 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003777 if (ret)
3778 break;
3779 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003780 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003781 if (ret)
3782 break;
3783 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003784 mem_cgroup_end_move(memcg);
3785 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003786 cond_resched();
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003787 /* "ret" should also be checked to ensure all lists are empty. */
Glauber Costa569530f2012-04-12 12:49:13 -07003788 } while (res_counter_read_u64(&memcg->res, RES_USAGE) > 0 || ret);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003789out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003790 css_put(&memcg->css);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003791 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003792
3793try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003794 /* returns EBUSY if there is a task or if we come here twice. */
3795 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003796 ret = -EBUSY;
3797 goto out;
3798 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003799 /* we call try-to-free pages for make this cgroup empty */
3800 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003801 /* try to free all pages in this cgroup */
3802 shrink = 1;
Glauber Costa569530f2012-04-12 12:49:13 -07003803 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003804 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003805
3806 if (signal_pending(current)) {
3807 ret = -EINTR;
3808 goto out;
3809 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003810 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07003811 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003812 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003813 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003814 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003815 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003816 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003817
3818 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003819 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003820 /* try move_account...there may be some *locked* pages. */
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003821 goto move_account;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003822}
3823
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07003824static int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003825{
3826 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3827}
3828
3829
Balbir Singh18f59ea2009-01-07 18:08:07 -08003830static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3831{
3832 return mem_cgroup_from_cont(cont)->use_hierarchy;
3833}
3834
3835static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3836 u64 val)
3837{
3838 int retval = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003839 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003840 struct cgroup *parent = cont->parent;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003841 struct mem_cgroup *parent_memcg = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003842
3843 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003844 parent_memcg = mem_cgroup_from_cont(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003845
3846 cgroup_lock();
Glauber Costa567fb432012-07-31 16:43:07 -07003847
3848 if (memcg->use_hierarchy == val)
3849 goto out;
3850
Balbir Singh18f59ea2009-01-07 18:08:07 -08003851 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003852 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003853 * in the child subtrees. If it is unset, then the change can
3854 * occur, provided the current cgroup has no children.
3855 *
3856 * For the root cgroup, parent_mem is NULL, we allow value to be
3857 * set if there are no children.
3858 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003859 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003860 (val == 1 || val == 0)) {
3861 if (list_empty(&cont->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003862 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003863 else
3864 retval = -EBUSY;
3865 } else
3866 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07003867
3868out:
Balbir Singh18f59ea2009-01-07 18:08:07 -08003869 cgroup_unlock();
3870
3871 return retval;
3872}
3873
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003874
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003875static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003876 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003877{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003878 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003879 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003880
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003881 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003882 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003883 val += mem_cgroup_read_stat(iter, idx);
3884
3885 if (val < 0) /* race ? */
3886 val = 0;
3887 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003888}
3889
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003890static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003891{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003892 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003893
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003894 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003895 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00003896 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003897 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00003898 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003899 }
3900
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003901 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
3902 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003903
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003904 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07003905 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003906
3907 return val << PAGE_SHIFT;
3908}
3909
Tejun Heoaf36f902012-04-01 12:09:55 -07003910static ssize_t mem_cgroup_read(struct cgroup *cont, struct cftype *cft,
3911 struct file *file, char __user *buf,
3912 size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003913{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003914 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Tejun Heoaf36f902012-04-01 12:09:55 -07003915 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003916 u64 val;
Tejun Heoaf36f902012-04-01 12:09:55 -07003917 int type, name, len;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003918
3919 type = MEMFILE_TYPE(cft->private);
3920 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003921
3922 if (!do_swap_account && type == _MEMSWAP)
3923 return -EOPNOTSUPP;
3924
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003925 switch (type) {
3926 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003927 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003928 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003929 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003930 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003931 break;
3932 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003933 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003934 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003935 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003936 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003937 break;
3938 default:
3939 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003940 }
Tejun Heoaf36f902012-04-01 12:09:55 -07003941
3942 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
3943 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003944}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003945/*
3946 * The user of this function is...
3947 * RES_LIMIT.
3948 */
Paul Menage856c13a2008-07-25 01:47:04 -07003949static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
3950 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003951{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003952 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003953 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003954 unsigned long long val;
3955 int ret;
3956
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003957 type = MEMFILE_TYPE(cft->private);
3958 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003959
3960 if (!do_swap_account && type == _MEMSWAP)
3961 return -EOPNOTSUPP;
3962
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003963 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003964 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07003965 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3966 ret = -EINVAL;
3967 break;
3968 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003969 /* This function does all necessary parse...reuse it */
3970 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003971 if (ret)
3972 break;
3973 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003974 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003975 else
3976 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003977 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07003978 case RES_SOFT_LIMIT:
3979 ret = res_counter_memparse_write_strategy(buffer, &val);
3980 if (ret)
3981 break;
3982 /*
3983 * For memsw, soft limits are hard to implement in terms
3984 * of semantics, for now, we support soft limits for
3985 * control without swap
3986 */
3987 if (type == _MEM)
3988 ret = res_counter_set_soft_limit(&memcg->res, val);
3989 else
3990 ret = -EINVAL;
3991 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003992 default:
3993 ret = -EINVAL; /* should be BUG() ? */
3994 break;
3995 }
3996 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003997}
3998
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08003999static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
4000 unsigned long long *mem_limit, unsigned long long *memsw_limit)
4001{
4002 struct cgroup *cgroup;
4003 unsigned long long min_limit, min_memsw_limit, tmp;
4004
4005 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4006 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4007 cgroup = memcg->css.cgroup;
4008 if (!memcg->use_hierarchy)
4009 goto out;
4010
4011 while (cgroup->parent) {
4012 cgroup = cgroup->parent;
4013 memcg = mem_cgroup_from_cont(cgroup);
4014 if (!memcg->use_hierarchy)
4015 break;
4016 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4017 min_limit = min(min_limit, tmp);
4018 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4019 min_memsw_limit = min(min_memsw_limit, tmp);
4020 }
4021out:
4022 *mem_limit = min_limit;
4023 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004024}
4025
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004026static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004027{
Tejun Heoaf36f902012-04-01 12:09:55 -07004028 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004029 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004030
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004031 type = MEMFILE_TYPE(event);
4032 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07004033
4034 if (!do_swap_account && type == _MEMSWAP)
4035 return -EOPNOTSUPP;
4036
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004037 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004038 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004039 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004040 res_counter_reset_max(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004041 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004042 res_counter_reset_max(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004043 break;
4044 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004045 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004046 res_counter_reset_failcnt(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004047 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004048 res_counter_reset_failcnt(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004049 break;
4050 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004051
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004052 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004053}
4054
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004055static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
4056 struct cftype *cft)
4057{
4058 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
4059}
4060
Daisuke Nishimura02491442010-03-10 15:22:17 -08004061#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004062static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4063 struct cftype *cft, u64 val)
4064{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004065 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004066
4067 if (val >= (1 << NR_MOVE_TYPE))
4068 return -EINVAL;
4069 /*
4070 * We check this value several times in both in can_attach() and
4071 * attach(), so we need cgroup lock to prevent this value from being
4072 * inconsistent.
4073 */
4074 cgroup_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004075 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004076 cgroup_unlock();
4077
4078 return 0;
4079}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004080#else
4081static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4082 struct cftype *cft, u64 val)
4083{
4084 return -ENOSYS;
4085}
4086#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004087
Ying Han406eb0c2011-05-26 16:25:37 -07004088#ifdef CONFIG_NUMA
Wanpeng Liab215882012-07-31 16:43:09 -07004089static int memcg_numa_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weinerfada52c2012-05-29 15:07:06 -07004090 struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07004091{
4092 int nid;
4093 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
4094 unsigned long node_nr;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004095 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Ying Han406eb0c2011-05-26 16:25:37 -07004096
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004097 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004098 seq_printf(m, "total=%lu", total_nr);
4099 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004100 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
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 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004106 seq_printf(m, "file=%lu", file_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_FILE);
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 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004115 seq_printf(m, "anon=%lu", anon_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 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004119 seq_printf(m, " N%d=%lu", nid, node_nr);
4120 }
4121 seq_putc(m, '\n');
4122
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004123 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004124 seq_printf(m, "unevictable=%lu", unevictable_nr);
4125 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004126 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004127 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004128 seq_printf(m, " N%d=%lu", nid, node_nr);
4129 }
4130 seq_putc(m, '\n');
4131 return 0;
4132}
4133#endif /* CONFIG_NUMA */
4134
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004135static const char * const mem_cgroup_lru_names[] = {
4136 "inactive_anon",
4137 "active_anon",
4138 "inactive_file",
4139 "active_file",
4140 "unevictable",
4141};
4142
4143static inline void mem_cgroup_lru_names_not_uptodate(void)
4144{
4145 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
4146}
4147
Wanpeng Liab215882012-07-31 16:43:09 -07004148static int memcg_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004149 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004150{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004151 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004152 struct mem_cgroup *mi;
4153 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004154
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004155 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004156 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004157 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004158 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
4159 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004160 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004161
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004162 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
4163 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
4164 mem_cgroup_read_events(memcg, i));
4165
4166 for (i = 0; i < NR_LRU_LISTS; i++)
4167 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
4168 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
4169
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004170 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004171 {
4172 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004173 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004174 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004175 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004176 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4177 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004178 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004179
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004180 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
4181 long long val = 0;
4182
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004183 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004184 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004185 for_each_mem_cgroup_tree(mi, memcg)
4186 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
4187 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
4188 }
4189
4190 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
4191 unsigned long long val = 0;
4192
4193 for_each_mem_cgroup_tree(mi, memcg)
4194 val += mem_cgroup_read_events(mi, i);
4195 seq_printf(m, "total_%s %llu\n",
4196 mem_cgroup_events_names[i], val);
4197 }
4198
4199 for (i = 0; i < NR_LRU_LISTS; i++) {
4200 unsigned long long val = 0;
4201
4202 for_each_mem_cgroup_tree(mi, memcg)
4203 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
4204 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004205 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004206
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004207#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004208 {
4209 int nid, zid;
4210 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07004211 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004212 unsigned long recent_rotated[2] = {0, 0};
4213 unsigned long recent_scanned[2] = {0, 0};
4214
4215 for_each_online_node(nid)
4216 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004217 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07004218 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004219
Hugh Dickins89abfab2012-05-29 15:06:53 -07004220 recent_rotated[0] += rstat->recent_rotated[0];
4221 recent_rotated[1] += rstat->recent_rotated[1];
4222 recent_scanned[0] += rstat->recent_scanned[0];
4223 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004224 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004225 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
4226 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
4227 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
4228 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004229 }
4230#endif
4231
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004232 return 0;
4233}
4234
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004235static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
4236{
4237 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4238
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004239 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004240}
4241
4242static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
4243 u64 val)
4244{
4245 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4246 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08004247
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004248 if (val > 100)
4249 return -EINVAL;
4250
4251 if (cgrp->parent == NULL)
4252 return -EINVAL;
4253
4254 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08004255
4256 cgroup_lock();
4257
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004258 /* If under hierarchy, only empty-root can set this value */
4259 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08004260 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
4261 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004262 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08004263 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004264
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004265 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004266
Li Zefan068b38c2009-01-15 13:51:26 -08004267 cgroup_unlock();
4268
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004269 return 0;
4270}
4271
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004272static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4273{
4274 struct mem_cgroup_threshold_ary *t;
4275 u64 usage;
4276 int i;
4277
4278 rcu_read_lock();
4279 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004280 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004281 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004282 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004283
4284 if (!t)
4285 goto unlock;
4286
4287 usage = mem_cgroup_usage(memcg, swap);
4288
4289 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004290 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004291 * If it's not true, a threshold was crossed after last
4292 * call of __mem_cgroup_threshold().
4293 */
Phil Carmody5407a562010-05-26 14:42:42 -07004294 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004295
4296 /*
4297 * Iterate backward over array of thresholds starting from
4298 * current_threshold and check if a threshold is crossed.
4299 * If none of thresholds below usage is crossed, we read
4300 * only one element of the array here.
4301 */
4302 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4303 eventfd_signal(t->entries[i].eventfd, 1);
4304
4305 /* i = current_threshold + 1 */
4306 i++;
4307
4308 /*
4309 * Iterate forward over array of thresholds starting from
4310 * current_threshold+1 and check if a threshold is crossed.
4311 * If none of thresholds above usage is crossed, we read
4312 * only one element of the array here.
4313 */
4314 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4315 eventfd_signal(t->entries[i].eventfd, 1);
4316
4317 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004318 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004319unlock:
4320 rcu_read_unlock();
4321}
4322
4323static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4324{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004325 while (memcg) {
4326 __mem_cgroup_threshold(memcg, false);
4327 if (do_swap_account)
4328 __mem_cgroup_threshold(memcg, true);
4329
4330 memcg = parent_mem_cgroup(memcg);
4331 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004332}
4333
4334static int compare_thresholds(const void *a, const void *b)
4335{
4336 const struct mem_cgroup_threshold *_a = a;
4337 const struct mem_cgroup_threshold *_b = b;
4338
4339 return _a->threshold - _b->threshold;
4340}
4341
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004342static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004343{
4344 struct mem_cgroup_eventfd_list *ev;
4345
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004346 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004347 eventfd_signal(ev->eventfd, 1);
4348 return 0;
4349}
4350
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004351static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004352{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004353 struct mem_cgroup *iter;
4354
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004355 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004356 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004357}
4358
4359static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4360 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004361{
4362 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004363 struct mem_cgroup_thresholds *thresholds;
4364 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004365 int type = MEMFILE_TYPE(cft->private);
4366 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004367 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004368
4369 ret = res_counter_memparse_write_strategy(args, &threshold);
4370 if (ret)
4371 return ret;
4372
4373 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004374
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004375 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004376 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004377 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004378 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004379 else
4380 BUG();
4381
4382 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4383
4384 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004385 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004386 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4387
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004388 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004389
4390 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004391 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004392 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004393 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004394 ret = -ENOMEM;
4395 goto unlock;
4396 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004397 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004398
4399 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004400 if (thresholds->primary) {
4401 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004402 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004403 }
4404
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004405 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004406 new->entries[size - 1].eventfd = eventfd;
4407 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004408
4409 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004410 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004411 compare_thresholds, NULL);
4412
4413 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004414 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004415 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004416 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004417 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004418 * new->current_threshold will not be used until
4419 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004420 * it here.
4421 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004422 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004423 } else
4424 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004425 }
4426
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004427 /* Free old spare buffer and save old primary buffer as spare */
4428 kfree(thresholds->spare);
4429 thresholds->spare = thresholds->primary;
4430
4431 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004432
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004433 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004434 synchronize_rcu();
4435
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004436unlock:
4437 mutex_unlock(&memcg->thresholds_lock);
4438
4439 return ret;
4440}
4441
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004442static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004443 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004444{
4445 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004446 struct mem_cgroup_thresholds *thresholds;
4447 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004448 int type = MEMFILE_TYPE(cft->private);
4449 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004450 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004451
4452 mutex_lock(&memcg->thresholds_lock);
4453 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004454 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004455 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004456 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004457 else
4458 BUG();
4459
Anton Vorontsov371528c2012-02-24 05:14:46 +04004460 if (!thresholds->primary)
4461 goto unlock;
4462
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004463 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4464
4465 /* Check if a threshold crossed before removing */
4466 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4467
4468 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004469 size = 0;
4470 for (i = 0; i < thresholds->primary->size; i++) {
4471 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004472 size++;
4473 }
4474
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004475 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004476
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004477 /* Set thresholds array to NULL if we don't have thresholds */
4478 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004479 kfree(new);
4480 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004481 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004482 }
4483
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004484 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004485
4486 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004487 new->current_threshold = -1;
4488 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4489 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004490 continue;
4491
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004492 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004493 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004494 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004495 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004496 * until rcu_assign_pointer(), so it's safe to increment
4497 * it here.
4498 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004499 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004500 }
4501 j++;
4502 }
4503
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004504swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004505 /* Swap primary and spare array */
4506 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004507 /* If all events are unregistered, free the spare array */
4508 if (!new) {
4509 kfree(thresholds->spare);
4510 thresholds->spare = NULL;
4511 }
4512
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004513 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004514
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004515 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004516 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04004517unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004518 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004519}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004520
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004521static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4522 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4523{
4524 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4525 struct mem_cgroup_eventfd_list *event;
4526 int type = MEMFILE_TYPE(cft->private);
4527
4528 BUG_ON(type != _OOM_TYPE);
4529 event = kmalloc(sizeof(*event), GFP_KERNEL);
4530 if (!event)
4531 return -ENOMEM;
4532
Michal Hocko1af8efe2011-07-26 16:08:24 -07004533 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004534
4535 event->eventfd = eventfd;
4536 list_add(&event->list, &memcg->oom_notify);
4537
4538 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004539 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004540 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004541 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004542
4543 return 0;
4544}
4545
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004546static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004547 struct cftype *cft, struct eventfd_ctx *eventfd)
4548{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004549 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004550 struct mem_cgroup_eventfd_list *ev, *tmp;
4551 int type = MEMFILE_TYPE(cft->private);
4552
4553 BUG_ON(type != _OOM_TYPE);
4554
Michal Hocko1af8efe2011-07-26 16:08:24 -07004555 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004556
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004557 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004558 if (ev->eventfd == eventfd) {
4559 list_del(&ev->list);
4560 kfree(ev);
4561 }
4562 }
4563
Michal Hocko1af8efe2011-07-26 16:08:24 -07004564 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004565}
4566
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004567static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4568 struct cftype *cft, struct cgroup_map_cb *cb)
4569{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004570 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004571
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004572 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004573
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004574 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004575 cb->fill(cb, "under_oom", 1);
4576 else
4577 cb->fill(cb, "under_oom", 0);
4578 return 0;
4579}
4580
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004581static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4582 struct cftype *cft, u64 val)
4583{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004584 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004585 struct mem_cgroup *parent;
4586
4587 /* cannot set to root cgroup and only 0 and 1 are allowed */
4588 if (!cgrp->parent || !((val == 0) || (val == 1)))
4589 return -EINVAL;
4590
4591 parent = mem_cgroup_from_cont(cgrp->parent);
4592
4593 cgroup_lock();
4594 /* oom-kill-disable is a flag for subhierarchy. */
4595 if ((parent->use_hierarchy) ||
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004596 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004597 cgroup_unlock();
4598 return -EINVAL;
4599 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004600 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004601 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004602 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004603 cgroup_unlock();
4604 return 0;
4605}
4606
Andrew Mortonc255a452012-07-31 16:43:02 -07004607#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03004608static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004609{
Glauber Costa1d62e432012-04-09 19:36:33 -03004610 return mem_cgroup_sockets_init(memcg, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00004611};
4612
Glauber Costa1d62e432012-04-09 19:36:33 -03004613static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004614{
Glauber Costa1d62e432012-04-09 19:36:33 -03004615 mem_cgroup_sockets_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004616}
Glauber Costae5671df2011-12-11 21:47:01 +00004617#else
Glauber Costacbe128e32012-04-09 19:36:34 -03004618static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004619{
4620 return 0;
4621}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004622
Glauber Costa1d62e432012-04-09 19:36:33 -03004623static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004624{
4625}
Glauber Costae5671df2011-12-11 21:47:01 +00004626#endif
4627
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004628static struct cftype mem_cgroup_files[] = {
4629 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004630 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004631 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004632 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004633 .register_event = mem_cgroup_usage_register_event,
4634 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004635 },
4636 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004637 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004638 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004639 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004640 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004641 },
4642 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004643 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004644 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07004645 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004646 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004647 },
4648 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004649 .name = "soft_limit_in_bytes",
4650 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4651 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004652 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07004653 },
4654 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004655 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004656 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004657 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004658 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004659 },
Balbir Singh8697d332008-02-07 00:13:59 -08004660 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004661 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004662 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004663 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004664 {
4665 .name = "force_empty",
4666 .trigger = mem_cgroup_force_empty_write,
4667 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004668 {
4669 .name = "use_hierarchy",
4670 .write_u64 = mem_cgroup_hierarchy_write,
4671 .read_u64 = mem_cgroup_hierarchy_read,
4672 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004673 {
4674 .name = "swappiness",
4675 .read_u64 = mem_cgroup_swappiness_read,
4676 .write_u64 = mem_cgroup_swappiness_write,
4677 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004678 {
4679 .name = "move_charge_at_immigrate",
4680 .read_u64 = mem_cgroup_move_charge_read,
4681 .write_u64 = mem_cgroup_move_charge_write,
4682 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004683 {
4684 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004685 .read_map = mem_cgroup_oom_control_read,
4686 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004687 .register_event = mem_cgroup_oom_register_event,
4688 .unregister_event = mem_cgroup_oom_unregister_event,
4689 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4690 },
Ying Han406eb0c2011-05-26 16:25:37 -07004691#ifdef CONFIG_NUMA
4692 {
4693 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004694 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07004695 },
4696#endif
Andrew Mortonc255a452012-07-31 16:43:02 -07004697#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004698 {
4699 .name = "memsw.usage_in_bytes",
4700 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004701 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004702 .register_event = mem_cgroup_usage_register_event,
4703 .unregister_event = mem_cgroup_usage_unregister_event,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004704 },
4705 {
4706 .name = "memsw.max_usage_in_bytes",
4707 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4708 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004709 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004710 },
4711 {
4712 .name = "memsw.limit_in_bytes",
4713 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4714 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004715 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004716 },
4717 {
4718 .name = "memsw.failcnt",
4719 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4720 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004721 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004722 },
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004723#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07004724 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07004725};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004726
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004727static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004728{
4729 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004730 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004731 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004732 /*
4733 * This routine is called against possible nodes.
4734 * But it's BUG to call kmalloc() against offline node.
4735 *
4736 * TODO: this routine can waste much memory for nodes which will
4737 * never be onlined. It's better to use memory hotplug callback
4738 * function.
4739 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004740 if (!node_state(node, N_NORMAL_MEMORY))
4741 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004742 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004743 if (!pn)
4744 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004745
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004746 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4747 mz = &pn->zoneinfo[zone];
Konstantin Khlebnikov7f5e86c2012-05-29 15:06:58 -07004748 lruvec_init(&mz->lruvec, &NODE_DATA(node)->node_zones[zone]);
Balbir Singhf64c3f52009-09-23 15:56:37 -07004749 mz->usage_in_excess = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07004750 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004751 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004752 }
Igor Mammedov0a619e52011-11-02 13:38:21 -07004753 memcg->info.nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004754 return 0;
4755}
4756
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004757static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004758{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004759 kfree(memcg->info.nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004760}
4761
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004762static struct mem_cgroup *mem_cgroup_alloc(void)
4763{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004764 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004765 int size = sizeof(struct mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004766
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004767 /* Can be very big if MAX_NUMNODES is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08004768 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004769 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004770 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004771 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004772
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004773 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004774 return NULL;
4775
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004776 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
4777 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004778 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004779 spin_lock_init(&memcg->pcp_counter_lock);
4780 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004781
4782out_free:
4783 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004784 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004785 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004786 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004787 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004788}
4789
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004790/*
Glauber Costa3afe36b2012-05-29 15:07:10 -07004791 * Helpers for freeing a kmalloc()ed/vzalloc()ed mem_cgroup by RCU,
Hugh Dickins59927fb2012-03-15 15:17:07 -07004792 * but in process context. The work_freeing structure is overlaid
4793 * on the rcu_freeing structure, which itself is overlaid on memsw.
4794 */
Glauber Costa3afe36b2012-05-29 15:07:10 -07004795static void free_work(struct work_struct *work)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004796{
4797 struct mem_cgroup *memcg;
Glauber Costa3afe36b2012-05-29 15:07:10 -07004798 int size = sizeof(struct mem_cgroup);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004799
4800 memcg = container_of(work, struct mem_cgroup, work_freeing);
Glauber Costa3f134612012-05-29 15:07:11 -07004801 /*
4802 * We need to make sure that (at least for now), the jump label
4803 * destruction code runs outside of the cgroup lock. This is because
4804 * get_online_cpus(), which is called from the static_branch update,
4805 * can't be called inside the cgroup_lock. cpusets are the ones
4806 * enforcing this dependency, so if they ever change, we might as well.
4807 *
4808 * schedule_work() will guarantee this happens. Be careful if you need
4809 * to move this code around, and make sure it is outside
4810 * the cgroup_lock.
4811 */
4812 disarm_sock_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004813 if (size < PAGE_SIZE)
4814 kfree(memcg);
4815 else
4816 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004817}
Glauber Costa3afe36b2012-05-29 15:07:10 -07004818
4819static void free_rcu(struct rcu_head *rcu_head)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004820{
4821 struct mem_cgroup *memcg;
4822
4823 memcg = container_of(rcu_head, struct mem_cgroup, rcu_freeing);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004824 INIT_WORK(&memcg->work_freeing, free_work);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004825 schedule_work(&memcg->work_freeing);
4826}
4827
4828/*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004829 * At destroying mem_cgroup, references from swap_cgroup can remain.
4830 * (scanning all at force_empty is too costly...)
4831 *
4832 * Instead of clearing all references at force_empty, we remember
4833 * the number of reference from swap_cgroup and free mem_cgroup when
4834 * it goes down to 0.
4835 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004836 * Removal of cgroup itself succeeds regardless of refs from swap.
4837 */
4838
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004839static void __mem_cgroup_free(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004840{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004841 int node;
4842
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004843 mem_cgroup_remove_from_trees(memcg);
4844 free_css_id(&mem_cgroup_subsys, &memcg->css);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004845
Bob Liu3ed28fa2012-01-12 17:19:04 -08004846 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004847 free_mem_cgroup_per_zone_info(memcg, node);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004848
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004849 free_percpu(memcg->stat);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004850 call_rcu(&memcg->rcu_freeing, free_rcu);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004851}
4852
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004853static void mem_cgroup_get(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004854{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004855 atomic_inc(&memcg->refcnt);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004856}
4857
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004858static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004859{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004860 if (atomic_sub_and_test(count, &memcg->refcnt)) {
4861 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4862 __mem_cgroup_free(memcg);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004863 if (parent)
4864 mem_cgroup_put(parent);
4865 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004866}
4867
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004868static void mem_cgroup_put(struct mem_cgroup *memcg)
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004869{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004870 __mem_cgroup_put(memcg, 1);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004871}
4872
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004873/*
4874 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4875 */
Glauber Costae1aab162011-12-11 21:47:03 +00004876struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004877{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004878 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004879 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004880 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004881}
Glauber Costae1aab162011-12-11 21:47:03 +00004882EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004883
Andrew Mortonc255a452012-07-31 16:43:02 -07004884#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004885static void __init enable_swap_cgroup(void)
4886{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004887 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004888 do_swap_account = 1;
4889}
4890#else
4891static void __init enable_swap_cgroup(void)
4892{
4893}
4894#endif
4895
Balbir Singhf64c3f52009-09-23 15:56:37 -07004896static int mem_cgroup_soft_limit_tree_init(void)
4897{
4898 struct mem_cgroup_tree_per_node *rtpn;
4899 struct mem_cgroup_tree_per_zone *rtpz;
4900 int tmp, node, zone;
4901
Bob Liu3ed28fa2012-01-12 17:19:04 -08004902 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -07004903 tmp = node;
4904 if (!node_state(node, N_NORMAL_MEMORY))
4905 tmp = -1;
4906 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
4907 if (!rtpn)
Michal Hockoc3cecc62012-01-12 17:18:50 -08004908 goto err_cleanup;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004909
4910 soft_limit_tree.rb_tree_per_node[node] = rtpn;
4911
4912 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4913 rtpz = &rtpn->rb_tree_per_zone[zone];
4914 rtpz->rb_root = RB_ROOT;
4915 spin_lock_init(&rtpz->lock);
4916 }
4917 }
4918 return 0;
Michal Hockoc3cecc62012-01-12 17:18:50 -08004919
4920err_cleanup:
Bob Liu3ed28fa2012-01-12 17:19:04 -08004921 for_each_node(node) {
Michal Hockoc3cecc62012-01-12 17:18:50 -08004922 if (!soft_limit_tree.rb_tree_per_node[node])
4923 break;
4924 kfree(soft_limit_tree.rb_tree_per_node[node]);
4925 soft_limit_tree.rb_tree_per_node[node] = NULL;
4926 }
4927 return 1;
4928
Balbir Singhf64c3f52009-09-23 15:56:37 -07004929}
4930
Li Zefan0eb253e2009-01-15 13:51:25 -08004931static struct cgroup_subsys_state * __ref
Li Zefan761b3ef2012-01-31 13:47:36 +08004932mem_cgroup_create(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004933{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004934 struct mem_cgroup *memcg, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004935 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004936 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004937
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004938 memcg = mem_cgroup_alloc();
4939 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004940 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004941
Bob Liu3ed28fa2012-01-12 17:19:04 -08004942 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004943 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004944 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004945
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004946 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004947 if (cont->parent == NULL) {
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004948 int cpu;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004949 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004950 parent = NULL;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004951 if (mem_cgroup_soft_limit_tree_init())
4952 goto free_out;
Hillf Dantona41c58a2011-12-19 17:11:57 -08004953 root_mem_cgroup = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004954 for_each_possible_cpu(cpu) {
4955 struct memcg_stock_pcp *stock =
4956 &per_cpu(memcg_stock, cpu);
4957 INIT_WORK(&stock->work, drain_local_stock);
4958 }
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07004959 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004960 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004961 parent = mem_cgroup_from_cont(cont->parent);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004962 memcg->use_hierarchy = parent->use_hierarchy;
4963 memcg->oom_kill_disable = parent->oom_kill_disable;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004964 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004965
Balbir Singh18f59ea2009-01-07 18:08:07 -08004966 if (parent && parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004967 res_counter_init(&memcg->res, &parent->res);
4968 res_counter_init(&memcg->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004969 /*
4970 * We increment refcnt of the parent to ensure that we can
4971 * safely access it on res_counter_charge/uncharge.
4972 * This refcnt will be decremented when freeing this
4973 * mem_cgroup(see mem_cgroup_put).
4974 */
4975 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004976 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004977 res_counter_init(&memcg->res, NULL);
4978 res_counter_init(&memcg->memsw, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004979 /*
4980 * Deeper hierachy with use_hierarchy == false doesn't make
4981 * much sense so let cgroup subsystem know about this
4982 * unfortunate state in our controller.
4983 */
4984 if (parent && parent != root_mem_cgroup)
4985 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004986 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004987 memcg->last_scanned_node = MAX_NUMNODES;
4988 INIT_LIST_HEAD(&memcg->oom_notify);
Balbir Singh6d61ef42009-01-07 18:08:06 -08004989
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004990 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004991 memcg->swappiness = mem_cgroup_swappiness(parent);
4992 atomic_set(&memcg->refcnt, 1);
4993 memcg->move_charge_at_immigrate = 0;
4994 mutex_init(&memcg->thresholds_lock);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07004995 spin_lock_init(&memcg->move_lock);
Glauber Costacbe128e32012-04-09 19:36:34 -03004996
4997 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
4998 if (error) {
4999 /*
5000 * We call put now because our (and parent's) refcnts
5001 * are already in place. mem_cgroup_put() will internally
5002 * call __mem_cgroup_free, so return directly
5003 */
5004 mem_cgroup_put(memcg);
5005 return ERR_PTR(error);
5006 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005007 return &memcg->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005008free_out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005009 __mem_cgroup_free(memcg);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005010 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005011}
5012
Li Zefan761b3ef2012-01-31 13:47:36 +08005013static int mem_cgroup_pre_destroy(struct cgroup *cont)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005014{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005015 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005016
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005017 return mem_cgroup_force_empty(memcg, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005018}
5019
Li Zefan761b3ef2012-01-31 13:47:36 +08005020static void mem_cgroup_destroy(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005021{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005022 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005023
Glauber Costa1d62e432012-04-09 19:36:33 -03005024 kmem_cgroup_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005025
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005026 mem_cgroup_put(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005027}
5028
Daisuke Nishimura02491442010-03-10 15:22:17 -08005029#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005030/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005031#define PRECHARGE_COUNT_AT_ONCE 256
5032static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005033{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005034 int ret = 0;
5035 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005036 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005037
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005038 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005039 mc.precharge += count;
5040 /* we don't need css_get for root */
5041 return ret;
5042 }
5043 /* try to charge at once */
5044 if (count > 1) {
5045 struct res_counter *dummy;
5046 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005047 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005048 * by cgroup_lock_live_cgroup() that it is not removed and we
5049 * are still under the same cgroup_mutex. So we can postpone
5050 * css_get().
5051 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005052 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005053 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005054 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005055 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005056 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005057 goto one_by_one;
5058 }
5059 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005060 return ret;
5061 }
5062one_by_one:
5063 /* fall back to one by one charge */
5064 while (count--) {
5065 if (signal_pending(current)) {
5066 ret = -EINTR;
5067 break;
5068 }
5069 if (!batch_count--) {
5070 batch_count = PRECHARGE_COUNT_AT_ONCE;
5071 cond_resched();
5072 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005073 ret = __mem_cgroup_try_charge(NULL,
5074 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005075 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005076 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005077 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005078 mc.precharge++;
5079 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005080 return ret;
5081}
5082
5083/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005084 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005085 * @vma: the vma the pte to be checked belongs
5086 * @addr: the address corresponding to the pte to be checked
5087 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005088 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005089 *
5090 * Returns
5091 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5092 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5093 * move charge. if @target is not NULL, the page is stored in target->page
5094 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005095 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5096 * target for charge migration. if @target is not NULL, the entry is stored
5097 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005098 *
5099 * Called with pte lock held.
5100 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005101union mc_target {
5102 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005103 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005104};
5105
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005106enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005107 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005108 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005109 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005110};
5111
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005112static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5113 unsigned long addr, pte_t ptent)
5114{
5115 struct page *page = vm_normal_page(vma, addr, ptent);
5116
5117 if (!page || !page_mapped(page))
5118 return NULL;
5119 if (PageAnon(page)) {
5120 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005121 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005122 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005123 } else if (!move_file())
5124 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005125 return NULL;
5126 if (!get_page_unless_zero(page))
5127 return NULL;
5128
5129 return page;
5130}
5131
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005132#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005133static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5134 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5135{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005136 struct page *page = NULL;
5137 swp_entry_t ent = pte_to_swp_entry(ptent);
5138
5139 if (!move_anon() || non_swap_entry(ent))
5140 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005141 /*
5142 * Because lookup_swap_cache() updates some statistics counter,
5143 * we call find_get_page() with swapper_space directly.
5144 */
5145 page = find_get_page(&swapper_space, ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005146 if (do_swap_account)
5147 entry->val = ent.val;
5148
5149 return page;
5150}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005151#else
5152static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5153 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5154{
5155 return NULL;
5156}
5157#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005158
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005159static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5160 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5161{
5162 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005163 struct address_space *mapping;
5164 pgoff_t pgoff;
5165
5166 if (!vma->vm_file) /* anonymous vma */
5167 return NULL;
5168 if (!move_file())
5169 return NULL;
5170
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005171 mapping = vma->vm_file->f_mapping;
5172 if (pte_none(ptent))
5173 pgoff = linear_page_index(vma, addr);
5174 else /* pte_file(ptent) is true */
5175 pgoff = pte_to_pgoff(ptent);
5176
5177 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005178 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005179
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005180#ifdef CONFIG_SWAP
5181 /* shmem/tmpfs may report page out on swap: account for that too. */
5182 if (radix_tree_exceptional_entry(page)) {
5183 swp_entry_t swap = radix_to_swp_entry(page);
5184 if (do_swap_account)
5185 *entry = swap;
5186 page = find_get_page(&swapper_space, swap.val);
5187 }
5188#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005189 return page;
5190}
5191
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005192static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005193 unsigned long addr, pte_t ptent, union mc_target *target)
5194{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005195 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005196 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005197 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005198 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005199
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005200 if (pte_present(ptent))
5201 page = mc_handle_present_pte(vma, addr, ptent);
5202 else if (is_swap_pte(ptent))
5203 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005204 else if (pte_none(ptent) || pte_file(ptent))
5205 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005206
5207 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005208 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005209 if (page) {
5210 pc = lookup_page_cgroup(page);
5211 /*
5212 * Do only loose check w/o page_cgroup lock.
5213 * mem_cgroup_move_account() checks the pc is valid or not under
5214 * the lock.
5215 */
5216 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5217 ret = MC_TARGET_PAGE;
5218 if (target)
5219 target->page = page;
5220 }
5221 if (!ret || !target)
5222 put_page(page);
5223 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005224 /* There is a swap entry and a page doesn't exist or isn't charged */
5225 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08005226 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005227 ret = MC_TARGET_SWAP;
5228 if (target)
5229 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005230 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005231 return ret;
5232}
5233
Naoya Horiguchi12724852012-03-21 16:34:28 -07005234#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5235/*
5236 * We don't consider swapping or file mapped pages because THP does not
5237 * support them for now.
5238 * Caller should make sure that pmd_trans_huge(pmd) is true.
5239 */
5240static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5241 unsigned long addr, pmd_t pmd, union mc_target *target)
5242{
5243 struct page *page = NULL;
5244 struct page_cgroup *pc;
5245 enum mc_target_type ret = MC_TARGET_NONE;
5246
5247 page = pmd_page(pmd);
5248 VM_BUG_ON(!page || !PageHead(page));
5249 if (!move_anon())
5250 return ret;
5251 pc = lookup_page_cgroup(page);
5252 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5253 ret = MC_TARGET_PAGE;
5254 if (target) {
5255 get_page(page);
5256 target->page = page;
5257 }
5258 }
5259 return ret;
5260}
5261#else
5262static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5263 unsigned long addr, pmd_t pmd, union mc_target *target)
5264{
5265 return MC_TARGET_NONE;
5266}
5267#endif
5268
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005269static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5270 unsigned long addr, unsigned long end,
5271 struct mm_walk *walk)
5272{
5273 struct vm_area_struct *vma = walk->private;
5274 pte_t *pte;
5275 spinlock_t *ptl;
5276
Naoya Horiguchi12724852012-03-21 16:34:28 -07005277 if (pmd_trans_huge_lock(pmd, vma) == 1) {
5278 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5279 mc.precharge += HPAGE_PMD_NR;
5280 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005281 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005282 }
Dave Hansen03319322011-03-22 16:32:56 -07005283
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005284 if (pmd_trans_unstable(pmd))
5285 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005286 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5287 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005288 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005289 mc.precharge++; /* increment precharge temporarily */
5290 pte_unmap_unlock(pte - 1, ptl);
5291 cond_resched();
5292
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005293 return 0;
5294}
5295
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005296static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5297{
5298 unsigned long precharge;
5299 struct vm_area_struct *vma;
5300
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005301 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005302 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5303 struct mm_walk mem_cgroup_count_precharge_walk = {
5304 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5305 .mm = mm,
5306 .private = vma,
5307 };
5308 if (is_vm_hugetlb_page(vma))
5309 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005310 walk_page_range(vma->vm_start, vma->vm_end,
5311 &mem_cgroup_count_precharge_walk);
5312 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005313 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005314
5315 precharge = mc.precharge;
5316 mc.precharge = 0;
5317
5318 return precharge;
5319}
5320
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005321static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5322{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005323 unsigned long precharge = mem_cgroup_count_precharge(mm);
5324
5325 VM_BUG_ON(mc.moving_task);
5326 mc.moving_task = current;
5327 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005328}
5329
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005330/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5331static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005332{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005333 struct mem_cgroup *from = mc.from;
5334 struct mem_cgroup *to = mc.to;
5335
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005336 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005337 if (mc.precharge) {
5338 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
5339 mc.precharge = 0;
5340 }
5341 /*
5342 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5343 * we must uncharge here.
5344 */
5345 if (mc.moved_charge) {
5346 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
5347 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005348 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005349 /* we must fixup refcnts and charges */
5350 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005351 /* uncharge swap account from the old cgroup */
5352 if (!mem_cgroup_is_root(mc.from))
5353 res_counter_uncharge(&mc.from->memsw,
5354 PAGE_SIZE * mc.moved_swap);
5355 __mem_cgroup_put(mc.from, mc.moved_swap);
5356
5357 if (!mem_cgroup_is_root(mc.to)) {
5358 /*
5359 * we charged both to->res and to->memsw, so we should
5360 * uncharge to->res.
5361 */
5362 res_counter_uncharge(&mc.to->res,
5363 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005364 }
5365 /* we've already done mem_cgroup_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005366 mc.moved_swap = 0;
5367 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005368 memcg_oom_recover(from);
5369 memcg_oom_recover(to);
5370 wake_up_all(&mc.waitq);
5371}
5372
5373static void mem_cgroup_clear_mc(void)
5374{
5375 struct mem_cgroup *from = mc.from;
5376
5377 /*
5378 * we must clear moving_task before waking up waiters at the end of
5379 * task migration.
5380 */
5381 mc.moving_task = NULL;
5382 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005383 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005384 mc.from = NULL;
5385 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005386 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005387 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005388}
5389
Li Zefan761b3ef2012-01-31 13:47:36 +08005390static int mem_cgroup_can_attach(struct cgroup *cgroup,
5391 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005392{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005393 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005394 int ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005395 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005396
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005397 if (memcg->move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005398 struct mm_struct *mm;
5399 struct mem_cgroup *from = mem_cgroup_from_task(p);
5400
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005401 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005402
5403 mm = get_task_mm(p);
5404 if (!mm)
5405 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005406 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005407 if (mm->owner == p) {
5408 VM_BUG_ON(mc.from);
5409 VM_BUG_ON(mc.to);
5410 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005411 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005412 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005413 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005414 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005415 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005416 mc.to = memcg;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005417 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005418 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005419
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005420 ret = mem_cgroup_precharge_mc(mm);
5421 if (ret)
5422 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005423 }
5424 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005425 }
5426 return ret;
5427}
5428
Li Zefan761b3ef2012-01-31 13:47:36 +08005429static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5430 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005431{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005432 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005433}
5434
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005435static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5436 unsigned long addr, unsigned long end,
5437 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005438{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005439 int ret = 0;
5440 struct vm_area_struct *vma = walk->private;
5441 pte_t *pte;
5442 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005443 enum mc_target_type target_type;
5444 union mc_target target;
5445 struct page *page;
5446 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005447
Naoya Horiguchi12724852012-03-21 16:34:28 -07005448 /*
5449 * We don't take compound_lock() here but no race with splitting thp
5450 * happens because:
5451 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
5452 * under splitting, which means there's no concurrent thp split,
5453 * - if another thread runs into split_huge_page() just after we
5454 * entered this if-block, the thread must wait for page table lock
5455 * to be unlocked in __split_huge_page_splitting(), where the main
5456 * part of thp split is not executed yet.
5457 */
5458 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07005459 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005460 spin_unlock(&vma->vm_mm->page_table_lock);
5461 return 0;
5462 }
5463 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5464 if (target_type == MC_TARGET_PAGE) {
5465 page = target.page;
5466 if (!isolate_lru_page(page)) {
5467 pc = lookup_page_cgroup(page);
5468 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005469 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005470 mc.precharge -= HPAGE_PMD_NR;
5471 mc.moved_charge += HPAGE_PMD_NR;
5472 }
5473 putback_lru_page(page);
5474 }
5475 put_page(page);
5476 }
5477 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005478 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005479 }
5480
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005481 if (pmd_trans_unstable(pmd))
5482 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005483retry:
5484 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5485 for (; addr != end; addr += PAGE_SIZE) {
5486 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08005487 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005488
5489 if (!mc.precharge)
5490 break;
5491
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005492 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005493 case MC_TARGET_PAGE:
5494 page = target.page;
5495 if (isolate_lru_page(page))
5496 goto put;
5497 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07005498 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005499 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005500 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005501 /* we uncharge from mc.from later. */
5502 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005503 }
5504 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005505put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005506 put_page(page);
5507 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005508 case MC_TARGET_SWAP:
5509 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07005510 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005511 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005512 /* we fixup refcnts and charges later. */
5513 mc.moved_swap++;
5514 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08005515 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005516 default:
5517 break;
5518 }
5519 }
5520 pte_unmap_unlock(pte - 1, ptl);
5521 cond_resched();
5522
5523 if (addr != end) {
5524 /*
5525 * We have consumed all precharges we got in can_attach().
5526 * We try charge one by one, but don't do any additional
5527 * charges to mc.to if we have failed in charge once in attach()
5528 * phase.
5529 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005530 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005531 if (!ret)
5532 goto retry;
5533 }
5534
5535 return ret;
5536}
5537
5538static void mem_cgroup_move_charge(struct mm_struct *mm)
5539{
5540 struct vm_area_struct *vma;
5541
5542 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005543retry:
5544 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5545 /*
5546 * Someone who are holding the mmap_sem might be waiting in
5547 * waitq. So we cancel all extra charges, wake up all waiters,
5548 * and retry. Because we cancel precharges, we might not be able
5549 * to move enough charges, but moving charge is a best-effort
5550 * feature anyway, so it wouldn't be a big problem.
5551 */
5552 __mem_cgroup_clear_mc();
5553 cond_resched();
5554 goto retry;
5555 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005556 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5557 int ret;
5558 struct mm_walk mem_cgroup_move_charge_walk = {
5559 .pmd_entry = mem_cgroup_move_charge_pte_range,
5560 .mm = mm,
5561 .private = vma,
5562 };
5563 if (is_vm_hugetlb_page(vma))
5564 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005565 ret = walk_page_range(vma->vm_start, vma->vm_end,
5566 &mem_cgroup_move_charge_walk);
5567 if (ret)
5568 /*
5569 * means we have consumed all precharges and failed in
5570 * doing additional charge. Just abandon here.
5571 */
5572 break;
5573 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005574 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005575}
5576
Li Zefan761b3ef2012-01-31 13:47:36 +08005577static void mem_cgroup_move_task(struct cgroup *cont,
5578 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08005579{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005580 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005581 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005582
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005583 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005584 if (mc.to)
5585 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005586 mmput(mm);
5587 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005588 if (mc.to)
5589 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005590}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005591#else /* !CONFIG_MMU */
Li Zefan761b3ef2012-01-31 13:47:36 +08005592static int mem_cgroup_can_attach(struct cgroup *cgroup,
5593 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005594{
5595 return 0;
5596}
Li Zefan761b3ef2012-01-31 13:47:36 +08005597static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5598 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005599{
5600}
Li Zefan761b3ef2012-01-31 13:47:36 +08005601static void mem_cgroup_move_task(struct cgroup *cont,
5602 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005603{
5604}
5605#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005606
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005607struct cgroup_subsys mem_cgroup_subsys = {
5608 .name = "memory",
5609 .subsys_id = mem_cgroup_subsys_id,
5610 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005611 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005612 .destroy = mem_cgroup_destroy,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005613 .can_attach = mem_cgroup_can_attach,
5614 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005615 .attach = mem_cgroup_move_task,
Tejun Heo6bc10342012-04-01 12:09:55 -07005616 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005617 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005618 .use_id = 1,
Tejun Heo48ddbe12012-04-01 12:09:56 -07005619 .__DEPRECATED_clear_css_refs = true,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005620};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005621
Andrew Mortonc255a452012-07-31 16:43:02 -07005622#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08005623static int __init enable_swap_account(char *s)
5624{
5625 /* consider enabled if no parameter or 1 is given */
Michal Hockoa2c89902011-05-24 17:12:50 -07005626 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005627 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07005628 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005629 really_do_swap_account = 0;
5630 return 1;
5631}
Michal Hockoa2c89902011-05-24 17:12:50 -07005632__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005633
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005634#endif