blob: 4f5f9365724659c65ac85fb797c5b7cea0d008fe [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
Glauber Costae1aab162011-12-11 21:47:03 +0000415/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700416#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000417
418static bool mem_cgroup_is_root(struct mem_cgroup *memcg);
419void sock_update_memcg(struct sock *sk)
420{
Glauber Costa376be5f2012-01-20 04:57:14 +0000421 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000422 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700423 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000424
425 BUG_ON(!sk->sk_prot->proto_cgroup);
426
Glauber Costaf3f511e2012-01-05 20:16:39 +0000427 /* Socket cloning can throw us here with sk_cgrp already
428 * filled. It won't however, necessarily happen from
429 * process context. So the test for root memcg given
430 * the current task's memcg won't help us in this case.
431 *
432 * Respecting the original socket's memcg is a better
433 * decision in this case.
434 */
435 if (sk->sk_cgrp) {
436 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
437 mem_cgroup_get(sk->sk_cgrp->memcg);
438 return;
439 }
440
Glauber Costae1aab162011-12-11 21:47:03 +0000441 rcu_read_lock();
442 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700443 cg_proto = sk->sk_prot->proto_cgroup(memcg);
444 if (!mem_cgroup_is_root(memcg) && memcg_proto_active(cg_proto)) {
Glauber Costae1aab162011-12-11 21:47:03 +0000445 mem_cgroup_get(memcg);
Glauber Costa3f134612012-05-29 15:07:11 -0700446 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000447 }
448 rcu_read_unlock();
449 }
450}
451EXPORT_SYMBOL(sock_update_memcg);
452
453void sock_release_memcg(struct sock *sk)
454{
Glauber Costa376be5f2012-01-20 04:57:14 +0000455 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000456 struct mem_cgroup *memcg;
457 WARN_ON(!sk->sk_cgrp->memcg);
458 memcg = sk->sk_cgrp->memcg;
459 mem_cgroup_put(memcg);
460 }
461}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000462
463struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
464{
465 if (!memcg || mem_cgroup_is_root(memcg))
466 return NULL;
467
468 return &memcg->tcp_mem.cg_proto;
469}
470EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000471
Glauber Costa3f134612012-05-29 15:07:11 -0700472static void disarm_sock_keys(struct mem_cgroup *memcg)
473{
474 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
475 return;
476 static_key_slow_dec(&memcg_socket_limit_enabled);
477}
478#else
479static void disarm_sock_keys(struct mem_cgroup *memcg)
480{
481}
482#endif
483
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700484static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800485
Balbir Singhf64c3f52009-09-23 15:56:37 -0700486static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700487mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700488{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700489 return &memcg->info.nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700490}
491
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700492struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100493{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700494 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100495}
496
Balbir Singhf64c3f52009-09-23 15:56:37 -0700497static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700498page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700499{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700500 int nid = page_to_nid(page);
501 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700502
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700503 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700504}
505
506static struct mem_cgroup_tree_per_zone *
507soft_limit_tree_node_zone(int nid, int zid)
508{
509 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
510}
511
512static struct mem_cgroup_tree_per_zone *
513soft_limit_tree_from_page(struct page *page)
514{
515 int nid = page_to_nid(page);
516 int zid = page_zonenum(page);
517
518 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
519}
520
521static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700522__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700523 struct mem_cgroup_per_zone *mz,
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700524 struct mem_cgroup_tree_per_zone *mctz,
525 unsigned long long new_usage_in_excess)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700526{
527 struct rb_node **p = &mctz->rb_root.rb_node;
528 struct rb_node *parent = NULL;
529 struct mem_cgroup_per_zone *mz_node;
530
531 if (mz->on_tree)
532 return;
533
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700534 mz->usage_in_excess = new_usage_in_excess;
535 if (!mz->usage_in_excess)
536 return;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700537 while (*p) {
538 parent = *p;
539 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
540 tree_node);
541 if (mz->usage_in_excess < mz_node->usage_in_excess)
542 p = &(*p)->rb_left;
543 /*
544 * We can't avoid mem cgroups that are over their soft
545 * limit by the same amount
546 */
547 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
548 p = &(*p)->rb_right;
549 }
550 rb_link_node(&mz->tree_node, parent, p);
551 rb_insert_color(&mz->tree_node, &mctz->rb_root);
552 mz->on_tree = true;
Balbir Singh4e416952009-09-23 15:56:39 -0700553}
554
555static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700556__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -0700557 struct mem_cgroup_per_zone *mz,
558 struct mem_cgroup_tree_per_zone *mctz)
559{
560 if (!mz->on_tree)
561 return;
562 rb_erase(&mz->tree_node, &mctz->rb_root);
563 mz->on_tree = false;
564}
565
566static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700567mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700568 struct mem_cgroup_per_zone *mz,
569 struct mem_cgroup_tree_per_zone *mctz)
570{
571 spin_lock(&mctz->lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700572 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700573 spin_unlock(&mctz->lock);
574}
575
Balbir Singhf64c3f52009-09-23 15:56:37 -0700576
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700577static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700578{
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700579 unsigned long long excess;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700580 struct mem_cgroup_per_zone *mz;
581 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700582 int nid = page_to_nid(page);
583 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700584 mctz = soft_limit_tree_from_page(page);
585
586 /*
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700587 * Necessary to update all ancestors when hierarchy is used.
588 * because their event counter is not touched.
Balbir Singhf64c3f52009-09-23 15:56:37 -0700589 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700590 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
591 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
592 excess = res_counter_soft_limit_excess(&memcg->res);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700593 /*
594 * We have to update the tree if mz is on RB-tree or
595 * mem is over its softlimit.
596 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700597 if (excess || mz->on_tree) {
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700598 spin_lock(&mctz->lock);
599 /* if on-tree, remove it */
600 if (mz->on_tree)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700601 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700602 /*
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700603 * Insert again. mz->usage_in_excess will be updated.
604 * If excess is 0, no tree ops.
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700605 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700606 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700607 spin_unlock(&mctz->lock);
608 }
Balbir Singhf64c3f52009-09-23 15:56:37 -0700609 }
610}
611
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700612static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700613{
614 int node, zone;
615 struct mem_cgroup_per_zone *mz;
616 struct mem_cgroup_tree_per_zone *mctz;
617
Bob Liu3ed28fa2012-01-12 17:19:04 -0800618 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -0700619 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700620 mz = mem_cgroup_zoneinfo(memcg, node, zone);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700621 mctz = soft_limit_tree_node_zone(node, zone);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700622 mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700623 }
624 }
625}
626
Balbir Singh4e416952009-09-23 15:56:39 -0700627static struct mem_cgroup_per_zone *
628__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
629{
630 struct rb_node *rightmost = NULL;
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700631 struct mem_cgroup_per_zone *mz;
Balbir Singh4e416952009-09-23 15:56:39 -0700632
633retry:
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700634 mz = NULL;
Balbir Singh4e416952009-09-23 15:56:39 -0700635 rightmost = rb_last(&mctz->rb_root);
636 if (!rightmost)
637 goto done; /* Nothing to reclaim from */
638
639 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
640 /*
641 * Remove the node now but someone else can add it back,
642 * we will to add it back at the end of reclaim to its correct
643 * position in the tree.
644 */
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700645 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
646 if (!res_counter_soft_limit_excess(&mz->memcg->res) ||
647 !css_tryget(&mz->memcg->css))
Balbir Singh4e416952009-09-23 15:56:39 -0700648 goto retry;
649done:
650 return mz;
651}
652
653static struct mem_cgroup_per_zone *
654mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
655{
656 struct mem_cgroup_per_zone *mz;
657
658 spin_lock(&mctz->lock);
659 mz = __mem_cgroup_largest_soft_limit_node(mctz);
660 spin_unlock(&mctz->lock);
661 return mz;
662}
663
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700664/*
665 * Implementation Note: reading percpu statistics for memcg.
666 *
667 * Both of vmstat[] and percpu_counter has threshold and do periodic
668 * synchronization to implement "quick" read. There are trade-off between
669 * reading cost and precision of value. Then, we may have a chance to implement
670 * a periodic synchronizion of counter in memcg's counter.
671 *
672 * But this _read() function is used for user interface now. The user accounts
673 * memory usage by memory cgroup and he _always_ requires exact value because
674 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
675 * have to visit all online cpus and make sum. So, for now, unnecessary
676 * synchronization is not implemented. (just implemented for cpu hotplug)
677 *
678 * If there are kernel internal actions which can make use of some not-exact
679 * value, and reading all cpu value can be performance bottleneck in some
680 * common workload, threashold and synchonization as vmstat[] should be
681 * implemented.
682 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700683static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700684 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800685{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700686 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800687 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800688
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700689 get_online_cpus();
690 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700691 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700692#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700693 spin_lock(&memcg->pcp_counter_lock);
694 val += memcg->nocpu_base.count[idx];
695 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700696#endif
697 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800698 return val;
699}
700
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700701static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700702 bool charge)
703{
704 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700705 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700706}
707
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700708static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700709 enum mem_cgroup_events_index idx)
710{
711 unsigned long val = 0;
712 int cpu;
713
714 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700715 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700716#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700717 spin_lock(&memcg->pcp_counter_lock);
718 val += memcg->nocpu_base.events[idx];
719 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700720#endif
721 return val;
722}
723
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700724static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700725 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800726{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800727 preempt_disable();
728
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700729 /*
730 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
731 * counted as CACHE even if it's on ANON LRU.
732 */
733 if (anon)
734 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700735 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800736 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700737 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700738 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700739
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800740 /* pagein of a big page is an event. So, ignore page size */
741 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700742 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800743 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700744 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800745 nr_pages = -nr_pages; /* for event */
746 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800747
Johannes Weiner13114712012-05-29 15:07:07 -0700748 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800749
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800750 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800751}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800752
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700753unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700754mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700755{
756 struct mem_cgroup_per_zone *mz;
757
758 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
759 return mz->lru_size[lru];
760}
761
762static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700763mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700764 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700765{
766 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700767 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700768 unsigned long ret = 0;
769
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700770 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700771
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700772 for_each_lru(lru) {
773 if (BIT(lru) & lru_mask)
774 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700775 }
776 return ret;
777}
778
779static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700780mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700781 int nid, unsigned int lru_mask)
782{
Ying Han889976d2011-05-26 16:25:33 -0700783 u64 total = 0;
784 int zid;
785
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700786 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700787 total += mem_cgroup_zone_nr_lru_pages(memcg,
788 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700789
Ying Han889976d2011-05-26 16:25:33 -0700790 return total;
791}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700792
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700793static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700794 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800795{
Ying Han889976d2011-05-26 16:25:33 -0700796 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800797 u64 total = 0;
798
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700799 for_each_node_state(nid, N_HIGH_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700800 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800801 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800802}
803
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800804static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
805 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800806{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700807 unsigned long val, next;
808
Johannes Weiner13114712012-05-29 15:07:07 -0700809 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700810 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700811 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800812 if ((long)next - (long)val < 0) {
813 switch (target) {
814 case MEM_CGROUP_TARGET_THRESH:
815 next = val + THRESHOLDS_EVENTS_TARGET;
816 break;
817 case MEM_CGROUP_TARGET_SOFTLIMIT:
818 next = val + SOFTLIMIT_EVENTS_TARGET;
819 break;
820 case MEM_CGROUP_TARGET_NUMAINFO:
821 next = val + NUMAINFO_EVENTS_TARGET;
822 break;
823 default:
824 break;
825 }
826 __this_cpu_write(memcg->stat->targets[target], next);
827 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700828 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800829 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800830}
831
832/*
833 * Check events in order.
834 *
835 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700836static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800837{
Steven Rostedt47994012011-11-02 13:38:33 -0700838 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800839 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800840 if (unlikely(mem_cgroup_event_ratelimit(memcg,
841 MEM_CGROUP_TARGET_THRESH))) {
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800842 bool do_softlimit;
843 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800844
845 do_softlimit = mem_cgroup_event_ratelimit(memcg,
846 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700847#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800848 do_numainfo = mem_cgroup_event_ratelimit(memcg,
849 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700850#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800851 preempt_enable();
852
853 mem_cgroup_threshold(memcg);
854 if (unlikely(do_softlimit))
855 mem_cgroup_update_tree(memcg, page);
856#if MAX_NUMNODES > 1
857 if (unlikely(do_numainfo))
858 atomic_inc(&memcg->numainfo_events);
859#endif
860 } else
861 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800862}
863
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000864struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800865{
Wanpeng Lib2145142012-07-31 16:46:01 -0700866 return mem_cgroup_from_css(
867 cgroup_subsys_state(cont, mem_cgroup_subsys_id));
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800868}
869
Balbir Singhcf475ad2008-04-29 01:00:16 -0700870struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800871{
Balbir Singh31a78f22008-09-28 23:09:31 +0100872 /*
873 * mm_update_next_owner() may clear mm->owner to NULL
874 * if it races with swapoff, page migration, etc.
875 * So this can be called with p == NULL.
876 */
877 if (unlikely(!p))
878 return NULL;
879
Wanpeng Lib2145142012-07-31 16:46:01 -0700880 return mem_cgroup_from_css(task_subsys_state(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800881}
882
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700883struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800884{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700885 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700886
887 if (!mm)
888 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800889 /*
890 * Because we have no locks, mm->owner's may be being moved to other
891 * cgroup. We use css_tryget() here even if this looks
892 * pessimistic (rather than adding locks here).
893 */
894 rcu_read_lock();
895 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700896 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
897 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800898 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700899 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800900 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700901 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800902}
903
Johannes Weiner56600482012-01-12 17:17:59 -0800904/**
905 * mem_cgroup_iter - iterate over memory cgroup hierarchy
906 * @root: hierarchy root
907 * @prev: previously returned memcg, NULL on first invocation
908 * @reclaim: cookie for shared reclaim walks, NULL for full walks
909 *
910 * Returns references to children of the hierarchy below @root, or
911 * @root itself, or %NULL after a full round-trip.
912 *
913 * Caller must pass the return value in @prev on subsequent
914 * invocations for reference counting, or use mem_cgroup_iter_break()
915 * to cancel a hierarchy walk before the round-trip is complete.
916 *
917 * Reclaimers can specify a zone and a priority level in @reclaim to
918 * divide up the memcgs in the hierarchy among all concurrent
919 * reclaimers operating on the same zone and priority.
920 */
921struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
922 struct mem_cgroup *prev,
923 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700924{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800925 struct mem_cgroup *memcg = NULL;
926 int id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700927
Johannes Weiner56600482012-01-12 17:17:59 -0800928 if (mem_cgroup_disabled())
929 return NULL;
930
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700931 if (!root)
932 root = root_mem_cgroup;
933
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800934 if (prev && !reclaim)
935 id = css_id(&prev->css);
936
937 if (prev && prev != root)
938 css_put(&prev->css);
939
940 if (!root->use_hierarchy && root != root_mem_cgroup) {
941 if (prev)
942 return NULL;
943 return root;
944 }
945
946 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800947 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800948 struct cgroup_subsys_state *css;
949
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800950 if (reclaim) {
951 int nid = zone_to_nid(reclaim->zone);
952 int zid = zone_idx(reclaim->zone);
953 struct mem_cgroup_per_zone *mz;
954
955 mz = mem_cgroup_zoneinfo(root, nid, zid);
956 iter = &mz->reclaim_iter[reclaim->priority];
957 if (prev && reclaim->generation != iter->generation)
958 return NULL;
959 id = iter->position;
960 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800961
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700962 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800963 css = css_get_next(&mem_cgroup_subsys, id + 1, &root->css, &id);
964 if (css) {
965 if (css == &root->css || css_tryget(css))
Wanpeng Lib2145142012-07-31 16:46:01 -0700966 memcg = mem_cgroup_from_css(css);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800967 } else
968 id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700969 rcu_read_unlock();
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700970
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800971 if (reclaim) {
972 iter->position = id;
973 if (!css)
974 iter->generation++;
975 else if (!prev && memcg)
976 reclaim->generation = iter->generation;
977 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800978
979 if (prev && !css)
980 return NULL;
981 }
982 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700983}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800984
Johannes Weiner56600482012-01-12 17:17:59 -0800985/**
986 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
987 * @root: hierarchy root
988 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
989 */
990void mem_cgroup_iter_break(struct mem_cgroup *root,
991 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800992{
993 if (!root)
994 root = root_mem_cgroup;
995 if (prev && prev != root)
996 css_put(&prev->css);
997}
998
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700999/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001000 * Iteration constructs for visiting all cgroups (under a tree). If
1001 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1002 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001003 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001004#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001005 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001006 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001007 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001008
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001009#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001010 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001011 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001012 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001013
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001014static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
Balbir Singh4b3bde42009-09-23 15:56:32 -07001015{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001016 return (memcg == root_mem_cgroup);
Balbir Singh4b3bde42009-09-23 15:56:32 -07001017}
1018
Ying Han456f9982011-05-26 16:25:38 -07001019void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
1020{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001021 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001022
1023 if (!mm)
1024 return;
1025
1026 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001027 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1028 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001029 goto out;
1030
1031 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001032 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001033 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1034 break;
1035 case PGMAJFAULT:
1036 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001037 break;
1038 default:
1039 BUG();
1040 }
1041out:
1042 rcu_read_unlock();
1043}
1044EXPORT_SYMBOL(mem_cgroup_count_vm_event);
1045
Johannes Weiner925b7672012-01-12 17:18:15 -08001046/**
1047 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1048 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001049 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001050 *
1051 * Returns the lru list vector holding pages for the given @zone and
1052 * @mem. This can be the global zone lruvec, if the memory controller
1053 * is disabled.
1054 */
1055struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1056 struct mem_cgroup *memcg)
1057{
1058 struct mem_cgroup_per_zone *mz;
1059
1060 if (mem_cgroup_disabled())
1061 return &zone->lruvec;
1062
1063 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
1064 return &mz->lruvec;
1065}
1066
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001067/*
1068 * Following LRU functions are allowed to be used without PCG_LOCK.
1069 * Operations are called by routine of global LRU independently from memcg.
1070 * What we have to take care of here is validness of pc->mem_cgroup.
1071 *
1072 * Changes to pc->mem_cgroup happens when
1073 * 1. charge
1074 * 2. moving account
1075 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1076 * It is added to LRU before charge.
1077 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1078 * When moving account, the page is not on LRU. It's isolated.
1079 */
1080
Johannes Weiner925b7672012-01-12 17:18:15 -08001081/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001082 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001083 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001084 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001085 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001086struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001087{
1088 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001089 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001090 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001091
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001092 if (mem_cgroup_disabled())
Johannes Weiner925b7672012-01-12 17:18:15 -08001093 return &zone->lruvec;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001094
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001095 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001096 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001097
1098 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001099 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001100 * an uncharged page off lru does nothing to secure
1101 * its former mem_cgroup from sudden removal.
1102 *
1103 * Our caller holds lru_lock, and PageCgroupUsed is updated
1104 * under page_cgroup lock: between them, they make all uses
1105 * of pc->mem_cgroup safe.
1106 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001107 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001108 pc->mem_cgroup = memcg = root_mem_cgroup;
1109
Johannes Weiner925b7672012-01-12 17:18:15 -08001110 mz = page_cgroup_zoneinfo(memcg, page);
Johannes Weiner925b7672012-01-12 17:18:15 -08001111 return &mz->lruvec;
1112}
1113
1114/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001115 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1116 * @lruvec: mem_cgroup per zone lru vector
1117 * @lru: index of lru list the page is sitting on
1118 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001119 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001120 * This function must be called when a page is added to or removed from an
1121 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001122 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001123void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1124 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001125{
1126 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001127 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001128
1129 if (mem_cgroup_disabled())
1130 return;
1131
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001132 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1133 lru_size = mz->lru_size + lru;
1134 *lru_size += nr_pages;
1135 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001136}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001137
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001138/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001139 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001140 * hierarchy subtree
1141 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001142bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1143 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001144{
Johannes Weiner91c637342012-05-29 15:06:24 -07001145 if (root_memcg == memcg)
1146 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001147 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001148 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001149 return css_is_ancestor(&memcg->css, &root_memcg->css);
1150}
1151
1152static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1153 struct mem_cgroup *memcg)
1154{
1155 bool ret;
1156
Johannes Weiner91c637342012-05-29 15:06:24 -07001157 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001158 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001159 rcu_read_unlock();
1160 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001161}
1162
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001163int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001164{
1165 int ret;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001166 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001167 struct task_struct *p;
David Rientjes4c4a2212008-02-07 00:14:06 -08001168
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001169 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001170 if (p) {
1171 curr = try_get_mem_cgroup_from_mm(p->mm);
1172 task_unlock(p);
1173 } else {
1174 /*
1175 * All threads may have already detached their mm's, but the oom
1176 * killer still needs to detect if they have already been oom
1177 * killed to prevent needlessly killing additional tasks.
1178 */
1179 task_lock(task);
1180 curr = mem_cgroup_from_task(task);
1181 if (curr)
1182 css_get(&curr->css);
1183 task_unlock(task);
1184 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001185 if (!curr)
1186 return 0;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001187 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001188 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001189 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001190 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1191 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001192 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001193 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001194 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001195 return ret;
1196}
1197
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001198int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001199{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001200 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001201 unsigned long inactive;
1202 unsigned long active;
1203 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001204
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001205 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1206 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001207
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001208 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1209 if (gb)
1210 inactive_ratio = int_sqrt(10 * gb);
1211 else
1212 inactive_ratio = 1;
1213
Johannes Weiner9b272972011-11-02 13:38:23 -07001214 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001215}
1216
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001217int mem_cgroup_inactive_file_is_low(struct lruvec *lruvec)
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001218{
1219 unsigned long active;
1220 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001221
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001222 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_FILE);
1223 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_FILE);
Rik van Riel56e49d22009-06-16 15:32:28 -07001224
1225 return (active > inactive);
1226}
1227
Balbir Singh6d61ef42009-01-07 18:08:06 -08001228#define mem_cgroup_from_res_counter(counter, member) \
1229 container_of(counter, struct mem_cgroup, member)
1230
Johannes Weiner19942822011-02-01 15:52:43 -08001231/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001232 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001233 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001234 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001235 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001236 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001237 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001238static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001239{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001240 unsigned long long margin;
1241
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001242 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001243 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001244 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001245 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001246}
1247
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001248int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001249{
1250 struct cgroup *cgrp = memcg->css.cgroup;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001251
1252 /* root ? */
1253 if (cgrp->parent == NULL)
1254 return vm_swappiness;
1255
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001256 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001257}
1258
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001259/*
1260 * memcg->moving_account is used for checking possibility that some thread is
1261 * calling move_account(). When a thread on CPU-A starts moving pages under
1262 * a memcg, other threads should check memcg->moving_account under
1263 * rcu_read_lock(), like this:
1264 *
1265 * CPU-A CPU-B
1266 * rcu_read_lock()
1267 * memcg->moving_account+1 if (memcg->mocing_account)
1268 * take heavy locks.
1269 * synchronize_rcu() update something.
1270 * rcu_read_unlock()
1271 * start move here.
1272 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001273
1274/* for quick checking without looking up memcg */
1275atomic_t memcg_moving __read_mostly;
1276
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001277static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001278{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001279 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001280 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001281 synchronize_rcu();
1282}
1283
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001284static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001285{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001286 /*
1287 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1288 * We check NULL in callee rather than caller.
1289 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001290 if (memcg) {
1291 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001292 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001293 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001294}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001295
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001296/*
1297 * 2 routines for checking "mem" is under move_account() or not.
1298 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001299 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1300 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001301 * pc->mem_cgroup may be overwritten.
1302 *
1303 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1304 * under hierarchy of moving cgroups. This is for
1305 * waiting at hith-memory prressure caused by "move".
1306 */
1307
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001308static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001309{
1310 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001311 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001312}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001313
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001314static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001315{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001316 struct mem_cgroup *from;
1317 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001318 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001319 /*
1320 * Unlike task_move routines, we access mc.to, mc.from not under
1321 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1322 */
1323 spin_lock(&mc.lock);
1324 from = mc.from;
1325 to = mc.to;
1326 if (!from)
1327 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001328
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001329 ret = mem_cgroup_same_or_subtree(memcg, from)
1330 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001331unlock:
1332 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001333 return ret;
1334}
1335
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001336static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001337{
1338 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001339 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001340 DEFINE_WAIT(wait);
1341 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1342 /* moving charge context might have finished. */
1343 if (mc.moving_task)
1344 schedule();
1345 finish_wait(&mc.waitq, &wait);
1346 return true;
1347 }
1348 }
1349 return false;
1350}
1351
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001352/*
1353 * Take this lock when
1354 * - a code tries to modify page's memcg while it's USED.
1355 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001356 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001357 */
1358static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1359 unsigned long *flags)
1360{
1361 spin_lock_irqsave(&memcg->move_lock, *flags);
1362}
1363
1364static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1365 unsigned long *flags)
1366{
1367 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1368}
1369
Balbir Singhe2224322009-04-02 16:57:39 -07001370/**
Kirill A. Shutemov6a6135b2010-03-10 15:22:25 -08001371 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
Balbir Singhe2224322009-04-02 16:57:39 -07001372 * @memcg: The memory cgroup that went over limit
1373 * @p: Task that is going to be killed
1374 *
1375 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1376 * enabled
1377 */
1378void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1379{
1380 struct cgroup *task_cgrp;
1381 struct cgroup *mem_cgrp;
1382 /*
1383 * Need a buffer in BSS, can't rely on allocations. The code relies
1384 * on the assumption that OOM is serialized for memory controller.
1385 * If this assumption is broken, revisit this code.
1386 */
1387 static char memcg_name[PATH_MAX];
1388 int ret;
1389
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001390 if (!memcg || !p)
Balbir Singhe2224322009-04-02 16:57:39 -07001391 return;
1392
Balbir Singhe2224322009-04-02 16:57:39 -07001393 rcu_read_lock();
1394
1395 mem_cgrp = memcg->css.cgroup;
1396 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1397
1398 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1399 if (ret < 0) {
1400 /*
1401 * Unfortunately, we are unable to convert to a useful name
1402 * But we'll still print out the usage information
1403 */
1404 rcu_read_unlock();
1405 goto done;
1406 }
1407 rcu_read_unlock();
1408
1409 printk(KERN_INFO "Task in %s killed", memcg_name);
1410
1411 rcu_read_lock();
1412 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1413 if (ret < 0) {
1414 rcu_read_unlock();
1415 goto done;
1416 }
1417 rcu_read_unlock();
1418
1419 /*
1420 * Continues from above, so we don't need an KERN_ level
1421 */
1422 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1423done:
1424
1425 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1426 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1427 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1428 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1429 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1430 "failcnt %llu\n",
1431 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1432 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1433 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
1434}
1435
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001436/*
1437 * This function returns the number of memcg under hierarchy tree. Returns
1438 * 1(self count) if no children.
1439 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001440static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001441{
1442 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001443 struct mem_cgroup *iter;
1444
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001445 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001446 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001447 return num;
1448}
1449
Balbir Singh6d61ef42009-01-07 18:08:06 -08001450/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001451 * Return the memory (and swap, if configured) limit for a memcg.
1452 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001453static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001454{
1455 u64 limit;
1456 u64 memsw;
1457
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001458 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1459 limit += total_swap_pages << PAGE_SHIFT;
1460
David Rientjesa63d83f2010-08-09 17:19:46 -07001461 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1462 /*
1463 * If memsw is finite and limits the amount of swap space available
1464 * to this memcg, return that limit.
1465 */
1466 return min(limit, memsw);
1467}
1468
David Rientjes876aafb2012-07-31 16:43:48 -07001469void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1470 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001471{
1472 struct mem_cgroup *iter;
1473 unsigned long chosen_points = 0;
1474 unsigned long totalpages;
1475 unsigned int points = 0;
1476 struct task_struct *chosen = NULL;
1477
David Rientjes876aafb2012-07-31 16:43:48 -07001478 /*
1479 * If current has a pending SIGKILL, then automatically select it. The
1480 * goal is to allow it to allocate so that it may quickly exit and free
1481 * its memory.
1482 */
1483 if (fatal_signal_pending(current)) {
1484 set_thread_flag(TIF_MEMDIE);
1485 return;
1486 }
1487
1488 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001489 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1490 for_each_mem_cgroup_tree(iter, memcg) {
1491 struct cgroup *cgroup = iter->css.cgroup;
1492 struct cgroup_iter it;
1493 struct task_struct *task;
1494
1495 cgroup_iter_start(cgroup, &it);
1496 while ((task = cgroup_iter_next(cgroup, &it))) {
1497 switch (oom_scan_process_thread(task, totalpages, NULL,
1498 false)) {
1499 case OOM_SCAN_SELECT:
1500 if (chosen)
1501 put_task_struct(chosen);
1502 chosen = task;
1503 chosen_points = ULONG_MAX;
1504 get_task_struct(chosen);
1505 /* fall through */
1506 case OOM_SCAN_CONTINUE:
1507 continue;
1508 case OOM_SCAN_ABORT:
1509 cgroup_iter_end(cgroup, &it);
1510 mem_cgroup_iter_break(memcg, iter);
1511 if (chosen)
1512 put_task_struct(chosen);
1513 return;
1514 case OOM_SCAN_OK:
1515 break;
1516 };
1517 points = oom_badness(task, memcg, NULL, totalpages);
1518 if (points > chosen_points) {
1519 if (chosen)
1520 put_task_struct(chosen);
1521 chosen = task;
1522 chosen_points = points;
1523 get_task_struct(chosen);
1524 }
1525 }
1526 cgroup_iter_end(cgroup, &it);
1527 }
1528
1529 if (!chosen)
1530 return;
1531 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001532 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1533 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001534}
1535
Johannes Weiner56600482012-01-12 17:17:59 -08001536static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1537 gfp_t gfp_mask,
1538 unsigned long flags)
1539{
1540 unsigned long total = 0;
1541 bool noswap = false;
1542 int loop;
1543
1544 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1545 noswap = true;
1546 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1547 noswap = true;
1548
1549 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1550 if (loop)
1551 drain_all_stock_async(memcg);
1552 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1553 /*
1554 * Allow limit shrinkers, which are triggered directly
1555 * by userspace, to catch signals and stop reclaim
1556 * after minimal progress, regardless of the margin.
1557 */
1558 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1559 break;
1560 if (mem_cgroup_margin(memcg))
1561 break;
1562 /*
1563 * If nothing was reclaimed after two attempts, there
1564 * may be no reclaimable pages in this hierarchy.
1565 */
1566 if (loop && !total)
1567 break;
1568 }
1569 return total;
1570}
1571
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001572/**
1573 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001574 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001575 * @nid: the node ID to be checked.
1576 * @noswap : specify true here if the user wants flle only information.
1577 *
1578 * This function returns whether the specified memcg contains any
1579 * reclaimable pages on a node. Returns true if there are any reclaimable
1580 * pages in the node.
1581 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001582static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001583 int nid, bool noswap)
1584{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001585 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001586 return true;
1587 if (noswap || !total_swap_pages)
1588 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001589 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001590 return true;
1591 return false;
1592
1593}
Ying Han889976d2011-05-26 16:25:33 -07001594#if MAX_NUMNODES > 1
1595
1596/*
1597 * Always updating the nodemask is not very good - even if we have an empty
1598 * list or the wrong list here, we can start from some node and traverse all
1599 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1600 *
1601 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001602static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001603{
1604 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001605 /*
1606 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1607 * pagein/pageout changes since the last update.
1608 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001609 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001610 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001611 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001612 return;
1613
Ying Han889976d2011-05-26 16:25:33 -07001614 /* make a nodemask where this memcg uses memory from */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001615 memcg->scan_nodes = node_states[N_HIGH_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001616
1617 for_each_node_mask(nid, node_states[N_HIGH_MEMORY]) {
1618
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001619 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1620 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001621 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001622
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001623 atomic_set(&memcg->numainfo_events, 0);
1624 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001625}
1626
1627/*
1628 * Selecting a node where we start reclaim from. Because what we need is just
1629 * reducing usage counter, start from anywhere is O,K. Considering
1630 * memory reclaim from current node, there are pros. and cons.
1631 *
1632 * Freeing memory from current node means freeing memory from a node which
1633 * we'll use or we've used. So, it may make LRU bad. And if several threads
1634 * hit limits, it will see a contention on a node. But freeing from remote
1635 * node means more costs for memory reclaim because of memory latency.
1636 *
1637 * Now, we use round-robin. Better algorithm is welcomed.
1638 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001639int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001640{
1641 int node;
1642
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001643 mem_cgroup_may_update_nodemask(memcg);
1644 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001645
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001646 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001647 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001648 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001649 /*
1650 * We call this when we hit limit, not when pages are added to LRU.
1651 * No LRU may hold pages because all pages are UNEVICTABLE or
1652 * memcg is too small and all pages are not on LRU. In that case,
1653 * we use curret node.
1654 */
1655 if (unlikely(node == MAX_NUMNODES))
1656 node = numa_node_id();
1657
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001658 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001659 return node;
1660}
1661
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001662/*
1663 * Check all nodes whether it contains reclaimable pages or not.
1664 * For quick scan, we make use of scan_nodes. This will allow us to skip
1665 * unused nodes. But scan_nodes is lazily updated and may not cotain
1666 * enough new information. We need to do double check.
1667 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001668static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001669{
1670 int nid;
1671
1672 /*
1673 * quick check...making use of scan_node.
1674 * We can skip unused nodes.
1675 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001676 if (!nodes_empty(memcg->scan_nodes)) {
1677 for (nid = first_node(memcg->scan_nodes);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001678 nid < MAX_NUMNODES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001679 nid = next_node(nid, memcg->scan_nodes)) {
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001680
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001681 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001682 return true;
1683 }
1684 }
1685 /*
1686 * Check rest of nodes.
1687 */
1688 for_each_node_state(nid, N_HIGH_MEMORY) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001689 if (node_isset(nid, memcg->scan_nodes))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001690 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001691 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001692 return true;
1693 }
1694 return false;
1695}
1696
Ying Han889976d2011-05-26 16:25:33 -07001697#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001698int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001699{
1700 return 0;
1701}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001702
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001703static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001704{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001705 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001706}
Ying Han889976d2011-05-26 16:25:33 -07001707#endif
1708
Johannes Weiner56600482012-01-12 17:17:59 -08001709static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1710 struct zone *zone,
1711 gfp_t gfp_mask,
1712 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001713{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001714 struct mem_cgroup *victim = NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001715 int total = 0;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001716 int loop = 0;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001717 unsigned long excess;
Johannes Weiner185efc02011-09-14 16:21:58 -07001718 unsigned long nr_scanned;
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001719 struct mem_cgroup_reclaim_cookie reclaim = {
1720 .zone = zone,
1721 .priority = 0,
1722 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001723
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001724 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001725
Balbir Singh4e416952009-09-23 15:56:39 -07001726 while (1) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001727 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001728 if (!victim) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001729 loop++;
Balbir Singh4e416952009-09-23 15:56:39 -07001730 if (loop >= 2) {
1731 /*
1732 * If we have not been able to reclaim
1733 * anything, it might because there are
1734 * no reclaimable pages under this hierarchy
1735 */
Johannes Weiner56600482012-01-12 17:17:59 -08001736 if (!total)
Balbir Singh4e416952009-09-23 15:56:39 -07001737 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001738 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001739 * We want to do more targeted reclaim.
Balbir Singh4e416952009-09-23 15:56:39 -07001740 * excess >> 2 is not to excessive so as to
1741 * reclaim too much, nor too less that we keep
1742 * coming back to reclaim from this cgroup
1743 */
1744 if (total >= (excess >> 2) ||
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001745 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
Balbir Singh4e416952009-09-23 15:56:39 -07001746 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001747 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001748 continue;
Balbir Singh4e416952009-09-23 15:56:39 -07001749 }
Johannes Weiner56600482012-01-12 17:17:59 -08001750 if (!mem_cgroup_reclaimable(victim, false))
Balbir Singh6d61ef42009-01-07 18:08:06 -08001751 continue;
Johannes Weiner56600482012-01-12 17:17:59 -08001752 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1753 zone, &nr_scanned);
1754 *total_scanned += nr_scanned;
1755 if (!res_counter_soft_limit_excess(&root_memcg->res))
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001756 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001757 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001758 mem_cgroup_iter_break(root_memcg, victim);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001759 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001760}
1761
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001762/*
1763 * Check OOM-Killer is already running under our hierarchy.
1764 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001765 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001766 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001767static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001768{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001769 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001770
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001771 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001772 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001773 /*
1774 * this subtree of our hierarchy is already locked
1775 * so we cannot give a lock.
1776 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001777 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001778 mem_cgroup_iter_break(memcg, iter);
1779 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001780 } else
1781 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001782 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001783
Michal Hocko79dfdac2011-07-26 16:08:23 -07001784 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001785 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001786
1787 /*
1788 * OK, we failed to lock the whole subtree so we have to clean up
1789 * what we set up to the failing subtree
1790 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001791 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001792 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001793 mem_cgroup_iter_break(memcg, iter);
1794 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001795 }
1796 iter->oom_lock = false;
1797 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001798 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001799}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001800
Michal Hocko79dfdac2011-07-26 16:08:23 -07001801/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001802 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001803 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001804static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001805{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001806 struct mem_cgroup *iter;
1807
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001808 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001809 iter->oom_lock = false;
1810 return 0;
1811}
1812
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001813static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001814{
1815 struct mem_cgroup *iter;
1816
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001817 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001818 atomic_inc(&iter->under_oom);
1819}
1820
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001821static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001822{
1823 struct mem_cgroup *iter;
1824
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001825 /*
1826 * When a new child is created while the hierarchy is under oom,
1827 * mem_cgroup_oom_lock() may not be called. We have to use
1828 * atomic_add_unless() here.
1829 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001830 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001831 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001832}
1833
Michal Hocko1af8efe2011-07-26 16:08:24 -07001834static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001835static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1836
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001837struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001838 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001839 wait_queue_t wait;
1840};
1841
1842static int memcg_oom_wake_function(wait_queue_t *wait,
1843 unsigned mode, int sync, void *arg)
1844{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001845 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1846 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001847 struct oom_wait_info *oom_wait_info;
1848
1849 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001850 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001851
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001852 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001853 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001854 * Then we can use css_is_ancestor without taking care of RCU.
1855 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001856 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1857 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001858 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001859 return autoremove_wake_function(wait, mode, sync, arg);
1860}
1861
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001862static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001863{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001864 /* for filtering, pass "memcg" as argument. */
1865 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001866}
1867
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001868static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001869{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001870 if (memcg && atomic_read(&memcg->under_oom))
1871 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001872}
1873
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001874/*
1875 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1876 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001877static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
1878 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001879{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001880 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001881 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001882
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001883 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001884 owait.wait.flags = 0;
1885 owait.wait.func = memcg_oom_wake_function;
1886 owait.wait.private = current;
1887 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001888 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001889 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001890
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001891 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001892 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001893 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001894 /*
1895 * Even if signal_pending(), we can't quit charge() loop without
1896 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1897 * under OOM is always welcomed, use TASK_KILLABLE here.
1898 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001899 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001900 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001901 need_to_kill = false;
1902 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001903 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001904 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001905
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001906 if (need_to_kill) {
1907 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07001908 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001909 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001910 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001911 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001912 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001913 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001914 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001915 mem_cgroup_oom_unlock(memcg);
1916 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001917 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001918
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001919 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001920
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001921 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1922 return false;
1923 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001924 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001925 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001926}
1927
Balbir Singhd69b0422009-06-17 16:26:34 -07001928/*
1929 * Currently used to update mapped file statistics, but the routine can be
1930 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001931 *
1932 * Notes: Race condition
1933 *
1934 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1935 * it tends to be costly. But considering some conditions, we doesn't need
1936 * to do so _always_.
1937 *
1938 * Considering "charge", lock_page_cgroup() is not required because all
1939 * file-stat operations happen after a page is attached to radix-tree. There
1940 * are no race with "charge".
1941 *
1942 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1943 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1944 * if there are race with "uncharge". Statistics itself is properly handled
1945 * by flags.
1946 *
1947 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001948 * small, we check mm->moving_account and detect there are possibility of race
1949 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07001950 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001951
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001952void __mem_cgroup_begin_update_page_stat(struct page *page,
1953 bool *locked, unsigned long *flags)
1954{
1955 struct mem_cgroup *memcg;
1956 struct page_cgroup *pc;
1957
1958 pc = lookup_page_cgroup(page);
1959again:
1960 memcg = pc->mem_cgroup;
1961 if (unlikely(!memcg || !PageCgroupUsed(pc)))
1962 return;
1963 /*
1964 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07001965 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001966 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001967 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001968 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001969 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001970 return;
1971
1972 move_lock_mem_cgroup(memcg, flags);
1973 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
1974 move_unlock_mem_cgroup(memcg, flags);
1975 goto again;
1976 }
1977 *locked = true;
1978}
1979
1980void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
1981{
1982 struct page_cgroup *pc = lookup_page_cgroup(page);
1983
1984 /*
1985 * It's guaranteed that pc->mem_cgroup never changes while
1986 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07001987 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001988 */
1989 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
1990}
1991
Greg Thelen2a7106f2011-01-13 15:47:37 -08001992void mem_cgroup_update_page_stat(struct page *page,
1993 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07001994{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001995 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001996 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08001997 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07001998
Johannes Weinercfa44942012-01-12 17:18:38 -08001999 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002000 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002001
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002002 memcg = pc->mem_cgroup;
2003 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002004 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002005
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002006 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002007 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08002008 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002009 break;
2010 default:
2011 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002012 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002013
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002014 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002015}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002016
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002017/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002018 * size of first charge trial. "32" comes from vmscan.c's magic value.
2019 * TODO: maybe necessary to use big numbers in big irons.
2020 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002021#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002022struct memcg_stock_pcp {
2023 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002024 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002025 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002026 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002027#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002028};
2029static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002030static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002031
2032/*
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002033 * Try to consume stocked charge on this cpu. If success, one page is consumed
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002034 * from local stock and true is returned. If the stock is 0 or charges from a
2035 * cgroup which is not current target, returns false. This stock will be
2036 * refilled.
2037 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002038static bool consume_stock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002039{
2040 struct memcg_stock_pcp *stock;
2041 bool ret = true;
2042
2043 stock = &get_cpu_var(memcg_stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002044 if (memcg == stock->cached && stock->nr_pages)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002045 stock->nr_pages--;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002046 else /* need to call res_counter_charge */
2047 ret = false;
2048 put_cpu_var(memcg_stock);
2049 return ret;
2050}
2051
2052/*
2053 * Returns stocks cached in percpu to res_counter and reset cached information.
2054 */
2055static void drain_stock(struct memcg_stock_pcp *stock)
2056{
2057 struct mem_cgroup *old = stock->cached;
2058
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002059 if (stock->nr_pages) {
2060 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2061
2062 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002063 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002064 res_counter_uncharge(&old->memsw, bytes);
2065 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002066 }
2067 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002068}
2069
2070/*
2071 * This must be called under preempt disabled or must be called by
2072 * a thread which is pinned to local cpu.
2073 */
2074static void drain_local_stock(struct work_struct *dummy)
2075{
2076 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2077 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002078 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002079}
2080
2081/*
2082 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002083 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002084 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002085static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002086{
2087 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2088
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002089 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002090 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002091 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002092 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002093 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002094 put_cpu_var(memcg_stock);
2095}
2096
2097/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002098 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002099 * of the hierarchy under it. sync flag says whether we should block
2100 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002101 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002102static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002103{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002104 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002105
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002106 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002107 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002108 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002109 for_each_online_cpu(cpu) {
2110 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002111 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002112
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002113 memcg = stock->cached;
2114 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002115 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002116 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002117 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002118 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2119 if (cpu == curcpu)
2120 drain_local_stock(&stock->work);
2121 else
2122 schedule_work_on(cpu, &stock->work);
2123 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002124 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002125 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002126
2127 if (!sync)
2128 goto out;
2129
2130 for_each_online_cpu(cpu) {
2131 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002132 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002133 flush_work(&stock->work);
2134 }
2135out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002136 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002137}
2138
2139/*
2140 * Tries to drain stocked charges in other cpus. This function is asynchronous
2141 * and just put a work per cpu for draining localy on each cpu. Caller can
2142 * expects some charges will be back to res_counter later but cannot wait for
2143 * it.
2144 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002145static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002146{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002147 /*
2148 * If someone calls draining, avoid adding more kworker runs.
2149 */
2150 if (!mutex_trylock(&percpu_charge_mutex))
2151 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002152 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002153 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002154}
2155
2156/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002157static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002158{
2159 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002160 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002161 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002162 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002163}
2164
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002165/*
2166 * This function drains percpu counter value from DEAD cpu and
2167 * move it to local cpu. Note that this function can be preempted.
2168 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002169static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002170{
2171 int i;
2172
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002173 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002174 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002175 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002176
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002177 per_cpu(memcg->stat->count[i], cpu) = 0;
2178 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002179 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002180 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002181 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002182
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002183 per_cpu(memcg->stat->events[i], cpu) = 0;
2184 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002185 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002186 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002187}
2188
2189static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002190 unsigned long action,
2191 void *hcpu)
2192{
2193 int cpu = (unsigned long)hcpu;
2194 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002195 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002196
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002197 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002198 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002199
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002200 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002201 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002202
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002203 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002204 mem_cgroup_drain_pcp_counter(iter, cpu);
2205
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002206 stock = &per_cpu(memcg_stock, cpu);
2207 drain_stock(stock);
2208 return NOTIFY_OK;
2209}
2210
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002211
2212/* See __mem_cgroup_try_charge() for details */
2213enum {
2214 CHARGE_OK, /* success */
2215 CHARGE_RETRY, /* need to retry but retry is not bad */
2216 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2217 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2218 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2219};
2220
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002221static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002222 unsigned int nr_pages, bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002223{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002224 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002225 struct mem_cgroup *mem_over_limit;
2226 struct res_counter *fail_res;
2227 unsigned long flags = 0;
2228 int ret;
2229
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002230 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002231
2232 if (likely(!ret)) {
2233 if (!do_swap_account)
2234 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002235 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002236 if (likely(!ret))
2237 return CHARGE_OK;
2238
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002239 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002240 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2241 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2242 } else
2243 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002244 /*
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002245 * nr_pages can be either a huge page (HPAGE_PMD_NR), a batch
2246 * of regular pages (CHARGE_BATCH), or a single regular page (1).
Johannes Weiner9221edb2011-02-01 15:52:42 -08002247 *
2248 * Never reclaim on behalf of optional batching, retry with a
2249 * single page instead.
2250 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002251 if (nr_pages == CHARGE_BATCH)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002252 return CHARGE_RETRY;
2253
2254 if (!(gfp_mask & __GFP_WAIT))
2255 return CHARGE_WOULDBLOCK;
2256
Johannes Weiner56600482012-01-12 17:17:59 -08002257 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002258 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002259 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002260 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002261 * Even though the limit is exceeded at this point, reclaim
2262 * may have been able to free some pages. Retry the charge
2263 * before killing the task.
2264 *
2265 * Only for regular pages, though: huge pages are rather
2266 * unlikely to succeed so close to the limit, and we fall back
2267 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002268 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002269 if (nr_pages == 1 && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002270 return CHARGE_RETRY;
2271
2272 /*
2273 * At task move, charge accounts can be doubly counted. So, it's
2274 * better to wait until the end of task_move if something is going on.
2275 */
2276 if (mem_cgroup_wait_acct_move(mem_over_limit))
2277 return CHARGE_RETRY;
2278
2279 /* If we don't need to call oom-killer at el, return immediately */
2280 if (!oom_check)
2281 return CHARGE_NOMEM;
2282 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002283 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002284 return CHARGE_OOM_DIE;
2285
2286 return CHARGE_RETRY;
2287}
2288
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002289/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002290 * __mem_cgroup_try_charge() does
2291 * 1. detect memcg to be charged against from passed *mm and *ptr,
2292 * 2. update res_counter
2293 * 3. call memory reclaim if necessary.
2294 *
2295 * In some special case, if the task is fatal, fatal_signal_pending() or
2296 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2297 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2298 * as possible without any hazards. 2: all pages should have a valid
2299 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2300 * pointer, that is treated as a charge to root_mem_cgroup.
2301 *
2302 * So __mem_cgroup_try_charge() will return
2303 * 0 ... on success, filling *ptr with a valid memcg pointer.
2304 * -ENOMEM ... charge failure because of resource limits.
2305 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2306 *
2307 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2308 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002309 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002310static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002311 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002312 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002313 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002314 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002315{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002316 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002317 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002318 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002319 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002320
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002321 /*
2322 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2323 * in system level. So, allow to go ahead dying process in addition to
2324 * MEMDIE process.
2325 */
2326 if (unlikely(test_thread_flag(TIF_MEMDIE)
2327 || fatal_signal_pending(current)))
2328 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002329
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002330 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002331 * We always charge the cgroup the mm_struct belongs to.
2332 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002333 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002334 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002335 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002336 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002337 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002338again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002339 if (*ptr) { /* css should be a valid one */
2340 memcg = *ptr;
2341 VM_BUG_ON(css_is_removed(&memcg->css));
2342 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002343 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002344 if (nr_pages == 1 && consume_stock(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002345 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002346 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002347 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002348 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002349
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002350 rcu_read_lock();
2351 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002352 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002353 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002354 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002355 * race with swapoff. Then, we have small risk of mis-accouning.
2356 * But such kind of mis-account by race always happens because
2357 * we don't have cgroup_mutex(). It's overkill and we allo that
2358 * small race, here.
2359 * (*) swapoff at el will charge against mm-struct not against
2360 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002361 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002362 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002363 if (!memcg)
2364 memcg = root_mem_cgroup;
2365 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002366 rcu_read_unlock();
2367 goto done;
2368 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002369 if (nr_pages == 1 && consume_stock(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002370 /*
2371 * It seems dagerous to access memcg without css_get().
2372 * But considering how consume_stok works, it's not
2373 * necessary. If consume_stock success, some charges
2374 * from this memcg are cached on this cpu. So, we
2375 * don't need to call css_get()/css_tryget() before
2376 * calling consume_stock().
2377 */
2378 rcu_read_unlock();
2379 goto done;
2380 }
2381 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002382 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002383 rcu_read_unlock();
2384 goto again;
2385 }
2386 rcu_read_unlock();
2387 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002388
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002389 do {
2390 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002391
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002392 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002393 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002394 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002395 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002396 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002397
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002398 oom_check = false;
2399 if (oom && !nr_oom_retries) {
2400 oom_check = true;
2401 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2402 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002403
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002404 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002405 switch (ret) {
2406 case CHARGE_OK:
2407 break;
2408 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002409 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002410 css_put(&memcg->css);
2411 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002412 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002413 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002414 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002415 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002416 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002417 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002418 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002419 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002420 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002421 /* If oom, we never return -ENOMEM */
2422 nr_oom_retries--;
2423 break;
2424 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002425 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002426 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002427 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002428 } while (ret != CHARGE_OK);
2429
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002430 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002431 refill_stock(memcg, batch - nr_pages);
2432 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002433done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002434 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002435 return 0;
2436nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002437 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002438 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002439bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002440 *ptr = root_mem_cgroup;
2441 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002442}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002443
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002444/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002445 * Somemtimes we have to undo a charge we got by try_charge().
2446 * This function is for that and do uncharge, put css's refcnt.
2447 * gotten by try_charge().
2448 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002449static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002450 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002451{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002452 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002453 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002454
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002455 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002456 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002457 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002458 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002459}
2460
2461/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002462 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2463 * This is useful when moving usage to parent cgroup.
2464 */
2465static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2466 unsigned int nr_pages)
2467{
2468 unsigned long bytes = nr_pages * PAGE_SIZE;
2469
2470 if (mem_cgroup_is_root(memcg))
2471 return;
2472
2473 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2474 if (do_swap_account)
2475 res_counter_uncharge_until(&memcg->memsw,
2476 memcg->memsw.parent, bytes);
2477}
2478
2479/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002480 * A helper function to get mem_cgroup from ID. must be called under
2481 * rcu_read_lock(). The caller must check css_is_removed() or some if
2482 * it's concern. (dropping refcnt from swap can be called against removed
2483 * memcg.)
2484 */
2485static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2486{
2487 struct cgroup_subsys_state *css;
2488
2489 /* ID 0 is unused ID */
2490 if (!id)
2491 return NULL;
2492 css = css_lookup(&mem_cgroup_subsys, id);
2493 if (!css)
2494 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002495 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002496}
2497
Wu Fengguange42d9d52009-12-16 12:19:59 +01002498struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002499{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002500 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002501 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002502 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002503 swp_entry_t ent;
2504
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002505 VM_BUG_ON(!PageLocked(page));
2506
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002507 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002508 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002509 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002510 memcg = pc->mem_cgroup;
2511 if (memcg && !css_tryget(&memcg->css))
2512 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002513 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002514 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002515 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002516 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002517 memcg = mem_cgroup_lookup(id);
2518 if (memcg && !css_tryget(&memcg->css))
2519 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002520 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002521 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002522 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002523 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002524}
2525
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002526static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002527 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002528 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002529 enum charge_type ctype,
2530 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002531{
Johannes Weinerce587e62012-04-24 20:22:33 +02002532 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002533 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002534 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002535 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002536 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002537
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002538 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002539 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002540 /*
2541 * we don't need page_cgroup_lock about tail pages, becase they are not
2542 * accessed by any other context at this point.
2543 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002544
2545 /*
2546 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2547 * may already be on some other mem_cgroup's LRU. Take care of it.
2548 */
2549 if (lrucare) {
2550 zone = page_zone(page);
2551 spin_lock_irq(&zone->lru_lock);
2552 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002553 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002554 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002555 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002556 was_on_lru = true;
2557 }
2558 }
2559
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002560 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002561 /*
2562 * We access a page_cgroup asynchronously without lock_page_cgroup().
2563 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2564 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2565 * before USED bit, we need memory barrier here.
2566 * See mem_cgroup_add_lru_list(), etc.
2567 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002568 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002569 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002570
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002571 if (lrucare) {
2572 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002573 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002574 VM_BUG_ON(PageLRU(page));
2575 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002576 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002577 }
2578 spin_unlock_irq(&zone->lru_lock);
2579 }
2580
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002581 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002582 anon = true;
2583 else
2584 anon = false;
2585
2586 mem_cgroup_charge_statistics(memcg, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002587 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002588
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002589 /*
2590 * "charge_statistics" updated event counter. Then, check it.
2591 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2592 * if they exceeds softlimit.
2593 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002594 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002595}
2596
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002597#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2598
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002599#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002600/*
2601 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002602 * zone->lru_lock, 'splitting on pmd' and compound_lock.
2603 * charge/uncharge will be never happen and move_account() is done under
2604 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002605 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002606void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002607{
2608 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002609 struct page_cgroup *pc;
2610 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002611
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002612 if (mem_cgroup_disabled())
2613 return;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002614 for (i = 1; i < HPAGE_PMD_NR; i++) {
2615 pc = head_pc + i;
2616 pc->mem_cgroup = head_pc->mem_cgroup;
2617 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002618 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2619 }
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002620}
Hugh Dickins12d27102012-01-12 17:19:52 -08002621#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002622
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002623/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07002624 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07002625 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002626 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002627 * @pc: page_cgroup of the page.
2628 * @from: mem_cgroup which the page is moved from.
2629 * @to: mem_cgroup which the page is moved to. @from != @to.
2630 *
2631 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002632 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002633 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002634 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002635 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
2636 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002637 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002638static int mem_cgroup_move_account(struct page *page,
2639 unsigned int nr_pages,
2640 struct page_cgroup *pc,
2641 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002642 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002643{
Johannes Weinerde3638d2011-03-23 16:42:28 -07002644 unsigned long flags;
2645 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002646 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002647
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002648 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07002649 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07002650 /*
2651 * The page is isolated from LRU. So, collapse function
2652 * will not handle this page. But page splitting can happen.
2653 * Do this check under compound_page_lock(). The caller should
2654 * hold it.
2655 */
2656 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002657 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07002658 goto out;
2659
2660 lock_page_cgroup(pc);
2661
2662 ret = -EINVAL;
2663 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2664 goto unlock;
2665
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002666 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002667
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07002668 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08002669 /* Update mapped_file data for mem_cgroup */
2670 preempt_disable();
2671 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2672 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2673 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07002674 }
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002675 mem_cgroup_charge_statistics(from, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07002676
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002677 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002678 pc->mem_cgroup = to;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002679 mem_cgroup_charge_statistics(to, anon, nr_pages);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002680 /*
2681 * We charges against "to" which may not have any tasks. Then, "to"
2682 * can be under rmdir(). But in current implementation, caller of
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002683 * this function is just force_empty() and move charge, so it's
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002684 * guaranteed that "to" is never removed. So, we don't check rmdir
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002685 * status here.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002686 */
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002687 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002688 ret = 0;
2689unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002690 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08002691 /*
2692 * check events
2693 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002694 memcg_check_events(to, page);
2695 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002696out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002697 return ret;
2698}
2699
2700/*
2701 * move charges to its parent.
2702 */
2703
Johannes Weiner5564e882011-03-23 16:42:29 -07002704static int mem_cgroup_move_parent(struct page *page,
2705 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07002706 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002707{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002708 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002709 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07002710 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002711 int ret;
2712
2713 /* Is ROOT ? */
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002714 if (mem_cgroup_is_root(child))
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002715 return -EINVAL;
2716
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002717 ret = -EBUSY;
2718 if (!get_page_unless_zero(page))
2719 goto out;
2720 if (isolate_lru_page(page))
2721 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08002722
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002723 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002724
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002725 parent = parent_mem_cgroup(child);
2726 /*
2727 * If no parent, move charges to root cgroup.
2728 */
2729 if (!parent)
2730 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002731
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002732 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002733 flags = compound_lock_irqsave(page);
2734
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002735 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002736 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002737 if (!ret)
2738 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002739
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002740 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002741 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002742 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002743put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08002744 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002745out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002746 return ret;
2747}
2748
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002749/*
2750 * Charge the memory controller for page usage.
2751 * Return
2752 * 0 if the charge was successful
2753 * < 0 if the cgroup is over its limit
2754 */
2755static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002756 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002757{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002758 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002759 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08002760 bool oom = true;
2761 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08002762
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002763 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002764 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002765 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08002766 /*
2767 * Never OOM-kill a process for a huge page. The
2768 * fault handler will fall back to regular pages.
2769 */
2770 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002771 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002772
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002773 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002774 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002775 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02002776 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002777 return 0;
2778}
2779
2780int mem_cgroup_newpage_charge(struct page *page,
2781 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002782{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002783 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002784 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08002785 VM_BUG_ON(page_mapped(page));
2786 VM_BUG_ON(page->mapping && !PageAnon(page));
2787 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002788 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002789 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002790}
2791
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002792/*
2793 * While swap-in, try_charge -> commit or cancel, the page is locked.
2794 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02002795 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002796 * "commit()" or removed by "cancel()"
2797 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002798static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2799 struct page *page,
2800 gfp_t mask,
2801 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002802{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002803 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07002804 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002805 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002806
Johannes Weiner90deb782012-07-31 16:45:47 -07002807 pc = lookup_page_cgroup(page);
2808 /*
2809 * Every swap fault against a single page tries to charge the
2810 * page, bail as early as possible. shmem_unuse() encounters
2811 * already charged pages, too. The USED bit is protected by
2812 * the page lock, which serializes swap cache removal, which
2813 * in turn serializes uncharging.
2814 */
2815 if (PageCgroupUsed(pc))
2816 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002817 if (!do_swap_account)
2818 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002819 memcg = try_get_mem_cgroup_from_page(page);
2820 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002821 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08002822 *memcgp = memcg;
2823 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002824 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002825 if (ret == -EINTR)
2826 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002827 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002828charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002829 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
2830 if (ret == -EINTR)
2831 ret = 0;
2832 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002833}
2834
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002835int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
2836 gfp_t gfp_mask, struct mem_cgroup **memcgp)
2837{
2838 *memcgp = NULL;
2839 if (mem_cgroup_disabled())
2840 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07002841 /*
2842 * A racing thread's fault, or swapoff, may have already
2843 * updated the pte, and even removed page from swap cache: in
2844 * those cases unuse_pte()'s pte_same() test will fail; but
2845 * there's also a KSM case which does need to charge the page.
2846 */
2847 if (!PageSwapCache(page)) {
2848 int ret;
2849
2850 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
2851 if (ret == -EINTR)
2852 ret = 0;
2853 return ret;
2854 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002855 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
2856}
2857
Johannes Weiner827a03d2012-07-31 16:45:36 -07002858void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
2859{
2860 if (mem_cgroup_disabled())
2861 return;
2862 if (!memcg)
2863 return;
2864 __mem_cgroup_cancel_charge(memcg, 1);
2865}
2866
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002867static void
Johannes Weiner72835c82012-01-12 17:18:32 -08002868__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002869 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002870{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002871 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002872 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002873 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002874 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002875 cgroup_exclude_rmdir(&memcg->css);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002876
Johannes Weinerce587e62012-04-24 20:22:33 +02002877 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002878 /*
2879 * Now swap is on-memory. This means this page may be
2880 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002881 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2882 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2883 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002884 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002885 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002886 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07002887 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002888 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002889 /*
2890 * At swapin, we may charge account against cgroup which has no tasks.
2891 * So, rmdir()->pre_destroy() can be called while we do this charge.
2892 * In that case, we need to call pre_destroy() again. check it here.
2893 */
Johannes Weiner72835c82012-01-12 17:18:32 -08002894 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002895}
2896
Johannes Weiner72835c82012-01-12 17:18:32 -08002897void mem_cgroup_commit_charge_swapin(struct page *page,
2898 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002899{
Johannes Weiner72835c82012-01-12 17:18:32 -08002900 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002901 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002902}
2903
Johannes Weiner827a03d2012-07-31 16:45:36 -07002904int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2905 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002906{
Johannes Weiner827a03d2012-07-31 16:45:36 -07002907 struct mem_cgroup *memcg = NULL;
2908 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
2909 int ret;
2910
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002911 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07002912 return 0;
2913 if (PageCompound(page))
2914 return 0;
2915
Johannes Weiner827a03d2012-07-31 16:45:36 -07002916 if (!PageSwapCache(page))
2917 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
2918 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002919 ret = __mem_cgroup_try_charge_swapin(mm, page,
2920 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07002921 if (!ret)
2922 __mem_cgroup_commit_charge_swapin(page, memcg, type);
2923 }
2924 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002925}
2926
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002927static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002928 unsigned int nr_pages,
2929 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002930{
2931 struct memcg_batch_info *batch = NULL;
2932 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002933
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002934 /* If swapout, usage of swap doesn't decrease */
2935 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2936 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002937
2938 batch = &current->memcg_batch;
2939 /*
2940 * In usual, we do css_get() when we remember memcg pointer.
2941 * But in this case, we keep res->usage until end of a series of
2942 * uncharges. Then, it's ok to ignore memcg's refcnt.
2943 */
2944 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002945 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002946 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002947 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002948 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002949 * the same cgroup and we have chance to coalesce uncharges.
2950 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
2951 * because we want to do uncharge as soon as possible.
2952 */
2953
2954 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
2955 goto direct_uncharge;
2956
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002957 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08002958 goto direct_uncharge;
2959
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002960 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002961 * In typical case, batch->memcg == mem. This means we can
2962 * merge a series of uncharges to an uncharge of res_counter.
2963 * If not, we uncharge res_counter ony by one.
2964 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002965 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002966 goto direct_uncharge;
2967 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002968 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002969 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002970 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002971 return;
2972direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002973 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002974 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002975 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
2976 if (unlikely(batch->memcg != memcg))
2977 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002978}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002979
Balbir Singh8697d332008-02-07 00:13:59 -08002980/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07002981 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002982 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002983static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07002984__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
2985 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002986{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002987 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002988 unsigned int nr_pages = 1;
2989 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002990 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002991
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002992 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002993 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07002994
Johannes Weiner0c59b892012-07-31 16:45:31 -07002995 VM_BUG_ON(PageSwapCache(page));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002996
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002997 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002998 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002999 VM_BUG_ON(!PageTransHuge(page));
3000 }
Balbir Singh8697d332008-02-07 00:13:59 -08003001 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003002 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003003 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003004 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003005 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003006 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003007
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003008 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003009
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003010 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003011
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003012 if (!PageCgroupUsed(pc))
3013 goto unlock_out;
3014
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003015 anon = PageAnon(page);
3016
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003017 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003018 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003019 /*
3020 * Generally PageAnon tells if it's the anon statistics to be
3021 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
3022 * used before page reached the stage of being marked PageAnon.
3023 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003024 anon = true;
3025 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003026 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003027 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07003028 if (page_mapped(page))
3029 goto unlock_out;
3030 /*
3031 * Pages under migration may not be uncharged. But
3032 * end_migration() /must/ be the one uncharging the
3033 * unused post-migration page and so it has to call
3034 * here with the migration bit still set. See the
3035 * res_counter handling below.
3036 */
3037 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003038 goto unlock_out;
3039 break;
3040 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
3041 if (!PageAnon(page)) { /* Shared memory */
3042 if (page->mapping && !page_is_file_cache(page))
3043 goto unlock_out;
3044 } else if (page_mapped(page)) /* Anon */
3045 goto unlock_out;
3046 break;
3047 default:
3048 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003049 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003050
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003051 mem_cgroup_charge_statistics(memcg, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07003052
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003053 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08003054 /*
3055 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3056 * freed from LRU. This is safe because uncharged page is expected not
3057 * to be reused (freed soon). Exception is SwapCache, it's handled by
3058 * special functions.
3059 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003060
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003061 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003062 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003063 * even after unlock, we have memcg->res.usage here and this memcg
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003064 * will never be freed.
3065 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003066 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003067 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003068 mem_cgroup_swap_statistics(memcg, true);
3069 mem_cgroup_get(memcg);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003070 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003071 /*
3072 * Migration does not charge the res_counter for the
3073 * replacement page, so leave it alone when phasing out the
3074 * page that is unused after the migration.
3075 */
3076 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003077 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003078
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003079 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003080
3081unlock_out:
3082 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003083 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003084}
3085
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003086void mem_cgroup_uncharge_page(struct page *page)
3087{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003088 /* early check. */
3089 if (page_mapped(page))
3090 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08003091 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner0c59b892012-07-31 16:45:31 -07003092 if (PageSwapCache(page))
3093 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07003094 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003095}
3096
3097void mem_cgroup_uncharge_cache_page(struct page *page)
3098{
3099 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003100 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07003101 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003102}
3103
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003104/*
3105 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3106 * In that cases, pages are freed continuously and we can expect pages
3107 * are in the same memcg. All these calls itself limits the number of
3108 * pages freed at once, then uncharge_start/end() is called properly.
3109 * This may be called prural(2) times in a context,
3110 */
3111
3112void mem_cgroup_uncharge_start(void)
3113{
3114 current->memcg_batch.do_batch++;
3115 /* We can do nest. */
3116 if (current->memcg_batch.do_batch == 1) {
3117 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003118 current->memcg_batch.nr_pages = 0;
3119 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003120 }
3121}
3122
3123void mem_cgroup_uncharge_end(void)
3124{
3125 struct memcg_batch_info *batch = &current->memcg_batch;
3126
3127 if (!batch->do_batch)
3128 return;
3129
3130 batch->do_batch--;
3131 if (batch->do_batch) /* If stacked, do nothing. */
3132 return;
3133
3134 if (!batch->memcg)
3135 return;
3136 /*
3137 * This "batch->memcg" is valid without any css_get/put etc...
3138 * bacause we hide charges behind us.
3139 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003140 if (batch->nr_pages)
3141 res_counter_uncharge(&batch->memcg->res,
3142 batch->nr_pages * PAGE_SIZE);
3143 if (batch->memsw_nr_pages)
3144 res_counter_uncharge(&batch->memcg->memsw,
3145 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003146 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003147 /* forget this pointer (for sanity check) */
3148 batch->memcg = NULL;
3149}
3150
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003151#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003152/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003153 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003154 * memcg information is recorded to swap_cgroup of "ent"
3155 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003156void
3157mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003158{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003159 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003160 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003161
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003162 if (!swapout) /* this was a swap cache but the swap is unused ! */
3163 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
3164
Johannes Weiner0030f532012-07-31 16:45:25 -07003165 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003166
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003167 /*
3168 * record memcg information, if swapout && memcg != NULL,
3169 * mem_cgroup_get() was called in uncharge().
3170 */
3171 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003172 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003173}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003174#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003175
Andrew Mortonc255a452012-07-31 16:43:02 -07003176#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003177/*
3178 * called from swap_entry_free(). remove record in swap_cgroup and
3179 * uncharge "memsw" account.
3180 */
3181void mem_cgroup_uncharge_swap(swp_entry_t ent)
3182{
3183 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003184 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003185
3186 if (!do_swap_account)
3187 return;
3188
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003189 id = swap_cgroup_record(ent, 0);
3190 rcu_read_lock();
3191 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003192 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003193 /*
3194 * We uncharge this because swap is freed.
3195 * This memcg can be obsolete one. We avoid calling css_tryget
3196 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003197 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07003198 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003199 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003200 mem_cgroup_put(memcg);
3201 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003202 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003203}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003204
3205/**
3206 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3207 * @entry: swap entry to be moved
3208 * @from: mem_cgroup which the entry is moved from
3209 * @to: mem_cgroup which the entry is moved to
3210 *
3211 * It succeeds only when the swap_cgroup's record for this entry is the same
3212 * as the mem_cgroup's id of @from.
3213 *
3214 * Returns 0 on success, -EINVAL on failure.
3215 *
3216 * The caller must have charged to @to, IOW, called res_counter_charge() about
3217 * both res and memsw, and called css_get().
3218 */
3219static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003220 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003221{
3222 unsigned short old_id, new_id;
3223
3224 old_id = css_id(&from->css);
3225 new_id = css_id(&to->css);
3226
3227 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003228 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003229 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003230 /*
3231 * This function is only called from task migration context now.
3232 * It postpones res_counter and refcount handling till the end
3233 * of task migration(mem_cgroup_clear_mc()) for performance
3234 * improvement. But we cannot postpone mem_cgroup_get(to)
3235 * because if the process that has been moved to @to does
3236 * swap-in, the refcount of @to might be decreased to 0.
3237 */
Daisuke Nishimura02491442010-03-10 15:22:17 -08003238 mem_cgroup_get(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003239 return 0;
3240 }
3241 return -EINVAL;
3242}
3243#else
3244static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003245 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003246{
3247 return -EINVAL;
3248}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003249#endif
3250
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003251/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003252 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
3253 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003254 */
Johannes Weiner0030f532012-07-31 16:45:25 -07003255void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
3256 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003257{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003258 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003259 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003260 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003261
Johannes Weiner72835c82012-01-12 17:18:32 -08003262 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003263
Andrea Arcangeliec168512011-01-13 15:46:56 -08003264 VM_BUG_ON(PageTransHuge(page));
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003265 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07003266 return;
Balbir Singh40779602008-04-04 14:29:59 -07003267
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003268 pc = lookup_page_cgroup(page);
3269 lock_page_cgroup(pc);
3270 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003271 memcg = pc->mem_cgroup;
3272 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003273 /*
3274 * At migrating an anonymous page, its mapcount goes down
3275 * to 0 and uncharge() will be called. But, even if it's fully
3276 * unmapped, migration may fail and this page has to be
3277 * charged again. We set MIGRATION flag here and delay uncharge
3278 * until end_migration() is called
3279 *
3280 * Corner Case Thinking
3281 * A)
3282 * When the old page was mapped as Anon and it's unmap-and-freed
3283 * while migration was ongoing.
3284 * If unmap finds the old page, uncharge() of it will be delayed
3285 * until end_migration(). If unmap finds a new page, it's
3286 * uncharged when it make mapcount to be 1->0. If unmap code
3287 * finds swap_migration_entry, the new page will not be mapped
3288 * and end_migration() will find it(mapcount==0).
3289 *
3290 * B)
3291 * When the old page was mapped but migraion fails, the kernel
3292 * remaps it. A charge for it is kept by MIGRATION flag even
3293 * if mapcount goes down to 0. We can do remap successfully
3294 * without charging it again.
3295 *
3296 * C)
3297 * The "old" page is under lock_page() until the end of
3298 * migration, so, the old page itself will not be swapped-out.
3299 * If the new page is swapped out before end_migraton, our
3300 * hook to usual swap-out path will catch the event.
3301 */
3302 if (PageAnon(page))
3303 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003304 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003305 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003306 /*
3307 * If the page is not charged at this point,
3308 * we return here.
3309 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003310 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07003311 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003312
Johannes Weiner72835c82012-01-12 17:18:32 -08003313 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003314 /*
3315 * We charge new page before it's used/mapped. So, even if unlock_page()
3316 * is called before end_migration, we can catch all events on this new
3317 * page. In the case new page is migrated but not remapped, new page's
3318 * mapcount will be finally 0 and we call uncharge in end_migration().
3319 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003320 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003321 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003322 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07003323 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07003324 /*
3325 * The page is committed to the memcg, but it's not actually
3326 * charged to the res_counter since we plan on replacing the
3327 * old one and only one page is going to be left afterwards.
3328 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003329 __mem_cgroup_commit_charge(memcg, newpage, 1, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003330}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08003331
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003332/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003333void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003334 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003335{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003336 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003337 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003338 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003339
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003340 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003341 return;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003342 /* blocks rmdir() */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003343 cgroup_exclude_rmdir(&memcg->css);
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003344 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003345 used = oldpage;
3346 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003347 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003348 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003349 unused = oldpage;
3350 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003351 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07003352 __mem_cgroup_uncharge_common(unused,
3353 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
3354 : MEM_CGROUP_CHARGE_TYPE_CACHE,
3355 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07003356 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003357 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003358 * We disallowed uncharge of pages under migration because mapcount
3359 * of the page goes down to zero, temporarly.
3360 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003361 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003362 pc = lookup_page_cgroup(oldpage);
3363 lock_page_cgroup(pc);
3364 ClearPageCgroupMigration(pc);
3365 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003366
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003367 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003368 * If a page is a file cache, radix-tree replacement is very atomic
3369 * and we can skip this check. When it was an Anon page, its mapcount
3370 * goes down to 0. But because we added MIGRATION flage, it's not
3371 * uncharged yet. There are several case but page->mapcount check
3372 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3373 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003374 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003375 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003376 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003377 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003378 * At migration, we may charge account against cgroup which has no
3379 * tasks.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003380 * So, rmdir()->pre_destroy() can be called while we do this charge.
3381 * In that case, we need to call pre_destroy() again. check it here.
3382 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003383 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003384}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08003385
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003386/*
3387 * At replace page cache, newpage is not under any memcg but it's on
3388 * LRU. So, this function doesn't touch res_counter but handles LRU
3389 * in correct way. Both pages are locked so we cannot race with uncharge.
3390 */
3391void mem_cgroup_replace_page_cache(struct page *oldpage,
3392 struct page *newpage)
3393{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003394 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003395 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003396 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003397
3398 if (mem_cgroup_disabled())
3399 return;
3400
3401 pc = lookup_page_cgroup(oldpage);
3402 /* fix accounting on old pages */
3403 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003404 if (PageCgroupUsed(pc)) {
3405 memcg = pc->mem_cgroup;
3406 mem_cgroup_charge_statistics(memcg, false, -1);
3407 ClearPageCgroupUsed(pc);
3408 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003409 unlock_page_cgroup(pc);
3410
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003411 /*
3412 * When called from shmem_replace_page(), in some cases the
3413 * oldpage has already been charged, and in some cases not.
3414 */
3415 if (!memcg)
3416 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003417 /*
3418 * Even if newpage->mapping was NULL before starting replacement,
3419 * the newpage may be on LRU(or pagevec for LRU) already. We lock
3420 * LRU while we overwrite pc->mem_cgroup.
3421 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003422 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003423}
3424
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003425#ifdef CONFIG_DEBUG_VM
3426static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3427{
3428 struct page_cgroup *pc;
3429
3430 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003431 /*
3432 * Can be NULL while feeding pages into the page allocator for
3433 * the first time, i.e. during boot or memory hotplug;
3434 * or when mem_cgroup_disabled().
3435 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003436 if (likely(pc) && PageCgroupUsed(pc))
3437 return pc;
3438 return NULL;
3439}
3440
3441bool mem_cgroup_bad_page_check(struct page *page)
3442{
3443 if (mem_cgroup_disabled())
3444 return false;
3445
3446 return lookup_page_cgroup_used(page) != NULL;
3447}
3448
3449void mem_cgroup_print_bad_page(struct page *page)
3450{
3451 struct page_cgroup *pc;
3452
3453 pc = lookup_page_cgroup_used(page);
3454 if (pc) {
Hugh Dickins90b3fea2012-01-12 17:19:54 -08003455 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003456 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003457 }
3458}
3459#endif
3460
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003461static DEFINE_MUTEX(set_limit_mutex);
3462
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003463static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003464 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003465{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003466 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003467 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003468 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003469 int children = mem_cgroup_count_children(memcg);
3470 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003471 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003472
3473 /*
3474 * For keeping hierarchical_reclaim simple, how long we should retry
3475 * is depends on callers. We set our retry-count to be function
3476 * of # of children which we should visit in this loop.
3477 */
3478 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3479
3480 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003481
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003482 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003483 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003484 if (signal_pending(current)) {
3485 ret = -EINTR;
3486 break;
3487 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003488 /*
3489 * Rather than hide all in some function, I do this in
3490 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003491 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003492 */
3493 mutex_lock(&set_limit_mutex);
3494 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3495 if (memswlimit < val) {
3496 ret = -EINVAL;
3497 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003498 break;
3499 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003500
3501 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3502 if (memlimit < val)
3503 enlarge = 1;
3504
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003505 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003506 if (!ret) {
3507 if (memswlimit == val)
3508 memcg->memsw_is_minimum = true;
3509 else
3510 memcg->memsw_is_minimum = false;
3511 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003512 mutex_unlock(&set_limit_mutex);
3513
3514 if (!ret)
3515 break;
3516
Johannes Weiner56600482012-01-12 17:17:59 -08003517 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3518 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003519 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3520 /* Usage is reduced ? */
3521 if (curusage >= oldusage)
3522 retry_count--;
3523 else
3524 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003525 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003526 if (!ret && enlarge)
3527 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003528
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003529 return ret;
3530}
3531
Li Zefan338c8432009-06-17 16:27:15 -07003532static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3533 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003534{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003535 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003536 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003537 int children = mem_cgroup_count_children(memcg);
3538 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003539 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003540
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003541 /* see mem_cgroup_resize_res_limit */
3542 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3543 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003544 while (retry_count) {
3545 if (signal_pending(current)) {
3546 ret = -EINTR;
3547 break;
3548 }
3549 /*
3550 * Rather than hide all in some function, I do this in
3551 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003552 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003553 */
3554 mutex_lock(&set_limit_mutex);
3555 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3556 if (memlimit > val) {
3557 ret = -EINVAL;
3558 mutex_unlock(&set_limit_mutex);
3559 break;
3560 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003561 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3562 if (memswlimit < val)
3563 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003564 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003565 if (!ret) {
3566 if (memlimit == val)
3567 memcg->memsw_is_minimum = true;
3568 else
3569 memcg->memsw_is_minimum = false;
3570 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003571 mutex_unlock(&set_limit_mutex);
3572
3573 if (!ret)
3574 break;
3575
Johannes Weiner56600482012-01-12 17:17:59 -08003576 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3577 MEM_CGROUP_RECLAIM_NOSWAP |
3578 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003579 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003580 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003581 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003582 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003583 else
3584 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003585 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003586 if (!ret && enlarge)
3587 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003588 return ret;
3589}
3590
Balbir Singh4e416952009-09-23 15:56:39 -07003591unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
Ying Han0ae5e892011-05-26 16:25:25 -07003592 gfp_t gfp_mask,
3593 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003594{
3595 unsigned long nr_reclaimed = 0;
3596 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3597 unsigned long reclaimed;
3598 int loop = 0;
3599 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003600 unsigned long long excess;
Ying Han0ae5e892011-05-26 16:25:25 -07003601 unsigned long nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003602
3603 if (order > 0)
3604 return 0;
3605
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07003606 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
Balbir Singh4e416952009-09-23 15:56:39 -07003607 /*
3608 * This loop can run a while, specially if mem_cgroup's continuously
3609 * keep exceeding their soft limit and putting the system under
3610 * pressure
3611 */
3612 do {
3613 if (next_mz)
3614 mz = next_mz;
3615 else
3616 mz = mem_cgroup_largest_soft_limit_node(mctz);
3617 if (!mz)
3618 break;
3619
Ying Han0ae5e892011-05-26 16:25:25 -07003620 nr_scanned = 0;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003621 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
Johannes Weiner56600482012-01-12 17:17:59 -08003622 gfp_mask, &nr_scanned);
Balbir Singh4e416952009-09-23 15:56:39 -07003623 nr_reclaimed += reclaimed;
Ying Han0ae5e892011-05-26 16:25:25 -07003624 *total_scanned += nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003625 spin_lock(&mctz->lock);
3626
3627 /*
3628 * If we failed to reclaim anything from this memory cgroup
3629 * it is time to move on to the next cgroup
3630 */
3631 next_mz = NULL;
3632 if (!reclaimed) {
3633 do {
3634 /*
3635 * Loop until we find yet another one.
3636 *
3637 * By the time we get the soft_limit lock
3638 * again, someone might have aded the
3639 * group back on the RB tree. Iterate to
3640 * make sure we get a different mem.
3641 * mem_cgroup_largest_soft_limit_node returns
3642 * NULL if no other cgroup is present on
3643 * the tree
3644 */
3645 next_mz =
3646 __mem_cgroup_largest_soft_limit_node(mctz);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003647 if (next_mz == mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003648 css_put(&next_mz->memcg->css);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003649 else /* next_mz == NULL or other memcg */
Balbir Singh4e416952009-09-23 15:56:39 -07003650 break;
3651 } while (1);
3652 }
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003653 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
3654 excess = res_counter_soft_limit_excess(&mz->memcg->res);
Balbir Singh4e416952009-09-23 15:56:39 -07003655 /*
3656 * One school of thought says that we should not add
3657 * back the node to the tree if reclaim returns 0.
3658 * But our reclaim could return 0, simply because due
3659 * to priority we are exposing a smaller subset of
3660 * memory to reclaim from. Consider this as a longer
3661 * term TODO.
3662 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003663 /* If excess == 0, no tree ops */
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003664 __mem_cgroup_insert_exceeded(mz->memcg, mz, mctz, excess);
Balbir Singh4e416952009-09-23 15:56:39 -07003665 spin_unlock(&mctz->lock);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003666 css_put(&mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003667 loop++;
3668 /*
3669 * Could not reclaim anything and there are no more
3670 * mem cgroups to try or we seem to be looping without
3671 * reclaiming anything.
3672 */
3673 if (!nr_reclaimed &&
3674 (next_mz == NULL ||
3675 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3676 break;
3677 } while (!nr_reclaimed);
3678 if (next_mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003679 css_put(&next_mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003680 return nr_reclaimed;
3681}
3682
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07003683/*
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003684 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
3685 * reclaim the pages page themselves - it just removes the page_cgroups.
3686 * Returns true if some page_cgroups were not freed, indicating that the caller
3687 * must retry this operation.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003688 */
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003689static bool mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003690 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003691{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003692 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003693 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003694 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08003695 struct page *busy;
3696 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003697
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003698 zone = &NODE_DATA(node)->node_zones[zid];
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003699 mz = mem_cgroup_zoneinfo(memcg, node, zid);
Johannes Weiner6290df52012-01-12 17:18:10 -08003700 list = &mz->lruvec.lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003701
Hugh Dickins1eb49272012-03-21 16:34:19 -07003702 loop = mz->lru_size[lru];
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003703 /* give some margin against EBUSY etc...*/
3704 loop += 256;
3705 busy = NULL;
3706 while (loop--) {
Johannes Weiner925b7672012-01-12 17:18:15 -08003707 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07003708 struct page *page;
3709
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003710 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003711 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003712 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003713 break;
3714 }
Johannes Weiner925b7672012-01-12 17:18:15 -08003715 page = list_entry(list->prev, struct page, lru);
3716 if (busy == page) {
3717 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003718 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003719 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003720 continue;
3721 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003722 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003723
Johannes Weiner925b7672012-01-12 17:18:15 -08003724 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07003725
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003726 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003727 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08003728 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003729 cond_resched();
3730 } else
3731 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003732 }
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003733 return !list_empty(list);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003734}
3735
3736/*
3737 * make mem_cgroup's charge to be 0 if there is no task.
3738 * This enables deleting this mem_cgroup.
3739 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003740static int mem_cgroup_force_empty(struct mem_cgroup *memcg, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003741{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003742 int ret;
3743 int node, zid, shrink;
3744 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003745 struct cgroup *cgrp = memcg->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003746
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003747 css_get(&memcg->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003748
3749 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003750 /* should free all ? */
3751 if (free_all)
3752 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003753move_account:
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003754 do {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003755 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003756 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003757 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003758 /* This is for making all *used* pages to be on LRU. */
3759 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003760 drain_all_stock_sync(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003761 ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003762 mem_cgroup_start_move(memcg);
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08003763 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003764 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003765 enum lru_list lru;
3766 for_each_lru(lru) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003767 ret = mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003768 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003769 if (ret)
3770 break;
3771 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003772 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003773 if (ret)
3774 break;
3775 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003776 mem_cgroup_end_move(memcg);
3777 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003778 cond_resched();
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003779 /* "ret" should also be checked to ensure all lists are empty. */
Glauber Costa569530f2012-04-12 12:49:13 -07003780 } while (res_counter_read_u64(&memcg->res, RES_USAGE) > 0 || ret);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003781out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003782 css_put(&memcg->css);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003783 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003784
3785try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003786 /* returns EBUSY if there is a task or if we come here twice. */
3787 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003788 ret = -EBUSY;
3789 goto out;
3790 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003791 /* we call try-to-free pages for make this cgroup empty */
3792 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003793 /* try to free all pages in this cgroup */
3794 shrink = 1;
Glauber Costa569530f2012-04-12 12:49:13 -07003795 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003796 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003797
3798 if (signal_pending(current)) {
3799 ret = -EINTR;
3800 goto out;
3801 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003802 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07003803 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003804 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003805 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003806 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003807 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003808 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003809
3810 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003811 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003812 /* try move_account...there may be some *locked* pages. */
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003813 goto move_account;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003814}
3815
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07003816static int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003817{
3818 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3819}
3820
3821
Balbir Singh18f59ea2009-01-07 18:08:07 -08003822static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3823{
3824 return mem_cgroup_from_cont(cont)->use_hierarchy;
3825}
3826
3827static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3828 u64 val)
3829{
3830 int retval = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003831 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003832 struct cgroup *parent = cont->parent;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003833 struct mem_cgroup *parent_memcg = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003834
3835 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003836 parent_memcg = mem_cgroup_from_cont(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003837
3838 cgroup_lock();
Glauber Costa567fb432012-07-31 16:43:07 -07003839
3840 if (memcg->use_hierarchy == val)
3841 goto out;
3842
Balbir Singh18f59ea2009-01-07 18:08:07 -08003843 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003844 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003845 * in the child subtrees. If it is unset, then the change can
3846 * occur, provided the current cgroup has no children.
3847 *
3848 * For the root cgroup, parent_mem is NULL, we allow value to be
3849 * set if there are no children.
3850 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003851 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003852 (val == 1 || val == 0)) {
3853 if (list_empty(&cont->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003854 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003855 else
3856 retval = -EBUSY;
3857 } else
3858 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07003859
3860out:
Balbir Singh18f59ea2009-01-07 18:08:07 -08003861 cgroup_unlock();
3862
3863 return retval;
3864}
3865
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003866
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003867static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003868 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003869{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003870 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003871 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003872
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003873 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003874 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003875 val += mem_cgroup_read_stat(iter, idx);
3876
3877 if (val < 0) /* race ? */
3878 val = 0;
3879 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003880}
3881
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003882static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003883{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003884 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003885
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003886 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003887 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00003888 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003889 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00003890 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003891 }
3892
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003893 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
3894 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003895
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003896 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07003897 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003898
3899 return val << PAGE_SHIFT;
3900}
3901
Tejun Heoaf36f902012-04-01 12:09:55 -07003902static ssize_t mem_cgroup_read(struct cgroup *cont, struct cftype *cft,
3903 struct file *file, char __user *buf,
3904 size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003905{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003906 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Tejun Heoaf36f902012-04-01 12:09:55 -07003907 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003908 u64 val;
Tejun Heoaf36f902012-04-01 12:09:55 -07003909 int type, name, len;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003910
3911 type = MEMFILE_TYPE(cft->private);
3912 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003913
3914 if (!do_swap_account && type == _MEMSWAP)
3915 return -EOPNOTSUPP;
3916
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003917 switch (type) {
3918 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003919 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003920 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003921 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003922 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003923 break;
3924 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003925 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003926 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003927 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003928 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003929 break;
3930 default:
3931 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003932 }
Tejun Heoaf36f902012-04-01 12:09:55 -07003933
3934 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
3935 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003936}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003937/*
3938 * The user of this function is...
3939 * RES_LIMIT.
3940 */
Paul Menage856c13a2008-07-25 01:47:04 -07003941static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
3942 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003943{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003944 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003945 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003946 unsigned long long val;
3947 int ret;
3948
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003949 type = MEMFILE_TYPE(cft->private);
3950 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003951
3952 if (!do_swap_account && type == _MEMSWAP)
3953 return -EOPNOTSUPP;
3954
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003955 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003956 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07003957 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3958 ret = -EINVAL;
3959 break;
3960 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003961 /* This function does all necessary parse...reuse it */
3962 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003963 if (ret)
3964 break;
3965 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003966 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003967 else
3968 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003969 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07003970 case RES_SOFT_LIMIT:
3971 ret = res_counter_memparse_write_strategy(buffer, &val);
3972 if (ret)
3973 break;
3974 /*
3975 * For memsw, soft limits are hard to implement in terms
3976 * of semantics, for now, we support soft limits for
3977 * control without swap
3978 */
3979 if (type == _MEM)
3980 ret = res_counter_set_soft_limit(&memcg->res, val);
3981 else
3982 ret = -EINVAL;
3983 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003984 default:
3985 ret = -EINVAL; /* should be BUG() ? */
3986 break;
3987 }
3988 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003989}
3990
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08003991static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
3992 unsigned long long *mem_limit, unsigned long long *memsw_limit)
3993{
3994 struct cgroup *cgroup;
3995 unsigned long long min_limit, min_memsw_limit, tmp;
3996
3997 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3998 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3999 cgroup = memcg->css.cgroup;
4000 if (!memcg->use_hierarchy)
4001 goto out;
4002
4003 while (cgroup->parent) {
4004 cgroup = cgroup->parent;
4005 memcg = mem_cgroup_from_cont(cgroup);
4006 if (!memcg->use_hierarchy)
4007 break;
4008 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4009 min_limit = min(min_limit, tmp);
4010 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4011 min_memsw_limit = min(min_memsw_limit, tmp);
4012 }
4013out:
4014 *mem_limit = min_limit;
4015 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004016}
4017
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004018static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004019{
Tejun Heoaf36f902012-04-01 12:09:55 -07004020 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004021 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004022
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004023 type = MEMFILE_TYPE(event);
4024 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07004025
4026 if (!do_swap_account && type == _MEMSWAP)
4027 return -EOPNOTSUPP;
4028
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004029 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004030 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004031 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004032 res_counter_reset_max(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004033 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004034 res_counter_reset_max(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004035 break;
4036 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004037 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004038 res_counter_reset_failcnt(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004039 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004040 res_counter_reset_failcnt(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004041 break;
4042 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004043
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004044 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004045}
4046
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004047static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
4048 struct cftype *cft)
4049{
4050 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
4051}
4052
Daisuke Nishimura02491442010-03-10 15:22:17 -08004053#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004054static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4055 struct cftype *cft, u64 val)
4056{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004057 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004058
4059 if (val >= (1 << NR_MOVE_TYPE))
4060 return -EINVAL;
4061 /*
4062 * We check this value several times in both in can_attach() and
4063 * attach(), so we need cgroup lock to prevent this value from being
4064 * inconsistent.
4065 */
4066 cgroup_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004067 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004068 cgroup_unlock();
4069
4070 return 0;
4071}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004072#else
4073static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4074 struct cftype *cft, u64 val)
4075{
4076 return -ENOSYS;
4077}
4078#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004079
Ying Han406eb0c2011-05-26 16:25:37 -07004080#ifdef CONFIG_NUMA
Wanpeng Liab215882012-07-31 16:43:09 -07004081static int memcg_numa_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weinerfada52c2012-05-29 15:07:06 -07004082 struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07004083{
4084 int nid;
4085 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
4086 unsigned long node_nr;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004087 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Ying Han406eb0c2011-05-26 16:25:37 -07004088
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004089 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004090 seq_printf(m, "total=%lu", total_nr);
4091 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004092 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004093 seq_printf(m, " N%d=%lu", nid, node_nr);
4094 }
4095 seq_putc(m, '\n');
4096
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004097 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004098 seq_printf(m, "file=%lu", file_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,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004101 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004102 seq_printf(m, " N%d=%lu", nid, node_nr);
4103 }
4104 seq_putc(m, '\n');
4105
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004106 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004107 seq_printf(m, "anon=%lu", anon_nr);
4108 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004109 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004110 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004111 seq_printf(m, " N%d=%lu", nid, node_nr);
4112 }
4113 seq_putc(m, '\n');
4114
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004115 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004116 seq_printf(m, "unevictable=%lu", unevictable_nr);
4117 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004118 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004119 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004120 seq_printf(m, " N%d=%lu", nid, node_nr);
4121 }
4122 seq_putc(m, '\n');
4123 return 0;
4124}
4125#endif /* CONFIG_NUMA */
4126
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004127static const char * const mem_cgroup_lru_names[] = {
4128 "inactive_anon",
4129 "active_anon",
4130 "inactive_file",
4131 "active_file",
4132 "unevictable",
4133};
4134
4135static inline void mem_cgroup_lru_names_not_uptodate(void)
4136{
4137 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
4138}
4139
Wanpeng Liab215882012-07-31 16:43:09 -07004140static int memcg_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004141 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004142{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004143 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004144 struct mem_cgroup *mi;
4145 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004146
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004147 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004148 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004149 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004150 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
4151 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004152 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004153
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004154 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
4155 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
4156 mem_cgroup_read_events(memcg, i));
4157
4158 for (i = 0; i < NR_LRU_LISTS; i++)
4159 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
4160 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
4161
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004162 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004163 {
4164 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004165 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004166 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004167 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004168 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4169 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004170 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004171
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004172 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
4173 long long val = 0;
4174
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004175 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004176 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004177 for_each_mem_cgroup_tree(mi, memcg)
4178 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
4179 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
4180 }
4181
4182 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
4183 unsigned long long val = 0;
4184
4185 for_each_mem_cgroup_tree(mi, memcg)
4186 val += mem_cgroup_read_events(mi, i);
4187 seq_printf(m, "total_%s %llu\n",
4188 mem_cgroup_events_names[i], val);
4189 }
4190
4191 for (i = 0; i < NR_LRU_LISTS; i++) {
4192 unsigned long long val = 0;
4193
4194 for_each_mem_cgroup_tree(mi, memcg)
4195 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
4196 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004197 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004198
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004199#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004200 {
4201 int nid, zid;
4202 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07004203 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004204 unsigned long recent_rotated[2] = {0, 0};
4205 unsigned long recent_scanned[2] = {0, 0};
4206
4207 for_each_online_node(nid)
4208 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004209 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07004210 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004211
Hugh Dickins89abfab2012-05-29 15:06:53 -07004212 recent_rotated[0] += rstat->recent_rotated[0];
4213 recent_rotated[1] += rstat->recent_rotated[1];
4214 recent_scanned[0] += rstat->recent_scanned[0];
4215 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004216 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004217 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
4218 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
4219 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
4220 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004221 }
4222#endif
4223
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004224 return 0;
4225}
4226
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004227static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
4228{
4229 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4230
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004231 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004232}
4233
4234static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
4235 u64 val)
4236{
4237 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4238 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08004239
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004240 if (val > 100)
4241 return -EINVAL;
4242
4243 if (cgrp->parent == NULL)
4244 return -EINVAL;
4245
4246 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08004247
4248 cgroup_lock();
4249
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004250 /* If under hierarchy, only empty-root can set this value */
4251 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08004252 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
4253 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004254 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08004255 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004256
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004257 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004258
Li Zefan068b38c2009-01-15 13:51:26 -08004259 cgroup_unlock();
4260
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004261 return 0;
4262}
4263
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004264static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4265{
4266 struct mem_cgroup_threshold_ary *t;
4267 u64 usage;
4268 int i;
4269
4270 rcu_read_lock();
4271 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004272 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004273 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004274 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004275
4276 if (!t)
4277 goto unlock;
4278
4279 usage = mem_cgroup_usage(memcg, swap);
4280
4281 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004282 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004283 * If it's not true, a threshold was crossed after last
4284 * call of __mem_cgroup_threshold().
4285 */
Phil Carmody5407a562010-05-26 14:42:42 -07004286 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004287
4288 /*
4289 * Iterate backward over array of thresholds starting from
4290 * current_threshold and check if a threshold is crossed.
4291 * If none of thresholds below usage is crossed, we read
4292 * only one element of the array here.
4293 */
4294 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4295 eventfd_signal(t->entries[i].eventfd, 1);
4296
4297 /* i = current_threshold + 1 */
4298 i++;
4299
4300 /*
4301 * Iterate forward over array of thresholds starting from
4302 * current_threshold+1 and check if a threshold is crossed.
4303 * If none of thresholds above usage is crossed, we read
4304 * only one element of the array here.
4305 */
4306 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4307 eventfd_signal(t->entries[i].eventfd, 1);
4308
4309 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004310 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004311unlock:
4312 rcu_read_unlock();
4313}
4314
4315static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4316{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004317 while (memcg) {
4318 __mem_cgroup_threshold(memcg, false);
4319 if (do_swap_account)
4320 __mem_cgroup_threshold(memcg, true);
4321
4322 memcg = parent_mem_cgroup(memcg);
4323 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004324}
4325
4326static int compare_thresholds(const void *a, const void *b)
4327{
4328 const struct mem_cgroup_threshold *_a = a;
4329 const struct mem_cgroup_threshold *_b = b;
4330
4331 return _a->threshold - _b->threshold;
4332}
4333
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004334static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004335{
4336 struct mem_cgroup_eventfd_list *ev;
4337
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004338 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004339 eventfd_signal(ev->eventfd, 1);
4340 return 0;
4341}
4342
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004343static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004344{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004345 struct mem_cgroup *iter;
4346
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004347 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004348 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004349}
4350
4351static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4352 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004353{
4354 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004355 struct mem_cgroup_thresholds *thresholds;
4356 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004357 int type = MEMFILE_TYPE(cft->private);
4358 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004359 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004360
4361 ret = res_counter_memparse_write_strategy(args, &threshold);
4362 if (ret)
4363 return ret;
4364
4365 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004366
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004367 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004368 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004369 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004370 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004371 else
4372 BUG();
4373
4374 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4375
4376 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004377 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004378 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4379
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004380 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004381
4382 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004383 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004384 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004385 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004386 ret = -ENOMEM;
4387 goto unlock;
4388 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004389 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004390
4391 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004392 if (thresholds->primary) {
4393 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004394 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004395 }
4396
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004397 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004398 new->entries[size - 1].eventfd = eventfd;
4399 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004400
4401 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004402 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004403 compare_thresholds, NULL);
4404
4405 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004406 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004407 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004408 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004409 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004410 * new->current_threshold will not be used until
4411 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004412 * it here.
4413 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004414 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004415 } else
4416 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004417 }
4418
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004419 /* Free old spare buffer and save old primary buffer as spare */
4420 kfree(thresholds->spare);
4421 thresholds->spare = thresholds->primary;
4422
4423 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004424
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004425 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004426 synchronize_rcu();
4427
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004428unlock:
4429 mutex_unlock(&memcg->thresholds_lock);
4430
4431 return ret;
4432}
4433
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004434static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004435 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004436{
4437 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004438 struct mem_cgroup_thresholds *thresholds;
4439 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004440 int type = MEMFILE_TYPE(cft->private);
4441 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004442 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004443
4444 mutex_lock(&memcg->thresholds_lock);
4445 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004446 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004447 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004448 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004449 else
4450 BUG();
4451
Anton Vorontsov371528c2012-02-24 05:14:46 +04004452 if (!thresholds->primary)
4453 goto unlock;
4454
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004455 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4456
4457 /* Check if a threshold crossed before removing */
4458 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4459
4460 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004461 size = 0;
4462 for (i = 0; i < thresholds->primary->size; i++) {
4463 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004464 size++;
4465 }
4466
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004467 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004468
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004469 /* Set thresholds array to NULL if we don't have thresholds */
4470 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004471 kfree(new);
4472 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004473 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004474 }
4475
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004476 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004477
4478 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004479 new->current_threshold = -1;
4480 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4481 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004482 continue;
4483
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004484 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004485 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004486 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004487 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004488 * until rcu_assign_pointer(), so it's safe to increment
4489 * it here.
4490 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004491 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004492 }
4493 j++;
4494 }
4495
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004496swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004497 /* Swap primary and spare array */
4498 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004499 /* If all events are unregistered, free the spare array */
4500 if (!new) {
4501 kfree(thresholds->spare);
4502 thresholds->spare = NULL;
4503 }
4504
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004505 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004506
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004507 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004508 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04004509unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004510 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004511}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004512
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004513static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4514 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4515{
4516 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4517 struct mem_cgroup_eventfd_list *event;
4518 int type = MEMFILE_TYPE(cft->private);
4519
4520 BUG_ON(type != _OOM_TYPE);
4521 event = kmalloc(sizeof(*event), GFP_KERNEL);
4522 if (!event)
4523 return -ENOMEM;
4524
Michal Hocko1af8efe2011-07-26 16:08:24 -07004525 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004526
4527 event->eventfd = eventfd;
4528 list_add(&event->list, &memcg->oom_notify);
4529
4530 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004531 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004532 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004533 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004534
4535 return 0;
4536}
4537
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004538static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004539 struct cftype *cft, struct eventfd_ctx *eventfd)
4540{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004541 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004542 struct mem_cgroup_eventfd_list *ev, *tmp;
4543 int type = MEMFILE_TYPE(cft->private);
4544
4545 BUG_ON(type != _OOM_TYPE);
4546
Michal Hocko1af8efe2011-07-26 16:08:24 -07004547 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004548
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004549 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004550 if (ev->eventfd == eventfd) {
4551 list_del(&ev->list);
4552 kfree(ev);
4553 }
4554 }
4555
Michal Hocko1af8efe2011-07-26 16:08:24 -07004556 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004557}
4558
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004559static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4560 struct cftype *cft, struct cgroup_map_cb *cb)
4561{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004562 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004563
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004564 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004565
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004566 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004567 cb->fill(cb, "under_oom", 1);
4568 else
4569 cb->fill(cb, "under_oom", 0);
4570 return 0;
4571}
4572
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004573static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4574 struct cftype *cft, u64 val)
4575{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004576 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004577 struct mem_cgroup *parent;
4578
4579 /* cannot set to root cgroup and only 0 and 1 are allowed */
4580 if (!cgrp->parent || !((val == 0) || (val == 1)))
4581 return -EINVAL;
4582
4583 parent = mem_cgroup_from_cont(cgrp->parent);
4584
4585 cgroup_lock();
4586 /* oom-kill-disable is a flag for subhierarchy. */
4587 if ((parent->use_hierarchy) ||
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004588 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004589 cgroup_unlock();
4590 return -EINVAL;
4591 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004592 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004593 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004594 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004595 cgroup_unlock();
4596 return 0;
4597}
4598
Andrew Mortonc255a452012-07-31 16:43:02 -07004599#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03004600static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004601{
Glauber Costa1d62e432012-04-09 19:36:33 -03004602 return mem_cgroup_sockets_init(memcg, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00004603};
4604
Glauber Costa1d62e432012-04-09 19:36:33 -03004605static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004606{
Glauber Costa1d62e432012-04-09 19:36:33 -03004607 mem_cgroup_sockets_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004608}
Glauber Costae5671df2011-12-11 21:47:01 +00004609#else
Glauber Costacbe128e32012-04-09 19:36:34 -03004610static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004611{
4612 return 0;
4613}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004614
Glauber Costa1d62e432012-04-09 19:36:33 -03004615static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004616{
4617}
Glauber Costae5671df2011-12-11 21:47:01 +00004618#endif
4619
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004620static struct cftype mem_cgroup_files[] = {
4621 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004622 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004623 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004624 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004625 .register_event = mem_cgroup_usage_register_event,
4626 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004627 },
4628 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004629 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004630 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004631 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004632 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004633 },
4634 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004635 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004636 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07004637 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004638 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004639 },
4640 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004641 .name = "soft_limit_in_bytes",
4642 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4643 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004644 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07004645 },
4646 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004647 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004648 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004649 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004650 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004651 },
Balbir Singh8697d332008-02-07 00:13:59 -08004652 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004653 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004654 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004655 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004656 {
4657 .name = "force_empty",
4658 .trigger = mem_cgroup_force_empty_write,
4659 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004660 {
4661 .name = "use_hierarchy",
4662 .write_u64 = mem_cgroup_hierarchy_write,
4663 .read_u64 = mem_cgroup_hierarchy_read,
4664 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004665 {
4666 .name = "swappiness",
4667 .read_u64 = mem_cgroup_swappiness_read,
4668 .write_u64 = mem_cgroup_swappiness_write,
4669 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004670 {
4671 .name = "move_charge_at_immigrate",
4672 .read_u64 = mem_cgroup_move_charge_read,
4673 .write_u64 = mem_cgroup_move_charge_write,
4674 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004675 {
4676 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004677 .read_map = mem_cgroup_oom_control_read,
4678 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004679 .register_event = mem_cgroup_oom_register_event,
4680 .unregister_event = mem_cgroup_oom_unregister_event,
4681 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4682 },
Ying Han406eb0c2011-05-26 16:25:37 -07004683#ifdef CONFIG_NUMA
4684 {
4685 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004686 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07004687 },
4688#endif
Andrew Mortonc255a452012-07-31 16:43:02 -07004689#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004690 {
4691 .name = "memsw.usage_in_bytes",
4692 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004693 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004694 .register_event = mem_cgroup_usage_register_event,
4695 .unregister_event = mem_cgroup_usage_unregister_event,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004696 },
4697 {
4698 .name = "memsw.max_usage_in_bytes",
4699 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4700 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004701 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004702 },
4703 {
4704 .name = "memsw.limit_in_bytes",
4705 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4706 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004707 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004708 },
4709 {
4710 .name = "memsw.failcnt",
4711 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4712 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004713 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004714 },
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004715#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07004716 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07004717};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004718
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004719static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004720{
4721 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004722 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004723 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004724 /*
4725 * This routine is called against possible nodes.
4726 * But it's BUG to call kmalloc() against offline node.
4727 *
4728 * TODO: this routine can waste much memory for nodes which will
4729 * never be onlined. It's better to use memory hotplug callback
4730 * function.
4731 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004732 if (!node_state(node, N_NORMAL_MEMORY))
4733 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004734 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004735 if (!pn)
4736 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004737
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004738 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4739 mz = &pn->zoneinfo[zone];
Konstantin Khlebnikov7f5e86c2012-05-29 15:06:58 -07004740 lruvec_init(&mz->lruvec, &NODE_DATA(node)->node_zones[zone]);
Balbir Singhf64c3f52009-09-23 15:56:37 -07004741 mz->usage_in_excess = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07004742 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004743 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004744 }
Igor Mammedov0a619e52011-11-02 13:38:21 -07004745 memcg->info.nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004746 return 0;
4747}
4748
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004749static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004750{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004751 kfree(memcg->info.nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004752}
4753
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004754static struct mem_cgroup *mem_cgroup_alloc(void)
4755{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004756 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004757 int size = sizeof(struct mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004758
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004759 /* Can be very big if MAX_NUMNODES is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08004760 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004761 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004762 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004763 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004764
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004765 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004766 return NULL;
4767
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004768 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
4769 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004770 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004771 spin_lock_init(&memcg->pcp_counter_lock);
4772 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004773
4774out_free:
4775 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004776 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004777 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004778 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004779 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004780}
4781
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004782/*
Glauber Costa3afe36b2012-05-29 15:07:10 -07004783 * Helpers for freeing a kmalloc()ed/vzalloc()ed mem_cgroup by RCU,
Hugh Dickins59927fb2012-03-15 15:17:07 -07004784 * but in process context. The work_freeing structure is overlaid
4785 * on the rcu_freeing structure, which itself is overlaid on memsw.
4786 */
Glauber Costa3afe36b2012-05-29 15:07:10 -07004787static void free_work(struct work_struct *work)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004788{
4789 struct mem_cgroup *memcg;
Glauber Costa3afe36b2012-05-29 15:07:10 -07004790 int size = sizeof(struct mem_cgroup);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004791
4792 memcg = container_of(work, struct mem_cgroup, work_freeing);
Glauber Costa3f134612012-05-29 15:07:11 -07004793 /*
4794 * We need to make sure that (at least for now), the jump label
4795 * destruction code runs outside of the cgroup lock. This is because
4796 * get_online_cpus(), which is called from the static_branch update,
4797 * can't be called inside the cgroup_lock. cpusets are the ones
4798 * enforcing this dependency, so if they ever change, we might as well.
4799 *
4800 * schedule_work() will guarantee this happens. Be careful if you need
4801 * to move this code around, and make sure it is outside
4802 * the cgroup_lock.
4803 */
4804 disarm_sock_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004805 if (size < PAGE_SIZE)
4806 kfree(memcg);
4807 else
4808 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004809}
Glauber Costa3afe36b2012-05-29 15:07:10 -07004810
4811static void free_rcu(struct rcu_head *rcu_head)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004812{
4813 struct mem_cgroup *memcg;
4814
4815 memcg = container_of(rcu_head, struct mem_cgroup, rcu_freeing);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004816 INIT_WORK(&memcg->work_freeing, free_work);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004817 schedule_work(&memcg->work_freeing);
4818}
4819
4820/*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004821 * At destroying mem_cgroup, references from swap_cgroup can remain.
4822 * (scanning all at force_empty is too costly...)
4823 *
4824 * Instead of clearing all references at force_empty, we remember
4825 * the number of reference from swap_cgroup and free mem_cgroup when
4826 * it goes down to 0.
4827 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004828 * Removal of cgroup itself succeeds regardless of refs from swap.
4829 */
4830
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004831static void __mem_cgroup_free(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004832{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004833 int node;
4834
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004835 mem_cgroup_remove_from_trees(memcg);
4836 free_css_id(&mem_cgroup_subsys, &memcg->css);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004837
Bob Liu3ed28fa2012-01-12 17:19:04 -08004838 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004839 free_mem_cgroup_per_zone_info(memcg, node);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004840
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004841 free_percpu(memcg->stat);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004842 call_rcu(&memcg->rcu_freeing, free_rcu);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004843}
4844
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004845static void mem_cgroup_get(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004846{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004847 atomic_inc(&memcg->refcnt);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004848}
4849
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004850static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004851{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004852 if (atomic_sub_and_test(count, &memcg->refcnt)) {
4853 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4854 __mem_cgroup_free(memcg);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004855 if (parent)
4856 mem_cgroup_put(parent);
4857 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004858}
4859
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004860static void mem_cgroup_put(struct mem_cgroup *memcg)
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004861{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004862 __mem_cgroup_put(memcg, 1);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004863}
4864
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004865/*
4866 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4867 */
Glauber Costae1aab162011-12-11 21:47:03 +00004868struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004869{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004870 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004871 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004872 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004873}
Glauber Costae1aab162011-12-11 21:47:03 +00004874EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004875
Andrew Mortonc255a452012-07-31 16:43:02 -07004876#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004877static void __init enable_swap_cgroup(void)
4878{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004879 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004880 do_swap_account = 1;
4881}
4882#else
4883static void __init enable_swap_cgroup(void)
4884{
4885}
4886#endif
4887
Balbir Singhf64c3f52009-09-23 15:56:37 -07004888static int mem_cgroup_soft_limit_tree_init(void)
4889{
4890 struct mem_cgroup_tree_per_node *rtpn;
4891 struct mem_cgroup_tree_per_zone *rtpz;
4892 int tmp, node, zone;
4893
Bob Liu3ed28fa2012-01-12 17:19:04 -08004894 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -07004895 tmp = node;
4896 if (!node_state(node, N_NORMAL_MEMORY))
4897 tmp = -1;
4898 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
4899 if (!rtpn)
Michal Hockoc3cecc62012-01-12 17:18:50 -08004900 goto err_cleanup;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004901
4902 soft_limit_tree.rb_tree_per_node[node] = rtpn;
4903
4904 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4905 rtpz = &rtpn->rb_tree_per_zone[zone];
4906 rtpz->rb_root = RB_ROOT;
4907 spin_lock_init(&rtpz->lock);
4908 }
4909 }
4910 return 0;
Michal Hockoc3cecc62012-01-12 17:18:50 -08004911
4912err_cleanup:
Bob Liu3ed28fa2012-01-12 17:19:04 -08004913 for_each_node(node) {
Michal Hockoc3cecc62012-01-12 17:18:50 -08004914 if (!soft_limit_tree.rb_tree_per_node[node])
4915 break;
4916 kfree(soft_limit_tree.rb_tree_per_node[node]);
4917 soft_limit_tree.rb_tree_per_node[node] = NULL;
4918 }
4919 return 1;
4920
Balbir Singhf64c3f52009-09-23 15:56:37 -07004921}
4922
Li Zefan0eb253e2009-01-15 13:51:25 -08004923static struct cgroup_subsys_state * __ref
Li Zefan761b3ef2012-01-31 13:47:36 +08004924mem_cgroup_create(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004925{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004926 struct mem_cgroup *memcg, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004927 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004928 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004929
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004930 memcg = mem_cgroup_alloc();
4931 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004932 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004933
Bob Liu3ed28fa2012-01-12 17:19:04 -08004934 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004935 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004936 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004937
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004938 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004939 if (cont->parent == NULL) {
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004940 int cpu;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004941 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004942 parent = NULL;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004943 if (mem_cgroup_soft_limit_tree_init())
4944 goto free_out;
Hillf Dantona41c58a2011-12-19 17:11:57 -08004945 root_mem_cgroup = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004946 for_each_possible_cpu(cpu) {
4947 struct memcg_stock_pcp *stock =
4948 &per_cpu(memcg_stock, cpu);
4949 INIT_WORK(&stock->work, drain_local_stock);
4950 }
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07004951 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004952 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004953 parent = mem_cgroup_from_cont(cont->parent);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004954 memcg->use_hierarchy = parent->use_hierarchy;
4955 memcg->oom_kill_disable = parent->oom_kill_disable;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004956 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004957
Balbir Singh18f59ea2009-01-07 18:08:07 -08004958 if (parent && parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004959 res_counter_init(&memcg->res, &parent->res);
4960 res_counter_init(&memcg->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004961 /*
4962 * We increment refcnt of the parent to ensure that we can
4963 * safely access it on res_counter_charge/uncharge.
4964 * This refcnt will be decremented when freeing this
4965 * mem_cgroup(see mem_cgroup_put).
4966 */
4967 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004968 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004969 res_counter_init(&memcg->res, NULL);
4970 res_counter_init(&memcg->memsw, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004971 /*
4972 * Deeper hierachy with use_hierarchy == false doesn't make
4973 * much sense so let cgroup subsystem know about this
4974 * unfortunate state in our controller.
4975 */
4976 if (parent && parent != root_mem_cgroup)
4977 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004978 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004979 memcg->last_scanned_node = MAX_NUMNODES;
4980 INIT_LIST_HEAD(&memcg->oom_notify);
Balbir Singh6d61ef42009-01-07 18:08:06 -08004981
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004982 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004983 memcg->swappiness = mem_cgroup_swappiness(parent);
4984 atomic_set(&memcg->refcnt, 1);
4985 memcg->move_charge_at_immigrate = 0;
4986 mutex_init(&memcg->thresholds_lock);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07004987 spin_lock_init(&memcg->move_lock);
Glauber Costacbe128e32012-04-09 19:36:34 -03004988
4989 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
4990 if (error) {
4991 /*
4992 * We call put now because our (and parent's) refcnts
4993 * are already in place. mem_cgroup_put() will internally
4994 * call __mem_cgroup_free, so return directly
4995 */
4996 mem_cgroup_put(memcg);
4997 return ERR_PTR(error);
4998 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004999 return &memcg->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005000free_out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005001 __mem_cgroup_free(memcg);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005002 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005003}
5004
Li Zefan761b3ef2012-01-31 13:47:36 +08005005static int mem_cgroup_pre_destroy(struct cgroup *cont)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005006{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005007 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005008
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005009 return mem_cgroup_force_empty(memcg, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005010}
5011
Li Zefan761b3ef2012-01-31 13:47:36 +08005012static void mem_cgroup_destroy(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005013{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005014 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005015
Glauber Costa1d62e432012-04-09 19:36:33 -03005016 kmem_cgroup_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005017
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005018 mem_cgroup_put(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005019}
5020
Daisuke Nishimura02491442010-03-10 15:22:17 -08005021#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005022/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005023#define PRECHARGE_COUNT_AT_ONCE 256
5024static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005025{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005026 int ret = 0;
5027 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005028 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005029
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005030 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005031 mc.precharge += count;
5032 /* we don't need css_get for root */
5033 return ret;
5034 }
5035 /* try to charge at once */
5036 if (count > 1) {
5037 struct res_counter *dummy;
5038 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005039 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005040 * by cgroup_lock_live_cgroup() that it is not removed and we
5041 * are still under the same cgroup_mutex. So we can postpone
5042 * css_get().
5043 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005044 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005045 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005046 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005047 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005048 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005049 goto one_by_one;
5050 }
5051 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005052 return ret;
5053 }
5054one_by_one:
5055 /* fall back to one by one charge */
5056 while (count--) {
5057 if (signal_pending(current)) {
5058 ret = -EINTR;
5059 break;
5060 }
5061 if (!batch_count--) {
5062 batch_count = PRECHARGE_COUNT_AT_ONCE;
5063 cond_resched();
5064 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005065 ret = __mem_cgroup_try_charge(NULL,
5066 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005067 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005068 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005069 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005070 mc.precharge++;
5071 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005072 return ret;
5073}
5074
5075/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005076 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005077 * @vma: the vma the pte to be checked belongs
5078 * @addr: the address corresponding to the pte to be checked
5079 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005080 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005081 *
5082 * Returns
5083 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5084 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5085 * move charge. if @target is not NULL, the page is stored in target->page
5086 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005087 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5088 * target for charge migration. if @target is not NULL, the entry is stored
5089 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005090 *
5091 * Called with pte lock held.
5092 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005093union mc_target {
5094 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005095 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005096};
5097
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005098enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005099 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005100 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005101 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005102};
5103
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005104static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5105 unsigned long addr, pte_t ptent)
5106{
5107 struct page *page = vm_normal_page(vma, addr, ptent);
5108
5109 if (!page || !page_mapped(page))
5110 return NULL;
5111 if (PageAnon(page)) {
5112 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005113 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005114 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005115 } else if (!move_file())
5116 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005117 return NULL;
5118 if (!get_page_unless_zero(page))
5119 return NULL;
5120
5121 return page;
5122}
5123
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005124#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005125static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5126 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5127{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005128 struct page *page = NULL;
5129 swp_entry_t ent = pte_to_swp_entry(ptent);
5130
5131 if (!move_anon() || non_swap_entry(ent))
5132 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005133 /*
5134 * Because lookup_swap_cache() updates some statistics counter,
5135 * we call find_get_page() with swapper_space directly.
5136 */
5137 page = find_get_page(&swapper_space, ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005138 if (do_swap_account)
5139 entry->val = ent.val;
5140
5141 return page;
5142}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005143#else
5144static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5145 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5146{
5147 return NULL;
5148}
5149#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005150
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005151static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5152 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5153{
5154 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005155 struct address_space *mapping;
5156 pgoff_t pgoff;
5157
5158 if (!vma->vm_file) /* anonymous vma */
5159 return NULL;
5160 if (!move_file())
5161 return NULL;
5162
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005163 mapping = vma->vm_file->f_mapping;
5164 if (pte_none(ptent))
5165 pgoff = linear_page_index(vma, addr);
5166 else /* pte_file(ptent) is true */
5167 pgoff = pte_to_pgoff(ptent);
5168
5169 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005170 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005171
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005172#ifdef CONFIG_SWAP
5173 /* shmem/tmpfs may report page out on swap: account for that too. */
5174 if (radix_tree_exceptional_entry(page)) {
5175 swp_entry_t swap = radix_to_swp_entry(page);
5176 if (do_swap_account)
5177 *entry = swap;
5178 page = find_get_page(&swapper_space, swap.val);
5179 }
5180#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005181 return page;
5182}
5183
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005184static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005185 unsigned long addr, pte_t ptent, union mc_target *target)
5186{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005187 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005188 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005189 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005190 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005191
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005192 if (pte_present(ptent))
5193 page = mc_handle_present_pte(vma, addr, ptent);
5194 else if (is_swap_pte(ptent))
5195 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005196 else if (pte_none(ptent) || pte_file(ptent))
5197 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005198
5199 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005200 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005201 if (page) {
5202 pc = lookup_page_cgroup(page);
5203 /*
5204 * Do only loose check w/o page_cgroup lock.
5205 * mem_cgroup_move_account() checks the pc is valid or not under
5206 * the lock.
5207 */
5208 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5209 ret = MC_TARGET_PAGE;
5210 if (target)
5211 target->page = page;
5212 }
5213 if (!ret || !target)
5214 put_page(page);
5215 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005216 /* There is a swap entry and a page doesn't exist or isn't charged */
5217 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08005218 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005219 ret = MC_TARGET_SWAP;
5220 if (target)
5221 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005222 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005223 return ret;
5224}
5225
Naoya Horiguchi12724852012-03-21 16:34:28 -07005226#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5227/*
5228 * We don't consider swapping or file mapped pages because THP does not
5229 * support them for now.
5230 * Caller should make sure that pmd_trans_huge(pmd) is true.
5231 */
5232static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5233 unsigned long addr, pmd_t pmd, union mc_target *target)
5234{
5235 struct page *page = NULL;
5236 struct page_cgroup *pc;
5237 enum mc_target_type ret = MC_TARGET_NONE;
5238
5239 page = pmd_page(pmd);
5240 VM_BUG_ON(!page || !PageHead(page));
5241 if (!move_anon())
5242 return ret;
5243 pc = lookup_page_cgroup(page);
5244 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5245 ret = MC_TARGET_PAGE;
5246 if (target) {
5247 get_page(page);
5248 target->page = page;
5249 }
5250 }
5251 return ret;
5252}
5253#else
5254static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5255 unsigned long addr, pmd_t pmd, union mc_target *target)
5256{
5257 return MC_TARGET_NONE;
5258}
5259#endif
5260
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005261static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5262 unsigned long addr, unsigned long end,
5263 struct mm_walk *walk)
5264{
5265 struct vm_area_struct *vma = walk->private;
5266 pte_t *pte;
5267 spinlock_t *ptl;
5268
Naoya Horiguchi12724852012-03-21 16:34:28 -07005269 if (pmd_trans_huge_lock(pmd, vma) == 1) {
5270 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5271 mc.precharge += HPAGE_PMD_NR;
5272 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005273 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005274 }
Dave Hansen03319322011-03-22 16:32:56 -07005275
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005276 if (pmd_trans_unstable(pmd))
5277 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005278 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5279 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005280 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005281 mc.precharge++; /* increment precharge temporarily */
5282 pte_unmap_unlock(pte - 1, ptl);
5283 cond_resched();
5284
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005285 return 0;
5286}
5287
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005288static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5289{
5290 unsigned long precharge;
5291 struct vm_area_struct *vma;
5292
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005293 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005294 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5295 struct mm_walk mem_cgroup_count_precharge_walk = {
5296 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5297 .mm = mm,
5298 .private = vma,
5299 };
5300 if (is_vm_hugetlb_page(vma))
5301 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005302 walk_page_range(vma->vm_start, vma->vm_end,
5303 &mem_cgroup_count_precharge_walk);
5304 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005305 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005306
5307 precharge = mc.precharge;
5308 mc.precharge = 0;
5309
5310 return precharge;
5311}
5312
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005313static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5314{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005315 unsigned long precharge = mem_cgroup_count_precharge(mm);
5316
5317 VM_BUG_ON(mc.moving_task);
5318 mc.moving_task = current;
5319 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005320}
5321
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005322/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5323static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005324{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005325 struct mem_cgroup *from = mc.from;
5326 struct mem_cgroup *to = mc.to;
5327
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005328 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005329 if (mc.precharge) {
5330 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
5331 mc.precharge = 0;
5332 }
5333 /*
5334 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5335 * we must uncharge here.
5336 */
5337 if (mc.moved_charge) {
5338 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
5339 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005340 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005341 /* we must fixup refcnts and charges */
5342 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005343 /* uncharge swap account from the old cgroup */
5344 if (!mem_cgroup_is_root(mc.from))
5345 res_counter_uncharge(&mc.from->memsw,
5346 PAGE_SIZE * mc.moved_swap);
5347 __mem_cgroup_put(mc.from, mc.moved_swap);
5348
5349 if (!mem_cgroup_is_root(mc.to)) {
5350 /*
5351 * we charged both to->res and to->memsw, so we should
5352 * uncharge to->res.
5353 */
5354 res_counter_uncharge(&mc.to->res,
5355 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005356 }
5357 /* we've already done mem_cgroup_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005358 mc.moved_swap = 0;
5359 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005360 memcg_oom_recover(from);
5361 memcg_oom_recover(to);
5362 wake_up_all(&mc.waitq);
5363}
5364
5365static void mem_cgroup_clear_mc(void)
5366{
5367 struct mem_cgroup *from = mc.from;
5368
5369 /*
5370 * we must clear moving_task before waking up waiters at the end of
5371 * task migration.
5372 */
5373 mc.moving_task = NULL;
5374 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005375 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005376 mc.from = NULL;
5377 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005378 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005379 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005380}
5381
Li Zefan761b3ef2012-01-31 13:47:36 +08005382static int mem_cgroup_can_attach(struct cgroup *cgroup,
5383 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005384{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005385 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005386 int ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005387 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005388
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005389 if (memcg->move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005390 struct mm_struct *mm;
5391 struct mem_cgroup *from = mem_cgroup_from_task(p);
5392
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005393 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005394
5395 mm = get_task_mm(p);
5396 if (!mm)
5397 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005398 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005399 if (mm->owner == p) {
5400 VM_BUG_ON(mc.from);
5401 VM_BUG_ON(mc.to);
5402 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005403 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005404 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005405 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005406 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005407 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005408 mc.to = memcg;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005409 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005410 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005411
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005412 ret = mem_cgroup_precharge_mc(mm);
5413 if (ret)
5414 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005415 }
5416 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005417 }
5418 return ret;
5419}
5420
Li Zefan761b3ef2012-01-31 13:47:36 +08005421static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5422 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005423{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005424 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005425}
5426
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005427static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5428 unsigned long addr, unsigned long end,
5429 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005430{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005431 int ret = 0;
5432 struct vm_area_struct *vma = walk->private;
5433 pte_t *pte;
5434 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005435 enum mc_target_type target_type;
5436 union mc_target target;
5437 struct page *page;
5438 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005439
Naoya Horiguchi12724852012-03-21 16:34:28 -07005440 /*
5441 * We don't take compound_lock() here but no race with splitting thp
5442 * happens because:
5443 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
5444 * under splitting, which means there's no concurrent thp split,
5445 * - if another thread runs into split_huge_page() just after we
5446 * entered this if-block, the thread must wait for page table lock
5447 * to be unlocked in __split_huge_page_splitting(), where the main
5448 * part of thp split is not executed yet.
5449 */
5450 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07005451 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005452 spin_unlock(&vma->vm_mm->page_table_lock);
5453 return 0;
5454 }
5455 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5456 if (target_type == MC_TARGET_PAGE) {
5457 page = target.page;
5458 if (!isolate_lru_page(page)) {
5459 pc = lookup_page_cgroup(page);
5460 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005461 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005462 mc.precharge -= HPAGE_PMD_NR;
5463 mc.moved_charge += HPAGE_PMD_NR;
5464 }
5465 putback_lru_page(page);
5466 }
5467 put_page(page);
5468 }
5469 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005470 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005471 }
5472
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005473 if (pmd_trans_unstable(pmd))
5474 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005475retry:
5476 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5477 for (; addr != end; addr += PAGE_SIZE) {
5478 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08005479 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005480
5481 if (!mc.precharge)
5482 break;
5483
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005484 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005485 case MC_TARGET_PAGE:
5486 page = target.page;
5487 if (isolate_lru_page(page))
5488 goto put;
5489 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07005490 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005491 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005492 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005493 /* we uncharge from mc.from later. */
5494 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005495 }
5496 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005497put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005498 put_page(page);
5499 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005500 case MC_TARGET_SWAP:
5501 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07005502 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005503 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005504 /* we fixup refcnts and charges later. */
5505 mc.moved_swap++;
5506 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08005507 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005508 default:
5509 break;
5510 }
5511 }
5512 pte_unmap_unlock(pte - 1, ptl);
5513 cond_resched();
5514
5515 if (addr != end) {
5516 /*
5517 * We have consumed all precharges we got in can_attach().
5518 * We try charge one by one, but don't do any additional
5519 * charges to mc.to if we have failed in charge once in attach()
5520 * phase.
5521 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005522 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005523 if (!ret)
5524 goto retry;
5525 }
5526
5527 return ret;
5528}
5529
5530static void mem_cgroup_move_charge(struct mm_struct *mm)
5531{
5532 struct vm_area_struct *vma;
5533
5534 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005535retry:
5536 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5537 /*
5538 * Someone who are holding the mmap_sem might be waiting in
5539 * waitq. So we cancel all extra charges, wake up all waiters,
5540 * and retry. Because we cancel precharges, we might not be able
5541 * to move enough charges, but moving charge is a best-effort
5542 * feature anyway, so it wouldn't be a big problem.
5543 */
5544 __mem_cgroup_clear_mc();
5545 cond_resched();
5546 goto retry;
5547 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005548 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5549 int ret;
5550 struct mm_walk mem_cgroup_move_charge_walk = {
5551 .pmd_entry = mem_cgroup_move_charge_pte_range,
5552 .mm = mm,
5553 .private = vma,
5554 };
5555 if (is_vm_hugetlb_page(vma))
5556 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005557 ret = walk_page_range(vma->vm_start, vma->vm_end,
5558 &mem_cgroup_move_charge_walk);
5559 if (ret)
5560 /*
5561 * means we have consumed all precharges and failed in
5562 * doing additional charge. Just abandon here.
5563 */
5564 break;
5565 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005566 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005567}
5568
Li Zefan761b3ef2012-01-31 13:47:36 +08005569static void mem_cgroup_move_task(struct cgroup *cont,
5570 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08005571{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005572 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005573 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005574
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005575 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005576 if (mc.to)
5577 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005578 mmput(mm);
5579 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005580 if (mc.to)
5581 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005582}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005583#else /* !CONFIG_MMU */
Li Zefan761b3ef2012-01-31 13:47:36 +08005584static int mem_cgroup_can_attach(struct cgroup *cgroup,
5585 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005586{
5587 return 0;
5588}
Li Zefan761b3ef2012-01-31 13:47:36 +08005589static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5590 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005591{
5592}
Li Zefan761b3ef2012-01-31 13:47:36 +08005593static void mem_cgroup_move_task(struct cgroup *cont,
5594 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005595{
5596}
5597#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005598
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005599struct cgroup_subsys mem_cgroup_subsys = {
5600 .name = "memory",
5601 .subsys_id = mem_cgroup_subsys_id,
5602 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005603 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005604 .destroy = mem_cgroup_destroy,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005605 .can_attach = mem_cgroup_can_attach,
5606 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005607 .attach = mem_cgroup_move_task,
Tejun Heo6bc10342012-04-01 12:09:55 -07005608 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005609 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005610 .use_id = 1,
Tejun Heo48ddbe12012-04-01 12:09:56 -07005611 .__DEPRECATED_clear_css_refs = true,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005612};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005613
Andrew Mortonc255a452012-07-31 16:43:02 -07005614#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08005615static int __init enable_swap_account(char *s)
5616{
5617 /* consider enabled if no parameter or 1 is given */
Michal Hockoa2c89902011-05-24 17:12:50 -07005618 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005619 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07005620 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005621 really_do_swap_account = 0;
5622 return 1;
5623}
Michal Hockoa2c89902011-05-24 17:12:50 -07005624__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005625
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005626#endif