blob: dd39ba000b31f98730c6fd6d22bdf695ced3bedf [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08009 * Memory thresholds
10 * Copyright (C) 2009 Nokia Corporation
11 * Author: Kirill A. Shutemov
12 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -080013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 */
23
24#include <linux/res_counter.h>
25#include <linux/memcontrol.h>
26#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080027#include <linux/mm.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080028#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080029#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080030#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080031#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080032#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080033#include <linux/bit_spinlock.h>
34#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070035#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040036#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080037#include <linux/mutex.h>
Balbir Singhf64c3f52009-09-23 15:56:37 -070038#include <linux/rbtree.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070039#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080040#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080041#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080042#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080043#include <linux/eventfd.h>
44#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080045#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080046#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070047#include <linux/vmalloc.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070048#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070049#include <linux/page_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080050#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070051#include <linux/oom.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080052#include "internal.h"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000053#include <net/sock.h>
Michal Hocko4bd2c1e2012-10-08 16:33:10 -070054#include <net/ip.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +000055#include <net/tcp_memcontrol.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080056
Balbir Singh8697d332008-02-07 00:13:59 -080057#include <asm/uaccess.h>
58
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070059#include <trace/events/vmscan.h>
60
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070061struct cgroup_subsys mem_cgroup_subsys __read_mostly;
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070062#define MEM_CGROUP_RECLAIM_RETRIES 5
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -070063static struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080064
Andrew Mortonc255a452012-07-31 16:43:02 -070065#ifdef CONFIG_MEMCG_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070066/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080067int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080068
69/* for remember boot option*/
Andrew Mortonc255a452012-07-31 16:43:02 -070070#ifdef CONFIG_MEMCG_SWAP_ENABLED
Michal Hockoa42c3902010-11-24 12:57:08 -080071static int really_do_swap_account __initdata = 1;
72#else
73static int really_do_swap_account __initdata = 0;
74#endif
75
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080076#else
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -070077#define do_swap_account 0
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080078#endif
79
80
Balbir Singh8cdea7c2008-02-07 00:13:50 -080081/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080082 * Statistics for memory cgroup.
83 */
84enum mem_cgroup_stat_index {
85 /*
86 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
87 */
88 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
Balbir Singhd69b0422009-06-17 16:26:34 -070089 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -080090 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -070091 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080092 MEM_CGROUP_STAT_NSTATS,
93};
94
Johannes Weineraf7c4b02012-05-29 15:07:08 -070095static const char * const mem_cgroup_stat_names[] = {
96 "cache",
97 "rss",
98 "mapped_file",
99 "swap",
100};
101
Johannes Weinere9f89742011-03-23 16:42:37 -0700102enum mem_cgroup_events_index {
103 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
104 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -0700105 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
106 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700107 MEM_CGROUP_EVENTS_NSTATS,
108};
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700109
110static const char * const mem_cgroup_events_names[] = {
111 "pgpgin",
112 "pgpgout",
113 "pgfault",
114 "pgmajfault",
115};
116
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700117/*
118 * Per memcg event counter is incremented at every pagein/pageout. With THP,
119 * it will be incremated by the number of pages. This counter is used for
120 * for trigger some periodic events. This is straightforward and better
121 * than using jiffies etc. to handle periodic memcg event.
122 */
123enum mem_cgroup_events_target {
124 MEM_CGROUP_TARGET_THRESH,
125 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700126 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700127 MEM_CGROUP_NTARGETS,
128};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700129#define THRESHOLDS_EVENTS_TARGET 128
130#define SOFTLIMIT_EVENTS_TARGET 1024
131#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700132
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800133struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700134 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700135 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700136 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700137 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800138};
139
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800140struct mem_cgroup_reclaim_iter {
141 /* css_id of the last scanned hierarchy member */
142 int position;
143 /* scan generation, increased every round-trip */
144 unsigned int generation;
145};
146
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800147/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800148 * per-zone information in memory controller.
149 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800150struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800151 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700152 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800153
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800154 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
155
Balbir Singhf64c3f52009-09-23 15:56:37 -0700156 struct rb_node tree_node; /* RB tree node */
157 unsigned long long usage_in_excess;/* Set to the value by which */
158 /* the soft limit is exceeded*/
159 bool on_tree;
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700160 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700161 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800162};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800163
164struct mem_cgroup_per_node {
165 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
166};
167
168struct mem_cgroup_lru_info {
169 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
170};
171
172/*
Balbir Singhf64c3f52009-09-23 15:56:37 -0700173 * Cgroups above their limits are maintained in a RB-Tree, independent of
174 * their hierarchy representation
175 */
176
177struct mem_cgroup_tree_per_zone {
178 struct rb_root rb_root;
179 spinlock_t lock;
180};
181
182struct mem_cgroup_tree_per_node {
183 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
184};
185
186struct mem_cgroup_tree {
187 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
188};
189
190static struct mem_cgroup_tree soft_limit_tree __read_mostly;
191
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800192struct mem_cgroup_threshold {
193 struct eventfd_ctx *eventfd;
194 u64 threshold;
195};
196
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700197/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800198struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700199 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700200 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800201 /* Size of entries[] */
202 unsigned int size;
203 /* Array of thresholds */
204 struct mem_cgroup_threshold entries[0];
205};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700206
207struct mem_cgroup_thresholds {
208 /* Primary thresholds array */
209 struct mem_cgroup_threshold_ary *primary;
210 /*
211 * Spare threshold array.
212 * This is needed to make mem_cgroup_unregister_event() "never fail".
213 * It must be able to store at least primary->size - 1 entries.
214 */
215 struct mem_cgroup_threshold_ary *spare;
216};
217
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700218/* for OOM */
219struct mem_cgroup_eventfd_list {
220 struct list_head list;
221 struct eventfd_ctx *eventfd;
222};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800223
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700224static void mem_cgroup_threshold(struct mem_cgroup *memcg);
225static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800226
Balbir Singhf64c3f52009-09-23 15:56:37 -0700227/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800228 * The memory controller data structure. The memory controller controls both
229 * page cache and RSS per cgroup. We would eventually like to provide
230 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
231 * to help the administrator determine what knobs to tune.
232 *
233 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800234 * we hit the water mark. May be even add a low water mark, such that
235 * no reclaim occurs from a cgroup at it's low water mark, this is
236 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800237 */
238struct mem_cgroup {
239 struct cgroup_subsys_state css;
240 /*
241 * the counter to account for memory usage
242 */
243 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700244
245 union {
246 /*
247 * the counter to account for mem+swap usage.
248 */
249 struct res_counter memsw;
250
251 /*
252 * rcu_freeing is used only when freeing struct mem_cgroup,
253 * so put it into a union to avoid wasting more memory.
254 * It must be disjoint from the css field. It could be
255 * in a union with the res field, but res plays a much
256 * larger part in mem_cgroup life than memsw, and might
257 * be of interest, even at time of free, when debugging.
258 * So share rcu_head with the less interesting memsw.
259 */
260 struct rcu_head rcu_freeing;
261 /*
Glauber Costa3afe36b2012-05-29 15:07:10 -0700262 * We also need some space for a worker in deferred freeing.
263 * By the time we call it, rcu_freeing is no longer in use.
Hugh Dickins59927fb2012-03-15 15:17:07 -0700264 */
265 struct work_struct work_freeing;
266 };
267
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800268 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800269 * Per cgroup active and inactive list, similar to the
270 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800271 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800272 struct mem_cgroup_lru_info info;
Ying Han889976d2011-05-26 16:25:33 -0700273 int last_scanned_node;
274#if MAX_NUMNODES > 1
275 nodemask_t scan_nodes;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700276 atomic_t numainfo_events;
277 atomic_t numainfo_updating;
Ying Han889976d2011-05-26 16:25:33 -0700278#endif
Balbir Singh18f59ea2009-01-07 18:08:07 -0800279 /*
280 * Should the accounting and control be hierarchical, per subtree?
281 */
282 bool use_hierarchy;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700283
284 bool oom_lock;
285 atomic_t under_oom;
286
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800287 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800288
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700289 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700290 /* OOM-Killer disable */
291 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800292
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700293 /* set when res.limit == memsw.limit */
294 bool memsw_is_minimum;
295
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800296 /* protect arrays of thresholds */
297 struct mutex thresholds_lock;
298
299 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700300 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700301
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800302 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700303 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700304
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700305 /* For oom notifier event fd */
306 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700307
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800308 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800309 * Should we move charges of a task when a task is moved into this
310 * mem_cgroup ? And what type of charges should we move ?
311 */
312 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800313 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700314 * set > 0 if pages under this cgroup are moving to other cgroup.
315 */
316 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700317 /* taken only while moving_account > 0 */
318 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700319 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800320 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800321 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700322 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700323 /*
324 * used when a cpu is offlined or other synchronizations
325 * See mem_cgroup_read_stat().
326 */
327 struct mem_cgroup_stat_cpu nocpu_base;
328 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000329
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700330#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000331 struct tcp_memcontrol tcp_mem;
332#endif
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800333};
334
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800335/* Stuffs for move charges at task migration. */
336/*
337 * Types of charges to be moved. "move_charge_at_immitgrate" is treated as a
338 * left-shifted bitmap of these types.
339 */
340enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800341 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700342 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800343 NR_MOVE_TYPE,
344};
345
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800346/* "mc" and its members are protected by cgroup_mutex */
347static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800348 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800349 struct mem_cgroup *from;
350 struct mem_cgroup *to;
351 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800352 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800353 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800354 struct task_struct *moving_task; /* a task moving charges */
355 wait_queue_head_t waitq; /* a waitq for other context */
356} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700357 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800358 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
359};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800360
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700361static bool move_anon(void)
362{
363 return test_bit(MOVE_CHARGE_TYPE_ANON,
364 &mc.to->move_charge_at_immigrate);
365}
366
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700367static bool move_file(void)
368{
369 return test_bit(MOVE_CHARGE_TYPE_FILE,
370 &mc.to->move_charge_at_immigrate);
371}
372
Balbir Singh4e416952009-09-23 15:56:39 -0700373/*
374 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
375 * limit reclaim to prevent infinite loops, if they ever occur.
376 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700377#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
378#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700379
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800380enum charge_type {
381 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700382 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800383 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700384 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700385 NR_CHARGE_TYPE,
386};
387
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800388/* for encoding cft->private value on file */
Glauber Costa65c64ce2011-12-22 01:02:27 +0000389#define _MEM (0)
390#define _MEMSWAP (1)
391#define _OOM_TYPE (2)
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700392#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
393#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800394#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700395/* Used for OOM nofiier */
396#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800397
Balbir Singh75822b42009-09-23 15:56:38 -0700398/*
399 * Reclaim flags for mem_cgroup_hierarchical_reclaim
400 */
401#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
402#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
403#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
404#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
405
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700406static void mem_cgroup_get(struct mem_cgroup *memcg);
407static void mem_cgroup_put(struct mem_cgroup *memcg);
Glauber Costae1aab162011-12-11 21:47:03 +0000408
Wanpeng Lib2145142012-07-31 16:46:01 -0700409static inline
410struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
411{
412 return container_of(s, struct mem_cgroup, css);
413}
414
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700415static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
416{
417 return (memcg == root_mem_cgroup);
418}
419
Glauber Costae1aab162011-12-11 21:47:03 +0000420/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700421#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000422
Glauber Costae1aab162011-12-11 21:47:03 +0000423void sock_update_memcg(struct sock *sk)
424{
Glauber Costa376be5f2012-01-20 04:57:14 +0000425 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000426 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700427 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000428
429 BUG_ON(!sk->sk_prot->proto_cgroup);
430
Glauber Costaf3f511e2012-01-05 20:16:39 +0000431 /* Socket cloning can throw us here with sk_cgrp already
432 * filled. It won't however, necessarily happen from
433 * process context. So the test for root memcg given
434 * the current task's memcg won't help us in this case.
435 *
436 * Respecting the original socket's memcg is a better
437 * decision in this case.
438 */
439 if (sk->sk_cgrp) {
440 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
441 mem_cgroup_get(sk->sk_cgrp->memcg);
442 return;
443 }
444
Glauber Costae1aab162011-12-11 21:47:03 +0000445 rcu_read_lock();
446 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700447 cg_proto = sk->sk_prot->proto_cgroup(memcg);
448 if (!mem_cgroup_is_root(memcg) && memcg_proto_active(cg_proto)) {
Glauber Costae1aab162011-12-11 21:47:03 +0000449 mem_cgroup_get(memcg);
Glauber Costa3f134612012-05-29 15:07:11 -0700450 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000451 }
452 rcu_read_unlock();
453 }
454}
455EXPORT_SYMBOL(sock_update_memcg);
456
457void sock_release_memcg(struct sock *sk)
458{
Glauber Costa376be5f2012-01-20 04:57:14 +0000459 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000460 struct mem_cgroup *memcg;
461 WARN_ON(!sk->sk_cgrp->memcg);
462 memcg = sk->sk_cgrp->memcg;
463 mem_cgroup_put(memcg);
464 }
465}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000466
467struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
468{
469 if (!memcg || mem_cgroup_is_root(memcg))
470 return NULL;
471
472 return &memcg->tcp_mem.cg_proto;
473}
474EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000475
Glauber Costa3f134612012-05-29 15:07:11 -0700476static void disarm_sock_keys(struct mem_cgroup *memcg)
477{
478 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
479 return;
480 static_key_slow_dec(&memcg_socket_limit_enabled);
481}
482#else
483static void disarm_sock_keys(struct mem_cgroup *memcg)
484{
485}
486#endif
487
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700488static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800489
Balbir Singhf64c3f52009-09-23 15:56:37 -0700490static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700491mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700492{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700493 return &memcg->info.nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700494}
495
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700496struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100497{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700498 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100499}
500
Balbir Singhf64c3f52009-09-23 15:56:37 -0700501static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700502page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700503{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700504 int nid = page_to_nid(page);
505 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700506
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700507 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700508}
509
510static struct mem_cgroup_tree_per_zone *
511soft_limit_tree_node_zone(int nid, int zid)
512{
513 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
514}
515
516static struct mem_cgroup_tree_per_zone *
517soft_limit_tree_from_page(struct page *page)
518{
519 int nid = page_to_nid(page);
520 int zid = page_zonenum(page);
521
522 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
523}
524
525static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700526__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700527 struct mem_cgroup_per_zone *mz,
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700528 struct mem_cgroup_tree_per_zone *mctz,
529 unsigned long long new_usage_in_excess)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700530{
531 struct rb_node **p = &mctz->rb_root.rb_node;
532 struct rb_node *parent = NULL;
533 struct mem_cgroup_per_zone *mz_node;
534
535 if (mz->on_tree)
536 return;
537
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700538 mz->usage_in_excess = new_usage_in_excess;
539 if (!mz->usage_in_excess)
540 return;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700541 while (*p) {
542 parent = *p;
543 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
544 tree_node);
545 if (mz->usage_in_excess < mz_node->usage_in_excess)
546 p = &(*p)->rb_left;
547 /*
548 * We can't avoid mem cgroups that are over their soft
549 * limit by the same amount
550 */
551 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
552 p = &(*p)->rb_right;
553 }
554 rb_link_node(&mz->tree_node, parent, p);
555 rb_insert_color(&mz->tree_node, &mctz->rb_root);
556 mz->on_tree = true;
Balbir Singh4e416952009-09-23 15:56:39 -0700557}
558
559static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700560__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -0700561 struct mem_cgroup_per_zone *mz,
562 struct mem_cgroup_tree_per_zone *mctz)
563{
564 if (!mz->on_tree)
565 return;
566 rb_erase(&mz->tree_node, &mctz->rb_root);
567 mz->on_tree = false;
568}
569
570static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700571mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700572 struct mem_cgroup_per_zone *mz,
573 struct mem_cgroup_tree_per_zone *mctz)
574{
575 spin_lock(&mctz->lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700576 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700577 spin_unlock(&mctz->lock);
578}
579
Balbir Singhf64c3f52009-09-23 15:56:37 -0700580
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700581static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700582{
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700583 unsigned long long excess;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700584 struct mem_cgroup_per_zone *mz;
585 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700586 int nid = page_to_nid(page);
587 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700588 mctz = soft_limit_tree_from_page(page);
589
590 /*
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700591 * Necessary to update all ancestors when hierarchy is used.
592 * because their event counter is not touched.
Balbir Singhf64c3f52009-09-23 15:56:37 -0700593 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700594 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
595 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
596 excess = res_counter_soft_limit_excess(&memcg->res);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700597 /*
598 * We have to update the tree if mz is on RB-tree or
599 * mem is over its softlimit.
600 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700601 if (excess || mz->on_tree) {
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700602 spin_lock(&mctz->lock);
603 /* if on-tree, remove it */
604 if (mz->on_tree)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700605 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700606 /*
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700607 * Insert again. mz->usage_in_excess will be updated.
608 * If excess is 0, no tree ops.
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700609 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700610 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700611 spin_unlock(&mctz->lock);
612 }
Balbir Singhf64c3f52009-09-23 15:56:37 -0700613 }
614}
615
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700616static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700617{
618 int node, zone;
619 struct mem_cgroup_per_zone *mz;
620 struct mem_cgroup_tree_per_zone *mctz;
621
Bob Liu3ed28fa2012-01-12 17:19:04 -0800622 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -0700623 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700624 mz = mem_cgroup_zoneinfo(memcg, node, zone);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700625 mctz = soft_limit_tree_node_zone(node, zone);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700626 mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700627 }
628 }
629}
630
Balbir Singh4e416952009-09-23 15:56:39 -0700631static struct mem_cgroup_per_zone *
632__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
633{
634 struct rb_node *rightmost = NULL;
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700635 struct mem_cgroup_per_zone *mz;
Balbir Singh4e416952009-09-23 15:56:39 -0700636
637retry:
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700638 mz = NULL;
Balbir Singh4e416952009-09-23 15:56:39 -0700639 rightmost = rb_last(&mctz->rb_root);
640 if (!rightmost)
641 goto done; /* Nothing to reclaim from */
642
643 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
644 /*
645 * Remove the node now but someone else can add it back,
646 * we will to add it back at the end of reclaim to its correct
647 * position in the tree.
648 */
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700649 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
650 if (!res_counter_soft_limit_excess(&mz->memcg->res) ||
651 !css_tryget(&mz->memcg->css))
Balbir Singh4e416952009-09-23 15:56:39 -0700652 goto retry;
653done:
654 return mz;
655}
656
657static struct mem_cgroup_per_zone *
658mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
659{
660 struct mem_cgroup_per_zone *mz;
661
662 spin_lock(&mctz->lock);
663 mz = __mem_cgroup_largest_soft_limit_node(mctz);
664 spin_unlock(&mctz->lock);
665 return mz;
666}
667
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700668/*
669 * Implementation Note: reading percpu statistics for memcg.
670 *
671 * Both of vmstat[] and percpu_counter has threshold and do periodic
672 * synchronization to implement "quick" read. There are trade-off between
673 * reading cost and precision of value. Then, we may have a chance to implement
674 * a periodic synchronizion of counter in memcg's counter.
675 *
676 * But this _read() function is used for user interface now. The user accounts
677 * memory usage by memory cgroup and he _always_ requires exact value because
678 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
679 * have to visit all online cpus and make sum. So, for now, unnecessary
680 * synchronization is not implemented. (just implemented for cpu hotplug)
681 *
682 * If there are kernel internal actions which can make use of some not-exact
683 * value, and reading all cpu value can be performance bottleneck in some
684 * common workload, threashold and synchonization as vmstat[] should be
685 * implemented.
686 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700687static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700688 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800689{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700690 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800691 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800692
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700693 get_online_cpus();
694 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700695 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700696#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700697 spin_lock(&memcg->pcp_counter_lock);
698 val += memcg->nocpu_base.count[idx];
699 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700700#endif
701 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800702 return val;
703}
704
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700705static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700706 bool charge)
707{
708 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700709 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700710}
711
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700712static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700713 enum mem_cgroup_events_index idx)
714{
715 unsigned long val = 0;
716 int cpu;
717
718 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700719 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700720#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700721 spin_lock(&memcg->pcp_counter_lock);
722 val += memcg->nocpu_base.events[idx];
723 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700724#endif
725 return val;
726}
727
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700728static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700729 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800730{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800731 preempt_disable();
732
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700733 /*
734 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
735 * counted as CACHE even if it's on ANON LRU.
736 */
737 if (anon)
738 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700739 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800740 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700741 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700742 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700743
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800744 /* pagein of a big page is an event. So, ignore page size */
745 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700746 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800747 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700748 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800749 nr_pages = -nr_pages; /* for event */
750 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800751
Johannes Weiner13114712012-05-29 15:07:07 -0700752 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800753
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800754 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800755}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800756
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700757unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700758mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700759{
760 struct mem_cgroup_per_zone *mz;
761
762 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
763 return mz->lru_size[lru];
764}
765
766static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700767mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700768 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700769{
770 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700771 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700772 unsigned long ret = 0;
773
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700774 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700775
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700776 for_each_lru(lru) {
777 if (BIT(lru) & lru_mask)
778 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700779 }
780 return ret;
781}
782
783static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700784mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700785 int nid, unsigned int lru_mask)
786{
Ying Han889976d2011-05-26 16:25:33 -0700787 u64 total = 0;
788 int zid;
789
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700790 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700791 total += mem_cgroup_zone_nr_lru_pages(memcg,
792 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700793
Ying Han889976d2011-05-26 16:25:33 -0700794 return total;
795}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700796
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700797static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700798 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800799{
Ying Han889976d2011-05-26 16:25:33 -0700800 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800801 u64 total = 0;
802
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700803 for_each_node_state(nid, N_HIGH_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700804 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800805 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800806}
807
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800808static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
809 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800810{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700811 unsigned long val, next;
812
Johannes Weiner13114712012-05-29 15:07:07 -0700813 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700814 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700815 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800816 if ((long)next - (long)val < 0) {
817 switch (target) {
818 case MEM_CGROUP_TARGET_THRESH:
819 next = val + THRESHOLDS_EVENTS_TARGET;
820 break;
821 case MEM_CGROUP_TARGET_SOFTLIMIT:
822 next = val + SOFTLIMIT_EVENTS_TARGET;
823 break;
824 case MEM_CGROUP_TARGET_NUMAINFO:
825 next = val + NUMAINFO_EVENTS_TARGET;
826 break;
827 default:
828 break;
829 }
830 __this_cpu_write(memcg->stat->targets[target], next);
831 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700832 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800833 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800834}
835
836/*
837 * Check events in order.
838 *
839 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700840static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800841{
Steven Rostedt47994012011-11-02 13:38:33 -0700842 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800843 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800844 if (unlikely(mem_cgroup_event_ratelimit(memcg,
845 MEM_CGROUP_TARGET_THRESH))) {
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800846 bool do_softlimit;
847 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800848
849 do_softlimit = mem_cgroup_event_ratelimit(memcg,
850 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700851#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800852 do_numainfo = mem_cgroup_event_ratelimit(memcg,
853 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700854#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800855 preempt_enable();
856
857 mem_cgroup_threshold(memcg);
858 if (unlikely(do_softlimit))
859 mem_cgroup_update_tree(memcg, page);
860#if MAX_NUMNODES > 1
861 if (unlikely(do_numainfo))
862 atomic_inc(&memcg->numainfo_events);
863#endif
864 } else
865 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800866}
867
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000868struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800869{
Wanpeng Lib2145142012-07-31 16:46:01 -0700870 return mem_cgroup_from_css(
871 cgroup_subsys_state(cont, mem_cgroup_subsys_id));
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800872}
873
Balbir Singhcf475ad2008-04-29 01:00:16 -0700874struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800875{
Balbir Singh31a78f22008-09-28 23:09:31 +0100876 /*
877 * mm_update_next_owner() may clear mm->owner to NULL
878 * if it races with swapoff, page migration, etc.
879 * So this can be called with p == NULL.
880 */
881 if (unlikely(!p))
882 return NULL;
883
Wanpeng Lib2145142012-07-31 16:46:01 -0700884 return mem_cgroup_from_css(task_subsys_state(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800885}
886
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700887struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800888{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700889 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700890
891 if (!mm)
892 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800893 /*
894 * Because we have no locks, mm->owner's may be being moved to other
895 * cgroup. We use css_tryget() here even if this looks
896 * pessimistic (rather than adding locks here).
897 */
898 rcu_read_lock();
899 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700900 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
901 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800902 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700903 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800904 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700905 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800906}
907
Johannes Weiner56600482012-01-12 17:17:59 -0800908/**
909 * mem_cgroup_iter - iterate over memory cgroup hierarchy
910 * @root: hierarchy root
911 * @prev: previously returned memcg, NULL on first invocation
912 * @reclaim: cookie for shared reclaim walks, NULL for full walks
913 *
914 * Returns references to children of the hierarchy below @root, or
915 * @root itself, or %NULL after a full round-trip.
916 *
917 * Caller must pass the return value in @prev on subsequent
918 * invocations for reference counting, or use mem_cgroup_iter_break()
919 * to cancel a hierarchy walk before the round-trip is complete.
920 *
921 * Reclaimers can specify a zone and a priority level in @reclaim to
922 * divide up the memcgs in the hierarchy among all concurrent
923 * reclaimers operating on the same zone and priority.
924 */
925struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
926 struct mem_cgroup *prev,
927 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700928{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800929 struct mem_cgroup *memcg = NULL;
930 int id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700931
Johannes Weiner56600482012-01-12 17:17:59 -0800932 if (mem_cgroup_disabled())
933 return NULL;
934
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700935 if (!root)
936 root = root_mem_cgroup;
937
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800938 if (prev && !reclaim)
939 id = css_id(&prev->css);
940
941 if (prev && prev != root)
942 css_put(&prev->css);
943
944 if (!root->use_hierarchy && root != root_mem_cgroup) {
945 if (prev)
946 return NULL;
947 return root;
948 }
949
950 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800951 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800952 struct cgroup_subsys_state *css;
953
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800954 if (reclaim) {
955 int nid = zone_to_nid(reclaim->zone);
956 int zid = zone_idx(reclaim->zone);
957 struct mem_cgroup_per_zone *mz;
958
959 mz = mem_cgroup_zoneinfo(root, nid, zid);
960 iter = &mz->reclaim_iter[reclaim->priority];
961 if (prev && reclaim->generation != iter->generation)
962 return NULL;
963 id = iter->position;
964 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800965
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700966 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800967 css = css_get_next(&mem_cgroup_subsys, id + 1, &root->css, &id);
968 if (css) {
969 if (css == &root->css || css_tryget(css))
Wanpeng Lib2145142012-07-31 16:46:01 -0700970 memcg = mem_cgroup_from_css(css);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800971 } else
972 id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700973 rcu_read_unlock();
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700974
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800975 if (reclaim) {
976 iter->position = id;
977 if (!css)
978 iter->generation++;
979 else if (!prev && memcg)
980 reclaim->generation = iter->generation;
981 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800982
983 if (prev && !css)
984 return NULL;
985 }
986 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700987}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800988
Johannes Weiner56600482012-01-12 17:17:59 -0800989/**
990 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
991 * @root: hierarchy root
992 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
993 */
994void mem_cgroup_iter_break(struct mem_cgroup *root,
995 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800996{
997 if (!root)
998 root = root_mem_cgroup;
999 if (prev && prev != root)
1000 css_put(&prev->css);
1001}
1002
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001003/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001004 * Iteration constructs for visiting all cgroups (under a tree). If
1005 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1006 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001007 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001008#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001009 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001010 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001011 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001012
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001013#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001014 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001015 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001016 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001017
Ying Han456f9982011-05-26 16:25:38 -07001018void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
1019{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001020 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001021
1022 if (!mm)
1023 return;
1024
1025 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001026 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1027 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001028 goto out;
1029
1030 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001031 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001032 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1033 break;
1034 case PGMAJFAULT:
1035 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001036 break;
1037 default:
1038 BUG();
1039 }
1040out:
1041 rcu_read_unlock();
1042}
1043EXPORT_SYMBOL(mem_cgroup_count_vm_event);
1044
Johannes Weiner925b7672012-01-12 17:18:15 -08001045/**
1046 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1047 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001048 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001049 *
1050 * Returns the lru list vector holding pages for the given @zone and
1051 * @mem. This can be the global zone lruvec, if the memory controller
1052 * is disabled.
1053 */
1054struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1055 struct mem_cgroup *memcg)
1056{
1057 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001058 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001059
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001060 if (mem_cgroup_disabled()) {
1061 lruvec = &zone->lruvec;
1062 goto out;
1063 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001064
1065 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001066 lruvec = &mz->lruvec;
1067out:
1068 /*
1069 * Since a node can be onlined after the mem_cgroup was created,
1070 * we have to be prepared to initialize lruvec->zone here;
1071 * and if offlined then reonlined, we need to reinitialize it.
1072 */
1073 if (unlikely(lruvec->zone != zone))
1074 lruvec->zone = zone;
1075 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001076}
1077
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001078/*
1079 * Following LRU functions are allowed to be used without PCG_LOCK.
1080 * Operations are called by routine of global LRU independently from memcg.
1081 * What we have to take care of here is validness of pc->mem_cgroup.
1082 *
1083 * Changes to pc->mem_cgroup happens when
1084 * 1. charge
1085 * 2. moving account
1086 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1087 * It is added to LRU before charge.
1088 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1089 * When moving account, the page is not on LRU. It's isolated.
1090 */
1091
Johannes Weiner925b7672012-01-12 17:18:15 -08001092/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001093 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001094 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001095 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001096 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001097struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001098{
1099 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001100 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001101 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001102 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001103
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001104 if (mem_cgroup_disabled()) {
1105 lruvec = &zone->lruvec;
1106 goto out;
1107 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001108
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001109 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001110 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001111
1112 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001113 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001114 * an uncharged page off lru does nothing to secure
1115 * its former mem_cgroup from sudden removal.
1116 *
1117 * Our caller holds lru_lock, and PageCgroupUsed is updated
1118 * under page_cgroup lock: between them, they make all uses
1119 * of pc->mem_cgroup safe.
1120 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001121 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001122 pc->mem_cgroup = memcg = root_mem_cgroup;
1123
Johannes Weiner925b7672012-01-12 17:18:15 -08001124 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001125 lruvec = &mz->lruvec;
1126out:
1127 /*
1128 * Since a node can be onlined after the mem_cgroup was created,
1129 * we have to be prepared to initialize lruvec->zone here;
1130 * and if offlined then reonlined, we need to reinitialize it.
1131 */
1132 if (unlikely(lruvec->zone != zone))
1133 lruvec->zone = zone;
1134 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001135}
1136
1137/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001138 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1139 * @lruvec: mem_cgroup per zone lru vector
1140 * @lru: index of lru list the page is sitting on
1141 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001142 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001143 * This function must be called when a page is added to or removed from an
1144 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001145 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001146void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1147 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001148{
1149 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001150 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001151
1152 if (mem_cgroup_disabled())
1153 return;
1154
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001155 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1156 lru_size = mz->lru_size + lru;
1157 *lru_size += nr_pages;
1158 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001159}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001160
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001161/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001162 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001163 * hierarchy subtree
1164 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001165bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1166 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001167{
Johannes Weiner91c637342012-05-29 15:06:24 -07001168 if (root_memcg == memcg)
1169 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001170 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001171 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001172 return css_is_ancestor(&memcg->css, &root_memcg->css);
1173}
1174
1175static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1176 struct mem_cgroup *memcg)
1177{
1178 bool ret;
1179
Johannes Weiner91c637342012-05-29 15:06:24 -07001180 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001181 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001182 rcu_read_unlock();
1183 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001184}
1185
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001186int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001187{
1188 int ret;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001189 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001190 struct task_struct *p;
David Rientjes4c4a2212008-02-07 00:14:06 -08001191
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001192 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001193 if (p) {
1194 curr = try_get_mem_cgroup_from_mm(p->mm);
1195 task_unlock(p);
1196 } else {
1197 /*
1198 * All threads may have already detached their mm's, but the oom
1199 * killer still needs to detect if they have already been oom
1200 * killed to prevent needlessly killing additional tasks.
1201 */
1202 task_lock(task);
1203 curr = mem_cgroup_from_task(task);
1204 if (curr)
1205 css_get(&curr->css);
1206 task_unlock(task);
1207 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001208 if (!curr)
1209 return 0;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001210 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001211 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001212 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001213 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1214 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001215 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001216 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001217 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001218 return ret;
1219}
1220
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001221int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001222{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001223 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001224 unsigned long inactive;
1225 unsigned long active;
1226 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001227
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001228 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1229 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001230
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001231 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1232 if (gb)
1233 inactive_ratio = int_sqrt(10 * gb);
1234 else
1235 inactive_ratio = 1;
1236
Johannes Weiner9b272972011-11-02 13:38:23 -07001237 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001238}
1239
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001240int mem_cgroup_inactive_file_is_low(struct lruvec *lruvec)
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001241{
1242 unsigned long active;
1243 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001244
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001245 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_FILE);
1246 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_FILE);
Rik van Riel56e49d22009-06-16 15:32:28 -07001247
1248 return (active > inactive);
1249}
1250
Balbir Singh6d61ef42009-01-07 18:08:06 -08001251#define mem_cgroup_from_res_counter(counter, member) \
1252 container_of(counter, struct mem_cgroup, member)
1253
Johannes Weiner19942822011-02-01 15:52:43 -08001254/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001255 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001256 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001257 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001258 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001259 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001260 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001261static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001262{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001263 unsigned long long margin;
1264
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001265 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001266 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001267 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001268 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001269}
1270
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001271int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001272{
1273 struct cgroup *cgrp = memcg->css.cgroup;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001274
1275 /* root ? */
1276 if (cgrp->parent == NULL)
1277 return vm_swappiness;
1278
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001279 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001280}
1281
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001282/*
1283 * memcg->moving_account is used for checking possibility that some thread is
1284 * calling move_account(). When a thread on CPU-A starts moving pages under
1285 * a memcg, other threads should check memcg->moving_account under
1286 * rcu_read_lock(), like this:
1287 *
1288 * CPU-A CPU-B
1289 * rcu_read_lock()
1290 * memcg->moving_account+1 if (memcg->mocing_account)
1291 * take heavy locks.
1292 * synchronize_rcu() update something.
1293 * rcu_read_unlock()
1294 * start move here.
1295 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001296
1297/* for quick checking without looking up memcg */
1298atomic_t memcg_moving __read_mostly;
1299
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001300static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001301{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001302 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001303 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001304 synchronize_rcu();
1305}
1306
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001307static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001308{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001309 /*
1310 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1311 * We check NULL in callee rather than caller.
1312 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001313 if (memcg) {
1314 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001315 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001316 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001317}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001318
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001319/*
1320 * 2 routines for checking "mem" is under move_account() or not.
1321 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001322 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1323 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001324 * pc->mem_cgroup may be overwritten.
1325 *
1326 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1327 * under hierarchy of moving cgroups. This is for
1328 * waiting at hith-memory prressure caused by "move".
1329 */
1330
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001331static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001332{
1333 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001334 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001335}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001336
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001337static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001338{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001339 struct mem_cgroup *from;
1340 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001341 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001342 /*
1343 * Unlike task_move routines, we access mc.to, mc.from not under
1344 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1345 */
1346 spin_lock(&mc.lock);
1347 from = mc.from;
1348 to = mc.to;
1349 if (!from)
1350 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001351
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001352 ret = mem_cgroup_same_or_subtree(memcg, from)
1353 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001354unlock:
1355 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001356 return ret;
1357}
1358
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001359static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001360{
1361 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001362 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001363 DEFINE_WAIT(wait);
1364 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1365 /* moving charge context might have finished. */
1366 if (mc.moving_task)
1367 schedule();
1368 finish_wait(&mc.waitq, &wait);
1369 return true;
1370 }
1371 }
1372 return false;
1373}
1374
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001375/*
1376 * Take this lock when
1377 * - a code tries to modify page's memcg while it's USED.
1378 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001379 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001380 */
1381static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1382 unsigned long *flags)
1383{
1384 spin_lock_irqsave(&memcg->move_lock, *flags);
1385}
1386
1387static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1388 unsigned long *flags)
1389{
1390 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1391}
1392
Balbir Singhe2224322009-04-02 16:57:39 -07001393/**
Kirill A. Shutemov6a6135b2010-03-10 15:22:25 -08001394 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
Balbir Singhe2224322009-04-02 16:57:39 -07001395 * @memcg: The memory cgroup that went over limit
1396 * @p: Task that is going to be killed
1397 *
1398 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1399 * enabled
1400 */
1401void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1402{
1403 struct cgroup *task_cgrp;
1404 struct cgroup *mem_cgrp;
1405 /*
1406 * Need a buffer in BSS, can't rely on allocations. The code relies
1407 * on the assumption that OOM is serialized for memory controller.
1408 * If this assumption is broken, revisit this code.
1409 */
1410 static char memcg_name[PATH_MAX];
1411 int ret;
1412
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001413 if (!memcg || !p)
Balbir Singhe2224322009-04-02 16:57:39 -07001414 return;
1415
Balbir Singhe2224322009-04-02 16:57:39 -07001416 rcu_read_lock();
1417
1418 mem_cgrp = memcg->css.cgroup;
1419 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1420
1421 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1422 if (ret < 0) {
1423 /*
1424 * Unfortunately, we are unable to convert to a useful name
1425 * But we'll still print out the usage information
1426 */
1427 rcu_read_unlock();
1428 goto done;
1429 }
1430 rcu_read_unlock();
1431
1432 printk(KERN_INFO "Task in %s killed", memcg_name);
1433
1434 rcu_read_lock();
1435 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1436 if (ret < 0) {
1437 rcu_read_unlock();
1438 goto done;
1439 }
1440 rcu_read_unlock();
1441
1442 /*
1443 * Continues from above, so we don't need an KERN_ level
1444 */
1445 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1446done:
1447
1448 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1449 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1450 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1451 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1452 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1453 "failcnt %llu\n",
1454 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1455 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1456 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
1457}
1458
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001459/*
1460 * This function returns the number of memcg under hierarchy tree. Returns
1461 * 1(self count) if no children.
1462 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001463static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001464{
1465 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001466 struct mem_cgroup *iter;
1467
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001468 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001469 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001470 return num;
1471}
1472
Balbir Singh6d61ef42009-01-07 18:08:06 -08001473/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001474 * Return the memory (and swap, if configured) limit for a memcg.
1475 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001476static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001477{
1478 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001479
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001480 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001481
David Rientjesa63d83f2010-08-09 17:19:46 -07001482 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001483 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001484 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001485 if (mem_cgroup_swappiness(memcg)) {
1486 u64 memsw;
1487
1488 limit += total_swap_pages << PAGE_SHIFT;
1489 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1490
1491 /*
1492 * If memsw is finite and limits the amount of swap space
1493 * available to this memcg, return that limit.
1494 */
1495 limit = min(limit, memsw);
1496 }
1497
1498 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001499}
1500
David Rientjes876aafb2012-07-31 16:43:48 -07001501void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1502 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001503{
1504 struct mem_cgroup *iter;
1505 unsigned long chosen_points = 0;
1506 unsigned long totalpages;
1507 unsigned int points = 0;
1508 struct task_struct *chosen = NULL;
1509
David Rientjes876aafb2012-07-31 16:43:48 -07001510 /*
1511 * If current has a pending SIGKILL, then automatically select it. The
1512 * goal is to allow it to allocate so that it may quickly exit and free
1513 * its memory.
1514 */
1515 if (fatal_signal_pending(current)) {
1516 set_thread_flag(TIF_MEMDIE);
1517 return;
1518 }
1519
1520 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001521 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1522 for_each_mem_cgroup_tree(iter, memcg) {
1523 struct cgroup *cgroup = iter->css.cgroup;
1524 struct cgroup_iter it;
1525 struct task_struct *task;
1526
1527 cgroup_iter_start(cgroup, &it);
1528 while ((task = cgroup_iter_next(cgroup, &it))) {
1529 switch (oom_scan_process_thread(task, totalpages, NULL,
1530 false)) {
1531 case OOM_SCAN_SELECT:
1532 if (chosen)
1533 put_task_struct(chosen);
1534 chosen = task;
1535 chosen_points = ULONG_MAX;
1536 get_task_struct(chosen);
1537 /* fall through */
1538 case OOM_SCAN_CONTINUE:
1539 continue;
1540 case OOM_SCAN_ABORT:
1541 cgroup_iter_end(cgroup, &it);
1542 mem_cgroup_iter_break(memcg, iter);
1543 if (chosen)
1544 put_task_struct(chosen);
1545 return;
1546 case OOM_SCAN_OK:
1547 break;
1548 };
1549 points = oom_badness(task, memcg, NULL, totalpages);
1550 if (points > chosen_points) {
1551 if (chosen)
1552 put_task_struct(chosen);
1553 chosen = task;
1554 chosen_points = points;
1555 get_task_struct(chosen);
1556 }
1557 }
1558 cgroup_iter_end(cgroup, &it);
1559 }
1560
1561 if (!chosen)
1562 return;
1563 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001564 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1565 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001566}
1567
Johannes Weiner56600482012-01-12 17:17:59 -08001568static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1569 gfp_t gfp_mask,
1570 unsigned long flags)
1571{
1572 unsigned long total = 0;
1573 bool noswap = false;
1574 int loop;
1575
1576 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1577 noswap = true;
1578 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1579 noswap = true;
1580
1581 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1582 if (loop)
1583 drain_all_stock_async(memcg);
1584 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1585 /*
1586 * Allow limit shrinkers, which are triggered directly
1587 * by userspace, to catch signals and stop reclaim
1588 * after minimal progress, regardless of the margin.
1589 */
1590 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1591 break;
1592 if (mem_cgroup_margin(memcg))
1593 break;
1594 /*
1595 * If nothing was reclaimed after two attempts, there
1596 * may be no reclaimable pages in this hierarchy.
1597 */
1598 if (loop && !total)
1599 break;
1600 }
1601 return total;
1602}
1603
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001604/**
1605 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001606 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001607 * @nid: the node ID to be checked.
1608 * @noswap : specify true here if the user wants flle only information.
1609 *
1610 * This function returns whether the specified memcg contains any
1611 * reclaimable pages on a node. Returns true if there are any reclaimable
1612 * pages in the node.
1613 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001614static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001615 int nid, bool noswap)
1616{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001617 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001618 return true;
1619 if (noswap || !total_swap_pages)
1620 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001621 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001622 return true;
1623 return false;
1624
1625}
Ying Han889976d2011-05-26 16:25:33 -07001626#if MAX_NUMNODES > 1
1627
1628/*
1629 * Always updating the nodemask is not very good - even if we have an empty
1630 * list or the wrong list here, we can start from some node and traverse all
1631 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1632 *
1633 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001634static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001635{
1636 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001637 /*
1638 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1639 * pagein/pageout changes since the last update.
1640 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001641 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001642 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001643 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001644 return;
1645
Ying Han889976d2011-05-26 16:25:33 -07001646 /* make a nodemask where this memcg uses memory from */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001647 memcg->scan_nodes = node_states[N_HIGH_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001648
1649 for_each_node_mask(nid, node_states[N_HIGH_MEMORY]) {
1650
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001651 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1652 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001653 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001654
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001655 atomic_set(&memcg->numainfo_events, 0);
1656 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001657}
1658
1659/*
1660 * Selecting a node where we start reclaim from. Because what we need is just
1661 * reducing usage counter, start from anywhere is O,K. Considering
1662 * memory reclaim from current node, there are pros. and cons.
1663 *
1664 * Freeing memory from current node means freeing memory from a node which
1665 * we'll use or we've used. So, it may make LRU bad. And if several threads
1666 * hit limits, it will see a contention on a node. But freeing from remote
1667 * node means more costs for memory reclaim because of memory latency.
1668 *
1669 * Now, we use round-robin. Better algorithm is welcomed.
1670 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001671int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001672{
1673 int node;
1674
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001675 mem_cgroup_may_update_nodemask(memcg);
1676 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001677
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001678 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001679 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001680 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001681 /*
1682 * We call this when we hit limit, not when pages are added to LRU.
1683 * No LRU may hold pages because all pages are UNEVICTABLE or
1684 * memcg is too small and all pages are not on LRU. In that case,
1685 * we use curret node.
1686 */
1687 if (unlikely(node == MAX_NUMNODES))
1688 node = numa_node_id();
1689
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001690 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001691 return node;
1692}
1693
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001694/*
1695 * Check all nodes whether it contains reclaimable pages or not.
1696 * For quick scan, we make use of scan_nodes. This will allow us to skip
1697 * unused nodes. But scan_nodes is lazily updated and may not cotain
1698 * enough new information. We need to do double check.
1699 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001700static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001701{
1702 int nid;
1703
1704 /*
1705 * quick check...making use of scan_node.
1706 * We can skip unused nodes.
1707 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001708 if (!nodes_empty(memcg->scan_nodes)) {
1709 for (nid = first_node(memcg->scan_nodes);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001710 nid < MAX_NUMNODES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001711 nid = next_node(nid, memcg->scan_nodes)) {
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001712
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001713 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001714 return true;
1715 }
1716 }
1717 /*
1718 * Check rest of nodes.
1719 */
1720 for_each_node_state(nid, N_HIGH_MEMORY) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001721 if (node_isset(nid, memcg->scan_nodes))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001722 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001723 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001724 return true;
1725 }
1726 return false;
1727}
1728
Ying Han889976d2011-05-26 16:25:33 -07001729#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001730int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001731{
1732 return 0;
1733}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001734
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001735static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001736{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001737 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001738}
Ying Han889976d2011-05-26 16:25:33 -07001739#endif
1740
Johannes Weiner56600482012-01-12 17:17:59 -08001741static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1742 struct zone *zone,
1743 gfp_t gfp_mask,
1744 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001745{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001746 struct mem_cgroup *victim = NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001747 int total = 0;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001748 int loop = 0;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001749 unsigned long excess;
Johannes Weiner185efc02011-09-14 16:21:58 -07001750 unsigned long nr_scanned;
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001751 struct mem_cgroup_reclaim_cookie reclaim = {
1752 .zone = zone,
1753 .priority = 0,
1754 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001755
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001756 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001757
Balbir Singh4e416952009-09-23 15:56:39 -07001758 while (1) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001759 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001760 if (!victim) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001761 loop++;
Balbir Singh4e416952009-09-23 15:56:39 -07001762 if (loop >= 2) {
1763 /*
1764 * If we have not been able to reclaim
1765 * anything, it might because there are
1766 * no reclaimable pages under this hierarchy
1767 */
Johannes Weiner56600482012-01-12 17:17:59 -08001768 if (!total)
Balbir Singh4e416952009-09-23 15:56:39 -07001769 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001770 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001771 * We want to do more targeted reclaim.
Balbir Singh4e416952009-09-23 15:56:39 -07001772 * excess >> 2 is not to excessive so as to
1773 * reclaim too much, nor too less that we keep
1774 * coming back to reclaim from this cgroup
1775 */
1776 if (total >= (excess >> 2) ||
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001777 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
Balbir Singh4e416952009-09-23 15:56:39 -07001778 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001779 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001780 continue;
Balbir Singh4e416952009-09-23 15:56:39 -07001781 }
Johannes Weiner56600482012-01-12 17:17:59 -08001782 if (!mem_cgroup_reclaimable(victim, false))
Balbir Singh6d61ef42009-01-07 18:08:06 -08001783 continue;
Johannes Weiner56600482012-01-12 17:17:59 -08001784 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1785 zone, &nr_scanned);
1786 *total_scanned += nr_scanned;
1787 if (!res_counter_soft_limit_excess(&root_memcg->res))
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001788 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001789 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001790 mem_cgroup_iter_break(root_memcg, victim);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001791 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001792}
1793
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001794/*
1795 * Check OOM-Killer is already running under our hierarchy.
1796 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001797 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001798 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001799static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001800{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001801 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001802
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001803 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001804 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001805 /*
1806 * this subtree of our hierarchy is already locked
1807 * so we cannot give a lock.
1808 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001809 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001810 mem_cgroup_iter_break(memcg, iter);
1811 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001812 } else
1813 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001814 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001815
Michal Hocko79dfdac2011-07-26 16:08:23 -07001816 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001817 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001818
1819 /*
1820 * OK, we failed to lock the whole subtree so we have to clean up
1821 * what we set up to the failing subtree
1822 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001823 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001824 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001825 mem_cgroup_iter_break(memcg, iter);
1826 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001827 }
1828 iter->oom_lock = false;
1829 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001830 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001831}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001832
Michal Hocko79dfdac2011-07-26 16:08:23 -07001833/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001834 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001835 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001836static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001837{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001838 struct mem_cgroup *iter;
1839
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001840 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001841 iter->oom_lock = false;
1842 return 0;
1843}
1844
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001845static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001846{
1847 struct mem_cgroup *iter;
1848
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001849 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001850 atomic_inc(&iter->under_oom);
1851}
1852
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001853static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001854{
1855 struct mem_cgroup *iter;
1856
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001857 /*
1858 * When a new child is created while the hierarchy is under oom,
1859 * mem_cgroup_oom_lock() may not be called. We have to use
1860 * atomic_add_unless() here.
1861 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001862 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001863 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001864}
1865
Michal Hocko1af8efe2011-07-26 16:08:24 -07001866static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001867static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1868
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001869struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001870 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001871 wait_queue_t wait;
1872};
1873
1874static int memcg_oom_wake_function(wait_queue_t *wait,
1875 unsigned mode, int sync, void *arg)
1876{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001877 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1878 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001879 struct oom_wait_info *oom_wait_info;
1880
1881 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001882 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001883
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001884 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001885 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001886 * Then we can use css_is_ancestor without taking care of RCU.
1887 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001888 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1889 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001890 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001891 return autoremove_wake_function(wait, mode, sync, arg);
1892}
1893
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001894static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001895{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001896 /* for filtering, pass "memcg" as argument. */
1897 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001898}
1899
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001900static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001901{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001902 if (memcg && atomic_read(&memcg->under_oom))
1903 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001904}
1905
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001906/*
1907 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1908 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001909static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
1910 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001911{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001912 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001913 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001914
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001915 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001916 owait.wait.flags = 0;
1917 owait.wait.func = memcg_oom_wake_function;
1918 owait.wait.private = current;
1919 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001920 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001921 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001922
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001923 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001924 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001925 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001926 /*
1927 * Even if signal_pending(), we can't quit charge() loop without
1928 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1929 * under OOM is always welcomed, use TASK_KILLABLE here.
1930 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001931 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001932 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001933 need_to_kill = false;
1934 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001935 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001936 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001937
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001938 if (need_to_kill) {
1939 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07001940 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001941 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001942 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001943 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001944 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001945 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001946 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001947 mem_cgroup_oom_unlock(memcg);
1948 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001949 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001950
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001951 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001952
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001953 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1954 return false;
1955 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001956 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001957 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001958}
1959
Balbir Singhd69b0422009-06-17 16:26:34 -07001960/*
1961 * Currently used to update mapped file statistics, but the routine can be
1962 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001963 *
1964 * Notes: Race condition
1965 *
1966 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1967 * it tends to be costly. But considering some conditions, we doesn't need
1968 * to do so _always_.
1969 *
1970 * Considering "charge", lock_page_cgroup() is not required because all
1971 * file-stat operations happen after a page is attached to radix-tree. There
1972 * are no race with "charge".
1973 *
1974 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1975 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1976 * if there are race with "uncharge". Statistics itself is properly handled
1977 * by flags.
1978 *
1979 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001980 * small, we check mm->moving_account and detect there are possibility of race
1981 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07001982 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001983
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001984void __mem_cgroup_begin_update_page_stat(struct page *page,
1985 bool *locked, unsigned long *flags)
1986{
1987 struct mem_cgroup *memcg;
1988 struct page_cgroup *pc;
1989
1990 pc = lookup_page_cgroup(page);
1991again:
1992 memcg = pc->mem_cgroup;
1993 if (unlikely(!memcg || !PageCgroupUsed(pc)))
1994 return;
1995 /*
1996 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07001997 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001998 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001999 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002000 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002001 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002002 return;
2003
2004 move_lock_mem_cgroup(memcg, flags);
2005 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2006 move_unlock_mem_cgroup(memcg, flags);
2007 goto again;
2008 }
2009 *locked = true;
2010}
2011
2012void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2013{
2014 struct page_cgroup *pc = lookup_page_cgroup(page);
2015
2016 /*
2017 * It's guaranteed that pc->mem_cgroup never changes while
2018 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002019 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002020 */
2021 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2022}
2023
Greg Thelen2a7106f2011-01-13 15:47:37 -08002024void mem_cgroup_update_page_stat(struct page *page,
2025 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002026{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002027 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002028 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002029 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002030
Johannes Weinercfa44942012-01-12 17:18:38 -08002031 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002032 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002033
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002034 memcg = pc->mem_cgroup;
2035 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002036 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002037
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002038 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002039 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08002040 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002041 break;
2042 default:
2043 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002044 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002045
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002046 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002047}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002048
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002049/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002050 * size of first charge trial. "32" comes from vmscan.c's magic value.
2051 * TODO: maybe necessary to use big numbers in big irons.
2052 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002053#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002054struct memcg_stock_pcp {
2055 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002056 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002057 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002058 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002059#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002060};
2061static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002062static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002063
2064/*
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002065 * Try to consume stocked charge on this cpu. If success, one page is consumed
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002066 * from local stock and true is returned. If the stock is 0 or charges from a
2067 * cgroup which is not current target, returns false. This stock will be
2068 * refilled.
2069 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002070static bool consume_stock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002071{
2072 struct memcg_stock_pcp *stock;
2073 bool ret = true;
2074
2075 stock = &get_cpu_var(memcg_stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002076 if (memcg == stock->cached && stock->nr_pages)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002077 stock->nr_pages--;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002078 else /* need to call res_counter_charge */
2079 ret = false;
2080 put_cpu_var(memcg_stock);
2081 return ret;
2082}
2083
2084/*
2085 * Returns stocks cached in percpu to res_counter and reset cached information.
2086 */
2087static void drain_stock(struct memcg_stock_pcp *stock)
2088{
2089 struct mem_cgroup *old = stock->cached;
2090
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002091 if (stock->nr_pages) {
2092 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2093
2094 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002095 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002096 res_counter_uncharge(&old->memsw, bytes);
2097 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002098 }
2099 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002100}
2101
2102/*
2103 * This must be called under preempt disabled or must be called by
2104 * a thread which is pinned to local cpu.
2105 */
2106static void drain_local_stock(struct work_struct *dummy)
2107{
2108 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2109 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002110 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002111}
2112
2113/*
2114 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002115 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002116 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002117static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002118{
2119 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2120
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002121 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002122 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002123 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002124 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002125 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002126 put_cpu_var(memcg_stock);
2127}
2128
2129/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002130 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002131 * of the hierarchy under it. sync flag says whether we should block
2132 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002133 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002134static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002135{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002136 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002137
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002138 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002139 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002140 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002141 for_each_online_cpu(cpu) {
2142 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002143 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002144
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002145 memcg = stock->cached;
2146 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002147 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002148 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002149 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002150 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2151 if (cpu == curcpu)
2152 drain_local_stock(&stock->work);
2153 else
2154 schedule_work_on(cpu, &stock->work);
2155 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002156 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002157 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002158
2159 if (!sync)
2160 goto out;
2161
2162 for_each_online_cpu(cpu) {
2163 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002164 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002165 flush_work(&stock->work);
2166 }
2167out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002168 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002169}
2170
2171/*
2172 * Tries to drain stocked charges in other cpus. This function is asynchronous
2173 * and just put a work per cpu for draining localy on each cpu. Caller can
2174 * expects some charges will be back to res_counter later but cannot wait for
2175 * it.
2176 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002177static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002178{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002179 /*
2180 * If someone calls draining, avoid adding more kworker runs.
2181 */
2182 if (!mutex_trylock(&percpu_charge_mutex))
2183 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002184 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002185 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002186}
2187
2188/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002189static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002190{
2191 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002192 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002193 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002194 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002195}
2196
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002197/*
2198 * This function drains percpu counter value from DEAD cpu and
2199 * move it to local cpu. Note that this function can be preempted.
2200 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002201static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002202{
2203 int i;
2204
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002205 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002206 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002207 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002208
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002209 per_cpu(memcg->stat->count[i], cpu) = 0;
2210 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002211 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002212 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002213 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002214
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002215 per_cpu(memcg->stat->events[i], cpu) = 0;
2216 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002217 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002218 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002219}
2220
2221static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002222 unsigned long action,
2223 void *hcpu)
2224{
2225 int cpu = (unsigned long)hcpu;
2226 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002227 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002228
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002229 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002230 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002231
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002232 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002233 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002234
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002235 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002236 mem_cgroup_drain_pcp_counter(iter, cpu);
2237
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002238 stock = &per_cpu(memcg_stock, cpu);
2239 drain_stock(stock);
2240 return NOTIFY_OK;
2241}
2242
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002243
2244/* See __mem_cgroup_try_charge() for details */
2245enum {
2246 CHARGE_OK, /* success */
2247 CHARGE_RETRY, /* need to retry but retry is not bad */
2248 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2249 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2250 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2251};
2252
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002253static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002254 unsigned int nr_pages, bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002255{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002256 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002257 struct mem_cgroup *mem_over_limit;
2258 struct res_counter *fail_res;
2259 unsigned long flags = 0;
2260 int ret;
2261
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002262 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002263
2264 if (likely(!ret)) {
2265 if (!do_swap_account)
2266 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002267 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002268 if (likely(!ret))
2269 return CHARGE_OK;
2270
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002271 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002272 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2273 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2274 } else
2275 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002276 /*
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002277 * nr_pages can be either a huge page (HPAGE_PMD_NR), a batch
2278 * of regular pages (CHARGE_BATCH), or a single regular page (1).
Johannes Weiner9221edb2011-02-01 15:52:42 -08002279 *
2280 * Never reclaim on behalf of optional batching, retry with a
2281 * single page instead.
2282 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002283 if (nr_pages == CHARGE_BATCH)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002284 return CHARGE_RETRY;
2285
2286 if (!(gfp_mask & __GFP_WAIT))
2287 return CHARGE_WOULDBLOCK;
2288
Johannes Weiner56600482012-01-12 17:17:59 -08002289 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002290 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002291 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002292 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002293 * Even though the limit is exceeded at this point, reclaim
2294 * may have been able to free some pages. Retry the charge
2295 * before killing the task.
2296 *
2297 * Only for regular pages, though: huge pages are rather
2298 * unlikely to succeed so close to the limit, and we fall back
2299 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002300 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002301 if (nr_pages == 1 && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002302 return CHARGE_RETRY;
2303
2304 /*
2305 * At task move, charge accounts can be doubly counted. So, it's
2306 * better to wait until the end of task_move if something is going on.
2307 */
2308 if (mem_cgroup_wait_acct_move(mem_over_limit))
2309 return CHARGE_RETRY;
2310
2311 /* If we don't need to call oom-killer at el, return immediately */
2312 if (!oom_check)
2313 return CHARGE_NOMEM;
2314 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002315 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002316 return CHARGE_OOM_DIE;
2317
2318 return CHARGE_RETRY;
2319}
2320
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002321/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002322 * __mem_cgroup_try_charge() does
2323 * 1. detect memcg to be charged against from passed *mm and *ptr,
2324 * 2. update res_counter
2325 * 3. call memory reclaim if necessary.
2326 *
2327 * In some special case, if the task is fatal, fatal_signal_pending() or
2328 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2329 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2330 * as possible without any hazards. 2: all pages should have a valid
2331 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2332 * pointer, that is treated as a charge to root_mem_cgroup.
2333 *
2334 * So __mem_cgroup_try_charge() will return
2335 * 0 ... on success, filling *ptr with a valid memcg pointer.
2336 * -ENOMEM ... charge failure because of resource limits.
2337 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2338 *
2339 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2340 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002341 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002342static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002343 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002344 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002345 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002346 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002347{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002348 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002349 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002350 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002351 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002352
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002353 /*
2354 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2355 * in system level. So, allow to go ahead dying process in addition to
2356 * MEMDIE process.
2357 */
2358 if (unlikely(test_thread_flag(TIF_MEMDIE)
2359 || fatal_signal_pending(current)))
2360 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002361
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002362 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002363 * We always charge the cgroup the mm_struct belongs to.
2364 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002365 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002366 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002367 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002368 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002369 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002370again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002371 if (*ptr) { /* css should be a valid one */
2372 memcg = *ptr;
2373 VM_BUG_ON(css_is_removed(&memcg->css));
2374 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002375 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002376 if (nr_pages == 1 && consume_stock(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002377 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002378 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002379 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002380 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002381
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002382 rcu_read_lock();
2383 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002384 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002385 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002386 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002387 * race with swapoff. Then, we have small risk of mis-accouning.
2388 * But such kind of mis-account by race always happens because
2389 * we don't have cgroup_mutex(). It's overkill and we allo that
2390 * small race, here.
2391 * (*) swapoff at el will charge against mm-struct not against
2392 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002393 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002394 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002395 if (!memcg)
2396 memcg = root_mem_cgroup;
2397 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002398 rcu_read_unlock();
2399 goto done;
2400 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002401 if (nr_pages == 1 && consume_stock(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002402 /*
2403 * It seems dagerous to access memcg without css_get().
2404 * But considering how consume_stok works, it's not
2405 * necessary. If consume_stock success, some charges
2406 * from this memcg are cached on this cpu. So, we
2407 * don't need to call css_get()/css_tryget() before
2408 * calling consume_stock().
2409 */
2410 rcu_read_unlock();
2411 goto done;
2412 }
2413 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002414 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002415 rcu_read_unlock();
2416 goto again;
2417 }
2418 rcu_read_unlock();
2419 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002420
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002421 do {
2422 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002423
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002424 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002425 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002426 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002427 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002428 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002429
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002430 oom_check = false;
2431 if (oom && !nr_oom_retries) {
2432 oom_check = true;
2433 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2434 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002435
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002436 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002437 switch (ret) {
2438 case CHARGE_OK:
2439 break;
2440 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002441 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002442 css_put(&memcg->css);
2443 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002444 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002445 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002446 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002447 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002448 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002449 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002450 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002451 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002452 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002453 /* If oom, we never return -ENOMEM */
2454 nr_oom_retries--;
2455 break;
2456 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002457 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002458 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002459 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002460 } while (ret != CHARGE_OK);
2461
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002462 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002463 refill_stock(memcg, batch - nr_pages);
2464 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002465done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002466 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002467 return 0;
2468nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002469 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002470 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002471bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002472 *ptr = root_mem_cgroup;
2473 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002474}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002475
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002476/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002477 * Somemtimes we have to undo a charge we got by try_charge().
2478 * This function is for that and do uncharge, put css's refcnt.
2479 * gotten by try_charge().
2480 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002481static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002482 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002483{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002484 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002485 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002486
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002487 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002488 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002489 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002490 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002491}
2492
2493/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002494 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2495 * This is useful when moving usage to parent cgroup.
2496 */
2497static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2498 unsigned int nr_pages)
2499{
2500 unsigned long bytes = nr_pages * PAGE_SIZE;
2501
2502 if (mem_cgroup_is_root(memcg))
2503 return;
2504
2505 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2506 if (do_swap_account)
2507 res_counter_uncharge_until(&memcg->memsw,
2508 memcg->memsw.parent, bytes);
2509}
2510
2511/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002512 * A helper function to get mem_cgroup from ID. must be called under
2513 * rcu_read_lock(). The caller must check css_is_removed() or some if
2514 * it's concern. (dropping refcnt from swap can be called against removed
2515 * memcg.)
2516 */
2517static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2518{
2519 struct cgroup_subsys_state *css;
2520
2521 /* ID 0 is unused ID */
2522 if (!id)
2523 return NULL;
2524 css = css_lookup(&mem_cgroup_subsys, id);
2525 if (!css)
2526 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002527 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002528}
2529
Wu Fengguange42d9d52009-12-16 12:19:59 +01002530struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002531{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002532 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002533 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002534 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002535 swp_entry_t ent;
2536
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002537 VM_BUG_ON(!PageLocked(page));
2538
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002539 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002540 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002541 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002542 memcg = pc->mem_cgroup;
2543 if (memcg && !css_tryget(&memcg->css))
2544 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002545 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002546 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002547 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002548 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002549 memcg = mem_cgroup_lookup(id);
2550 if (memcg && !css_tryget(&memcg->css))
2551 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002552 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002553 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002554 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002555 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002556}
2557
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002558static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002559 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002560 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002561 enum charge_type ctype,
2562 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002563{
Johannes Weinerce587e62012-04-24 20:22:33 +02002564 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002565 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002566 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002567 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002568 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002569
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002570 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002571 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002572 /*
2573 * we don't need page_cgroup_lock about tail pages, becase they are not
2574 * accessed by any other context at this point.
2575 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002576
2577 /*
2578 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2579 * may already be on some other mem_cgroup's LRU. Take care of it.
2580 */
2581 if (lrucare) {
2582 zone = page_zone(page);
2583 spin_lock_irq(&zone->lru_lock);
2584 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002585 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002586 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002587 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002588 was_on_lru = true;
2589 }
2590 }
2591
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002592 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002593 /*
2594 * We access a page_cgroup asynchronously without lock_page_cgroup().
2595 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2596 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2597 * before USED bit, we need memory barrier here.
2598 * See mem_cgroup_add_lru_list(), etc.
2599 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002600 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002601 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002602
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002603 if (lrucare) {
2604 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002605 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002606 VM_BUG_ON(PageLRU(page));
2607 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002608 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002609 }
2610 spin_unlock_irq(&zone->lru_lock);
2611 }
2612
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002613 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002614 anon = true;
2615 else
2616 anon = false;
2617
2618 mem_cgroup_charge_statistics(memcg, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002619 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002620
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002621 /*
2622 * "charge_statistics" updated event counter. Then, check it.
2623 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2624 * if they exceeds softlimit.
2625 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002626 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002627}
2628
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002629#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2630
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002631#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002632/*
2633 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002634 * zone->lru_lock, 'splitting on pmd' and compound_lock.
2635 * charge/uncharge will be never happen and move_account() is done under
2636 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002637 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002638void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002639{
2640 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002641 struct page_cgroup *pc;
2642 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002643
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002644 if (mem_cgroup_disabled())
2645 return;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002646 for (i = 1; i < HPAGE_PMD_NR; i++) {
2647 pc = head_pc + i;
2648 pc->mem_cgroup = head_pc->mem_cgroup;
2649 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002650 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2651 }
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002652}
Hugh Dickins12d27102012-01-12 17:19:52 -08002653#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002654
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002655/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07002656 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07002657 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002658 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002659 * @pc: page_cgroup of the page.
2660 * @from: mem_cgroup which the page is moved from.
2661 * @to: mem_cgroup which the page is moved to. @from != @to.
2662 *
2663 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002664 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002665 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002666 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002667 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
2668 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002669 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002670static int mem_cgroup_move_account(struct page *page,
2671 unsigned int nr_pages,
2672 struct page_cgroup *pc,
2673 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002674 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002675{
Johannes Weinerde3638d2011-03-23 16:42:28 -07002676 unsigned long flags;
2677 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002678 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002679
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002680 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07002681 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07002682 /*
2683 * The page is isolated from LRU. So, collapse function
2684 * will not handle this page. But page splitting can happen.
2685 * Do this check under compound_page_lock(). The caller should
2686 * hold it.
2687 */
2688 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002689 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07002690 goto out;
2691
2692 lock_page_cgroup(pc);
2693
2694 ret = -EINVAL;
2695 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2696 goto unlock;
2697
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002698 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002699
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07002700 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08002701 /* Update mapped_file data for mem_cgroup */
2702 preempt_disable();
2703 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2704 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2705 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07002706 }
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002707 mem_cgroup_charge_statistics(from, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07002708
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002709 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002710 pc->mem_cgroup = to;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002711 mem_cgroup_charge_statistics(to, anon, nr_pages);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002712 /*
2713 * We charges against "to" which may not have any tasks. Then, "to"
2714 * can be under rmdir(). But in current implementation, caller of
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002715 * this function is just force_empty() and move charge, so it's
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002716 * guaranteed that "to" is never removed. So, we don't check rmdir
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002717 * status here.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002718 */
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002719 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002720 ret = 0;
2721unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002722 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08002723 /*
2724 * check events
2725 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002726 memcg_check_events(to, page);
2727 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002728out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002729 return ret;
2730}
2731
2732/*
2733 * move charges to its parent.
2734 */
2735
Johannes Weiner5564e882011-03-23 16:42:29 -07002736static int mem_cgroup_move_parent(struct page *page,
2737 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07002738 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002739{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002740 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002741 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07002742 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002743 int ret;
2744
2745 /* Is ROOT ? */
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002746 if (mem_cgroup_is_root(child))
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002747 return -EINVAL;
2748
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002749 ret = -EBUSY;
2750 if (!get_page_unless_zero(page))
2751 goto out;
2752 if (isolate_lru_page(page))
2753 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08002754
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002755 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002756
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002757 parent = parent_mem_cgroup(child);
2758 /*
2759 * If no parent, move charges to root cgroup.
2760 */
2761 if (!parent)
2762 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002763
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002764 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002765 flags = compound_lock_irqsave(page);
2766
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002767 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002768 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002769 if (!ret)
2770 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002771
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002772 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002773 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002774 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002775put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08002776 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002777out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002778 return ret;
2779}
2780
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002781/*
2782 * Charge the memory controller for page usage.
2783 * Return
2784 * 0 if the charge was successful
2785 * < 0 if the cgroup is over its limit
2786 */
2787static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002788 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002789{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002790 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002791 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08002792 bool oom = true;
2793 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08002794
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002795 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002796 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002797 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08002798 /*
2799 * Never OOM-kill a process for a huge page. The
2800 * fault handler will fall back to regular pages.
2801 */
2802 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002803 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002804
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002805 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002806 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002807 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02002808 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002809 return 0;
2810}
2811
2812int mem_cgroup_newpage_charge(struct page *page,
2813 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002814{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002815 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002816 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08002817 VM_BUG_ON(page_mapped(page));
2818 VM_BUG_ON(page->mapping && !PageAnon(page));
2819 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002820 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002821 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002822}
2823
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002824/*
2825 * While swap-in, try_charge -> commit or cancel, the page is locked.
2826 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02002827 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002828 * "commit()" or removed by "cancel()"
2829 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002830static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2831 struct page *page,
2832 gfp_t mask,
2833 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002834{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002835 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07002836 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002837 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002838
Johannes Weiner90deb782012-07-31 16:45:47 -07002839 pc = lookup_page_cgroup(page);
2840 /*
2841 * Every swap fault against a single page tries to charge the
2842 * page, bail as early as possible. shmem_unuse() encounters
2843 * already charged pages, too. The USED bit is protected by
2844 * the page lock, which serializes swap cache removal, which
2845 * in turn serializes uncharging.
2846 */
2847 if (PageCgroupUsed(pc))
2848 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002849 if (!do_swap_account)
2850 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002851 memcg = try_get_mem_cgroup_from_page(page);
2852 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002853 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08002854 *memcgp = memcg;
2855 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002856 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002857 if (ret == -EINTR)
2858 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002859 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002860charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002861 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
2862 if (ret == -EINTR)
2863 ret = 0;
2864 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002865}
2866
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002867int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
2868 gfp_t gfp_mask, struct mem_cgroup **memcgp)
2869{
2870 *memcgp = NULL;
2871 if (mem_cgroup_disabled())
2872 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07002873 /*
2874 * A racing thread's fault, or swapoff, may have already
2875 * updated the pte, and even removed page from swap cache: in
2876 * those cases unuse_pte()'s pte_same() test will fail; but
2877 * there's also a KSM case which does need to charge the page.
2878 */
2879 if (!PageSwapCache(page)) {
2880 int ret;
2881
2882 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
2883 if (ret == -EINTR)
2884 ret = 0;
2885 return ret;
2886 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002887 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
2888}
2889
Johannes Weiner827a03d2012-07-31 16:45:36 -07002890void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
2891{
2892 if (mem_cgroup_disabled())
2893 return;
2894 if (!memcg)
2895 return;
2896 __mem_cgroup_cancel_charge(memcg, 1);
2897}
2898
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002899static void
Johannes Weiner72835c82012-01-12 17:18:32 -08002900__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002901 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002902{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002903 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002904 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002905 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002906 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002907 cgroup_exclude_rmdir(&memcg->css);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002908
Johannes Weinerce587e62012-04-24 20:22:33 +02002909 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002910 /*
2911 * Now swap is on-memory. This means this page may be
2912 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002913 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2914 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2915 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002916 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002917 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002918 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07002919 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002920 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002921 /*
2922 * At swapin, we may charge account against cgroup which has no tasks.
2923 * So, rmdir()->pre_destroy() can be called while we do this charge.
2924 * In that case, we need to call pre_destroy() again. check it here.
2925 */
Johannes Weiner72835c82012-01-12 17:18:32 -08002926 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002927}
2928
Johannes Weiner72835c82012-01-12 17:18:32 -08002929void mem_cgroup_commit_charge_swapin(struct page *page,
2930 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002931{
Johannes Weiner72835c82012-01-12 17:18:32 -08002932 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002933 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002934}
2935
Johannes Weiner827a03d2012-07-31 16:45:36 -07002936int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2937 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002938{
Johannes Weiner827a03d2012-07-31 16:45:36 -07002939 struct mem_cgroup *memcg = NULL;
2940 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
2941 int ret;
2942
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002943 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07002944 return 0;
2945 if (PageCompound(page))
2946 return 0;
2947
Johannes Weiner827a03d2012-07-31 16:45:36 -07002948 if (!PageSwapCache(page))
2949 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
2950 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002951 ret = __mem_cgroup_try_charge_swapin(mm, page,
2952 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07002953 if (!ret)
2954 __mem_cgroup_commit_charge_swapin(page, memcg, type);
2955 }
2956 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002957}
2958
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002959static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002960 unsigned int nr_pages,
2961 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002962{
2963 struct memcg_batch_info *batch = NULL;
2964 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002965
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002966 /* If swapout, usage of swap doesn't decrease */
2967 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2968 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002969
2970 batch = &current->memcg_batch;
2971 /*
2972 * In usual, we do css_get() when we remember memcg pointer.
2973 * But in this case, we keep res->usage until end of a series of
2974 * uncharges. Then, it's ok to ignore memcg's refcnt.
2975 */
2976 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002977 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002978 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002979 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002980 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002981 * the same cgroup and we have chance to coalesce uncharges.
2982 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
2983 * because we want to do uncharge as soon as possible.
2984 */
2985
2986 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
2987 goto direct_uncharge;
2988
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002989 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08002990 goto direct_uncharge;
2991
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002992 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002993 * In typical case, batch->memcg == mem. This means we can
2994 * merge a series of uncharges to an uncharge of res_counter.
2995 * If not, we uncharge res_counter ony by one.
2996 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002997 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002998 goto direct_uncharge;
2999 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003000 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003001 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003002 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003003 return;
3004direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003005 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003006 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003007 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
3008 if (unlikely(batch->memcg != memcg))
3009 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003010}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003011
Balbir Singh8697d332008-02-07 00:13:59 -08003012/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003013 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003014 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003015static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07003016__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
3017 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003018{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003019 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003020 unsigned int nr_pages = 1;
3021 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003022 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003023
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003024 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003025 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07003026
Johannes Weiner0c59b892012-07-31 16:45:31 -07003027 VM_BUG_ON(PageSwapCache(page));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003028
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003029 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003030 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003031 VM_BUG_ON(!PageTransHuge(page));
3032 }
Balbir Singh8697d332008-02-07 00:13:59 -08003033 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003034 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003035 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003036 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003037 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003038 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003039
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003040 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003041
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003042 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003043
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003044 if (!PageCgroupUsed(pc))
3045 goto unlock_out;
3046
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003047 anon = PageAnon(page);
3048
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003049 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003050 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003051 /*
3052 * Generally PageAnon tells if it's the anon statistics to be
3053 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
3054 * used before page reached the stage of being marked PageAnon.
3055 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003056 anon = true;
3057 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003058 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003059 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07003060 if (page_mapped(page))
3061 goto unlock_out;
3062 /*
3063 * Pages under migration may not be uncharged. But
3064 * end_migration() /must/ be the one uncharging the
3065 * unused post-migration page and so it has to call
3066 * here with the migration bit still set. See the
3067 * res_counter handling below.
3068 */
3069 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003070 goto unlock_out;
3071 break;
3072 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
3073 if (!PageAnon(page)) { /* Shared memory */
3074 if (page->mapping && !page_is_file_cache(page))
3075 goto unlock_out;
3076 } else if (page_mapped(page)) /* Anon */
3077 goto unlock_out;
3078 break;
3079 default:
3080 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003081 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003082
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003083 mem_cgroup_charge_statistics(memcg, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07003084
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003085 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08003086 /*
3087 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3088 * freed from LRU. This is safe because uncharged page is expected not
3089 * to be reused (freed soon). Exception is SwapCache, it's handled by
3090 * special functions.
3091 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003092
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003093 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003094 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003095 * even after unlock, we have memcg->res.usage here and this memcg
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003096 * will never be freed.
3097 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003098 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003099 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003100 mem_cgroup_swap_statistics(memcg, true);
3101 mem_cgroup_get(memcg);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003102 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003103 /*
3104 * Migration does not charge the res_counter for the
3105 * replacement page, so leave it alone when phasing out the
3106 * page that is unused after the migration.
3107 */
3108 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003109 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003110
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003111 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003112
3113unlock_out:
3114 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003115 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003116}
3117
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003118void mem_cgroup_uncharge_page(struct page *page)
3119{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003120 /* early check. */
3121 if (page_mapped(page))
3122 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08003123 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner0c59b892012-07-31 16:45:31 -07003124 if (PageSwapCache(page))
3125 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07003126 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003127}
3128
3129void mem_cgroup_uncharge_cache_page(struct page *page)
3130{
3131 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003132 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07003133 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003134}
3135
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003136/*
3137 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3138 * In that cases, pages are freed continuously and we can expect pages
3139 * are in the same memcg. All these calls itself limits the number of
3140 * pages freed at once, then uncharge_start/end() is called properly.
3141 * This may be called prural(2) times in a context,
3142 */
3143
3144void mem_cgroup_uncharge_start(void)
3145{
3146 current->memcg_batch.do_batch++;
3147 /* We can do nest. */
3148 if (current->memcg_batch.do_batch == 1) {
3149 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003150 current->memcg_batch.nr_pages = 0;
3151 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003152 }
3153}
3154
3155void mem_cgroup_uncharge_end(void)
3156{
3157 struct memcg_batch_info *batch = &current->memcg_batch;
3158
3159 if (!batch->do_batch)
3160 return;
3161
3162 batch->do_batch--;
3163 if (batch->do_batch) /* If stacked, do nothing. */
3164 return;
3165
3166 if (!batch->memcg)
3167 return;
3168 /*
3169 * This "batch->memcg" is valid without any css_get/put etc...
3170 * bacause we hide charges behind us.
3171 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003172 if (batch->nr_pages)
3173 res_counter_uncharge(&batch->memcg->res,
3174 batch->nr_pages * PAGE_SIZE);
3175 if (batch->memsw_nr_pages)
3176 res_counter_uncharge(&batch->memcg->memsw,
3177 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003178 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003179 /* forget this pointer (for sanity check) */
3180 batch->memcg = NULL;
3181}
3182
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003183#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003184/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003185 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003186 * memcg information is recorded to swap_cgroup of "ent"
3187 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003188void
3189mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003190{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003191 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003192 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003193
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003194 if (!swapout) /* this was a swap cache but the swap is unused ! */
3195 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
3196
Johannes Weiner0030f532012-07-31 16:45:25 -07003197 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003198
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003199 /*
3200 * record memcg information, if swapout && memcg != NULL,
3201 * mem_cgroup_get() was called in uncharge().
3202 */
3203 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003204 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003205}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003206#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003207
Andrew Mortonc255a452012-07-31 16:43:02 -07003208#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003209/*
3210 * called from swap_entry_free(). remove record in swap_cgroup and
3211 * uncharge "memsw" account.
3212 */
3213void mem_cgroup_uncharge_swap(swp_entry_t ent)
3214{
3215 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003216 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003217
3218 if (!do_swap_account)
3219 return;
3220
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003221 id = swap_cgroup_record(ent, 0);
3222 rcu_read_lock();
3223 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003224 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003225 /*
3226 * We uncharge this because swap is freed.
3227 * This memcg can be obsolete one. We avoid calling css_tryget
3228 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003229 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07003230 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003231 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003232 mem_cgroup_put(memcg);
3233 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003234 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003235}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003236
3237/**
3238 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3239 * @entry: swap entry to be moved
3240 * @from: mem_cgroup which the entry is moved from
3241 * @to: mem_cgroup which the entry is moved to
3242 *
3243 * It succeeds only when the swap_cgroup's record for this entry is the same
3244 * as the mem_cgroup's id of @from.
3245 *
3246 * Returns 0 on success, -EINVAL on failure.
3247 *
3248 * The caller must have charged to @to, IOW, called res_counter_charge() about
3249 * both res and memsw, and called css_get().
3250 */
3251static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003252 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003253{
3254 unsigned short old_id, new_id;
3255
3256 old_id = css_id(&from->css);
3257 new_id = css_id(&to->css);
3258
3259 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003260 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003261 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003262 /*
3263 * This function is only called from task migration context now.
3264 * It postpones res_counter and refcount handling till the end
3265 * of task migration(mem_cgroup_clear_mc()) for performance
3266 * improvement. But we cannot postpone mem_cgroup_get(to)
3267 * because if the process that has been moved to @to does
3268 * swap-in, the refcount of @to might be decreased to 0.
3269 */
Daisuke Nishimura02491442010-03-10 15:22:17 -08003270 mem_cgroup_get(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003271 return 0;
3272 }
3273 return -EINVAL;
3274}
3275#else
3276static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003277 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003278{
3279 return -EINVAL;
3280}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003281#endif
3282
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003283/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003284 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
3285 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003286 */
Johannes Weiner0030f532012-07-31 16:45:25 -07003287void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
3288 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003289{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003290 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003291 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003292 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003293
Johannes Weiner72835c82012-01-12 17:18:32 -08003294 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003295
Andrea Arcangeliec168512011-01-13 15:46:56 -08003296 VM_BUG_ON(PageTransHuge(page));
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003297 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07003298 return;
Balbir Singh40779602008-04-04 14:29:59 -07003299
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003300 pc = lookup_page_cgroup(page);
3301 lock_page_cgroup(pc);
3302 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003303 memcg = pc->mem_cgroup;
3304 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003305 /*
3306 * At migrating an anonymous page, its mapcount goes down
3307 * to 0 and uncharge() will be called. But, even if it's fully
3308 * unmapped, migration may fail and this page has to be
3309 * charged again. We set MIGRATION flag here and delay uncharge
3310 * until end_migration() is called
3311 *
3312 * Corner Case Thinking
3313 * A)
3314 * When the old page was mapped as Anon and it's unmap-and-freed
3315 * while migration was ongoing.
3316 * If unmap finds the old page, uncharge() of it will be delayed
3317 * until end_migration(). If unmap finds a new page, it's
3318 * uncharged when it make mapcount to be 1->0. If unmap code
3319 * finds swap_migration_entry, the new page will not be mapped
3320 * and end_migration() will find it(mapcount==0).
3321 *
3322 * B)
3323 * When the old page was mapped but migraion fails, the kernel
3324 * remaps it. A charge for it is kept by MIGRATION flag even
3325 * if mapcount goes down to 0. We can do remap successfully
3326 * without charging it again.
3327 *
3328 * C)
3329 * The "old" page is under lock_page() until the end of
3330 * migration, so, the old page itself will not be swapped-out.
3331 * If the new page is swapped out before end_migraton, our
3332 * hook to usual swap-out path will catch the event.
3333 */
3334 if (PageAnon(page))
3335 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003336 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003337 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003338 /*
3339 * If the page is not charged at this point,
3340 * we return here.
3341 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003342 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07003343 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003344
Johannes Weiner72835c82012-01-12 17:18:32 -08003345 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003346 /*
3347 * We charge new page before it's used/mapped. So, even if unlock_page()
3348 * is called before end_migration, we can catch all events on this new
3349 * page. In the case new page is migrated but not remapped, new page's
3350 * mapcount will be finally 0 and we call uncharge in end_migration().
3351 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003352 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003353 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003354 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07003355 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07003356 /*
3357 * The page is committed to the memcg, but it's not actually
3358 * charged to the res_counter since we plan on replacing the
3359 * old one and only one page is going to be left afterwards.
3360 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003361 __mem_cgroup_commit_charge(memcg, newpage, 1, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003362}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08003363
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003364/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003365void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003366 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003367{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003368 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003369 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003370 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003371
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003372 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003373 return;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003374 /* blocks rmdir() */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003375 cgroup_exclude_rmdir(&memcg->css);
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003376 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003377 used = oldpage;
3378 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003379 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003380 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003381 unused = oldpage;
3382 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003383 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07003384 __mem_cgroup_uncharge_common(unused,
3385 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
3386 : MEM_CGROUP_CHARGE_TYPE_CACHE,
3387 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07003388 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003389 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003390 * We disallowed uncharge of pages under migration because mapcount
3391 * of the page goes down to zero, temporarly.
3392 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003393 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003394 pc = lookup_page_cgroup(oldpage);
3395 lock_page_cgroup(pc);
3396 ClearPageCgroupMigration(pc);
3397 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003398
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003399 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003400 * If a page is a file cache, radix-tree replacement is very atomic
3401 * and we can skip this check. When it was an Anon page, its mapcount
3402 * goes down to 0. But because we added MIGRATION flage, it's not
3403 * uncharged yet. There are several case but page->mapcount check
3404 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3405 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003406 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003407 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003408 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003409 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003410 * At migration, we may charge account against cgroup which has no
3411 * tasks.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003412 * So, rmdir()->pre_destroy() can be called while we do this charge.
3413 * In that case, we need to call pre_destroy() again. check it here.
3414 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003415 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003416}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08003417
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003418/*
3419 * At replace page cache, newpage is not under any memcg but it's on
3420 * LRU. So, this function doesn't touch res_counter but handles LRU
3421 * in correct way. Both pages are locked so we cannot race with uncharge.
3422 */
3423void mem_cgroup_replace_page_cache(struct page *oldpage,
3424 struct page *newpage)
3425{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003426 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003427 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003428 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003429
3430 if (mem_cgroup_disabled())
3431 return;
3432
3433 pc = lookup_page_cgroup(oldpage);
3434 /* fix accounting on old pages */
3435 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003436 if (PageCgroupUsed(pc)) {
3437 memcg = pc->mem_cgroup;
3438 mem_cgroup_charge_statistics(memcg, false, -1);
3439 ClearPageCgroupUsed(pc);
3440 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003441 unlock_page_cgroup(pc);
3442
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003443 /*
3444 * When called from shmem_replace_page(), in some cases the
3445 * oldpage has already been charged, and in some cases not.
3446 */
3447 if (!memcg)
3448 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003449 /*
3450 * Even if newpage->mapping was NULL before starting replacement,
3451 * the newpage may be on LRU(or pagevec for LRU) already. We lock
3452 * LRU while we overwrite pc->mem_cgroup.
3453 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003454 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003455}
3456
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003457#ifdef CONFIG_DEBUG_VM
3458static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3459{
3460 struct page_cgroup *pc;
3461
3462 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003463 /*
3464 * Can be NULL while feeding pages into the page allocator for
3465 * the first time, i.e. during boot or memory hotplug;
3466 * or when mem_cgroup_disabled().
3467 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003468 if (likely(pc) && PageCgroupUsed(pc))
3469 return pc;
3470 return NULL;
3471}
3472
3473bool mem_cgroup_bad_page_check(struct page *page)
3474{
3475 if (mem_cgroup_disabled())
3476 return false;
3477
3478 return lookup_page_cgroup_used(page) != NULL;
3479}
3480
3481void mem_cgroup_print_bad_page(struct page *page)
3482{
3483 struct page_cgroup *pc;
3484
3485 pc = lookup_page_cgroup_used(page);
3486 if (pc) {
Hugh Dickins90b3fea2012-01-12 17:19:54 -08003487 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003488 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003489 }
3490}
3491#endif
3492
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003493static DEFINE_MUTEX(set_limit_mutex);
3494
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003495static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003496 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003497{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003498 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003499 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003500 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003501 int children = mem_cgroup_count_children(memcg);
3502 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003503 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003504
3505 /*
3506 * For keeping hierarchical_reclaim simple, how long we should retry
3507 * is depends on callers. We set our retry-count to be function
3508 * of # of children which we should visit in this loop.
3509 */
3510 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3511
3512 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003513
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003514 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003515 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003516 if (signal_pending(current)) {
3517 ret = -EINTR;
3518 break;
3519 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003520 /*
3521 * Rather than hide all in some function, I do this in
3522 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003523 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003524 */
3525 mutex_lock(&set_limit_mutex);
3526 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3527 if (memswlimit < val) {
3528 ret = -EINVAL;
3529 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003530 break;
3531 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003532
3533 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3534 if (memlimit < val)
3535 enlarge = 1;
3536
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003537 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003538 if (!ret) {
3539 if (memswlimit == val)
3540 memcg->memsw_is_minimum = true;
3541 else
3542 memcg->memsw_is_minimum = false;
3543 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003544 mutex_unlock(&set_limit_mutex);
3545
3546 if (!ret)
3547 break;
3548
Johannes Weiner56600482012-01-12 17:17:59 -08003549 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3550 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003551 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3552 /* Usage is reduced ? */
3553 if (curusage >= oldusage)
3554 retry_count--;
3555 else
3556 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003557 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003558 if (!ret && enlarge)
3559 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003560
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003561 return ret;
3562}
3563
Li Zefan338c8432009-06-17 16:27:15 -07003564static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3565 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003566{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003567 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003568 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003569 int children = mem_cgroup_count_children(memcg);
3570 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003571 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003572
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003573 /* see mem_cgroup_resize_res_limit */
3574 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3575 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003576 while (retry_count) {
3577 if (signal_pending(current)) {
3578 ret = -EINTR;
3579 break;
3580 }
3581 /*
3582 * Rather than hide all in some function, I do this in
3583 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003584 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003585 */
3586 mutex_lock(&set_limit_mutex);
3587 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3588 if (memlimit > val) {
3589 ret = -EINVAL;
3590 mutex_unlock(&set_limit_mutex);
3591 break;
3592 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003593 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3594 if (memswlimit < val)
3595 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003596 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003597 if (!ret) {
3598 if (memlimit == val)
3599 memcg->memsw_is_minimum = true;
3600 else
3601 memcg->memsw_is_minimum = false;
3602 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003603 mutex_unlock(&set_limit_mutex);
3604
3605 if (!ret)
3606 break;
3607
Johannes Weiner56600482012-01-12 17:17:59 -08003608 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3609 MEM_CGROUP_RECLAIM_NOSWAP |
3610 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003611 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003612 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003613 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003614 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003615 else
3616 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003617 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003618 if (!ret && enlarge)
3619 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003620 return ret;
3621}
3622
Balbir Singh4e416952009-09-23 15:56:39 -07003623unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
Ying Han0ae5e892011-05-26 16:25:25 -07003624 gfp_t gfp_mask,
3625 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003626{
3627 unsigned long nr_reclaimed = 0;
3628 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3629 unsigned long reclaimed;
3630 int loop = 0;
3631 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003632 unsigned long long excess;
Ying Han0ae5e892011-05-26 16:25:25 -07003633 unsigned long nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003634
3635 if (order > 0)
3636 return 0;
3637
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07003638 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
Balbir Singh4e416952009-09-23 15:56:39 -07003639 /*
3640 * This loop can run a while, specially if mem_cgroup's continuously
3641 * keep exceeding their soft limit and putting the system under
3642 * pressure
3643 */
3644 do {
3645 if (next_mz)
3646 mz = next_mz;
3647 else
3648 mz = mem_cgroup_largest_soft_limit_node(mctz);
3649 if (!mz)
3650 break;
3651
Ying Han0ae5e892011-05-26 16:25:25 -07003652 nr_scanned = 0;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003653 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
Johannes Weiner56600482012-01-12 17:17:59 -08003654 gfp_mask, &nr_scanned);
Balbir Singh4e416952009-09-23 15:56:39 -07003655 nr_reclaimed += reclaimed;
Ying Han0ae5e892011-05-26 16:25:25 -07003656 *total_scanned += nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003657 spin_lock(&mctz->lock);
3658
3659 /*
3660 * If we failed to reclaim anything from this memory cgroup
3661 * it is time to move on to the next cgroup
3662 */
3663 next_mz = NULL;
3664 if (!reclaimed) {
3665 do {
3666 /*
3667 * Loop until we find yet another one.
3668 *
3669 * By the time we get the soft_limit lock
3670 * again, someone might have aded the
3671 * group back on the RB tree. Iterate to
3672 * make sure we get a different mem.
3673 * mem_cgroup_largest_soft_limit_node returns
3674 * NULL if no other cgroup is present on
3675 * the tree
3676 */
3677 next_mz =
3678 __mem_cgroup_largest_soft_limit_node(mctz);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003679 if (next_mz == mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003680 css_put(&next_mz->memcg->css);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003681 else /* next_mz == NULL or other memcg */
Balbir Singh4e416952009-09-23 15:56:39 -07003682 break;
3683 } while (1);
3684 }
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003685 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
3686 excess = res_counter_soft_limit_excess(&mz->memcg->res);
Balbir Singh4e416952009-09-23 15:56:39 -07003687 /*
3688 * One school of thought says that we should not add
3689 * back the node to the tree if reclaim returns 0.
3690 * But our reclaim could return 0, simply because due
3691 * to priority we are exposing a smaller subset of
3692 * memory to reclaim from. Consider this as a longer
3693 * term TODO.
3694 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003695 /* If excess == 0, no tree ops */
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003696 __mem_cgroup_insert_exceeded(mz->memcg, mz, mctz, excess);
Balbir Singh4e416952009-09-23 15:56:39 -07003697 spin_unlock(&mctz->lock);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003698 css_put(&mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003699 loop++;
3700 /*
3701 * Could not reclaim anything and there are no more
3702 * mem cgroups to try or we seem to be looping without
3703 * reclaiming anything.
3704 */
3705 if (!nr_reclaimed &&
3706 (next_mz == NULL ||
3707 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3708 break;
3709 } while (!nr_reclaimed);
3710 if (next_mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003711 css_put(&next_mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003712 return nr_reclaimed;
3713}
3714
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07003715/*
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003716 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
3717 * reclaim the pages page themselves - it just removes the page_cgroups.
3718 * Returns true if some page_cgroups were not freed, indicating that the caller
3719 * must retry this operation.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003720 */
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003721static bool mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003722 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003723{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08003724 struct lruvec *lruvec;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003725 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003726 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08003727 struct page *busy;
3728 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003729
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003730 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08003731 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
3732 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003733
Hugh Dickinsbea8c152012-11-16 14:14:54 -08003734 loop = mem_cgroup_get_lru_size(lruvec, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003735 /* give some margin against EBUSY etc...*/
3736 loop += 256;
3737 busy = NULL;
3738 while (loop--) {
Johannes Weiner925b7672012-01-12 17:18:15 -08003739 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07003740 struct page *page;
3741
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003742 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003743 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003744 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003745 break;
3746 }
Johannes Weiner925b7672012-01-12 17:18:15 -08003747 page = list_entry(list->prev, struct page, lru);
3748 if (busy == page) {
3749 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003750 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003751 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003752 continue;
3753 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003754 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003755
Johannes Weiner925b7672012-01-12 17:18:15 -08003756 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07003757
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003758 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003759 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08003760 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003761 cond_resched();
3762 } else
3763 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003764 }
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003765 return !list_empty(list);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003766}
3767
3768/*
3769 * make mem_cgroup's charge to be 0 if there is no task.
3770 * This enables deleting this mem_cgroup.
3771 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003772static int mem_cgroup_force_empty(struct mem_cgroup *memcg, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003773{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003774 int ret;
3775 int node, zid, shrink;
3776 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003777 struct cgroup *cgrp = memcg->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003778
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003779 css_get(&memcg->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003780
3781 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003782 /* should free all ? */
3783 if (free_all)
3784 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003785move_account:
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003786 do {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003787 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003788 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003789 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003790 /* This is for making all *used* pages to be on LRU. */
3791 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003792 drain_all_stock_sync(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003793 ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003794 mem_cgroup_start_move(memcg);
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08003795 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003796 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003797 enum lru_list lru;
3798 for_each_lru(lru) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003799 ret = mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003800 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003801 if (ret)
3802 break;
3803 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003804 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003805 if (ret)
3806 break;
3807 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003808 mem_cgroup_end_move(memcg);
3809 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003810 cond_resched();
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003811 /* "ret" should also be checked to ensure all lists are empty. */
Glauber Costa569530f2012-04-12 12:49:13 -07003812 } while (res_counter_read_u64(&memcg->res, RES_USAGE) > 0 || ret);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003813out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003814 css_put(&memcg->css);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003815 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003816
3817try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003818 /* returns EBUSY if there is a task or if we come here twice. */
3819 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003820 ret = -EBUSY;
3821 goto out;
3822 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003823 /* we call try-to-free pages for make this cgroup empty */
3824 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003825 /* try to free all pages in this cgroup */
3826 shrink = 1;
Glauber Costa569530f2012-04-12 12:49:13 -07003827 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003828 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003829
3830 if (signal_pending(current)) {
3831 ret = -EINTR;
3832 goto out;
3833 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003834 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07003835 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003836 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003837 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003838 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003839 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003840 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003841
3842 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003843 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003844 /* try move_account...there may be some *locked* pages. */
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003845 goto move_account;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003846}
3847
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07003848static int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003849{
3850 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3851}
3852
3853
Balbir Singh18f59ea2009-01-07 18:08:07 -08003854static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3855{
3856 return mem_cgroup_from_cont(cont)->use_hierarchy;
3857}
3858
3859static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3860 u64 val)
3861{
3862 int retval = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003863 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003864 struct cgroup *parent = cont->parent;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003865 struct mem_cgroup *parent_memcg = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003866
3867 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003868 parent_memcg = mem_cgroup_from_cont(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003869
3870 cgroup_lock();
Glauber Costa567fb432012-07-31 16:43:07 -07003871
3872 if (memcg->use_hierarchy == val)
3873 goto out;
3874
Balbir Singh18f59ea2009-01-07 18:08:07 -08003875 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003876 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003877 * in the child subtrees. If it is unset, then the change can
3878 * occur, provided the current cgroup has no children.
3879 *
3880 * For the root cgroup, parent_mem is NULL, we allow value to be
3881 * set if there are no children.
3882 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003883 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003884 (val == 1 || val == 0)) {
3885 if (list_empty(&cont->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003886 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003887 else
3888 retval = -EBUSY;
3889 } else
3890 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07003891
3892out:
Balbir Singh18f59ea2009-01-07 18:08:07 -08003893 cgroup_unlock();
3894
3895 return retval;
3896}
3897
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003898
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003899static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003900 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003901{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003902 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003903 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003904
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003905 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003906 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003907 val += mem_cgroup_read_stat(iter, idx);
3908
3909 if (val < 0) /* race ? */
3910 val = 0;
3911 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003912}
3913
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003914static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003915{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003916 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003917
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003918 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003919 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00003920 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003921 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00003922 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003923 }
3924
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003925 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
3926 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003927
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003928 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07003929 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003930
3931 return val << PAGE_SHIFT;
3932}
3933
Tejun Heoaf36f902012-04-01 12:09:55 -07003934static ssize_t mem_cgroup_read(struct cgroup *cont, struct cftype *cft,
3935 struct file *file, char __user *buf,
3936 size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003937{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003938 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Tejun Heoaf36f902012-04-01 12:09:55 -07003939 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003940 u64 val;
Tejun Heoaf36f902012-04-01 12:09:55 -07003941 int type, name, len;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003942
3943 type = MEMFILE_TYPE(cft->private);
3944 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003945
3946 if (!do_swap_account && type == _MEMSWAP)
3947 return -EOPNOTSUPP;
3948
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003949 switch (type) {
3950 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003951 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003952 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003953 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003954 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003955 break;
3956 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003957 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003958 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003959 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003960 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003961 break;
3962 default:
3963 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003964 }
Tejun Heoaf36f902012-04-01 12:09:55 -07003965
3966 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
3967 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003968}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003969/*
3970 * The user of this function is...
3971 * RES_LIMIT.
3972 */
Paul Menage856c13a2008-07-25 01:47:04 -07003973static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
3974 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003975{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003976 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003977 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003978 unsigned long long val;
3979 int ret;
3980
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003981 type = MEMFILE_TYPE(cft->private);
3982 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003983
3984 if (!do_swap_account && type == _MEMSWAP)
3985 return -EOPNOTSUPP;
3986
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003987 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003988 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07003989 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3990 ret = -EINVAL;
3991 break;
3992 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003993 /* This function does all necessary parse...reuse it */
3994 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003995 if (ret)
3996 break;
3997 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003998 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003999 else
4000 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004001 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07004002 case RES_SOFT_LIMIT:
4003 ret = res_counter_memparse_write_strategy(buffer, &val);
4004 if (ret)
4005 break;
4006 /*
4007 * For memsw, soft limits are hard to implement in terms
4008 * of semantics, for now, we support soft limits for
4009 * control without swap
4010 */
4011 if (type == _MEM)
4012 ret = res_counter_set_soft_limit(&memcg->res, val);
4013 else
4014 ret = -EINVAL;
4015 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004016 default:
4017 ret = -EINVAL; /* should be BUG() ? */
4018 break;
4019 }
4020 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004021}
4022
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004023static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
4024 unsigned long long *mem_limit, unsigned long long *memsw_limit)
4025{
4026 struct cgroup *cgroup;
4027 unsigned long long min_limit, min_memsw_limit, tmp;
4028
4029 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4030 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4031 cgroup = memcg->css.cgroup;
4032 if (!memcg->use_hierarchy)
4033 goto out;
4034
4035 while (cgroup->parent) {
4036 cgroup = cgroup->parent;
4037 memcg = mem_cgroup_from_cont(cgroup);
4038 if (!memcg->use_hierarchy)
4039 break;
4040 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4041 min_limit = min(min_limit, tmp);
4042 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4043 min_memsw_limit = min(min_memsw_limit, tmp);
4044 }
4045out:
4046 *mem_limit = min_limit;
4047 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004048}
4049
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004050static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004051{
Tejun Heoaf36f902012-04-01 12:09:55 -07004052 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004053 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004054
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004055 type = MEMFILE_TYPE(event);
4056 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07004057
4058 if (!do_swap_account && type == _MEMSWAP)
4059 return -EOPNOTSUPP;
4060
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004061 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004062 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004063 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004064 res_counter_reset_max(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004065 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004066 res_counter_reset_max(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004067 break;
4068 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004069 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004070 res_counter_reset_failcnt(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004071 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004072 res_counter_reset_failcnt(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004073 break;
4074 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004075
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004076 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004077}
4078
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004079static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
4080 struct cftype *cft)
4081{
4082 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
4083}
4084
Daisuke Nishimura02491442010-03-10 15:22:17 -08004085#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004086static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4087 struct cftype *cft, u64 val)
4088{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004089 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004090
4091 if (val >= (1 << NR_MOVE_TYPE))
4092 return -EINVAL;
4093 /*
4094 * We check this value several times in both in can_attach() and
4095 * attach(), so we need cgroup lock to prevent this value from being
4096 * inconsistent.
4097 */
4098 cgroup_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004099 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004100 cgroup_unlock();
4101
4102 return 0;
4103}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004104#else
4105static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4106 struct cftype *cft, u64 val)
4107{
4108 return -ENOSYS;
4109}
4110#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004111
Ying Han406eb0c2011-05-26 16:25:37 -07004112#ifdef CONFIG_NUMA
Wanpeng Liab215882012-07-31 16:43:09 -07004113static int memcg_numa_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weinerfada52c2012-05-29 15:07:06 -07004114 struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07004115{
4116 int nid;
4117 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
4118 unsigned long node_nr;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004119 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Ying Han406eb0c2011-05-26 16:25:37 -07004120
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004121 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004122 seq_printf(m, "total=%lu", total_nr);
4123 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004124 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004125 seq_printf(m, " N%d=%lu", nid, node_nr);
4126 }
4127 seq_putc(m, '\n');
4128
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004129 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004130 seq_printf(m, "file=%lu", file_nr);
4131 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004132 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004133 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004134 seq_printf(m, " N%d=%lu", nid, node_nr);
4135 }
4136 seq_putc(m, '\n');
4137
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004138 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004139 seq_printf(m, "anon=%lu", anon_nr);
4140 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004141 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004142 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004143 seq_printf(m, " N%d=%lu", nid, node_nr);
4144 }
4145 seq_putc(m, '\n');
4146
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004147 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004148 seq_printf(m, "unevictable=%lu", unevictable_nr);
4149 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004150 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004151 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004152 seq_printf(m, " N%d=%lu", nid, node_nr);
4153 }
4154 seq_putc(m, '\n');
4155 return 0;
4156}
4157#endif /* CONFIG_NUMA */
4158
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004159static const char * const mem_cgroup_lru_names[] = {
4160 "inactive_anon",
4161 "active_anon",
4162 "inactive_file",
4163 "active_file",
4164 "unevictable",
4165};
4166
4167static inline void mem_cgroup_lru_names_not_uptodate(void)
4168{
4169 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
4170}
4171
Wanpeng Liab215882012-07-31 16:43:09 -07004172static int memcg_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004173 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004174{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004175 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004176 struct mem_cgroup *mi;
4177 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004178
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004179 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004180 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004181 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004182 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
4183 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004184 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004185
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004186 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
4187 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
4188 mem_cgroup_read_events(memcg, i));
4189
4190 for (i = 0; i < NR_LRU_LISTS; i++)
4191 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
4192 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
4193
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004194 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004195 {
4196 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004197 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004198 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004199 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004200 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4201 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004202 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004203
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004204 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
4205 long long val = 0;
4206
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004207 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004208 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004209 for_each_mem_cgroup_tree(mi, memcg)
4210 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
4211 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
4212 }
4213
4214 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
4215 unsigned long long val = 0;
4216
4217 for_each_mem_cgroup_tree(mi, memcg)
4218 val += mem_cgroup_read_events(mi, i);
4219 seq_printf(m, "total_%s %llu\n",
4220 mem_cgroup_events_names[i], val);
4221 }
4222
4223 for (i = 0; i < NR_LRU_LISTS; i++) {
4224 unsigned long long val = 0;
4225
4226 for_each_mem_cgroup_tree(mi, memcg)
4227 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
4228 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004229 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004230
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004231#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004232 {
4233 int nid, zid;
4234 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07004235 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004236 unsigned long recent_rotated[2] = {0, 0};
4237 unsigned long recent_scanned[2] = {0, 0};
4238
4239 for_each_online_node(nid)
4240 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004241 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07004242 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004243
Hugh Dickins89abfab2012-05-29 15:06:53 -07004244 recent_rotated[0] += rstat->recent_rotated[0];
4245 recent_rotated[1] += rstat->recent_rotated[1];
4246 recent_scanned[0] += rstat->recent_scanned[0];
4247 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004248 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004249 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
4250 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
4251 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
4252 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004253 }
4254#endif
4255
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004256 return 0;
4257}
4258
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004259static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
4260{
4261 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4262
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004263 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004264}
4265
4266static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
4267 u64 val)
4268{
4269 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4270 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08004271
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004272 if (val > 100)
4273 return -EINVAL;
4274
4275 if (cgrp->parent == NULL)
4276 return -EINVAL;
4277
4278 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08004279
4280 cgroup_lock();
4281
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004282 /* If under hierarchy, only empty-root can set this value */
4283 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08004284 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
4285 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004286 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08004287 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004288
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004289 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004290
Li Zefan068b38c2009-01-15 13:51:26 -08004291 cgroup_unlock();
4292
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004293 return 0;
4294}
4295
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004296static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4297{
4298 struct mem_cgroup_threshold_ary *t;
4299 u64 usage;
4300 int i;
4301
4302 rcu_read_lock();
4303 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004304 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004305 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004306 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004307
4308 if (!t)
4309 goto unlock;
4310
4311 usage = mem_cgroup_usage(memcg, swap);
4312
4313 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004314 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004315 * If it's not true, a threshold was crossed after last
4316 * call of __mem_cgroup_threshold().
4317 */
Phil Carmody5407a562010-05-26 14:42:42 -07004318 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004319
4320 /*
4321 * Iterate backward over array of thresholds starting from
4322 * current_threshold and check if a threshold is crossed.
4323 * If none of thresholds below usage is crossed, we read
4324 * only one element of the array here.
4325 */
4326 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4327 eventfd_signal(t->entries[i].eventfd, 1);
4328
4329 /* i = current_threshold + 1 */
4330 i++;
4331
4332 /*
4333 * Iterate forward over array of thresholds starting from
4334 * current_threshold+1 and check if a threshold is crossed.
4335 * If none of thresholds above usage is crossed, we read
4336 * only one element of the array here.
4337 */
4338 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4339 eventfd_signal(t->entries[i].eventfd, 1);
4340
4341 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004342 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004343unlock:
4344 rcu_read_unlock();
4345}
4346
4347static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4348{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004349 while (memcg) {
4350 __mem_cgroup_threshold(memcg, false);
4351 if (do_swap_account)
4352 __mem_cgroup_threshold(memcg, true);
4353
4354 memcg = parent_mem_cgroup(memcg);
4355 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004356}
4357
4358static int compare_thresholds(const void *a, const void *b)
4359{
4360 const struct mem_cgroup_threshold *_a = a;
4361 const struct mem_cgroup_threshold *_b = b;
4362
4363 return _a->threshold - _b->threshold;
4364}
4365
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004366static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004367{
4368 struct mem_cgroup_eventfd_list *ev;
4369
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004370 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004371 eventfd_signal(ev->eventfd, 1);
4372 return 0;
4373}
4374
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004375static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004376{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004377 struct mem_cgroup *iter;
4378
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004379 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004380 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004381}
4382
4383static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4384 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004385{
4386 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004387 struct mem_cgroup_thresholds *thresholds;
4388 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004389 int type = MEMFILE_TYPE(cft->private);
4390 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004391 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004392
4393 ret = res_counter_memparse_write_strategy(args, &threshold);
4394 if (ret)
4395 return ret;
4396
4397 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004398
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004399 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004400 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004401 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004402 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004403 else
4404 BUG();
4405
4406 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4407
4408 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004409 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004410 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4411
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004412 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004413
4414 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004415 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004416 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004417 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004418 ret = -ENOMEM;
4419 goto unlock;
4420 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004421 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004422
4423 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004424 if (thresholds->primary) {
4425 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004426 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004427 }
4428
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004429 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004430 new->entries[size - 1].eventfd = eventfd;
4431 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004432
4433 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004434 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004435 compare_thresholds, NULL);
4436
4437 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004438 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004439 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004440 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004441 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004442 * new->current_threshold will not be used until
4443 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004444 * it here.
4445 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004446 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004447 } else
4448 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004449 }
4450
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004451 /* Free old spare buffer and save old primary buffer as spare */
4452 kfree(thresholds->spare);
4453 thresholds->spare = thresholds->primary;
4454
4455 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004456
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004457 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004458 synchronize_rcu();
4459
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004460unlock:
4461 mutex_unlock(&memcg->thresholds_lock);
4462
4463 return ret;
4464}
4465
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004466static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004467 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004468{
4469 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004470 struct mem_cgroup_thresholds *thresholds;
4471 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004472 int type = MEMFILE_TYPE(cft->private);
4473 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004474 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004475
4476 mutex_lock(&memcg->thresholds_lock);
4477 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004478 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004479 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004480 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004481 else
4482 BUG();
4483
Anton Vorontsov371528c2012-02-24 05:14:46 +04004484 if (!thresholds->primary)
4485 goto unlock;
4486
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004487 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4488
4489 /* Check if a threshold crossed before removing */
4490 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4491
4492 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004493 size = 0;
4494 for (i = 0; i < thresholds->primary->size; i++) {
4495 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004496 size++;
4497 }
4498
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004499 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004500
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004501 /* Set thresholds array to NULL if we don't have thresholds */
4502 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004503 kfree(new);
4504 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004505 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004506 }
4507
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004508 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004509
4510 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004511 new->current_threshold = -1;
4512 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4513 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004514 continue;
4515
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004516 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004517 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004518 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004519 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004520 * until rcu_assign_pointer(), so it's safe to increment
4521 * it here.
4522 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004523 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004524 }
4525 j++;
4526 }
4527
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004528swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004529 /* Swap primary and spare array */
4530 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004531 /* If all events are unregistered, free the spare array */
4532 if (!new) {
4533 kfree(thresholds->spare);
4534 thresholds->spare = NULL;
4535 }
4536
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004537 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004538
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004539 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004540 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04004541unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004542 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004543}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004544
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004545static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4546 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4547{
4548 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4549 struct mem_cgroup_eventfd_list *event;
4550 int type = MEMFILE_TYPE(cft->private);
4551
4552 BUG_ON(type != _OOM_TYPE);
4553 event = kmalloc(sizeof(*event), GFP_KERNEL);
4554 if (!event)
4555 return -ENOMEM;
4556
Michal Hocko1af8efe2011-07-26 16:08:24 -07004557 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004558
4559 event->eventfd = eventfd;
4560 list_add(&event->list, &memcg->oom_notify);
4561
4562 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004563 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004564 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004565 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004566
4567 return 0;
4568}
4569
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004570static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004571 struct cftype *cft, struct eventfd_ctx *eventfd)
4572{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004573 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004574 struct mem_cgroup_eventfd_list *ev, *tmp;
4575 int type = MEMFILE_TYPE(cft->private);
4576
4577 BUG_ON(type != _OOM_TYPE);
4578
Michal Hocko1af8efe2011-07-26 16:08:24 -07004579 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004580
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004581 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004582 if (ev->eventfd == eventfd) {
4583 list_del(&ev->list);
4584 kfree(ev);
4585 }
4586 }
4587
Michal Hocko1af8efe2011-07-26 16:08:24 -07004588 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004589}
4590
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004591static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4592 struct cftype *cft, struct cgroup_map_cb *cb)
4593{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004594 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004595
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004596 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004597
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004598 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004599 cb->fill(cb, "under_oom", 1);
4600 else
4601 cb->fill(cb, "under_oom", 0);
4602 return 0;
4603}
4604
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004605static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4606 struct cftype *cft, u64 val)
4607{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004608 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004609 struct mem_cgroup *parent;
4610
4611 /* cannot set to root cgroup and only 0 and 1 are allowed */
4612 if (!cgrp->parent || !((val == 0) || (val == 1)))
4613 return -EINVAL;
4614
4615 parent = mem_cgroup_from_cont(cgrp->parent);
4616
4617 cgroup_lock();
4618 /* oom-kill-disable is a flag for subhierarchy. */
4619 if ((parent->use_hierarchy) ||
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004620 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004621 cgroup_unlock();
4622 return -EINVAL;
4623 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004624 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004625 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004626 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004627 cgroup_unlock();
4628 return 0;
4629}
4630
Andrew Mortonc255a452012-07-31 16:43:02 -07004631#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03004632static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004633{
Glauber Costa1d62e432012-04-09 19:36:33 -03004634 return mem_cgroup_sockets_init(memcg, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00004635};
4636
Glauber Costa1d62e432012-04-09 19:36:33 -03004637static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004638{
Glauber Costa1d62e432012-04-09 19:36:33 -03004639 mem_cgroup_sockets_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004640}
Glauber Costae5671df2011-12-11 21:47:01 +00004641#else
Glauber Costacbe128e32012-04-09 19:36:34 -03004642static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004643{
4644 return 0;
4645}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004646
Glauber Costa1d62e432012-04-09 19:36:33 -03004647static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004648{
4649}
Glauber Costae5671df2011-12-11 21:47:01 +00004650#endif
4651
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004652static struct cftype mem_cgroup_files[] = {
4653 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004654 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004655 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004656 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004657 .register_event = mem_cgroup_usage_register_event,
4658 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004659 },
4660 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004661 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004662 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004663 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004664 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004665 },
4666 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004667 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004668 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07004669 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004670 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004671 },
4672 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004673 .name = "soft_limit_in_bytes",
4674 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4675 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004676 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07004677 },
4678 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004679 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004680 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004681 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004682 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004683 },
Balbir Singh8697d332008-02-07 00:13:59 -08004684 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004685 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004686 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004687 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004688 {
4689 .name = "force_empty",
4690 .trigger = mem_cgroup_force_empty_write,
4691 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004692 {
4693 .name = "use_hierarchy",
4694 .write_u64 = mem_cgroup_hierarchy_write,
4695 .read_u64 = mem_cgroup_hierarchy_read,
4696 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004697 {
4698 .name = "swappiness",
4699 .read_u64 = mem_cgroup_swappiness_read,
4700 .write_u64 = mem_cgroup_swappiness_write,
4701 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004702 {
4703 .name = "move_charge_at_immigrate",
4704 .read_u64 = mem_cgroup_move_charge_read,
4705 .write_u64 = mem_cgroup_move_charge_write,
4706 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004707 {
4708 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004709 .read_map = mem_cgroup_oom_control_read,
4710 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004711 .register_event = mem_cgroup_oom_register_event,
4712 .unregister_event = mem_cgroup_oom_unregister_event,
4713 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4714 },
Ying Han406eb0c2011-05-26 16:25:37 -07004715#ifdef CONFIG_NUMA
4716 {
4717 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004718 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07004719 },
4720#endif
Andrew Mortonc255a452012-07-31 16:43:02 -07004721#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004722 {
4723 .name = "memsw.usage_in_bytes",
4724 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004725 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004726 .register_event = mem_cgroup_usage_register_event,
4727 .unregister_event = mem_cgroup_usage_unregister_event,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004728 },
4729 {
4730 .name = "memsw.max_usage_in_bytes",
4731 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4732 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004733 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004734 },
4735 {
4736 .name = "memsw.limit_in_bytes",
4737 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4738 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004739 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004740 },
4741 {
4742 .name = "memsw.failcnt",
4743 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4744 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004745 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004746 },
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004747#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07004748 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07004749};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004750
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004751static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004752{
4753 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004754 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004755 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004756 /*
4757 * This routine is called against possible nodes.
4758 * But it's BUG to call kmalloc() against offline node.
4759 *
4760 * TODO: this routine can waste much memory for nodes which will
4761 * never be onlined. It's better to use memory hotplug callback
4762 * function.
4763 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004764 if (!node_state(node, N_NORMAL_MEMORY))
4765 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004766 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004767 if (!pn)
4768 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004769
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004770 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4771 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004772 lruvec_init(&mz->lruvec);
Balbir Singhf64c3f52009-09-23 15:56:37 -07004773 mz->usage_in_excess = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07004774 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004775 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004776 }
Igor Mammedov0a619e52011-11-02 13:38:21 -07004777 memcg->info.nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004778 return 0;
4779}
4780
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004781static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004782{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004783 kfree(memcg->info.nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004784}
4785
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004786static struct mem_cgroup *mem_cgroup_alloc(void)
4787{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004788 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004789 int size = sizeof(struct mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004790
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004791 /* Can be very big if MAX_NUMNODES is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08004792 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004793 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004794 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004795 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004796
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004797 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004798 return NULL;
4799
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004800 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
4801 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004802 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004803 spin_lock_init(&memcg->pcp_counter_lock);
4804 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004805
4806out_free:
4807 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004808 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004809 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004810 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004811 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004812}
4813
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004814/*
Glauber Costa3afe36b2012-05-29 15:07:10 -07004815 * Helpers for freeing a kmalloc()ed/vzalloc()ed mem_cgroup by RCU,
Hugh Dickins59927fb2012-03-15 15:17:07 -07004816 * but in process context. The work_freeing structure is overlaid
4817 * on the rcu_freeing structure, which itself is overlaid on memsw.
4818 */
Glauber Costa3afe36b2012-05-29 15:07:10 -07004819static void free_work(struct work_struct *work)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004820{
4821 struct mem_cgroup *memcg;
Glauber Costa3afe36b2012-05-29 15:07:10 -07004822 int size = sizeof(struct mem_cgroup);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004823
4824 memcg = container_of(work, struct mem_cgroup, work_freeing);
Glauber Costa3f134612012-05-29 15:07:11 -07004825 /*
4826 * We need to make sure that (at least for now), the jump label
4827 * destruction code runs outside of the cgroup lock. This is because
4828 * get_online_cpus(), which is called from the static_branch update,
4829 * can't be called inside the cgroup_lock. cpusets are the ones
4830 * enforcing this dependency, so if they ever change, we might as well.
4831 *
4832 * schedule_work() will guarantee this happens. Be careful if you need
4833 * to move this code around, and make sure it is outside
4834 * the cgroup_lock.
4835 */
4836 disarm_sock_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004837 if (size < PAGE_SIZE)
4838 kfree(memcg);
4839 else
4840 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004841}
Glauber Costa3afe36b2012-05-29 15:07:10 -07004842
4843static void free_rcu(struct rcu_head *rcu_head)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004844{
4845 struct mem_cgroup *memcg;
4846
4847 memcg = container_of(rcu_head, struct mem_cgroup, rcu_freeing);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004848 INIT_WORK(&memcg->work_freeing, free_work);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004849 schedule_work(&memcg->work_freeing);
4850}
4851
4852/*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004853 * At destroying mem_cgroup, references from swap_cgroup can remain.
4854 * (scanning all at force_empty is too costly...)
4855 *
4856 * Instead of clearing all references at force_empty, we remember
4857 * the number of reference from swap_cgroup and free mem_cgroup when
4858 * it goes down to 0.
4859 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004860 * Removal of cgroup itself succeeds regardless of refs from swap.
4861 */
4862
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004863static void __mem_cgroup_free(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004864{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004865 int node;
4866
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004867 mem_cgroup_remove_from_trees(memcg);
4868 free_css_id(&mem_cgroup_subsys, &memcg->css);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004869
Bob Liu3ed28fa2012-01-12 17:19:04 -08004870 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004871 free_mem_cgroup_per_zone_info(memcg, node);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004872
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004873 free_percpu(memcg->stat);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004874 call_rcu(&memcg->rcu_freeing, free_rcu);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004875}
4876
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004877static void mem_cgroup_get(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004878{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004879 atomic_inc(&memcg->refcnt);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004880}
4881
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004882static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004883{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004884 if (atomic_sub_and_test(count, &memcg->refcnt)) {
4885 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4886 __mem_cgroup_free(memcg);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004887 if (parent)
4888 mem_cgroup_put(parent);
4889 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004890}
4891
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004892static void mem_cgroup_put(struct mem_cgroup *memcg)
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004893{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004894 __mem_cgroup_put(memcg, 1);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004895}
4896
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004897/*
4898 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4899 */
Glauber Costae1aab162011-12-11 21:47:03 +00004900struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004901{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004902 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004903 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004904 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004905}
Glauber Costae1aab162011-12-11 21:47:03 +00004906EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004907
Andrew Mortonc255a452012-07-31 16:43:02 -07004908#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004909static void __init enable_swap_cgroup(void)
4910{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004911 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004912 do_swap_account = 1;
4913}
4914#else
4915static void __init enable_swap_cgroup(void)
4916{
4917}
4918#endif
4919
Balbir Singhf64c3f52009-09-23 15:56:37 -07004920static int mem_cgroup_soft_limit_tree_init(void)
4921{
4922 struct mem_cgroup_tree_per_node *rtpn;
4923 struct mem_cgroup_tree_per_zone *rtpz;
4924 int tmp, node, zone;
4925
Bob Liu3ed28fa2012-01-12 17:19:04 -08004926 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -07004927 tmp = node;
4928 if (!node_state(node, N_NORMAL_MEMORY))
4929 tmp = -1;
4930 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
4931 if (!rtpn)
Michal Hockoc3cecc62012-01-12 17:18:50 -08004932 goto err_cleanup;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004933
4934 soft_limit_tree.rb_tree_per_node[node] = rtpn;
4935
4936 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4937 rtpz = &rtpn->rb_tree_per_zone[zone];
4938 rtpz->rb_root = RB_ROOT;
4939 spin_lock_init(&rtpz->lock);
4940 }
4941 }
4942 return 0;
Michal Hockoc3cecc62012-01-12 17:18:50 -08004943
4944err_cleanup:
Bob Liu3ed28fa2012-01-12 17:19:04 -08004945 for_each_node(node) {
Michal Hockoc3cecc62012-01-12 17:18:50 -08004946 if (!soft_limit_tree.rb_tree_per_node[node])
4947 break;
4948 kfree(soft_limit_tree.rb_tree_per_node[node]);
4949 soft_limit_tree.rb_tree_per_node[node] = NULL;
4950 }
4951 return 1;
4952
Balbir Singhf64c3f52009-09-23 15:56:37 -07004953}
4954
Li Zefan0eb253e2009-01-15 13:51:25 -08004955static struct cgroup_subsys_state * __ref
Li Zefan761b3ef2012-01-31 13:47:36 +08004956mem_cgroup_create(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004957{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004958 struct mem_cgroup *memcg, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004959 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004960 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004961
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004962 memcg = mem_cgroup_alloc();
4963 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004964 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004965
Bob Liu3ed28fa2012-01-12 17:19:04 -08004966 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004967 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004968 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004969
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004970 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004971 if (cont->parent == NULL) {
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004972 int cpu;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004973 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004974 parent = NULL;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004975 if (mem_cgroup_soft_limit_tree_init())
4976 goto free_out;
Hillf Dantona41c58a2011-12-19 17:11:57 -08004977 root_mem_cgroup = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004978 for_each_possible_cpu(cpu) {
4979 struct memcg_stock_pcp *stock =
4980 &per_cpu(memcg_stock, cpu);
4981 INIT_WORK(&stock->work, drain_local_stock);
4982 }
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07004983 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004984 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004985 parent = mem_cgroup_from_cont(cont->parent);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004986 memcg->use_hierarchy = parent->use_hierarchy;
4987 memcg->oom_kill_disable = parent->oom_kill_disable;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004988 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004989
Balbir Singh18f59ea2009-01-07 18:08:07 -08004990 if (parent && parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004991 res_counter_init(&memcg->res, &parent->res);
4992 res_counter_init(&memcg->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004993 /*
4994 * We increment refcnt of the parent to ensure that we can
4995 * safely access it on res_counter_charge/uncharge.
4996 * This refcnt will be decremented when freeing this
4997 * mem_cgroup(see mem_cgroup_put).
4998 */
4999 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005000 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005001 res_counter_init(&memcg->res, NULL);
5002 res_counter_init(&memcg->memsw, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07005003 /*
5004 * Deeper hierachy with use_hierarchy == false doesn't make
5005 * much sense so let cgroup subsystem know about this
5006 * unfortunate state in our controller.
5007 */
5008 if (parent && parent != root_mem_cgroup)
5009 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005010 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005011 memcg->last_scanned_node = MAX_NUMNODES;
5012 INIT_LIST_HEAD(&memcg->oom_notify);
Balbir Singh6d61ef42009-01-07 18:08:06 -08005013
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005014 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005015 memcg->swappiness = mem_cgroup_swappiness(parent);
5016 atomic_set(&memcg->refcnt, 1);
5017 memcg->move_charge_at_immigrate = 0;
5018 mutex_init(&memcg->thresholds_lock);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07005019 spin_lock_init(&memcg->move_lock);
Glauber Costacbe128e32012-04-09 19:36:34 -03005020
5021 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
5022 if (error) {
5023 /*
5024 * We call put now because our (and parent's) refcnts
5025 * are already in place. mem_cgroup_put() will internally
5026 * call __mem_cgroup_free, so return directly
5027 */
5028 mem_cgroup_put(memcg);
5029 return ERR_PTR(error);
5030 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005031 return &memcg->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005032free_out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005033 __mem_cgroup_free(memcg);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005034 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005035}
5036
Li Zefan761b3ef2012-01-31 13:47:36 +08005037static int mem_cgroup_pre_destroy(struct cgroup *cont)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005038{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005039 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005040
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005041 return mem_cgroup_force_empty(memcg, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005042}
5043
Li Zefan761b3ef2012-01-31 13:47:36 +08005044static void mem_cgroup_destroy(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005045{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005046 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005047
Glauber Costa1d62e432012-04-09 19:36:33 -03005048 kmem_cgroup_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005049
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005050 mem_cgroup_put(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005051}
5052
Daisuke Nishimura02491442010-03-10 15:22:17 -08005053#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005054/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005055#define PRECHARGE_COUNT_AT_ONCE 256
5056static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005057{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005058 int ret = 0;
5059 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005060 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005061
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005062 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005063 mc.precharge += count;
5064 /* we don't need css_get for root */
5065 return ret;
5066 }
5067 /* try to charge at once */
5068 if (count > 1) {
5069 struct res_counter *dummy;
5070 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005071 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005072 * by cgroup_lock_live_cgroup() that it is not removed and we
5073 * are still under the same cgroup_mutex. So we can postpone
5074 * css_get().
5075 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005076 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005077 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005078 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005079 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005080 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005081 goto one_by_one;
5082 }
5083 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005084 return ret;
5085 }
5086one_by_one:
5087 /* fall back to one by one charge */
5088 while (count--) {
5089 if (signal_pending(current)) {
5090 ret = -EINTR;
5091 break;
5092 }
5093 if (!batch_count--) {
5094 batch_count = PRECHARGE_COUNT_AT_ONCE;
5095 cond_resched();
5096 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005097 ret = __mem_cgroup_try_charge(NULL,
5098 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005099 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005100 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005101 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005102 mc.precharge++;
5103 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005104 return ret;
5105}
5106
5107/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005108 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005109 * @vma: the vma the pte to be checked belongs
5110 * @addr: the address corresponding to the pte to be checked
5111 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005112 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005113 *
5114 * Returns
5115 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5116 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5117 * move charge. if @target is not NULL, the page is stored in target->page
5118 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005119 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5120 * target for charge migration. if @target is not NULL, the entry is stored
5121 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005122 *
5123 * Called with pte lock held.
5124 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005125union mc_target {
5126 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005127 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005128};
5129
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005130enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005131 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005132 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005133 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005134};
5135
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005136static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5137 unsigned long addr, pte_t ptent)
5138{
5139 struct page *page = vm_normal_page(vma, addr, ptent);
5140
5141 if (!page || !page_mapped(page))
5142 return NULL;
5143 if (PageAnon(page)) {
5144 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005145 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005146 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005147 } else if (!move_file())
5148 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005149 return NULL;
5150 if (!get_page_unless_zero(page))
5151 return NULL;
5152
5153 return page;
5154}
5155
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005156#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005157static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5158 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5159{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005160 struct page *page = NULL;
5161 swp_entry_t ent = pte_to_swp_entry(ptent);
5162
5163 if (!move_anon() || non_swap_entry(ent))
5164 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005165 /*
5166 * Because lookup_swap_cache() updates some statistics counter,
5167 * we call find_get_page() with swapper_space directly.
5168 */
5169 page = find_get_page(&swapper_space, ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005170 if (do_swap_account)
5171 entry->val = ent.val;
5172
5173 return page;
5174}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005175#else
5176static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5177 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5178{
5179 return NULL;
5180}
5181#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005182
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005183static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5184 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5185{
5186 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005187 struct address_space *mapping;
5188 pgoff_t pgoff;
5189
5190 if (!vma->vm_file) /* anonymous vma */
5191 return NULL;
5192 if (!move_file())
5193 return NULL;
5194
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005195 mapping = vma->vm_file->f_mapping;
5196 if (pte_none(ptent))
5197 pgoff = linear_page_index(vma, addr);
5198 else /* pte_file(ptent) is true */
5199 pgoff = pte_to_pgoff(ptent);
5200
5201 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005202 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005203
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005204#ifdef CONFIG_SWAP
5205 /* shmem/tmpfs may report page out on swap: account for that too. */
5206 if (radix_tree_exceptional_entry(page)) {
5207 swp_entry_t swap = radix_to_swp_entry(page);
5208 if (do_swap_account)
5209 *entry = swap;
5210 page = find_get_page(&swapper_space, swap.val);
5211 }
5212#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005213 return page;
5214}
5215
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005216static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005217 unsigned long addr, pte_t ptent, union mc_target *target)
5218{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005219 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005220 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005221 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005222 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005223
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005224 if (pte_present(ptent))
5225 page = mc_handle_present_pte(vma, addr, ptent);
5226 else if (is_swap_pte(ptent))
5227 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005228 else if (pte_none(ptent) || pte_file(ptent))
5229 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005230
5231 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005232 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005233 if (page) {
5234 pc = lookup_page_cgroup(page);
5235 /*
5236 * Do only loose check w/o page_cgroup lock.
5237 * mem_cgroup_move_account() checks the pc is valid or not under
5238 * the lock.
5239 */
5240 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5241 ret = MC_TARGET_PAGE;
5242 if (target)
5243 target->page = page;
5244 }
5245 if (!ret || !target)
5246 put_page(page);
5247 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005248 /* There is a swap entry and a page doesn't exist or isn't charged */
5249 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08005250 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005251 ret = MC_TARGET_SWAP;
5252 if (target)
5253 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005254 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005255 return ret;
5256}
5257
Naoya Horiguchi12724852012-03-21 16:34:28 -07005258#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5259/*
5260 * We don't consider swapping or file mapped pages because THP does not
5261 * support them for now.
5262 * Caller should make sure that pmd_trans_huge(pmd) is true.
5263 */
5264static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5265 unsigned long addr, pmd_t pmd, union mc_target *target)
5266{
5267 struct page *page = NULL;
5268 struct page_cgroup *pc;
5269 enum mc_target_type ret = MC_TARGET_NONE;
5270
5271 page = pmd_page(pmd);
5272 VM_BUG_ON(!page || !PageHead(page));
5273 if (!move_anon())
5274 return ret;
5275 pc = lookup_page_cgroup(page);
5276 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5277 ret = MC_TARGET_PAGE;
5278 if (target) {
5279 get_page(page);
5280 target->page = page;
5281 }
5282 }
5283 return ret;
5284}
5285#else
5286static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5287 unsigned long addr, pmd_t pmd, union mc_target *target)
5288{
5289 return MC_TARGET_NONE;
5290}
5291#endif
5292
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005293static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5294 unsigned long addr, unsigned long end,
5295 struct mm_walk *walk)
5296{
5297 struct vm_area_struct *vma = walk->private;
5298 pte_t *pte;
5299 spinlock_t *ptl;
5300
Naoya Horiguchi12724852012-03-21 16:34:28 -07005301 if (pmd_trans_huge_lock(pmd, vma) == 1) {
5302 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5303 mc.precharge += HPAGE_PMD_NR;
5304 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005305 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005306 }
Dave Hansen03319322011-03-22 16:32:56 -07005307
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005308 if (pmd_trans_unstable(pmd))
5309 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005310 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5311 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005312 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005313 mc.precharge++; /* increment precharge temporarily */
5314 pte_unmap_unlock(pte - 1, ptl);
5315 cond_resched();
5316
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005317 return 0;
5318}
5319
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005320static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5321{
5322 unsigned long precharge;
5323 struct vm_area_struct *vma;
5324
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005325 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005326 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5327 struct mm_walk mem_cgroup_count_precharge_walk = {
5328 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5329 .mm = mm,
5330 .private = vma,
5331 };
5332 if (is_vm_hugetlb_page(vma))
5333 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005334 walk_page_range(vma->vm_start, vma->vm_end,
5335 &mem_cgroup_count_precharge_walk);
5336 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005337 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005338
5339 precharge = mc.precharge;
5340 mc.precharge = 0;
5341
5342 return precharge;
5343}
5344
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005345static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5346{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005347 unsigned long precharge = mem_cgroup_count_precharge(mm);
5348
5349 VM_BUG_ON(mc.moving_task);
5350 mc.moving_task = current;
5351 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005352}
5353
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005354/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5355static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005356{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005357 struct mem_cgroup *from = mc.from;
5358 struct mem_cgroup *to = mc.to;
5359
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005360 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005361 if (mc.precharge) {
5362 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
5363 mc.precharge = 0;
5364 }
5365 /*
5366 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5367 * we must uncharge here.
5368 */
5369 if (mc.moved_charge) {
5370 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
5371 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005372 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005373 /* we must fixup refcnts and charges */
5374 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005375 /* uncharge swap account from the old cgroup */
5376 if (!mem_cgroup_is_root(mc.from))
5377 res_counter_uncharge(&mc.from->memsw,
5378 PAGE_SIZE * mc.moved_swap);
5379 __mem_cgroup_put(mc.from, mc.moved_swap);
5380
5381 if (!mem_cgroup_is_root(mc.to)) {
5382 /*
5383 * we charged both to->res and to->memsw, so we should
5384 * uncharge to->res.
5385 */
5386 res_counter_uncharge(&mc.to->res,
5387 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005388 }
5389 /* we've already done mem_cgroup_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005390 mc.moved_swap = 0;
5391 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005392 memcg_oom_recover(from);
5393 memcg_oom_recover(to);
5394 wake_up_all(&mc.waitq);
5395}
5396
5397static void mem_cgroup_clear_mc(void)
5398{
5399 struct mem_cgroup *from = mc.from;
5400
5401 /*
5402 * we must clear moving_task before waking up waiters at the end of
5403 * task migration.
5404 */
5405 mc.moving_task = NULL;
5406 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005407 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005408 mc.from = NULL;
5409 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005410 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005411 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005412}
5413
Li Zefan761b3ef2012-01-31 13:47:36 +08005414static int mem_cgroup_can_attach(struct cgroup *cgroup,
5415 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005416{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005417 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005418 int ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005419 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005420
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005421 if (memcg->move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005422 struct mm_struct *mm;
5423 struct mem_cgroup *from = mem_cgroup_from_task(p);
5424
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005425 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005426
5427 mm = get_task_mm(p);
5428 if (!mm)
5429 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005430 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005431 if (mm->owner == p) {
5432 VM_BUG_ON(mc.from);
5433 VM_BUG_ON(mc.to);
5434 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005435 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005436 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005437 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005438 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005439 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005440 mc.to = memcg;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005441 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005442 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005443
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005444 ret = mem_cgroup_precharge_mc(mm);
5445 if (ret)
5446 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005447 }
5448 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005449 }
5450 return ret;
5451}
5452
Li Zefan761b3ef2012-01-31 13:47:36 +08005453static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5454 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005455{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005456 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005457}
5458
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005459static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5460 unsigned long addr, unsigned long end,
5461 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005462{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005463 int ret = 0;
5464 struct vm_area_struct *vma = walk->private;
5465 pte_t *pte;
5466 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005467 enum mc_target_type target_type;
5468 union mc_target target;
5469 struct page *page;
5470 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005471
Naoya Horiguchi12724852012-03-21 16:34:28 -07005472 /*
5473 * We don't take compound_lock() here but no race with splitting thp
5474 * happens because:
5475 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
5476 * under splitting, which means there's no concurrent thp split,
5477 * - if another thread runs into split_huge_page() just after we
5478 * entered this if-block, the thread must wait for page table lock
5479 * to be unlocked in __split_huge_page_splitting(), where the main
5480 * part of thp split is not executed yet.
5481 */
5482 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07005483 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005484 spin_unlock(&vma->vm_mm->page_table_lock);
5485 return 0;
5486 }
5487 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5488 if (target_type == MC_TARGET_PAGE) {
5489 page = target.page;
5490 if (!isolate_lru_page(page)) {
5491 pc = lookup_page_cgroup(page);
5492 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005493 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005494 mc.precharge -= HPAGE_PMD_NR;
5495 mc.moved_charge += HPAGE_PMD_NR;
5496 }
5497 putback_lru_page(page);
5498 }
5499 put_page(page);
5500 }
5501 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005502 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005503 }
5504
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005505 if (pmd_trans_unstable(pmd))
5506 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005507retry:
5508 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5509 for (; addr != end; addr += PAGE_SIZE) {
5510 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08005511 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005512
5513 if (!mc.precharge)
5514 break;
5515
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005516 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005517 case MC_TARGET_PAGE:
5518 page = target.page;
5519 if (isolate_lru_page(page))
5520 goto put;
5521 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07005522 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005523 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005524 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005525 /* we uncharge from mc.from later. */
5526 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005527 }
5528 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005529put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005530 put_page(page);
5531 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005532 case MC_TARGET_SWAP:
5533 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07005534 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005535 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005536 /* we fixup refcnts and charges later. */
5537 mc.moved_swap++;
5538 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08005539 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005540 default:
5541 break;
5542 }
5543 }
5544 pte_unmap_unlock(pte - 1, ptl);
5545 cond_resched();
5546
5547 if (addr != end) {
5548 /*
5549 * We have consumed all precharges we got in can_attach().
5550 * We try charge one by one, but don't do any additional
5551 * charges to mc.to if we have failed in charge once in attach()
5552 * phase.
5553 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005554 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005555 if (!ret)
5556 goto retry;
5557 }
5558
5559 return ret;
5560}
5561
5562static void mem_cgroup_move_charge(struct mm_struct *mm)
5563{
5564 struct vm_area_struct *vma;
5565
5566 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005567retry:
5568 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5569 /*
5570 * Someone who are holding the mmap_sem might be waiting in
5571 * waitq. So we cancel all extra charges, wake up all waiters,
5572 * and retry. Because we cancel precharges, we might not be able
5573 * to move enough charges, but moving charge is a best-effort
5574 * feature anyway, so it wouldn't be a big problem.
5575 */
5576 __mem_cgroup_clear_mc();
5577 cond_resched();
5578 goto retry;
5579 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005580 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5581 int ret;
5582 struct mm_walk mem_cgroup_move_charge_walk = {
5583 .pmd_entry = mem_cgroup_move_charge_pte_range,
5584 .mm = mm,
5585 .private = vma,
5586 };
5587 if (is_vm_hugetlb_page(vma))
5588 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005589 ret = walk_page_range(vma->vm_start, vma->vm_end,
5590 &mem_cgroup_move_charge_walk);
5591 if (ret)
5592 /*
5593 * means we have consumed all precharges and failed in
5594 * doing additional charge. Just abandon here.
5595 */
5596 break;
5597 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005598 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005599}
5600
Li Zefan761b3ef2012-01-31 13:47:36 +08005601static void mem_cgroup_move_task(struct cgroup *cont,
5602 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08005603{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005604 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005605 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005606
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005607 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005608 if (mc.to)
5609 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005610 mmput(mm);
5611 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005612 if (mc.to)
5613 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005614}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005615#else /* !CONFIG_MMU */
Li Zefan761b3ef2012-01-31 13:47:36 +08005616static int mem_cgroup_can_attach(struct cgroup *cgroup,
5617 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005618{
5619 return 0;
5620}
Li Zefan761b3ef2012-01-31 13:47:36 +08005621static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5622 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005623{
5624}
Li Zefan761b3ef2012-01-31 13:47:36 +08005625static void mem_cgroup_move_task(struct cgroup *cont,
5626 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005627{
5628}
5629#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005630
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005631struct cgroup_subsys mem_cgroup_subsys = {
5632 .name = "memory",
5633 .subsys_id = mem_cgroup_subsys_id,
5634 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005635 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005636 .destroy = mem_cgroup_destroy,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005637 .can_attach = mem_cgroup_can_attach,
5638 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005639 .attach = mem_cgroup_move_task,
Tejun Heo6bc10342012-04-01 12:09:55 -07005640 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005641 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005642 .use_id = 1,
Tejun Heo48ddbe12012-04-01 12:09:56 -07005643 .__DEPRECATED_clear_css_refs = true,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005644};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005645
Andrew Mortonc255a452012-07-31 16:43:02 -07005646#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08005647static int __init enable_swap_account(char *s)
5648{
5649 /* consider enabled if no parameter or 1 is given */
Michal Hockoa2c89902011-05-24 17:12:50 -07005650 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005651 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07005652 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005653 really_do_swap_account = 0;
5654 return 1;
5655}
Michal Hockoa2c89902011-05-24 17:12:50 -07005656__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005657
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005658#endif