blob: b7b230606f2c115bae193a5c7133e6a7e1c506d6 [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08009 * Memory thresholds
10 * Copyright (C) 2009 Nokia Corporation
11 * Author: Kirill A. Shutemov
12 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -080013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 */
23
24#include <linux/res_counter.h>
25#include <linux/memcontrol.h>
26#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080027#include <linux/mm.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080028#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080029#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080030#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080031#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080032#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080033#include <linux/bit_spinlock.h>
34#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070035#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040036#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080037#include <linux/mutex.h>
Balbir Singhf64c3f52009-09-23 15:56:37 -070038#include <linux/rbtree.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070039#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080040#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080041#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080042#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080043#include <linux/eventfd.h>
44#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080045#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080046#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070047#include <linux/vmalloc.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070048#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070049#include <linux/page_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080050#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070051#include <linux/oom.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080052#include "internal.h"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000053#include <net/sock.h>
54#include <net/tcp_memcontrol.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080055
Balbir Singh8697d332008-02-07 00:13:59 -080056#include <asm/uaccess.h>
57
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070058#include <trace/events/vmscan.h>
59
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070060struct cgroup_subsys mem_cgroup_subsys __read_mostly;
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070061#define MEM_CGROUP_RECLAIM_RETRIES 5
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -070062static struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080063
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080064#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070065/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080066int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080067
68/* for remember boot option*/
69#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP_ENABLED
70static int really_do_swap_account __initdata = 1;
71#else
72static int really_do_swap_account __initdata = 0;
73#endif
74
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080075#else
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -070076#define do_swap_account 0
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080077#endif
78
79
Balbir Singh8cdea7c2008-02-07 00:13:50 -080080/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080081 * Statistics for memory cgroup.
82 */
83enum mem_cgroup_stat_index {
84 /*
85 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
86 */
87 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
Balbir Singhd69b0422009-06-17 16:26:34 -070088 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -080089 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
Balbir Singh0c3e73e2009-09-23 15:56:42 -070090 MEM_CGROUP_STAT_SWAPOUT, /* # of pages, swapped out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080091 MEM_CGROUP_STAT_NSTATS,
92};
93
Johannes Weinere9f89742011-03-23 16:42:37 -070094enum mem_cgroup_events_index {
95 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
96 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -070097 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
98 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -070099 MEM_CGROUP_EVENTS_NSTATS,
100};
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700101/*
102 * Per memcg event counter is incremented at every pagein/pageout. With THP,
103 * it will be incremated by the number of pages. This counter is used for
104 * for trigger some periodic events. This is straightforward and better
105 * than using jiffies etc. to handle periodic memcg event.
106 */
107enum mem_cgroup_events_target {
108 MEM_CGROUP_TARGET_THRESH,
109 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700110 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700111 MEM_CGROUP_NTARGETS,
112};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700113#define THRESHOLDS_EVENTS_TARGET 128
114#define SOFTLIMIT_EVENTS_TARGET 1024
115#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700116
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800117struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700118 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700119 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700120 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700121 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800122};
123
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800124struct mem_cgroup_reclaim_iter {
125 /* css_id of the last scanned hierarchy member */
126 int position;
127 /* scan generation, increased every round-trip */
128 unsigned int generation;
129};
130
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800131/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800132 * per-zone information in memory controller.
133 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800134struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800135 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700136 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800137
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800138 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
139
Balbir Singhf64c3f52009-09-23 15:56:37 -0700140 struct rb_node tree_node; /* RB tree node */
141 unsigned long long usage_in_excess;/* Set to the value by which */
142 /* the soft limit is exceeded*/
143 bool on_tree;
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700144 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700145 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800146};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800147
148struct mem_cgroup_per_node {
149 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
150};
151
152struct mem_cgroup_lru_info {
153 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
154};
155
156/*
Balbir Singhf64c3f52009-09-23 15:56:37 -0700157 * Cgroups above their limits are maintained in a RB-Tree, independent of
158 * their hierarchy representation
159 */
160
161struct mem_cgroup_tree_per_zone {
162 struct rb_root rb_root;
163 spinlock_t lock;
164};
165
166struct mem_cgroup_tree_per_node {
167 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
168};
169
170struct mem_cgroup_tree {
171 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
172};
173
174static struct mem_cgroup_tree soft_limit_tree __read_mostly;
175
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800176struct mem_cgroup_threshold {
177 struct eventfd_ctx *eventfd;
178 u64 threshold;
179};
180
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700181/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800182struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700183 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700184 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800185 /* Size of entries[] */
186 unsigned int size;
187 /* Array of thresholds */
188 struct mem_cgroup_threshold entries[0];
189};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700190
191struct mem_cgroup_thresholds {
192 /* Primary thresholds array */
193 struct mem_cgroup_threshold_ary *primary;
194 /*
195 * Spare threshold array.
196 * This is needed to make mem_cgroup_unregister_event() "never fail".
197 * It must be able to store at least primary->size - 1 entries.
198 */
199 struct mem_cgroup_threshold_ary *spare;
200};
201
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700202/* for OOM */
203struct mem_cgroup_eventfd_list {
204 struct list_head list;
205 struct eventfd_ctx *eventfd;
206};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800207
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700208static void mem_cgroup_threshold(struct mem_cgroup *memcg);
209static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800210
Balbir Singhf64c3f52009-09-23 15:56:37 -0700211/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800212 * The memory controller data structure. The memory controller controls both
213 * page cache and RSS per cgroup. We would eventually like to provide
214 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
215 * to help the administrator determine what knobs to tune.
216 *
217 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800218 * we hit the water mark. May be even add a low water mark, such that
219 * no reclaim occurs from a cgroup at it's low water mark, this is
220 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800221 */
222struct mem_cgroup {
223 struct cgroup_subsys_state css;
224 /*
225 * the counter to account for memory usage
226 */
227 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700228
229 union {
230 /*
231 * the counter to account for mem+swap usage.
232 */
233 struct res_counter memsw;
234
235 /*
236 * rcu_freeing is used only when freeing struct mem_cgroup,
237 * so put it into a union to avoid wasting more memory.
238 * It must be disjoint from the css field. It could be
239 * in a union with the res field, but res plays a much
240 * larger part in mem_cgroup life than memsw, and might
241 * be of interest, even at time of free, when debugging.
242 * So share rcu_head with the less interesting memsw.
243 */
244 struct rcu_head rcu_freeing;
245 /*
246 * But when using vfree(), that cannot be done at
247 * interrupt time, so we must then queue the work.
248 */
249 struct work_struct work_freeing;
250 };
251
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800252 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800253 * Per cgroup active and inactive list, similar to the
254 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800255 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800256 struct mem_cgroup_lru_info info;
Ying Han889976d2011-05-26 16:25:33 -0700257 int last_scanned_node;
258#if MAX_NUMNODES > 1
259 nodemask_t scan_nodes;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700260 atomic_t numainfo_events;
261 atomic_t numainfo_updating;
Ying Han889976d2011-05-26 16:25:33 -0700262#endif
Balbir Singh18f59ea2009-01-07 18:08:07 -0800263 /*
264 * Should the accounting and control be hierarchical, per subtree?
265 */
266 bool use_hierarchy;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700267
268 bool oom_lock;
269 atomic_t under_oom;
270
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800271 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800272
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700273 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700274 /* OOM-Killer disable */
275 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800276
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700277 /* set when res.limit == memsw.limit */
278 bool memsw_is_minimum;
279
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800280 /* protect arrays of thresholds */
281 struct mutex thresholds_lock;
282
283 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700284 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700285
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800286 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700287 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700288
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700289 /* For oom notifier event fd */
290 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700291
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800292 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800293 * Should we move charges of a task when a task is moved into this
294 * mem_cgroup ? And what type of charges should we move ?
295 */
296 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800297 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700298 * set > 0 if pages under this cgroup are moving to other cgroup.
299 */
300 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700301 /* taken only while moving_account > 0 */
302 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700303 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800304 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800305 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700306 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700307 /*
308 * used when a cpu is offlined or other synchronizations
309 * See mem_cgroup_read_stat().
310 */
311 struct mem_cgroup_stat_cpu nocpu_base;
312 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000313
314#ifdef CONFIG_INET
315 struct tcp_memcontrol tcp_mem;
316#endif
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800317};
318
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800319/* Stuffs for move charges at task migration. */
320/*
321 * Types of charges to be moved. "move_charge_at_immitgrate" is treated as a
322 * left-shifted bitmap of these types.
323 */
324enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800325 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700326 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800327 NR_MOVE_TYPE,
328};
329
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800330/* "mc" and its members are protected by cgroup_mutex */
331static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800332 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800333 struct mem_cgroup *from;
334 struct mem_cgroup *to;
335 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800336 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800337 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800338 struct task_struct *moving_task; /* a task moving charges */
339 wait_queue_head_t waitq; /* a waitq for other context */
340} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700341 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800342 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
343};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800344
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700345static bool move_anon(void)
346{
347 return test_bit(MOVE_CHARGE_TYPE_ANON,
348 &mc.to->move_charge_at_immigrate);
349}
350
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700351static bool move_file(void)
352{
353 return test_bit(MOVE_CHARGE_TYPE_FILE,
354 &mc.to->move_charge_at_immigrate);
355}
356
Balbir Singh4e416952009-09-23 15:56:39 -0700357/*
358 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
359 * limit reclaim to prevent infinite loops, if they ever occur.
360 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700361#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
362#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700363
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800364enum charge_type {
365 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
366 MEM_CGROUP_CHARGE_TYPE_MAPPED,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700367 MEM_CGROUP_CHARGE_TYPE_SHMEM, /* used by page migration of shmem */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700368 MEM_CGROUP_CHARGE_TYPE_FORCE, /* used by force_empty */
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800369 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700370 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700371 NR_CHARGE_TYPE,
372};
373
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800374/* for encoding cft->private value on file */
Glauber Costa65c64ce2011-12-22 01:02:27 +0000375#define _MEM (0)
376#define _MEMSWAP (1)
377#define _OOM_TYPE (2)
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700378#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
379#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800380#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700381/* Used for OOM nofiier */
382#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800383
Balbir Singh75822b42009-09-23 15:56:38 -0700384/*
385 * Reclaim flags for mem_cgroup_hierarchical_reclaim
386 */
387#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
388#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
389#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
390#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
391
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700392static void mem_cgroup_get(struct mem_cgroup *memcg);
393static void mem_cgroup_put(struct mem_cgroup *memcg);
Glauber Costae1aab162011-12-11 21:47:03 +0000394
395/* Writing them here to avoid exposing memcg's inner layout */
396#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
Glauber Costae1aab162011-12-11 21:47:03 +0000397#include <net/sock.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000398#include <net/ip.h>
Glauber Costae1aab162011-12-11 21:47:03 +0000399
400static bool mem_cgroup_is_root(struct mem_cgroup *memcg);
401void sock_update_memcg(struct sock *sk)
402{
Glauber Costa376be5f2012-01-20 04:57:14 +0000403 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000404 struct mem_cgroup *memcg;
405
406 BUG_ON(!sk->sk_prot->proto_cgroup);
407
Glauber Costaf3f511e2012-01-05 20:16:39 +0000408 /* Socket cloning can throw us here with sk_cgrp already
409 * filled. It won't however, necessarily happen from
410 * process context. So the test for root memcg given
411 * the current task's memcg won't help us in this case.
412 *
413 * Respecting the original socket's memcg is a better
414 * decision in this case.
415 */
416 if (sk->sk_cgrp) {
417 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
418 mem_cgroup_get(sk->sk_cgrp->memcg);
419 return;
420 }
421
Glauber Costae1aab162011-12-11 21:47:03 +0000422 rcu_read_lock();
423 memcg = mem_cgroup_from_task(current);
424 if (!mem_cgroup_is_root(memcg)) {
425 mem_cgroup_get(memcg);
426 sk->sk_cgrp = sk->sk_prot->proto_cgroup(memcg);
427 }
428 rcu_read_unlock();
429 }
430}
431EXPORT_SYMBOL(sock_update_memcg);
432
433void sock_release_memcg(struct sock *sk)
434{
Glauber Costa376be5f2012-01-20 04:57:14 +0000435 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000436 struct mem_cgroup *memcg;
437 WARN_ON(!sk->sk_cgrp->memcg);
438 memcg = sk->sk_cgrp->memcg;
439 mem_cgroup_put(memcg);
440 }
441}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000442
Glauber Costa319d3b92012-01-15 22:04:39 +0000443#ifdef CONFIG_INET
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000444struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
445{
446 if (!memcg || mem_cgroup_is_root(memcg))
447 return NULL;
448
449 return &memcg->tcp_mem.cg_proto;
450}
451EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000452#endif /* CONFIG_INET */
453#endif /* CONFIG_CGROUP_MEM_RES_CTLR_KMEM */
454
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700455static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800456
Balbir Singhf64c3f52009-09-23 15:56:37 -0700457static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700458mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700459{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700460 return &memcg->info.nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700461}
462
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700463struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100464{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700465 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100466}
467
Balbir Singhf64c3f52009-09-23 15:56:37 -0700468static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700469page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700470{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700471 int nid = page_to_nid(page);
472 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700473
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700474 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700475}
476
477static struct mem_cgroup_tree_per_zone *
478soft_limit_tree_node_zone(int nid, int zid)
479{
480 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
481}
482
483static struct mem_cgroup_tree_per_zone *
484soft_limit_tree_from_page(struct page *page)
485{
486 int nid = page_to_nid(page);
487 int zid = page_zonenum(page);
488
489 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
490}
491
492static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700493__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700494 struct mem_cgroup_per_zone *mz,
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700495 struct mem_cgroup_tree_per_zone *mctz,
496 unsigned long long new_usage_in_excess)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700497{
498 struct rb_node **p = &mctz->rb_root.rb_node;
499 struct rb_node *parent = NULL;
500 struct mem_cgroup_per_zone *mz_node;
501
502 if (mz->on_tree)
503 return;
504
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700505 mz->usage_in_excess = new_usage_in_excess;
506 if (!mz->usage_in_excess)
507 return;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700508 while (*p) {
509 parent = *p;
510 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
511 tree_node);
512 if (mz->usage_in_excess < mz_node->usage_in_excess)
513 p = &(*p)->rb_left;
514 /*
515 * We can't avoid mem cgroups that are over their soft
516 * limit by the same amount
517 */
518 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
519 p = &(*p)->rb_right;
520 }
521 rb_link_node(&mz->tree_node, parent, p);
522 rb_insert_color(&mz->tree_node, &mctz->rb_root);
523 mz->on_tree = true;
Balbir Singh4e416952009-09-23 15:56:39 -0700524}
525
526static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700527__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -0700528 struct mem_cgroup_per_zone *mz,
529 struct mem_cgroup_tree_per_zone *mctz)
530{
531 if (!mz->on_tree)
532 return;
533 rb_erase(&mz->tree_node, &mctz->rb_root);
534 mz->on_tree = false;
535}
536
537static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700538mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700539 struct mem_cgroup_per_zone *mz,
540 struct mem_cgroup_tree_per_zone *mctz)
541{
542 spin_lock(&mctz->lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700543 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700544 spin_unlock(&mctz->lock);
545}
546
Balbir Singhf64c3f52009-09-23 15:56:37 -0700547
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700548static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700549{
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700550 unsigned long long excess;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700551 struct mem_cgroup_per_zone *mz;
552 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700553 int nid = page_to_nid(page);
554 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700555 mctz = soft_limit_tree_from_page(page);
556
557 /*
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700558 * Necessary to update all ancestors when hierarchy is used.
559 * because their event counter is not touched.
Balbir Singhf64c3f52009-09-23 15:56:37 -0700560 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700561 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
562 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
563 excess = res_counter_soft_limit_excess(&memcg->res);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700564 /*
565 * We have to update the tree if mz is on RB-tree or
566 * mem is over its softlimit.
567 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700568 if (excess || mz->on_tree) {
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700569 spin_lock(&mctz->lock);
570 /* if on-tree, remove it */
571 if (mz->on_tree)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700572 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700573 /*
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700574 * Insert again. mz->usage_in_excess will be updated.
575 * If excess is 0, no tree ops.
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700576 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700577 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700578 spin_unlock(&mctz->lock);
579 }
Balbir Singhf64c3f52009-09-23 15:56:37 -0700580 }
581}
582
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700583static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700584{
585 int node, zone;
586 struct mem_cgroup_per_zone *mz;
587 struct mem_cgroup_tree_per_zone *mctz;
588
Bob Liu3ed28fa2012-01-12 17:19:04 -0800589 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -0700590 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700591 mz = mem_cgroup_zoneinfo(memcg, node, zone);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700592 mctz = soft_limit_tree_node_zone(node, zone);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700593 mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700594 }
595 }
596}
597
Balbir Singh4e416952009-09-23 15:56:39 -0700598static struct mem_cgroup_per_zone *
599__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
600{
601 struct rb_node *rightmost = NULL;
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700602 struct mem_cgroup_per_zone *mz;
Balbir Singh4e416952009-09-23 15:56:39 -0700603
604retry:
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700605 mz = NULL;
Balbir Singh4e416952009-09-23 15:56:39 -0700606 rightmost = rb_last(&mctz->rb_root);
607 if (!rightmost)
608 goto done; /* Nothing to reclaim from */
609
610 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
611 /*
612 * Remove the node now but someone else can add it back,
613 * we will to add it back at the end of reclaim to its correct
614 * position in the tree.
615 */
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700616 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
617 if (!res_counter_soft_limit_excess(&mz->memcg->res) ||
618 !css_tryget(&mz->memcg->css))
Balbir Singh4e416952009-09-23 15:56:39 -0700619 goto retry;
620done:
621 return mz;
622}
623
624static struct mem_cgroup_per_zone *
625mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
626{
627 struct mem_cgroup_per_zone *mz;
628
629 spin_lock(&mctz->lock);
630 mz = __mem_cgroup_largest_soft_limit_node(mctz);
631 spin_unlock(&mctz->lock);
632 return mz;
633}
634
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700635/*
636 * Implementation Note: reading percpu statistics for memcg.
637 *
638 * Both of vmstat[] and percpu_counter has threshold and do periodic
639 * synchronization to implement "quick" read. There are trade-off between
640 * reading cost and precision of value. Then, we may have a chance to implement
641 * a periodic synchronizion of counter in memcg's counter.
642 *
643 * But this _read() function is used for user interface now. The user accounts
644 * memory usage by memory cgroup and he _always_ requires exact value because
645 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
646 * have to visit all online cpus and make sum. So, for now, unnecessary
647 * synchronization is not implemented. (just implemented for cpu hotplug)
648 *
649 * If there are kernel internal actions which can make use of some not-exact
650 * value, and reading all cpu value can be performance bottleneck in some
651 * common workload, threashold and synchonization as vmstat[] should be
652 * implemented.
653 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700654static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700655 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800656{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700657 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800658 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800659
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700660 get_online_cpus();
661 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700662 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700663#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700664 spin_lock(&memcg->pcp_counter_lock);
665 val += memcg->nocpu_base.count[idx];
666 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700667#endif
668 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800669 return val;
670}
671
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700672static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700673 bool charge)
674{
675 int val = (charge) ? 1 : -1;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700676 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAPOUT], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700677}
678
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700679static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700680 enum mem_cgroup_events_index idx)
681{
682 unsigned long val = 0;
683 int cpu;
684
685 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700686 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700687#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700688 spin_lock(&memcg->pcp_counter_lock);
689 val += memcg->nocpu_base.events[idx];
690 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700691#endif
692 return val;
693}
694
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700695static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700696 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800697{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800698 preempt_disable();
699
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700700 /*
701 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
702 * counted as CACHE even if it's on ANON LRU.
703 */
704 if (anon)
705 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700706 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800707 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700708 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700709 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700710
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800711 /* pagein of a big page is an event. So, ignore page size */
712 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700713 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800714 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700715 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800716 nr_pages = -nr_pages; /* for event */
717 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800718
Johannes Weiner13114712012-05-29 15:07:07 -0700719 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800720
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800721 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800722}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800723
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700724unsigned long
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700725mem_cgroup_get_lruvec_size(struct lruvec *lruvec, enum lru_list lru)
726{
727 struct mem_cgroup_per_zone *mz;
728
729 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
730 return mz->lru_size[lru];
731}
732
733static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700734mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700735 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700736{
737 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700738 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700739 unsigned long ret = 0;
740
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700741 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700742
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700743 for_each_lru(lru) {
744 if (BIT(lru) & lru_mask)
745 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700746 }
747 return ret;
748}
749
750static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700751mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700752 int nid, unsigned int lru_mask)
753{
Ying Han889976d2011-05-26 16:25:33 -0700754 u64 total = 0;
755 int zid;
756
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700757 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700758 total += mem_cgroup_zone_nr_lru_pages(memcg,
759 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700760
Ying Han889976d2011-05-26 16:25:33 -0700761 return total;
762}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700763
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700764static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700765 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800766{
Ying Han889976d2011-05-26 16:25:33 -0700767 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800768 u64 total = 0;
769
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700770 for_each_node_state(nid, N_HIGH_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700771 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800772 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800773}
774
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800775static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
776 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800777{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700778 unsigned long val, next;
779
Johannes Weiner13114712012-05-29 15:07:07 -0700780 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700781 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700782 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800783 if ((long)next - (long)val < 0) {
784 switch (target) {
785 case MEM_CGROUP_TARGET_THRESH:
786 next = val + THRESHOLDS_EVENTS_TARGET;
787 break;
788 case MEM_CGROUP_TARGET_SOFTLIMIT:
789 next = val + SOFTLIMIT_EVENTS_TARGET;
790 break;
791 case MEM_CGROUP_TARGET_NUMAINFO:
792 next = val + NUMAINFO_EVENTS_TARGET;
793 break;
794 default:
795 break;
796 }
797 __this_cpu_write(memcg->stat->targets[target], next);
798 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700799 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800800 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800801}
802
803/*
804 * Check events in order.
805 *
806 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700807static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800808{
Steven Rostedt47994012011-11-02 13:38:33 -0700809 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800810 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800811 if (unlikely(mem_cgroup_event_ratelimit(memcg,
812 MEM_CGROUP_TARGET_THRESH))) {
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800813 bool do_softlimit;
814 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800815
816 do_softlimit = mem_cgroup_event_ratelimit(memcg,
817 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700818#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800819 do_numainfo = mem_cgroup_event_ratelimit(memcg,
820 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700821#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800822 preempt_enable();
823
824 mem_cgroup_threshold(memcg);
825 if (unlikely(do_softlimit))
826 mem_cgroup_update_tree(memcg, page);
827#if MAX_NUMNODES > 1
828 if (unlikely(do_numainfo))
829 atomic_inc(&memcg->numainfo_events);
830#endif
831 } else
832 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800833}
834
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000835struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800836{
837 return container_of(cgroup_subsys_state(cont,
838 mem_cgroup_subsys_id), struct mem_cgroup,
839 css);
840}
841
Balbir Singhcf475ad2008-04-29 01:00:16 -0700842struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800843{
Balbir Singh31a78f22008-09-28 23:09:31 +0100844 /*
845 * mm_update_next_owner() may clear mm->owner to NULL
846 * if it races with swapoff, page migration, etc.
847 * So this can be called with p == NULL.
848 */
849 if (unlikely(!p))
850 return NULL;
851
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800852 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
853 struct mem_cgroup, css);
854}
855
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700856struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800857{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700858 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700859
860 if (!mm)
861 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800862 /*
863 * Because we have no locks, mm->owner's may be being moved to other
864 * cgroup. We use css_tryget() here even if this looks
865 * pessimistic (rather than adding locks here).
866 */
867 rcu_read_lock();
868 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700869 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
870 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800871 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700872 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800873 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700874 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800875}
876
Johannes Weiner56600482012-01-12 17:17:59 -0800877/**
878 * mem_cgroup_iter - iterate over memory cgroup hierarchy
879 * @root: hierarchy root
880 * @prev: previously returned memcg, NULL on first invocation
881 * @reclaim: cookie for shared reclaim walks, NULL for full walks
882 *
883 * Returns references to children of the hierarchy below @root, or
884 * @root itself, or %NULL after a full round-trip.
885 *
886 * Caller must pass the return value in @prev on subsequent
887 * invocations for reference counting, or use mem_cgroup_iter_break()
888 * to cancel a hierarchy walk before the round-trip is complete.
889 *
890 * Reclaimers can specify a zone and a priority level in @reclaim to
891 * divide up the memcgs in the hierarchy among all concurrent
892 * reclaimers operating on the same zone and priority.
893 */
894struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
895 struct mem_cgroup *prev,
896 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700897{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800898 struct mem_cgroup *memcg = NULL;
899 int id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700900
Johannes Weiner56600482012-01-12 17:17:59 -0800901 if (mem_cgroup_disabled())
902 return NULL;
903
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700904 if (!root)
905 root = root_mem_cgroup;
906
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800907 if (prev && !reclaim)
908 id = css_id(&prev->css);
909
910 if (prev && prev != root)
911 css_put(&prev->css);
912
913 if (!root->use_hierarchy && root != root_mem_cgroup) {
914 if (prev)
915 return NULL;
916 return root;
917 }
918
919 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800920 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800921 struct cgroup_subsys_state *css;
922
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800923 if (reclaim) {
924 int nid = zone_to_nid(reclaim->zone);
925 int zid = zone_idx(reclaim->zone);
926 struct mem_cgroup_per_zone *mz;
927
928 mz = mem_cgroup_zoneinfo(root, nid, zid);
929 iter = &mz->reclaim_iter[reclaim->priority];
930 if (prev && reclaim->generation != iter->generation)
931 return NULL;
932 id = iter->position;
933 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800934
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700935 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800936 css = css_get_next(&mem_cgroup_subsys, id + 1, &root->css, &id);
937 if (css) {
938 if (css == &root->css || css_tryget(css))
939 memcg = container_of(css,
940 struct mem_cgroup, css);
941 } else
942 id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700943 rcu_read_unlock();
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700944
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800945 if (reclaim) {
946 iter->position = id;
947 if (!css)
948 iter->generation++;
949 else if (!prev && memcg)
950 reclaim->generation = iter->generation;
951 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800952
953 if (prev && !css)
954 return NULL;
955 }
956 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700957}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800958
Johannes Weiner56600482012-01-12 17:17:59 -0800959/**
960 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
961 * @root: hierarchy root
962 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
963 */
964void mem_cgroup_iter_break(struct mem_cgroup *root,
965 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800966{
967 if (!root)
968 root = root_mem_cgroup;
969 if (prev && prev != root)
970 css_put(&prev->css);
971}
972
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700973/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800974 * Iteration constructs for visiting all cgroups (under a tree). If
975 * loops are exited prematurely (break), mem_cgroup_iter_break() must
976 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700977 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800978#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800979 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800980 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800981 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700982
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800983#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800984 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800985 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800986 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700987
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700988static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
Balbir Singh4b3bde42009-09-23 15:56:32 -0700989{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700990 return (memcg == root_mem_cgroup);
Balbir Singh4b3bde42009-09-23 15:56:32 -0700991}
992
Ying Han456f9982011-05-26 16:25:38 -0700993void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
994{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700995 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -0700996
997 if (!mm)
998 return;
999
1000 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001001 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1002 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001003 goto out;
1004
1005 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001006 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001007 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1008 break;
1009 case PGMAJFAULT:
1010 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001011 break;
1012 default:
1013 BUG();
1014 }
1015out:
1016 rcu_read_unlock();
1017}
1018EXPORT_SYMBOL(mem_cgroup_count_vm_event);
1019
Johannes Weiner925b7672012-01-12 17:18:15 -08001020/**
1021 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1022 * @zone: zone of the wanted lruvec
1023 * @mem: memcg of the wanted lruvec
1024 *
1025 * Returns the lru list vector holding pages for the given @zone and
1026 * @mem. This can be the global zone lruvec, if the memory controller
1027 * is disabled.
1028 */
1029struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1030 struct mem_cgroup *memcg)
1031{
1032 struct mem_cgroup_per_zone *mz;
1033
1034 if (mem_cgroup_disabled())
1035 return &zone->lruvec;
1036
1037 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
1038 return &mz->lruvec;
1039}
1040
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001041/*
1042 * Following LRU functions are allowed to be used without PCG_LOCK.
1043 * Operations are called by routine of global LRU independently from memcg.
1044 * What we have to take care of here is validness of pc->mem_cgroup.
1045 *
1046 * Changes to pc->mem_cgroup happens when
1047 * 1. charge
1048 * 2. moving account
1049 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1050 * It is added to LRU before charge.
1051 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1052 * When moving account, the page is not on LRU. It's isolated.
1053 */
1054
Johannes Weiner925b7672012-01-12 17:18:15 -08001055/**
1056 * mem_cgroup_lru_add_list - account for adding an lru page and return lruvec
1057 * @zone: zone of the page
1058 * @page: the page
1059 * @lru: current lru
1060 *
1061 * This function accounts for @page being added to @lru, and returns
1062 * the lruvec for the given @zone and the memcg @page is charged to.
1063 *
1064 * The callsite is then responsible for physically linking the page to
1065 * the returned lruvec->lists[@lru].
Minchan Kim3f58a822011-03-22 16:32:53 -07001066 */
Johannes Weiner925b7672012-01-12 17:18:15 -08001067struct lruvec *mem_cgroup_lru_add_list(struct zone *zone, struct page *page,
1068 enum lru_list lru)
Minchan Kim3f58a822011-03-22 16:32:53 -07001069{
1070 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001071 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001072 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001073
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001074 if (mem_cgroup_disabled())
Johannes Weiner925b7672012-01-12 17:18:15 -08001075 return &zone->lruvec;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001076
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001077 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001078 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001079
1080 /*
1081 * Surreptitiously switch any uncharged page to root:
1082 * an uncharged page off lru does nothing to secure
1083 * its former mem_cgroup from sudden removal.
1084 *
1085 * Our caller holds lru_lock, and PageCgroupUsed is updated
1086 * under page_cgroup lock: between them, they make all uses
1087 * of pc->mem_cgroup safe.
1088 */
1089 if (!PageCgroupUsed(pc) && memcg != root_mem_cgroup)
1090 pc->mem_cgroup = memcg = root_mem_cgroup;
1091
Johannes Weiner925b7672012-01-12 17:18:15 -08001092 mz = page_cgroup_zoneinfo(memcg, page);
1093 /* compound_order() is stabilized through lru_lock */
Hugh Dickins1eb49272012-03-21 16:34:19 -07001094 mz->lru_size[lru] += 1 << compound_order(page);
Johannes Weiner925b7672012-01-12 17:18:15 -08001095 return &mz->lruvec;
1096}
1097
1098/**
1099 * mem_cgroup_lru_del_list - account for removing an lru page
1100 * @page: the page
1101 * @lru: target lru
1102 *
1103 * This function accounts for @page being removed from @lru.
1104 *
1105 * The callsite is then responsible for physically unlinking
1106 * @page->lru.
1107 */
1108void mem_cgroup_lru_del_list(struct page *page, enum lru_list lru)
1109{
1110 struct mem_cgroup_per_zone *mz;
1111 struct mem_cgroup *memcg;
1112 struct page_cgroup *pc;
1113
1114 if (mem_cgroup_disabled())
1115 return;
1116
1117 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001118 memcg = pc->mem_cgroup;
1119 VM_BUG_ON(!memcg);
Johannes Weiner925b7672012-01-12 17:18:15 -08001120 mz = page_cgroup_zoneinfo(memcg, page);
1121 /* huge page split is done under lru_lock. so, we have no races. */
Hugh Dickins1eb49272012-03-21 16:34:19 -07001122 VM_BUG_ON(mz->lru_size[lru] < (1 << compound_order(page)));
1123 mz->lru_size[lru] -= 1 << compound_order(page);
Johannes Weiner925b7672012-01-12 17:18:15 -08001124}
1125
Johannes Weiner925b7672012-01-12 17:18:15 -08001126/**
1127 * mem_cgroup_lru_move_lists - account for moving a page between lrus
1128 * @zone: zone of the page
1129 * @page: the page
1130 * @from: current lru
1131 * @to: target lru
1132 *
1133 * This function accounts for @page being moved between the lrus @from
1134 * and @to, and returns the lruvec for the given @zone and the memcg
1135 * @page is charged to.
1136 *
1137 * The callsite is then responsible for physically relinking
1138 * @page->lru to the returned lruvec->lists[@to].
1139 */
1140struct lruvec *mem_cgroup_lru_move_lists(struct zone *zone,
1141 struct page *page,
1142 enum lru_list from,
1143 enum lru_list to)
1144{
1145 /* XXX: Optimize this, especially for @from == @to */
1146 mem_cgroup_lru_del_list(page, from);
1147 return mem_cgroup_lru_add_list(zone, page, to);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001148}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001149
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001150/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001151 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001152 * hierarchy subtree
1153 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001154bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1155 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001156{
Johannes Weiner91c637342012-05-29 15:06:24 -07001157 if (root_memcg == memcg)
1158 return true;
1159 if (!root_memcg->use_hierarchy)
1160 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001161 return css_is_ancestor(&memcg->css, &root_memcg->css);
1162}
1163
1164static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1165 struct mem_cgroup *memcg)
1166{
1167 bool ret;
1168
Johannes Weiner91c637342012-05-29 15:06:24 -07001169 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001170 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001171 rcu_read_unlock();
1172 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001173}
1174
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001175int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001176{
1177 int ret;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001178 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001179 struct task_struct *p;
David Rientjes4c4a2212008-02-07 00:14:06 -08001180
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001181 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001182 if (p) {
1183 curr = try_get_mem_cgroup_from_mm(p->mm);
1184 task_unlock(p);
1185 } else {
1186 /*
1187 * All threads may have already detached their mm's, but the oom
1188 * killer still needs to detect if they have already been oom
1189 * killed to prevent needlessly killing additional tasks.
1190 */
1191 task_lock(task);
1192 curr = mem_cgroup_from_task(task);
1193 if (curr)
1194 css_get(&curr->css);
1195 task_unlock(task);
1196 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001197 if (!curr)
1198 return 0;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001199 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001200 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001201 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001202 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1203 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001204 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001205 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001206 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001207 return ret;
1208}
1209
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001210int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001211{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001212 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001213 unsigned long inactive;
1214 unsigned long active;
1215 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001216
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001217 inactive = mem_cgroup_get_lruvec_size(lruvec, LRU_INACTIVE_ANON);
1218 active = mem_cgroup_get_lruvec_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001219
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001220 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1221 if (gb)
1222 inactive_ratio = int_sqrt(10 * gb);
1223 else
1224 inactive_ratio = 1;
1225
Johannes Weiner9b272972011-11-02 13:38:23 -07001226 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001227}
1228
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001229int mem_cgroup_inactive_file_is_low(struct lruvec *lruvec)
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001230{
1231 unsigned long active;
1232 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001233
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001234 inactive = mem_cgroup_get_lruvec_size(lruvec, LRU_INACTIVE_FILE);
1235 active = mem_cgroup_get_lruvec_size(lruvec, LRU_ACTIVE_FILE);
Rik van Riel56e49d22009-06-16 15:32:28 -07001236
1237 return (active > inactive);
1238}
1239
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001240struct zone_reclaim_stat *
1241mem_cgroup_get_reclaim_stat_from_page(struct page *page)
1242{
1243 struct page_cgroup *pc;
1244 struct mem_cgroup_per_zone *mz;
1245
1246 if (mem_cgroup_disabled())
1247 return NULL;
1248
1249 pc = lookup_page_cgroup(page);
Daisuke Nishimurabd112db2009-01-15 13:51:11 -08001250 if (!PageCgroupUsed(pc))
1251 return NULL;
Johannes Weiner713735b42011-01-20 14:44:31 -08001252 /* Ensure pc->mem_cgroup is visible after reading PCG_USED. */
1253 smp_rmb();
Johannes Weiner97a6c372011-03-23 16:42:27 -07001254 mz = page_cgroup_zoneinfo(pc->mem_cgroup, page);
Hugh Dickins89abfab2012-05-29 15:06:53 -07001255 return &mz->lruvec.reclaim_stat;
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001256}
1257
Balbir Singh6d61ef42009-01-07 18:08:06 -08001258#define mem_cgroup_from_res_counter(counter, member) \
1259 container_of(counter, struct mem_cgroup, member)
1260
Johannes Weiner19942822011-02-01 15:52:43 -08001261/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001262 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
1263 * @mem: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001264 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001265 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001266 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001267 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001268static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001269{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001270 unsigned long long margin;
1271
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001272 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001273 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001274 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001275 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001276}
1277
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001278int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001279{
1280 struct cgroup *cgrp = memcg->css.cgroup;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001281
1282 /* root ? */
1283 if (cgrp->parent == NULL)
1284 return vm_swappiness;
1285
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001286 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001287}
1288
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001289/*
1290 * memcg->moving_account is used for checking possibility that some thread is
1291 * calling move_account(). When a thread on CPU-A starts moving pages under
1292 * a memcg, other threads should check memcg->moving_account under
1293 * rcu_read_lock(), like this:
1294 *
1295 * CPU-A CPU-B
1296 * rcu_read_lock()
1297 * memcg->moving_account+1 if (memcg->mocing_account)
1298 * take heavy locks.
1299 * synchronize_rcu() update something.
1300 * rcu_read_unlock()
1301 * start move here.
1302 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001303
1304/* for quick checking without looking up memcg */
1305atomic_t memcg_moving __read_mostly;
1306
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001307static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001308{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001309 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001310 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001311 synchronize_rcu();
1312}
1313
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001314static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001315{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001316 /*
1317 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1318 * We check NULL in callee rather than caller.
1319 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001320 if (memcg) {
1321 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001322 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001323 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001324}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001325
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001326/*
1327 * 2 routines for checking "mem" is under move_account() or not.
1328 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001329 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1330 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001331 * pc->mem_cgroup may be overwritten.
1332 *
1333 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1334 * under hierarchy of moving cgroups. This is for
1335 * waiting at hith-memory prressure caused by "move".
1336 */
1337
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001338static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001339{
1340 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001341 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001342}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001343
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001344static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001345{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001346 struct mem_cgroup *from;
1347 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001348 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001349 /*
1350 * Unlike task_move routines, we access mc.to, mc.from not under
1351 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1352 */
1353 spin_lock(&mc.lock);
1354 from = mc.from;
1355 to = mc.to;
1356 if (!from)
1357 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001358
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001359 ret = mem_cgroup_same_or_subtree(memcg, from)
1360 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001361unlock:
1362 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001363 return ret;
1364}
1365
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001366static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001367{
1368 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001369 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001370 DEFINE_WAIT(wait);
1371 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1372 /* moving charge context might have finished. */
1373 if (mc.moving_task)
1374 schedule();
1375 finish_wait(&mc.waitq, &wait);
1376 return true;
1377 }
1378 }
1379 return false;
1380}
1381
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001382/*
1383 * Take this lock when
1384 * - a code tries to modify page's memcg while it's USED.
1385 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001386 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001387 */
1388static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1389 unsigned long *flags)
1390{
1391 spin_lock_irqsave(&memcg->move_lock, *flags);
1392}
1393
1394static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1395 unsigned long *flags)
1396{
1397 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1398}
1399
Balbir Singhe2224322009-04-02 16:57:39 -07001400/**
Kirill A. Shutemov6a6135b2010-03-10 15:22:25 -08001401 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
Balbir Singhe2224322009-04-02 16:57:39 -07001402 * @memcg: The memory cgroup that went over limit
1403 * @p: Task that is going to be killed
1404 *
1405 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1406 * enabled
1407 */
1408void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1409{
1410 struct cgroup *task_cgrp;
1411 struct cgroup *mem_cgrp;
1412 /*
1413 * Need a buffer in BSS, can't rely on allocations. The code relies
1414 * on the assumption that OOM is serialized for memory controller.
1415 * If this assumption is broken, revisit this code.
1416 */
1417 static char memcg_name[PATH_MAX];
1418 int ret;
1419
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001420 if (!memcg || !p)
Balbir Singhe2224322009-04-02 16:57:39 -07001421 return;
1422
Balbir Singhe2224322009-04-02 16:57:39 -07001423 rcu_read_lock();
1424
1425 mem_cgrp = memcg->css.cgroup;
1426 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1427
1428 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1429 if (ret < 0) {
1430 /*
1431 * Unfortunately, we are unable to convert to a useful name
1432 * But we'll still print out the usage information
1433 */
1434 rcu_read_unlock();
1435 goto done;
1436 }
1437 rcu_read_unlock();
1438
1439 printk(KERN_INFO "Task in %s killed", memcg_name);
1440
1441 rcu_read_lock();
1442 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1443 if (ret < 0) {
1444 rcu_read_unlock();
1445 goto done;
1446 }
1447 rcu_read_unlock();
1448
1449 /*
1450 * Continues from above, so we don't need an KERN_ level
1451 */
1452 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1453done:
1454
1455 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1456 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1457 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1458 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1459 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1460 "failcnt %llu\n",
1461 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1462 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1463 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
1464}
1465
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001466/*
1467 * This function returns the number of memcg under hierarchy tree. Returns
1468 * 1(self count) if no children.
1469 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001470static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001471{
1472 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001473 struct mem_cgroup *iter;
1474
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001475 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001476 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001477 return num;
1478}
1479
Balbir Singh6d61ef42009-01-07 18:08:06 -08001480/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001481 * Return the memory (and swap, if configured) limit for a memcg.
1482 */
1483u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
1484{
1485 u64 limit;
1486 u64 memsw;
1487
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001488 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1489 limit += total_swap_pages << PAGE_SHIFT;
1490
David Rientjesa63d83f2010-08-09 17:19:46 -07001491 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1492 /*
1493 * If memsw is finite and limits the amount of swap space available
1494 * to this memcg, return that limit.
1495 */
1496 return min(limit, memsw);
1497}
1498
Johannes Weiner56600482012-01-12 17:17:59 -08001499static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1500 gfp_t gfp_mask,
1501 unsigned long flags)
1502{
1503 unsigned long total = 0;
1504 bool noswap = false;
1505 int loop;
1506
1507 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1508 noswap = true;
1509 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1510 noswap = true;
1511
1512 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1513 if (loop)
1514 drain_all_stock_async(memcg);
1515 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1516 /*
1517 * Allow limit shrinkers, which are triggered directly
1518 * by userspace, to catch signals and stop reclaim
1519 * after minimal progress, regardless of the margin.
1520 */
1521 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1522 break;
1523 if (mem_cgroup_margin(memcg))
1524 break;
1525 /*
1526 * If nothing was reclaimed after two attempts, there
1527 * may be no reclaimable pages in this hierarchy.
1528 */
1529 if (loop && !total)
1530 break;
1531 }
1532 return total;
1533}
1534
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001535/**
1536 * test_mem_cgroup_node_reclaimable
1537 * @mem: the target memcg
1538 * @nid: the node ID to be checked.
1539 * @noswap : specify true here if the user wants flle only information.
1540 *
1541 * This function returns whether the specified memcg contains any
1542 * reclaimable pages on a node. Returns true if there are any reclaimable
1543 * pages in the node.
1544 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001545static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001546 int nid, bool noswap)
1547{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001548 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001549 return true;
1550 if (noswap || !total_swap_pages)
1551 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001552 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001553 return true;
1554 return false;
1555
1556}
Ying Han889976d2011-05-26 16:25:33 -07001557#if MAX_NUMNODES > 1
1558
1559/*
1560 * Always updating the nodemask is not very good - even if we have an empty
1561 * list or the wrong list here, we can start from some node and traverse all
1562 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1563 *
1564 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001565static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001566{
1567 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001568 /*
1569 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1570 * pagein/pageout changes since the last update.
1571 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001572 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001573 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001574 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001575 return;
1576
Ying Han889976d2011-05-26 16:25:33 -07001577 /* make a nodemask where this memcg uses memory from */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001578 memcg->scan_nodes = node_states[N_HIGH_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001579
1580 for_each_node_mask(nid, node_states[N_HIGH_MEMORY]) {
1581
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001582 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1583 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001584 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001585
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001586 atomic_set(&memcg->numainfo_events, 0);
1587 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001588}
1589
1590/*
1591 * Selecting a node where we start reclaim from. Because what we need is just
1592 * reducing usage counter, start from anywhere is O,K. Considering
1593 * memory reclaim from current node, there are pros. and cons.
1594 *
1595 * Freeing memory from current node means freeing memory from a node which
1596 * we'll use or we've used. So, it may make LRU bad. And if several threads
1597 * hit limits, it will see a contention on a node. But freeing from remote
1598 * node means more costs for memory reclaim because of memory latency.
1599 *
1600 * Now, we use round-robin. Better algorithm is welcomed.
1601 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001602int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001603{
1604 int node;
1605
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001606 mem_cgroup_may_update_nodemask(memcg);
1607 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001608
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001609 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001610 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001611 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001612 /*
1613 * We call this when we hit limit, not when pages are added to LRU.
1614 * No LRU may hold pages because all pages are UNEVICTABLE or
1615 * memcg is too small and all pages are not on LRU. In that case,
1616 * we use curret node.
1617 */
1618 if (unlikely(node == MAX_NUMNODES))
1619 node = numa_node_id();
1620
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001621 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001622 return node;
1623}
1624
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001625/*
1626 * Check all nodes whether it contains reclaimable pages or not.
1627 * For quick scan, we make use of scan_nodes. This will allow us to skip
1628 * unused nodes. But scan_nodes is lazily updated and may not cotain
1629 * enough new information. We need to do double check.
1630 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001631static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001632{
1633 int nid;
1634
1635 /*
1636 * quick check...making use of scan_node.
1637 * We can skip unused nodes.
1638 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001639 if (!nodes_empty(memcg->scan_nodes)) {
1640 for (nid = first_node(memcg->scan_nodes);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001641 nid < MAX_NUMNODES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001642 nid = next_node(nid, memcg->scan_nodes)) {
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001643
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001644 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001645 return true;
1646 }
1647 }
1648 /*
1649 * Check rest of nodes.
1650 */
1651 for_each_node_state(nid, N_HIGH_MEMORY) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001652 if (node_isset(nid, memcg->scan_nodes))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001653 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001654 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001655 return true;
1656 }
1657 return false;
1658}
1659
Ying Han889976d2011-05-26 16:25:33 -07001660#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001661int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001662{
1663 return 0;
1664}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001665
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001666static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001667{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001668 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001669}
Ying Han889976d2011-05-26 16:25:33 -07001670#endif
1671
Johannes Weiner56600482012-01-12 17:17:59 -08001672static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1673 struct zone *zone,
1674 gfp_t gfp_mask,
1675 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001676{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001677 struct mem_cgroup *victim = NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001678 int total = 0;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001679 int loop = 0;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001680 unsigned long excess;
Johannes Weiner185efc02011-09-14 16:21:58 -07001681 unsigned long nr_scanned;
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001682 struct mem_cgroup_reclaim_cookie reclaim = {
1683 .zone = zone,
1684 .priority = 0,
1685 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001686
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001687 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001688
Balbir Singh4e416952009-09-23 15:56:39 -07001689 while (1) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001690 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001691 if (!victim) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001692 loop++;
Balbir Singh4e416952009-09-23 15:56:39 -07001693 if (loop >= 2) {
1694 /*
1695 * If we have not been able to reclaim
1696 * anything, it might because there are
1697 * no reclaimable pages under this hierarchy
1698 */
Johannes Weiner56600482012-01-12 17:17:59 -08001699 if (!total)
Balbir Singh4e416952009-09-23 15:56:39 -07001700 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001701 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001702 * We want to do more targeted reclaim.
Balbir Singh4e416952009-09-23 15:56:39 -07001703 * excess >> 2 is not to excessive so as to
1704 * reclaim too much, nor too less that we keep
1705 * coming back to reclaim from this cgroup
1706 */
1707 if (total >= (excess >> 2) ||
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001708 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
Balbir Singh4e416952009-09-23 15:56:39 -07001709 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001710 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001711 continue;
Balbir Singh4e416952009-09-23 15:56:39 -07001712 }
Johannes Weiner56600482012-01-12 17:17:59 -08001713 if (!mem_cgroup_reclaimable(victim, false))
Balbir Singh6d61ef42009-01-07 18:08:06 -08001714 continue;
Johannes Weiner56600482012-01-12 17:17:59 -08001715 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1716 zone, &nr_scanned);
1717 *total_scanned += nr_scanned;
1718 if (!res_counter_soft_limit_excess(&root_memcg->res))
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001719 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001720 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001721 mem_cgroup_iter_break(root_memcg, victim);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001722 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001723}
1724
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001725/*
1726 * Check OOM-Killer is already running under our hierarchy.
1727 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001728 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001729 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001730static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001731{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001732 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001733
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001734 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001735 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001736 /*
1737 * this subtree of our hierarchy is already locked
1738 * so we cannot give a lock.
1739 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001740 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001741 mem_cgroup_iter_break(memcg, iter);
1742 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001743 } else
1744 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001745 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001746
Michal Hocko79dfdac2011-07-26 16:08:23 -07001747 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001748 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001749
1750 /*
1751 * OK, we failed to lock the whole subtree so we have to clean up
1752 * what we set up to the failing subtree
1753 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001754 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001755 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001756 mem_cgroup_iter_break(memcg, iter);
1757 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001758 }
1759 iter->oom_lock = false;
1760 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001761 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001762}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001763
Michal Hocko79dfdac2011-07-26 16:08:23 -07001764/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001765 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001766 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001767static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001768{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001769 struct mem_cgroup *iter;
1770
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001771 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001772 iter->oom_lock = false;
1773 return 0;
1774}
1775
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001776static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001777{
1778 struct mem_cgroup *iter;
1779
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001780 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001781 atomic_inc(&iter->under_oom);
1782}
1783
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001784static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001785{
1786 struct mem_cgroup *iter;
1787
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001788 /*
1789 * When a new child is created while the hierarchy is under oom,
1790 * mem_cgroup_oom_lock() may not be called. We have to use
1791 * atomic_add_unless() here.
1792 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001793 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001794 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001795}
1796
Michal Hocko1af8efe2011-07-26 16:08:24 -07001797static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001798static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1799
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001800struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001801 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001802 wait_queue_t wait;
1803};
1804
1805static int memcg_oom_wake_function(wait_queue_t *wait,
1806 unsigned mode, int sync, void *arg)
1807{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001808 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1809 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001810 struct oom_wait_info *oom_wait_info;
1811
1812 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001813 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001814
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001815 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001816 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001817 * Then we can use css_is_ancestor without taking care of RCU.
1818 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001819 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1820 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001821 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001822 return autoremove_wake_function(wait, mode, sync, arg);
1823}
1824
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001825static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001826{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001827 /* for filtering, pass "memcg" as argument. */
1828 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001829}
1830
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001831static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001832{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001833 if (memcg && atomic_read(&memcg->under_oom))
1834 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001835}
1836
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001837/*
1838 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1839 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001840static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
1841 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001842{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001843 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001844 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001845
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001846 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001847 owait.wait.flags = 0;
1848 owait.wait.func = memcg_oom_wake_function;
1849 owait.wait.private = current;
1850 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001851 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001852 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001853
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001854 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001855 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001856 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001857 /*
1858 * Even if signal_pending(), we can't quit charge() loop without
1859 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1860 * under OOM is always welcomed, use TASK_KILLABLE here.
1861 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001862 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001863 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001864 need_to_kill = false;
1865 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001866 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001867 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001868
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001869 if (need_to_kill) {
1870 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07001871 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001872 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001873 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001874 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001875 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001876 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001877 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001878 mem_cgroup_oom_unlock(memcg);
1879 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001880 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001881
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001882 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001883
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001884 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1885 return false;
1886 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001887 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001888 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001889}
1890
Balbir Singhd69b0422009-06-17 16:26:34 -07001891/*
1892 * Currently used to update mapped file statistics, but the routine can be
1893 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001894 *
1895 * Notes: Race condition
1896 *
1897 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1898 * it tends to be costly. But considering some conditions, we doesn't need
1899 * to do so _always_.
1900 *
1901 * Considering "charge", lock_page_cgroup() is not required because all
1902 * file-stat operations happen after a page is attached to radix-tree. There
1903 * are no race with "charge".
1904 *
1905 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1906 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1907 * if there are race with "uncharge". Statistics itself is properly handled
1908 * by flags.
1909 *
1910 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001911 * small, we check mm->moving_account and detect there are possibility of race
1912 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07001913 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001914
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001915void __mem_cgroup_begin_update_page_stat(struct page *page,
1916 bool *locked, unsigned long *flags)
1917{
1918 struct mem_cgroup *memcg;
1919 struct page_cgroup *pc;
1920
1921 pc = lookup_page_cgroup(page);
1922again:
1923 memcg = pc->mem_cgroup;
1924 if (unlikely(!memcg || !PageCgroupUsed(pc)))
1925 return;
1926 /*
1927 * If this memory cgroup is not under account moving, we don't
1928 * need to take move_lock_page_cgroup(). Because we already hold
1929 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001930 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001931 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001932 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001933 return;
1934
1935 move_lock_mem_cgroup(memcg, flags);
1936 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
1937 move_unlock_mem_cgroup(memcg, flags);
1938 goto again;
1939 }
1940 *locked = true;
1941}
1942
1943void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
1944{
1945 struct page_cgroup *pc = lookup_page_cgroup(page);
1946
1947 /*
1948 * It's guaranteed that pc->mem_cgroup never changes while
1949 * lock is held because a routine modifies pc->mem_cgroup
1950 * should take move_lock_page_cgroup().
1951 */
1952 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
1953}
1954
Greg Thelen2a7106f2011-01-13 15:47:37 -08001955void mem_cgroup_update_page_stat(struct page *page,
1956 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07001957{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001958 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001959 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08001960 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07001961
Johannes Weinercfa44942012-01-12 17:18:38 -08001962 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07001963 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001964
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001965 memcg = pc->mem_cgroup;
1966 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001967 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001968
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001969 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08001970 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08001971 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001972 break;
1973 default:
1974 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07001975 }
Balbir Singhd69b0422009-06-17 16:26:34 -07001976
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001977 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07001978}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001979
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001980/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001981 * size of first charge trial. "32" comes from vmscan.c's magic value.
1982 * TODO: maybe necessary to use big numbers in big irons.
1983 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001984#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001985struct memcg_stock_pcp {
1986 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07001987 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001988 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07001989 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07001990#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001991};
1992static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02001993static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001994
1995/*
Johannes Weiner11c9ea42011-03-23 16:42:34 -07001996 * Try to consume stocked charge on this cpu. If success, one page is consumed
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001997 * from local stock and true is returned. If the stock is 0 or charges from a
1998 * cgroup which is not current target, returns false. This stock will be
1999 * refilled.
2000 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002001static bool consume_stock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002002{
2003 struct memcg_stock_pcp *stock;
2004 bool ret = true;
2005
2006 stock = &get_cpu_var(memcg_stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002007 if (memcg == stock->cached && stock->nr_pages)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002008 stock->nr_pages--;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002009 else /* need to call res_counter_charge */
2010 ret = false;
2011 put_cpu_var(memcg_stock);
2012 return ret;
2013}
2014
2015/*
2016 * Returns stocks cached in percpu to res_counter and reset cached information.
2017 */
2018static void drain_stock(struct memcg_stock_pcp *stock)
2019{
2020 struct mem_cgroup *old = stock->cached;
2021
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002022 if (stock->nr_pages) {
2023 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2024
2025 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002026 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002027 res_counter_uncharge(&old->memsw, bytes);
2028 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002029 }
2030 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002031}
2032
2033/*
2034 * This must be called under preempt disabled or must be called by
2035 * a thread which is pinned to local cpu.
2036 */
2037static void drain_local_stock(struct work_struct *dummy)
2038{
2039 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2040 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002041 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002042}
2043
2044/*
2045 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002046 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002047 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002048static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002049{
2050 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2051
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002052 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002053 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002054 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002055 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002056 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002057 put_cpu_var(memcg_stock);
2058}
2059
2060/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002061 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002062 * of the hierarchy under it. sync flag says whether we should block
2063 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002064 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002065static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002066{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002067 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002068
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002069 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002070 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002071 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002072 for_each_online_cpu(cpu) {
2073 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002074 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002075
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002076 memcg = stock->cached;
2077 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002078 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002079 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002080 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002081 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2082 if (cpu == curcpu)
2083 drain_local_stock(&stock->work);
2084 else
2085 schedule_work_on(cpu, &stock->work);
2086 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002087 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002088 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002089
2090 if (!sync)
2091 goto out;
2092
2093 for_each_online_cpu(cpu) {
2094 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002095 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002096 flush_work(&stock->work);
2097 }
2098out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002099 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002100}
2101
2102/*
2103 * Tries to drain stocked charges in other cpus. This function is asynchronous
2104 * and just put a work per cpu for draining localy on each cpu. Caller can
2105 * expects some charges will be back to res_counter later but cannot wait for
2106 * it.
2107 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002108static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002109{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002110 /*
2111 * If someone calls draining, avoid adding more kworker runs.
2112 */
2113 if (!mutex_trylock(&percpu_charge_mutex))
2114 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002115 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002116 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002117}
2118
2119/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002120static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002121{
2122 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002123 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002124 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002125 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002126}
2127
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002128/*
2129 * This function drains percpu counter value from DEAD cpu and
2130 * move it to local cpu. Note that this function can be preempted.
2131 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002132static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002133{
2134 int i;
2135
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002136 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002137 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002138 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002139
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002140 per_cpu(memcg->stat->count[i], cpu) = 0;
2141 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002142 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002143 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002144 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002145
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002146 per_cpu(memcg->stat->events[i], cpu) = 0;
2147 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002148 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002149 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002150}
2151
2152static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002153 unsigned long action,
2154 void *hcpu)
2155{
2156 int cpu = (unsigned long)hcpu;
2157 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002158 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002159
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002160 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002161 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002162
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002163 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002164 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002165
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002166 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002167 mem_cgroup_drain_pcp_counter(iter, cpu);
2168
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002169 stock = &per_cpu(memcg_stock, cpu);
2170 drain_stock(stock);
2171 return NOTIFY_OK;
2172}
2173
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002174
2175/* See __mem_cgroup_try_charge() for details */
2176enum {
2177 CHARGE_OK, /* success */
2178 CHARGE_RETRY, /* need to retry but retry is not bad */
2179 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2180 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2181 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2182};
2183
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002184static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002185 unsigned int nr_pages, bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002186{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002187 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002188 struct mem_cgroup *mem_over_limit;
2189 struct res_counter *fail_res;
2190 unsigned long flags = 0;
2191 int ret;
2192
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002193 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002194
2195 if (likely(!ret)) {
2196 if (!do_swap_account)
2197 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002198 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002199 if (likely(!ret))
2200 return CHARGE_OK;
2201
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002202 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002203 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2204 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2205 } else
2206 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002207 /*
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002208 * nr_pages can be either a huge page (HPAGE_PMD_NR), a batch
2209 * of regular pages (CHARGE_BATCH), or a single regular page (1).
Johannes Weiner9221edb2011-02-01 15:52:42 -08002210 *
2211 * Never reclaim on behalf of optional batching, retry with a
2212 * single page instead.
2213 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002214 if (nr_pages == CHARGE_BATCH)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002215 return CHARGE_RETRY;
2216
2217 if (!(gfp_mask & __GFP_WAIT))
2218 return CHARGE_WOULDBLOCK;
2219
Johannes Weiner56600482012-01-12 17:17:59 -08002220 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002221 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002222 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002223 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002224 * Even though the limit is exceeded at this point, reclaim
2225 * may have been able to free some pages. Retry the charge
2226 * before killing the task.
2227 *
2228 * Only for regular pages, though: huge pages are rather
2229 * unlikely to succeed so close to the limit, and we fall back
2230 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002231 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002232 if (nr_pages == 1 && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002233 return CHARGE_RETRY;
2234
2235 /*
2236 * At task move, charge accounts can be doubly counted. So, it's
2237 * better to wait until the end of task_move if something is going on.
2238 */
2239 if (mem_cgroup_wait_acct_move(mem_over_limit))
2240 return CHARGE_RETRY;
2241
2242 /* If we don't need to call oom-killer at el, return immediately */
2243 if (!oom_check)
2244 return CHARGE_NOMEM;
2245 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002246 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002247 return CHARGE_OOM_DIE;
2248
2249 return CHARGE_RETRY;
2250}
2251
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002252/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002253 * __mem_cgroup_try_charge() does
2254 * 1. detect memcg to be charged against from passed *mm and *ptr,
2255 * 2. update res_counter
2256 * 3. call memory reclaim if necessary.
2257 *
2258 * In some special case, if the task is fatal, fatal_signal_pending() or
2259 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2260 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2261 * as possible without any hazards. 2: all pages should have a valid
2262 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2263 * pointer, that is treated as a charge to root_mem_cgroup.
2264 *
2265 * So __mem_cgroup_try_charge() will return
2266 * 0 ... on success, filling *ptr with a valid memcg pointer.
2267 * -ENOMEM ... charge failure because of resource limits.
2268 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2269 *
2270 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2271 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002272 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002273static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002274 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002275 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002276 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002277 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002278{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002279 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002280 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002281 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002282 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002283
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002284 /*
2285 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2286 * in system level. So, allow to go ahead dying process in addition to
2287 * MEMDIE process.
2288 */
2289 if (unlikely(test_thread_flag(TIF_MEMDIE)
2290 || fatal_signal_pending(current)))
2291 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002292
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002293 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002294 * We always charge the cgroup the mm_struct belongs to.
2295 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002296 * thread group leader migrates. It's possible that mm is not
2297 * set, if so charge the init_mm (happens for pagecache usage).
2298 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002299 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002300 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002301again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002302 if (*ptr) { /* css should be a valid one */
2303 memcg = *ptr;
2304 VM_BUG_ON(css_is_removed(&memcg->css));
2305 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002306 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002307 if (nr_pages == 1 && consume_stock(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002308 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002309 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002310 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002311 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002312
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002313 rcu_read_lock();
2314 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002315 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002316 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002317 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002318 * race with swapoff. Then, we have small risk of mis-accouning.
2319 * But such kind of mis-account by race always happens because
2320 * we don't have cgroup_mutex(). It's overkill and we allo that
2321 * small race, here.
2322 * (*) swapoff at el will charge against mm-struct not against
2323 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002324 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002325 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002326 if (!memcg)
2327 memcg = root_mem_cgroup;
2328 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002329 rcu_read_unlock();
2330 goto done;
2331 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002332 if (nr_pages == 1 && consume_stock(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002333 /*
2334 * It seems dagerous to access memcg without css_get().
2335 * But considering how consume_stok works, it's not
2336 * necessary. If consume_stock success, some charges
2337 * from this memcg are cached on this cpu. So, we
2338 * don't need to call css_get()/css_tryget() before
2339 * calling consume_stock().
2340 */
2341 rcu_read_unlock();
2342 goto done;
2343 }
2344 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002345 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002346 rcu_read_unlock();
2347 goto again;
2348 }
2349 rcu_read_unlock();
2350 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002351
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002352 do {
2353 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002354
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002355 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002356 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002357 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002358 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002359 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002360
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002361 oom_check = false;
2362 if (oom && !nr_oom_retries) {
2363 oom_check = true;
2364 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2365 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002366
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002367 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002368 switch (ret) {
2369 case CHARGE_OK:
2370 break;
2371 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002372 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002373 css_put(&memcg->css);
2374 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002375 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002376 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002377 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002378 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002379 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002380 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002381 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002382 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002383 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002384 /* If oom, we never return -ENOMEM */
2385 nr_oom_retries--;
2386 break;
2387 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002388 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002389 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002390 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002391 } while (ret != CHARGE_OK);
2392
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002393 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002394 refill_stock(memcg, batch - nr_pages);
2395 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002396done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002397 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002398 return 0;
2399nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002400 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002401 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002402bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002403 *ptr = root_mem_cgroup;
2404 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002405}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002406
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002407/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002408 * Somemtimes we have to undo a charge we got by try_charge().
2409 * This function is for that and do uncharge, put css's refcnt.
2410 * gotten by try_charge().
2411 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002412static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002413 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002414{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002415 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002416 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002417
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002418 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002419 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002420 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002421 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002422}
2423
2424/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002425 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2426 * This is useful when moving usage to parent cgroup.
2427 */
2428static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2429 unsigned int nr_pages)
2430{
2431 unsigned long bytes = nr_pages * PAGE_SIZE;
2432
2433 if (mem_cgroup_is_root(memcg))
2434 return;
2435
2436 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2437 if (do_swap_account)
2438 res_counter_uncharge_until(&memcg->memsw,
2439 memcg->memsw.parent, bytes);
2440}
2441
2442/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002443 * A helper function to get mem_cgroup from ID. must be called under
2444 * rcu_read_lock(). The caller must check css_is_removed() or some if
2445 * it's concern. (dropping refcnt from swap can be called against removed
2446 * memcg.)
2447 */
2448static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2449{
2450 struct cgroup_subsys_state *css;
2451
2452 /* ID 0 is unused ID */
2453 if (!id)
2454 return NULL;
2455 css = css_lookup(&mem_cgroup_subsys, id);
2456 if (!css)
2457 return NULL;
2458 return container_of(css, struct mem_cgroup, css);
2459}
2460
Wu Fengguange42d9d52009-12-16 12:19:59 +01002461struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002462{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002463 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002464 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002465 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002466 swp_entry_t ent;
2467
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002468 VM_BUG_ON(!PageLocked(page));
2469
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002470 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002471 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002472 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002473 memcg = pc->mem_cgroup;
2474 if (memcg && !css_tryget(&memcg->css))
2475 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002476 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002477 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002478 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002479 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002480 memcg = mem_cgroup_lookup(id);
2481 if (memcg && !css_tryget(&memcg->css))
2482 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002483 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002484 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002485 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002486 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002487}
2488
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002489static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002490 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002491 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002492 enum charge_type ctype,
2493 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002494{
Johannes Weinerce587e62012-04-24 20:22:33 +02002495 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002496 struct zone *uninitialized_var(zone);
2497 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002498 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002499
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002500 lock_page_cgroup(pc);
2501 if (unlikely(PageCgroupUsed(pc))) {
2502 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002503 __mem_cgroup_cancel_charge(memcg, nr_pages);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002504 return;
2505 }
2506 /*
2507 * we don't need page_cgroup_lock about tail pages, becase they are not
2508 * accessed by any other context at this point.
2509 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002510
2511 /*
2512 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2513 * may already be on some other mem_cgroup's LRU. Take care of it.
2514 */
2515 if (lrucare) {
2516 zone = page_zone(page);
2517 spin_lock_irq(&zone->lru_lock);
2518 if (PageLRU(page)) {
2519 ClearPageLRU(page);
2520 del_page_from_lru_list(zone, page, page_lru(page));
2521 was_on_lru = true;
2522 }
2523 }
2524
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002525 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002526 /*
2527 * We access a page_cgroup asynchronously without lock_page_cgroup().
2528 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2529 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2530 * before USED bit, we need memory barrier here.
2531 * See mem_cgroup_add_lru_list(), etc.
2532 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002533 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002534 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002535
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002536 if (lrucare) {
2537 if (was_on_lru) {
2538 VM_BUG_ON(PageLRU(page));
2539 SetPageLRU(page);
2540 add_page_to_lru_list(zone, page, page_lru(page));
2541 }
2542 spin_unlock_irq(&zone->lru_lock);
2543 }
2544
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002545 if (ctype == MEM_CGROUP_CHARGE_TYPE_MAPPED)
2546 anon = true;
2547 else
2548 anon = false;
2549
2550 mem_cgroup_charge_statistics(memcg, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002551 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002552
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002553 /*
2554 * "charge_statistics" updated event counter. Then, check it.
2555 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2556 * if they exceeds softlimit.
2557 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002558 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002559}
2560
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002561#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2562
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002563#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002564/*
2565 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002566 * zone->lru_lock, 'splitting on pmd' and compound_lock.
2567 * charge/uncharge will be never happen and move_account() is done under
2568 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002569 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002570void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002571{
2572 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002573 struct page_cgroup *pc;
2574 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002575
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002576 if (mem_cgroup_disabled())
2577 return;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002578 for (i = 1; i < HPAGE_PMD_NR; i++) {
2579 pc = head_pc + i;
2580 pc->mem_cgroup = head_pc->mem_cgroup;
2581 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002582 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2583 }
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002584}
Hugh Dickins12d27102012-01-12 17:19:52 -08002585#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002586
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002587/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07002588 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07002589 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002590 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002591 * @pc: page_cgroup of the page.
2592 * @from: mem_cgroup which the page is moved from.
2593 * @to: mem_cgroup which the page is moved to. @from != @to.
2594 *
2595 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002596 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002597 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002598 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002599 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
2600 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002601 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002602static int mem_cgroup_move_account(struct page *page,
2603 unsigned int nr_pages,
2604 struct page_cgroup *pc,
2605 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002606 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002607{
Johannes Weinerde3638d2011-03-23 16:42:28 -07002608 unsigned long flags;
2609 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002610 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002611
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002612 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07002613 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07002614 /*
2615 * The page is isolated from LRU. So, collapse function
2616 * will not handle this page. But page splitting can happen.
2617 * Do this check under compound_page_lock(). The caller should
2618 * hold it.
2619 */
2620 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002621 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07002622 goto out;
2623
2624 lock_page_cgroup(pc);
2625
2626 ret = -EINVAL;
2627 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2628 goto unlock;
2629
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002630 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002631
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07002632 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08002633 /* Update mapped_file data for mem_cgroup */
2634 preempt_disable();
2635 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2636 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2637 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07002638 }
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002639 mem_cgroup_charge_statistics(from, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07002640
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002641 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002642 pc->mem_cgroup = to;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002643 mem_cgroup_charge_statistics(to, anon, nr_pages);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002644 /*
2645 * We charges against "to" which may not have any tasks. Then, "to"
2646 * can be under rmdir(). But in current implementation, caller of
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002647 * this function is just force_empty() and move charge, so it's
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002648 * guaranteed that "to" is never removed. So, we don't check rmdir
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002649 * status here.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002650 */
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002651 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002652 ret = 0;
2653unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002654 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08002655 /*
2656 * check events
2657 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002658 memcg_check_events(to, page);
2659 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002660out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002661 return ret;
2662}
2663
2664/*
2665 * move charges to its parent.
2666 */
2667
Johannes Weiner5564e882011-03-23 16:42:29 -07002668static int mem_cgroup_move_parent(struct page *page,
2669 struct page_cgroup *pc,
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002670 struct mem_cgroup *child,
2671 gfp_t gfp_mask)
2672{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002673 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002674 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07002675 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002676 int ret;
2677
2678 /* Is ROOT ? */
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002679 if (mem_cgroup_is_root(child))
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002680 return -EINVAL;
2681
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002682 ret = -EBUSY;
2683 if (!get_page_unless_zero(page))
2684 goto out;
2685 if (isolate_lru_page(page))
2686 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08002687
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002688 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002689
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002690 parent = parent_mem_cgroup(child);
2691 /*
2692 * If no parent, move charges to root cgroup.
2693 */
2694 if (!parent)
2695 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002696
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002697 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002698 flags = compound_lock_irqsave(page);
2699
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002700 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002701 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002702 if (!ret)
2703 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002704
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002705 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002706 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002707 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002708put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08002709 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002710out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002711 return ret;
2712}
2713
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002714/*
2715 * Charge the memory controller for page usage.
2716 * Return
2717 * 0 if the charge was successful
2718 * < 0 if the cgroup is over its limit
2719 */
2720static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002721 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002722{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002723 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002724 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08002725 bool oom = true;
2726 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08002727
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002728 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002729 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002730 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08002731 /*
2732 * Never OOM-kill a process for a huge page. The
2733 * fault handler will fall back to regular pages.
2734 */
2735 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002736 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002737
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002738 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002739 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002740 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02002741 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002742 return 0;
2743}
2744
2745int mem_cgroup_newpage_charge(struct page *page,
2746 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002747{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002748 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002749 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08002750 VM_BUG_ON(page_mapped(page));
2751 VM_BUG_ON(page->mapping && !PageAnon(page));
2752 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002753 return mem_cgroup_charge_common(page, mm, gfp_mask,
Johannes Weiner7a0524c2012-01-12 17:18:43 -08002754 MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002755}
2756
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002757static void
2758__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
2759 enum charge_type ctype);
2760
Balbir Singhe1a1cd52008-02-07 00:14:02 -08002761int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2762 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -08002763{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002764 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukidc67d502012-01-12 17:18:55 -08002765 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002766 int ret;
2767
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002768 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002769 return 0;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002770 if (PageCompound(page))
2771 return 0;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07002772
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002773 if (unlikely(!mm))
Balbir Singh8697d332008-02-07 00:13:59 -08002774 mm = &init_mm;
KAMEZAWA Hiroyukidc67d502012-01-12 17:18:55 -08002775 if (!page_is_file_cache(page))
2776 type = MEM_CGROUP_CHARGE_TYPE_SHMEM;
KAMEZAWA Hiroyukiaccf1632008-07-25 01:47:17 -07002777
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002778 if (!PageSwapCache(page))
KAMEZAWA Hiroyukidc67d502012-01-12 17:18:55 -08002779 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002780 else { /* page is swapcache/shmem */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002781 ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &memcg);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002782 if (!ret)
KAMEZAWA Hiroyukidc67d502012-01-12 17:18:55 -08002783 __mem_cgroup_commit_charge_swapin(page, memcg, type);
2784 }
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002785 return ret;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07002786}
2787
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002788/*
2789 * While swap-in, try_charge -> commit or cancel, the page is locked.
2790 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02002791 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002792 * "commit()" or removed by "cancel()"
2793 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002794int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2795 struct page *page,
Johannes Weiner72835c82012-01-12 17:18:32 -08002796 gfp_t mask, struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002797{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002798 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002799 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002800
Johannes Weiner72835c82012-01-12 17:18:32 -08002801 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07002802
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002803 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002804 return 0;
2805
2806 if (!do_swap_account)
2807 goto charge_cur_mm;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002808 /*
2809 * A racing thread's fault, or swapoff, may have already updated
Hugh Dickins407f9c82009-12-14 17:59:30 -08002810 * the pte, and even removed page from swap cache: in those cases
2811 * do_swap_page()'s pte_same() test will fail; but there's also a
2812 * KSM case which does need to charge the page.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002813 */
2814 if (!PageSwapCache(page))
Hugh Dickins407f9c82009-12-14 17:59:30 -08002815 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002816 memcg = try_get_mem_cgroup_from_page(page);
2817 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002818 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08002819 *memcgp = memcg;
2820 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002821 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002822 if (ret == -EINTR)
2823 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002824 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002825charge_cur_mm:
2826 if (unlikely(!mm))
2827 mm = &init_mm;
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002828 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
2829 if (ret == -EINTR)
2830 ret = 0;
2831 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002832}
2833
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002834static void
Johannes Weiner72835c82012-01-12 17:18:32 -08002835__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002836 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002837{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002838 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002839 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002840 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002841 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002842 cgroup_exclude_rmdir(&memcg->css);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002843
Johannes Weinerce587e62012-04-24 20:22:33 +02002844 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002845 /*
2846 * Now swap is on-memory. This means this page may be
2847 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002848 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2849 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2850 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002851 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002852 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002853 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07002854 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002855 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002856 /*
2857 * At swapin, we may charge account against cgroup which has no tasks.
2858 * So, rmdir()->pre_destroy() can be called while we do this charge.
2859 * In that case, we need to call pre_destroy() again. check it here.
2860 */
Johannes Weiner72835c82012-01-12 17:18:32 -08002861 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002862}
2863
Johannes Weiner72835c82012-01-12 17:18:32 -08002864void mem_cgroup_commit_charge_swapin(struct page *page,
2865 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002866{
Johannes Weiner72835c82012-01-12 17:18:32 -08002867 __mem_cgroup_commit_charge_swapin(page, memcg,
2868 MEM_CGROUP_CHARGE_TYPE_MAPPED);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002869}
2870
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002871void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002872{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002873 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002874 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002875 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002876 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002877 __mem_cgroup_cancel_charge(memcg, 1);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002878}
2879
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002880static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002881 unsigned int nr_pages,
2882 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002883{
2884 struct memcg_batch_info *batch = NULL;
2885 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002886
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002887 /* If swapout, usage of swap doesn't decrease */
2888 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2889 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002890
2891 batch = &current->memcg_batch;
2892 /*
2893 * In usual, we do css_get() when we remember memcg pointer.
2894 * But in this case, we keep res->usage until end of a series of
2895 * uncharges. Then, it's ok to ignore memcg's refcnt.
2896 */
2897 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002898 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002899 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002900 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002901 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002902 * the same cgroup and we have chance to coalesce uncharges.
2903 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
2904 * because we want to do uncharge as soon as possible.
2905 */
2906
2907 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
2908 goto direct_uncharge;
2909
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002910 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08002911 goto direct_uncharge;
2912
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002913 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002914 * In typical case, batch->memcg == mem. This means we can
2915 * merge a series of uncharges to an uncharge of res_counter.
2916 * If not, we uncharge res_counter ony by one.
2917 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002918 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002919 goto direct_uncharge;
2920 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002921 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002922 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002923 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002924 return;
2925direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002926 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002927 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002928 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
2929 if (unlikely(batch->memcg != memcg))
2930 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002931}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002932
Balbir Singh8697d332008-02-07 00:13:59 -08002933/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07002934 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002935 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002936static struct mem_cgroup *
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07002937__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002938{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002939 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002940 unsigned int nr_pages = 1;
2941 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002942 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002943
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002944 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002945 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07002946
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002947 if (PageSwapCache(page))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002948 return NULL;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002949
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002950 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002951 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002952 VM_BUG_ON(!PageTransHuge(page));
2953 }
Balbir Singh8697d332008-02-07 00:13:59 -08002954 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08002955 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08002956 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002957 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08002958 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002959 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002960
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002961 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002962
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002963 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002964
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002965 if (!PageCgroupUsed(pc))
2966 goto unlock_out;
2967
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002968 anon = PageAnon(page);
2969
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002970 switch (ctype) {
2971 case MEM_CGROUP_CHARGE_TYPE_MAPPED:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07002972 /*
2973 * Generally PageAnon tells if it's the anon statistics to be
2974 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
2975 * used before page reached the stage of being marked PageAnon.
2976 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002977 anon = true;
2978 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07002979 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07002980 /* See mem_cgroup_prepare_migration() */
2981 if (page_mapped(page) || PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002982 goto unlock_out;
2983 break;
2984 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
2985 if (!PageAnon(page)) { /* Shared memory */
2986 if (page->mapping && !page_is_file_cache(page))
2987 goto unlock_out;
2988 } else if (page_mapped(page)) /* Anon */
2989 goto unlock_out;
2990 break;
2991 default:
2992 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002993 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002994
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002995 mem_cgroup_charge_statistics(memcg, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07002996
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002997 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08002998 /*
2999 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3000 * freed from LRU. This is safe because uncharged page is expected not
3001 * to be reused (freed soon). Exception is SwapCache, it's handled by
3002 * special functions.
3003 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003004
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003005 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003006 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003007 * even after unlock, we have memcg->res.usage here and this memcg
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003008 * will never be freed.
3009 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003010 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003011 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003012 mem_cgroup_swap_statistics(memcg, true);
3013 mem_cgroup_get(memcg);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003014 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003015 if (!mem_cgroup_is_root(memcg))
3016 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003017
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003018 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003019
3020unlock_out:
3021 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003022 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003023}
3024
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003025void mem_cgroup_uncharge_page(struct page *page)
3026{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003027 /* early check. */
3028 if (page_mapped(page))
3029 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08003030 VM_BUG_ON(page->mapping && !PageAnon(page));
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003031 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_MAPPED);
3032}
3033
3034void mem_cgroup_uncharge_cache_page(struct page *page)
3035{
3036 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003037 VM_BUG_ON(page->mapping);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003038 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE);
3039}
3040
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003041/*
3042 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3043 * In that cases, pages are freed continuously and we can expect pages
3044 * are in the same memcg. All these calls itself limits the number of
3045 * pages freed at once, then uncharge_start/end() is called properly.
3046 * This may be called prural(2) times in a context,
3047 */
3048
3049void mem_cgroup_uncharge_start(void)
3050{
3051 current->memcg_batch.do_batch++;
3052 /* We can do nest. */
3053 if (current->memcg_batch.do_batch == 1) {
3054 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003055 current->memcg_batch.nr_pages = 0;
3056 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003057 }
3058}
3059
3060void mem_cgroup_uncharge_end(void)
3061{
3062 struct memcg_batch_info *batch = &current->memcg_batch;
3063
3064 if (!batch->do_batch)
3065 return;
3066
3067 batch->do_batch--;
3068 if (batch->do_batch) /* If stacked, do nothing. */
3069 return;
3070
3071 if (!batch->memcg)
3072 return;
3073 /*
3074 * This "batch->memcg" is valid without any css_get/put etc...
3075 * bacause we hide charges behind us.
3076 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003077 if (batch->nr_pages)
3078 res_counter_uncharge(&batch->memcg->res,
3079 batch->nr_pages * PAGE_SIZE);
3080 if (batch->memsw_nr_pages)
3081 res_counter_uncharge(&batch->memcg->memsw,
3082 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003083 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003084 /* forget this pointer (for sanity check) */
3085 batch->memcg = NULL;
3086}
3087
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003088#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003089/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003090 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003091 * memcg information is recorded to swap_cgroup of "ent"
3092 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003093void
3094mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003095{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003096 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003097 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003098
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003099 if (!swapout) /* this was a swap cache but the swap is unused ! */
3100 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
3101
3102 memcg = __mem_cgroup_uncharge_common(page, ctype);
3103
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003104 /*
3105 * record memcg information, if swapout && memcg != NULL,
3106 * mem_cgroup_get() was called in uncharge().
3107 */
3108 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003109 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003110}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003111#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003112
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003113#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
3114/*
3115 * called from swap_entry_free(). remove record in swap_cgroup and
3116 * uncharge "memsw" account.
3117 */
3118void mem_cgroup_uncharge_swap(swp_entry_t ent)
3119{
3120 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003121 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003122
3123 if (!do_swap_account)
3124 return;
3125
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003126 id = swap_cgroup_record(ent, 0);
3127 rcu_read_lock();
3128 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003129 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003130 /*
3131 * We uncharge this because swap is freed.
3132 * This memcg can be obsolete one. We avoid calling css_tryget
3133 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003134 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07003135 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003136 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003137 mem_cgroup_put(memcg);
3138 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003139 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003140}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003141
3142/**
3143 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3144 * @entry: swap entry to be moved
3145 * @from: mem_cgroup which the entry is moved from
3146 * @to: mem_cgroup which the entry is moved to
3147 *
3148 * It succeeds only when the swap_cgroup's record for this entry is the same
3149 * as the mem_cgroup's id of @from.
3150 *
3151 * Returns 0 on success, -EINVAL on failure.
3152 *
3153 * The caller must have charged to @to, IOW, called res_counter_charge() about
3154 * both res and memsw, and called css_get().
3155 */
3156static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003157 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003158{
3159 unsigned short old_id, new_id;
3160
3161 old_id = css_id(&from->css);
3162 new_id = css_id(&to->css);
3163
3164 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003165 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003166 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003167 /*
3168 * This function is only called from task migration context now.
3169 * It postpones res_counter and refcount handling till the end
3170 * of task migration(mem_cgroup_clear_mc()) for performance
3171 * improvement. But we cannot postpone mem_cgroup_get(to)
3172 * because if the process that has been moved to @to does
3173 * swap-in, the refcount of @to might be decreased to 0.
3174 */
Daisuke Nishimura02491442010-03-10 15:22:17 -08003175 mem_cgroup_get(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003176 return 0;
3177 }
3178 return -EINVAL;
3179}
3180#else
3181static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003182 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003183{
3184 return -EINVAL;
3185}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003186#endif
3187
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003188/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003189 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
3190 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003191 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003192int mem_cgroup_prepare_migration(struct page *page,
Johannes Weiner72835c82012-01-12 17:18:32 -08003193 struct page *newpage, struct mem_cgroup **memcgp, gfp_t gfp_mask)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003194{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003195 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003196 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003197 enum charge_type ctype;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003198 int ret = 0;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003199
Johannes Weiner72835c82012-01-12 17:18:32 -08003200 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003201
Andrea Arcangeliec168512011-01-13 15:46:56 -08003202 VM_BUG_ON(PageTransHuge(page));
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003203 if (mem_cgroup_disabled())
Balbir Singh40779602008-04-04 14:29:59 -07003204 return 0;
3205
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003206 pc = lookup_page_cgroup(page);
3207 lock_page_cgroup(pc);
3208 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003209 memcg = pc->mem_cgroup;
3210 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003211 /*
3212 * At migrating an anonymous page, its mapcount goes down
3213 * to 0 and uncharge() will be called. But, even if it's fully
3214 * unmapped, migration may fail and this page has to be
3215 * charged again. We set MIGRATION flag here and delay uncharge
3216 * until end_migration() is called
3217 *
3218 * Corner Case Thinking
3219 * A)
3220 * When the old page was mapped as Anon and it's unmap-and-freed
3221 * while migration was ongoing.
3222 * If unmap finds the old page, uncharge() of it will be delayed
3223 * until end_migration(). If unmap finds a new page, it's
3224 * uncharged when it make mapcount to be 1->0. If unmap code
3225 * finds swap_migration_entry, the new page will not be mapped
3226 * and end_migration() will find it(mapcount==0).
3227 *
3228 * B)
3229 * When the old page was mapped but migraion fails, the kernel
3230 * remaps it. A charge for it is kept by MIGRATION flag even
3231 * if mapcount goes down to 0. We can do remap successfully
3232 * without charging it again.
3233 *
3234 * C)
3235 * The "old" page is under lock_page() until the end of
3236 * migration, so, the old page itself will not be swapped-out.
3237 * If the new page is swapped out before end_migraton, our
3238 * hook to usual swap-out path will catch the event.
3239 */
3240 if (PageAnon(page))
3241 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003242 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003243 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003244 /*
3245 * If the page is not charged at this point,
3246 * we return here.
3247 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003248 if (!memcg)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003249 return 0;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003250
Johannes Weiner72835c82012-01-12 17:18:32 -08003251 *memcgp = memcg;
3252 ret = __mem_cgroup_try_charge(NULL, gfp_mask, 1, memcgp, false);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003253 css_put(&memcg->css);/* drop extra refcnt */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003254 if (ret) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003255 if (PageAnon(page)) {
3256 lock_page_cgroup(pc);
3257 ClearPageCgroupMigration(pc);
3258 unlock_page_cgroup(pc);
3259 /*
3260 * The old page may be fully unmapped while we kept it.
3261 */
3262 mem_cgroup_uncharge_page(page);
3263 }
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003264 /* we'll need to revisit this error code (we have -EINTR) */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003265 return -ENOMEM;
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003266 }
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003267 /*
3268 * We charge new page before it's used/mapped. So, even if unlock_page()
3269 * is called before end_migration, we can catch all events on this new
3270 * page. In the case new page is migrated but not remapped, new page's
3271 * mapcount will be finally 0 and we call uncharge in end_migration().
3272 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003273 if (PageAnon(page))
3274 ctype = MEM_CGROUP_CHARGE_TYPE_MAPPED;
3275 else if (page_is_file_cache(page))
3276 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
3277 else
3278 ctype = MEM_CGROUP_CHARGE_TYPE_SHMEM;
Johannes Weinerce587e62012-04-24 20:22:33 +02003279 __mem_cgroup_commit_charge(memcg, newpage, 1, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003280 return ret;
3281}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08003282
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003283/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003284void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003285 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003286{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003287 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003288 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003289 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003290
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003291 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003292 return;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003293 /* blocks rmdir() */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003294 cgroup_exclude_rmdir(&memcg->css);
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003295 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003296 used = oldpage;
3297 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003298 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003299 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003300 unused = oldpage;
3301 }
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003302 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003303 * We disallowed uncharge of pages under migration because mapcount
3304 * of the page goes down to zero, temporarly.
3305 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003306 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003307 pc = lookup_page_cgroup(oldpage);
3308 lock_page_cgroup(pc);
3309 ClearPageCgroupMigration(pc);
3310 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003311 anon = PageAnon(used);
3312 __mem_cgroup_uncharge_common(unused,
3313 anon ? MEM_CGROUP_CHARGE_TYPE_MAPPED
3314 : MEM_CGROUP_CHARGE_TYPE_CACHE);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003315
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003316 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003317 * If a page is a file cache, radix-tree replacement is very atomic
3318 * and we can skip this check. When it was an Anon page, its mapcount
3319 * goes down to 0. But because we added MIGRATION flage, it's not
3320 * uncharged yet. There are several case but page->mapcount check
3321 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3322 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003323 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003324 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003325 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003326 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003327 * At migration, we may charge account against cgroup which has no
3328 * tasks.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003329 * So, rmdir()->pre_destroy() can be called while we do this charge.
3330 * In that case, we need to call pre_destroy() again. check it here.
3331 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003332 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003333}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08003334
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003335/*
3336 * At replace page cache, newpage is not under any memcg but it's on
3337 * LRU. So, this function doesn't touch res_counter but handles LRU
3338 * in correct way. Both pages are locked so we cannot race with uncharge.
3339 */
3340void mem_cgroup_replace_page_cache(struct page *oldpage,
3341 struct page *newpage)
3342{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003343 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003344 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003345 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003346
3347 if (mem_cgroup_disabled())
3348 return;
3349
3350 pc = lookup_page_cgroup(oldpage);
3351 /* fix accounting on old pages */
3352 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003353 if (PageCgroupUsed(pc)) {
3354 memcg = pc->mem_cgroup;
3355 mem_cgroup_charge_statistics(memcg, false, -1);
3356 ClearPageCgroupUsed(pc);
3357 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003358 unlock_page_cgroup(pc);
3359
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003360 /*
3361 * When called from shmem_replace_page(), in some cases the
3362 * oldpage has already been charged, and in some cases not.
3363 */
3364 if (!memcg)
3365 return;
3366
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003367 if (PageSwapBacked(oldpage))
3368 type = MEM_CGROUP_CHARGE_TYPE_SHMEM;
3369
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003370 /*
3371 * Even if newpage->mapping was NULL before starting replacement,
3372 * the newpage may be on LRU(or pagevec for LRU) already. We lock
3373 * LRU while we overwrite pc->mem_cgroup.
3374 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003375 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003376}
3377
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003378#ifdef CONFIG_DEBUG_VM
3379static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3380{
3381 struct page_cgroup *pc;
3382
3383 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003384 /*
3385 * Can be NULL while feeding pages into the page allocator for
3386 * the first time, i.e. during boot or memory hotplug;
3387 * or when mem_cgroup_disabled().
3388 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003389 if (likely(pc) && PageCgroupUsed(pc))
3390 return pc;
3391 return NULL;
3392}
3393
3394bool mem_cgroup_bad_page_check(struct page *page)
3395{
3396 if (mem_cgroup_disabled())
3397 return false;
3398
3399 return lookup_page_cgroup_used(page) != NULL;
3400}
3401
3402void mem_cgroup_print_bad_page(struct page *page)
3403{
3404 struct page_cgroup *pc;
3405
3406 pc = lookup_page_cgroup_used(page);
3407 if (pc) {
Hugh Dickins90b3fea2012-01-12 17:19:54 -08003408 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003409 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003410 }
3411}
3412#endif
3413
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003414static DEFINE_MUTEX(set_limit_mutex);
3415
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003416static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003417 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003418{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003419 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003420 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003421 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003422 int children = mem_cgroup_count_children(memcg);
3423 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003424 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003425
3426 /*
3427 * For keeping hierarchical_reclaim simple, how long we should retry
3428 * is depends on callers. We set our retry-count to be function
3429 * of # of children which we should visit in this loop.
3430 */
3431 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3432
3433 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003434
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003435 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003436 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003437 if (signal_pending(current)) {
3438 ret = -EINTR;
3439 break;
3440 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003441 /*
3442 * Rather than hide all in some function, I do this in
3443 * open coded manner. You see what this really does.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003444 * We have to guarantee memcg->res.limit < memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003445 */
3446 mutex_lock(&set_limit_mutex);
3447 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3448 if (memswlimit < val) {
3449 ret = -EINVAL;
3450 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003451 break;
3452 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003453
3454 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3455 if (memlimit < val)
3456 enlarge = 1;
3457
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003458 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003459 if (!ret) {
3460 if (memswlimit == val)
3461 memcg->memsw_is_minimum = true;
3462 else
3463 memcg->memsw_is_minimum = false;
3464 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003465 mutex_unlock(&set_limit_mutex);
3466
3467 if (!ret)
3468 break;
3469
Johannes Weiner56600482012-01-12 17:17:59 -08003470 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3471 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003472 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3473 /* Usage is reduced ? */
3474 if (curusage >= oldusage)
3475 retry_count--;
3476 else
3477 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003478 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003479 if (!ret && enlarge)
3480 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003481
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003482 return ret;
3483}
3484
Li Zefan338c8432009-06-17 16:27:15 -07003485static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3486 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003487{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003488 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003489 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003490 int children = mem_cgroup_count_children(memcg);
3491 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003492 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003493
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003494 /* see mem_cgroup_resize_res_limit */
3495 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3496 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003497 while (retry_count) {
3498 if (signal_pending(current)) {
3499 ret = -EINTR;
3500 break;
3501 }
3502 /*
3503 * Rather than hide all in some function, I do this in
3504 * open coded manner. You see what this really does.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003505 * We have to guarantee memcg->res.limit < memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003506 */
3507 mutex_lock(&set_limit_mutex);
3508 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3509 if (memlimit > val) {
3510 ret = -EINVAL;
3511 mutex_unlock(&set_limit_mutex);
3512 break;
3513 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003514 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3515 if (memswlimit < val)
3516 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003517 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003518 if (!ret) {
3519 if (memlimit == val)
3520 memcg->memsw_is_minimum = true;
3521 else
3522 memcg->memsw_is_minimum = false;
3523 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003524 mutex_unlock(&set_limit_mutex);
3525
3526 if (!ret)
3527 break;
3528
Johannes Weiner56600482012-01-12 17:17:59 -08003529 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3530 MEM_CGROUP_RECLAIM_NOSWAP |
3531 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003532 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003533 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003534 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003535 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003536 else
3537 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003538 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003539 if (!ret && enlarge)
3540 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003541 return ret;
3542}
3543
Balbir Singh4e416952009-09-23 15:56:39 -07003544unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
Ying Han0ae5e892011-05-26 16:25:25 -07003545 gfp_t gfp_mask,
3546 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003547{
3548 unsigned long nr_reclaimed = 0;
3549 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3550 unsigned long reclaimed;
3551 int loop = 0;
3552 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003553 unsigned long long excess;
Ying Han0ae5e892011-05-26 16:25:25 -07003554 unsigned long nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003555
3556 if (order > 0)
3557 return 0;
3558
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07003559 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
Balbir Singh4e416952009-09-23 15:56:39 -07003560 /*
3561 * This loop can run a while, specially if mem_cgroup's continuously
3562 * keep exceeding their soft limit and putting the system under
3563 * pressure
3564 */
3565 do {
3566 if (next_mz)
3567 mz = next_mz;
3568 else
3569 mz = mem_cgroup_largest_soft_limit_node(mctz);
3570 if (!mz)
3571 break;
3572
Ying Han0ae5e892011-05-26 16:25:25 -07003573 nr_scanned = 0;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003574 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
Johannes Weiner56600482012-01-12 17:17:59 -08003575 gfp_mask, &nr_scanned);
Balbir Singh4e416952009-09-23 15:56:39 -07003576 nr_reclaimed += reclaimed;
Ying Han0ae5e892011-05-26 16:25:25 -07003577 *total_scanned += nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003578 spin_lock(&mctz->lock);
3579
3580 /*
3581 * If we failed to reclaim anything from this memory cgroup
3582 * it is time to move on to the next cgroup
3583 */
3584 next_mz = NULL;
3585 if (!reclaimed) {
3586 do {
3587 /*
3588 * Loop until we find yet another one.
3589 *
3590 * By the time we get the soft_limit lock
3591 * again, someone might have aded the
3592 * group back on the RB tree. Iterate to
3593 * make sure we get a different mem.
3594 * mem_cgroup_largest_soft_limit_node returns
3595 * NULL if no other cgroup is present on
3596 * the tree
3597 */
3598 next_mz =
3599 __mem_cgroup_largest_soft_limit_node(mctz);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003600 if (next_mz == mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003601 css_put(&next_mz->memcg->css);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003602 else /* next_mz == NULL or other memcg */
Balbir Singh4e416952009-09-23 15:56:39 -07003603 break;
3604 } while (1);
3605 }
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003606 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
3607 excess = res_counter_soft_limit_excess(&mz->memcg->res);
Balbir Singh4e416952009-09-23 15:56:39 -07003608 /*
3609 * One school of thought says that we should not add
3610 * back the node to the tree if reclaim returns 0.
3611 * But our reclaim could return 0, simply because due
3612 * to priority we are exposing a smaller subset of
3613 * memory to reclaim from. Consider this as a longer
3614 * term TODO.
3615 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003616 /* If excess == 0, no tree ops */
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003617 __mem_cgroup_insert_exceeded(mz->memcg, mz, mctz, excess);
Balbir Singh4e416952009-09-23 15:56:39 -07003618 spin_unlock(&mctz->lock);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003619 css_put(&mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003620 loop++;
3621 /*
3622 * Could not reclaim anything and there are no more
3623 * mem cgroups to try or we seem to be looping without
3624 * reclaiming anything.
3625 */
3626 if (!nr_reclaimed &&
3627 (next_mz == NULL ||
3628 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3629 break;
3630 } while (!nr_reclaimed);
3631 if (next_mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003632 css_put(&next_mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003633 return nr_reclaimed;
3634}
3635
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07003636/*
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003637 * This routine traverse page_cgroup in given list and drop them all.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003638 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
3639 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003640static int mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003641 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003642{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003643 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003644 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003645 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08003646 struct page *busy;
3647 struct zone *zone;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003648 int ret = 0;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003649
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003650 zone = &NODE_DATA(node)->node_zones[zid];
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003651 mz = mem_cgroup_zoneinfo(memcg, node, zid);
Johannes Weiner6290df52012-01-12 17:18:10 -08003652 list = &mz->lruvec.lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003653
Hugh Dickins1eb49272012-03-21 16:34:19 -07003654 loop = mz->lru_size[lru];
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003655 /* give some margin against EBUSY etc...*/
3656 loop += 256;
3657 busy = NULL;
3658 while (loop--) {
Johannes Weiner925b7672012-01-12 17:18:15 -08003659 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07003660 struct page *page;
3661
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003662 ret = 0;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003663 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003664 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003665 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003666 break;
3667 }
Johannes Weiner925b7672012-01-12 17:18:15 -08003668 page = list_entry(list->prev, struct page, lru);
3669 if (busy == page) {
3670 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003671 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003672 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003673 continue;
3674 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003675 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003676
Johannes Weiner925b7672012-01-12 17:18:15 -08003677 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07003678
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003679 ret = mem_cgroup_move_parent(page, pc, memcg, GFP_KERNEL);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003680 if (ret == -ENOMEM || ret == -EINTR)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003681 break;
3682
3683 if (ret == -EBUSY || ret == -EINVAL) {
3684 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08003685 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003686 cond_resched();
3687 } else
3688 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003689 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003690
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003691 if (!ret && !list_empty(list))
3692 return -EBUSY;
3693 return ret;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003694}
3695
3696/*
3697 * make mem_cgroup's charge to be 0 if there is no task.
3698 * This enables deleting this mem_cgroup.
3699 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003700static int mem_cgroup_force_empty(struct mem_cgroup *memcg, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003701{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003702 int ret;
3703 int node, zid, shrink;
3704 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003705 struct cgroup *cgrp = memcg->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003706
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003707 css_get(&memcg->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003708
3709 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003710 /* should free all ? */
3711 if (free_all)
3712 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003713move_account:
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003714 do {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003715 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003716 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003717 goto out;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003718 ret = -EINTR;
3719 if (signal_pending(current))
3720 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003721 /* This is for making all *used* pages to be on LRU. */
3722 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003723 drain_all_stock_sync(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003724 ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003725 mem_cgroup_start_move(memcg);
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08003726 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003727 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003728 enum lru_list lru;
3729 for_each_lru(lru) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003730 ret = mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003731 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003732 if (ret)
3733 break;
3734 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003735 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003736 if (ret)
3737 break;
3738 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003739 mem_cgroup_end_move(memcg);
3740 memcg_oom_recover(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003741 /* it seems parent cgroup doesn't have enough mem */
3742 if (ret == -ENOMEM)
3743 goto try_to_free;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003744 cond_resched();
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003745 /* "ret" should also be checked to ensure all lists are empty. */
Glauber Costa569530f2012-04-12 12:49:13 -07003746 } while (res_counter_read_u64(&memcg->res, RES_USAGE) > 0 || ret);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003747out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003748 css_put(&memcg->css);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003749 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003750
3751try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003752 /* returns EBUSY if there is a task or if we come here twice. */
3753 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003754 ret = -EBUSY;
3755 goto out;
3756 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003757 /* we call try-to-free pages for make this cgroup empty */
3758 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003759 /* try to free all pages in this cgroup */
3760 shrink = 1;
Glauber Costa569530f2012-04-12 12:49:13 -07003761 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003762 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003763
3764 if (signal_pending(current)) {
3765 ret = -EINTR;
3766 goto out;
3767 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003768 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07003769 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003770 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003771 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003772 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003773 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003774 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003775
3776 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003777 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003778 /* try move_account...there may be some *locked* pages. */
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003779 goto move_account;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003780}
3781
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07003782static int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003783{
3784 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3785}
3786
3787
Balbir Singh18f59ea2009-01-07 18:08:07 -08003788static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3789{
3790 return mem_cgroup_from_cont(cont)->use_hierarchy;
3791}
3792
3793static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3794 u64 val)
3795{
3796 int retval = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003797 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003798 struct cgroup *parent = cont->parent;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003799 struct mem_cgroup *parent_memcg = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003800
3801 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003802 parent_memcg = mem_cgroup_from_cont(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003803
3804 cgroup_lock();
3805 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003806 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003807 * in the child subtrees. If it is unset, then the change can
3808 * occur, provided the current cgroup has no children.
3809 *
3810 * For the root cgroup, parent_mem is NULL, we allow value to be
3811 * set if there are no children.
3812 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003813 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003814 (val == 1 || val == 0)) {
3815 if (list_empty(&cont->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003816 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003817 else
3818 retval = -EBUSY;
3819 } else
3820 retval = -EINVAL;
3821 cgroup_unlock();
3822
3823 return retval;
3824}
3825
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003826
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003827static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003828 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003829{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003830 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003831 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003832
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003833 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003834 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003835 val += mem_cgroup_read_stat(iter, idx);
3836
3837 if (val < 0) /* race ? */
3838 val = 0;
3839 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003840}
3841
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003842static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003843{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003844 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003845
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003846 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003847 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00003848 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003849 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00003850 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003851 }
3852
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003853 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
3854 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003855
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003856 if (swap)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003857 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAPOUT);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003858
3859 return val << PAGE_SHIFT;
3860}
3861
Tejun Heoaf36f902012-04-01 12:09:55 -07003862static ssize_t mem_cgroup_read(struct cgroup *cont, struct cftype *cft,
3863 struct file *file, char __user *buf,
3864 size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003865{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003866 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Tejun Heoaf36f902012-04-01 12:09:55 -07003867 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003868 u64 val;
Tejun Heoaf36f902012-04-01 12:09:55 -07003869 int type, name, len;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003870
3871 type = MEMFILE_TYPE(cft->private);
3872 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003873
3874 if (!do_swap_account && type == _MEMSWAP)
3875 return -EOPNOTSUPP;
3876
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003877 switch (type) {
3878 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003879 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003880 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003881 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003882 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003883 break;
3884 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003885 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003886 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003887 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003888 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003889 break;
3890 default:
3891 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003892 }
Tejun Heoaf36f902012-04-01 12:09:55 -07003893
3894 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
3895 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003896}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003897/*
3898 * The user of this function is...
3899 * RES_LIMIT.
3900 */
Paul Menage856c13a2008-07-25 01:47:04 -07003901static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
3902 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003903{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003904 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003905 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003906 unsigned long long val;
3907 int ret;
3908
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003909 type = MEMFILE_TYPE(cft->private);
3910 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003911
3912 if (!do_swap_account && type == _MEMSWAP)
3913 return -EOPNOTSUPP;
3914
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003915 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003916 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07003917 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3918 ret = -EINVAL;
3919 break;
3920 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003921 /* This function does all necessary parse...reuse it */
3922 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003923 if (ret)
3924 break;
3925 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003926 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003927 else
3928 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003929 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07003930 case RES_SOFT_LIMIT:
3931 ret = res_counter_memparse_write_strategy(buffer, &val);
3932 if (ret)
3933 break;
3934 /*
3935 * For memsw, soft limits are hard to implement in terms
3936 * of semantics, for now, we support soft limits for
3937 * control without swap
3938 */
3939 if (type == _MEM)
3940 ret = res_counter_set_soft_limit(&memcg->res, val);
3941 else
3942 ret = -EINVAL;
3943 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003944 default:
3945 ret = -EINVAL; /* should be BUG() ? */
3946 break;
3947 }
3948 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003949}
3950
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08003951static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
3952 unsigned long long *mem_limit, unsigned long long *memsw_limit)
3953{
3954 struct cgroup *cgroup;
3955 unsigned long long min_limit, min_memsw_limit, tmp;
3956
3957 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3958 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3959 cgroup = memcg->css.cgroup;
3960 if (!memcg->use_hierarchy)
3961 goto out;
3962
3963 while (cgroup->parent) {
3964 cgroup = cgroup->parent;
3965 memcg = mem_cgroup_from_cont(cgroup);
3966 if (!memcg->use_hierarchy)
3967 break;
3968 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
3969 min_limit = min(min_limit, tmp);
3970 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3971 min_memsw_limit = min(min_memsw_limit, tmp);
3972 }
3973out:
3974 *mem_limit = min_limit;
3975 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08003976}
3977
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003978static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07003979{
Tejun Heoaf36f902012-04-01 12:09:55 -07003980 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003981 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07003982
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003983 type = MEMFILE_TYPE(event);
3984 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07003985
3986 if (!do_swap_account && type == _MEMSWAP)
3987 return -EOPNOTSUPP;
3988
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003989 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003990 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003991 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003992 res_counter_reset_max(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003993 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003994 res_counter_reset_max(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003995 break;
3996 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003997 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003998 res_counter_reset_failcnt(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003999 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004000 res_counter_reset_failcnt(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004001 break;
4002 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004003
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004004 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004005}
4006
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004007static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
4008 struct cftype *cft)
4009{
4010 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
4011}
4012
Daisuke Nishimura02491442010-03-10 15:22:17 -08004013#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004014static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4015 struct cftype *cft, u64 val)
4016{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004017 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004018
4019 if (val >= (1 << NR_MOVE_TYPE))
4020 return -EINVAL;
4021 /*
4022 * We check this value several times in both in can_attach() and
4023 * attach(), so we need cgroup lock to prevent this value from being
4024 * inconsistent.
4025 */
4026 cgroup_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004027 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004028 cgroup_unlock();
4029
4030 return 0;
4031}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004032#else
4033static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4034 struct cftype *cft, u64 val)
4035{
4036 return -ENOSYS;
4037}
4038#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004039
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004040
4041/* For read statistics */
4042enum {
4043 MCS_CACHE,
4044 MCS_RSS,
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -08004045 MCS_FILE_MAPPED,
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004046 MCS_PGPGIN,
4047 MCS_PGPGOUT,
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004048 MCS_SWAP,
Ying Han456f9982011-05-26 16:25:38 -07004049 MCS_PGFAULT,
4050 MCS_PGMAJFAULT,
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004051 MCS_INACTIVE_ANON,
4052 MCS_ACTIVE_ANON,
4053 MCS_INACTIVE_FILE,
4054 MCS_ACTIVE_FILE,
4055 MCS_UNEVICTABLE,
4056 NR_MCS_STAT,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004057};
4058
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004059struct mcs_total_stat {
4060 s64 stat[NR_MCS_STAT];
4061};
4062
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004063static const char *memcg_stat_strings[NR_MCS_STAT] = {
4064 "cache",
4065 "rss",
4066 "mapped_file",
4067 "pgpgin",
4068 "pgpgout",
4069 "swap",
4070 "pgfault",
4071 "pgmajfault",
4072 "inactive_anon",
4073 "active_anon",
4074 "inactive_file",
4075 "active_file",
4076 "unevictable",
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004077};
4078
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004079static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004080mem_cgroup_get_local_stat(struct mem_cgroup *memcg, struct mcs_total_stat *s)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004081{
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004082 s64 val;
4083
4084 /* per cpu stat */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004085 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_CACHE);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004086 s->stat[MCS_CACHE] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004087 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_RSS);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004088 s->stat[MCS_RSS] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004089 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_FILE_MAPPED);
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -08004090 s->stat[MCS_FILE_MAPPED] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004091 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGPGIN);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004092 s->stat[MCS_PGPGIN] += val;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004093 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGPGOUT);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004094 s->stat[MCS_PGPGOUT] += val;
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004095 if (do_swap_account) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004096 val = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_SWAPOUT);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004097 s->stat[MCS_SWAP] += val * PAGE_SIZE;
4098 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004099 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGFAULT);
Ying Han456f9982011-05-26 16:25:38 -07004100 s->stat[MCS_PGFAULT] += val;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004101 val = mem_cgroup_read_events(memcg, MEM_CGROUP_EVENTS_PGMAJFAULT);
Ying Han456f9982011-05-26 16:25:38 -07004102 s->stat[MCS_PGMAJFAULT] += val;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004103
4104 /* per zone stat */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004105 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_INACTIVE_ANON));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004106 s->stat[MCS_INACTIVE_ANON] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004107 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_ACTIVE_ANON));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004108 s->stat[MCS_ACTIVE_ANON] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004109 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_INACTIVE_FILE));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004110 s->stat[MCS_INACTIVE_FILE] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004111 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_ACTIVE_FILE));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004112 s->stat[MCS_ACTIVE_FILE] += val * PAGE_SIZE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004113 val = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004114 s->stat[MCS_UNEVICTABLE] += val * PAGE_SIZE;
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004115}
4116
4117static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004118mem_cgroup_get_total_stat(struct mem_cgroup *memcg, struct mcs_total_stat *s)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004119{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004120 struct mem_cgroup *iter;
4121
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004122 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004123 mem_cgroup_get_local_stat(iter, s);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004124}
4125
Ying Han406eb0c2011-05-26 16:25:37 -07004126#ifdef CONFIG_NUMA
Johannes Weinerfada52c2012-05-29 15:07:06 -07004127static int mem_control_numa_stat_show(struct cgroup *cont, struct cftype *cft,
4128 struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07004129{
4130 int nid;
4131 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
4132 unsigned long node_nr;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004133 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Ying Han406eb0c2011-05-26 16:25:37 -07004134
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004135 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004136 seq_printf(m, "total=%lu", total_nr);
4137 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004138 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004139 seq_printf(m, " N%d=%lu", nid, node_nr);
4140 }
4141 seq_putc(m, '\n');
4142
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004143 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004144 seq_printf(m, "file=%lu", file_nr);
4145 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004146 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004147 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004148 seq_printf(m, " N%d=%lu", nid, node_nr);
4149 }
4150 seq_putc(m, '\n');
4151
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004152 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004153 seq_printf(m, "anon=%lu", anon_nr);
4154 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004155 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004156 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004157 seq_printf(m, " N%d=%lu", nid, node_nr);
4158 }
4159 seq_putc(m, '\n');
4160
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004161 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004162 seq_printf(m, "unevictable=%lu", unevictable_nr);
4163 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004164 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004165 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004166 seq_printf(m, " N%d=%lu", nid, node_nr);
4167 }
4168 seq_putc(m, '\n');
4169 return 0;
4170}
4171#endif /* CONFIG_NUMA */
4172
Paul Menagec64745c2008-04-29 01:00:02 -07004173static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004174 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004175{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004176 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004177 struct mcs_total_stat mystat;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004178 int i;
4179
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004180 memset(&mystat, 0, sizeof(mystat));
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004181 mem_cgroup_get_local_stat(memcg, &mystat);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004182
Ying Han406eb0c2011-05-26 16:25:37 -07004183
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004184 for (i = 0; i < NR_MCS_STAT; i++) {
4185 if (i == MCS_SWAP && !do_swap_account)
4186 continue;
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004187 seq_printf(m, "%s %llu\n", memcg_stat_strings[i],
4188 (unsigned long long)mystat.stat[i]);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004189 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004190
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004191 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004192 {
4193 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004194 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004195 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004196 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004197 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4198 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004199 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004200
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004201 memset(&mystat, 0, sizeof(mystat));
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004202 mem_cgroup_get_total_stat(memcg, &mystat);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004203 for (i = 0; i < NR_MCS_STAT; i++) {
4204 if (i == MCS_SWAP && !do_swap_account)
4205 continue;
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004206 seq_printf(m, "total_%s %llu\n", memcg_stat_strings[i],
4207 (unsigned long long)mystat.stat[i]);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004208 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004209
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004210#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004211 {
4212 int nid, zid;
4213 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07004214 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004215 unsigned long recent_rotated[2] = {0, 0};
4216 unsigned long recent_scanned[2] = {0, 0};
4217
4218 for_each_online_node(nid)
4219 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004220 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07004221 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004222
Hugh Dickins89abfab2012-05-29 15:06:53 -07004223 recent_rotated[0] += rstat->recent_rotated[0];
4224 recent_rotated[1] += rstat->recent_rotated[1];
4225 recent_scanned[0] += rstat->recent_scanned[0];
4226 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004227 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004228 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
4229 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
4230 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
4231 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004232 }
4233#endif
4234
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004235 return 0;
4236}
4237
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004238static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
4239{
4240 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4241
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004242 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004243}
4244
4245static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
4246 u64 val)
4247{
4248 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4249 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08004250
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004251 if (val > 100)
4252 return -EINVAL;
4253
4254 if (cgrp->parent == NULL)
4255 return -EINVAL;
4256
4257 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08004258
4259 cgroup_lock();
4260
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004261 /* If under hierarchy, only empty-root can set this value */
4262 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08004263 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
4264 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004265 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08004266 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004267
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004268 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004269
Li Zefan068b38c2009-01-15 13:51:26 -08004270 cgroup_unlock();
4271
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004272 return 0;
4273}
4274
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004275static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4276{
4277 struct mem_cgroup_threshold_ary *t;
4278 u64 usage;
4279 int i;
4280
4281 rcu_read_lock();
4282 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004283 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004284 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004285 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004286
4287 if (!t)
4288 goto unlock;
4289
4290 usage = mem_cgroup_usage(memcg, swap);
4291
4292 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004293 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004294 * If it's not true, a threshold was crossed after last
4295 * call of __mem_cgroup_threshold().
4296 */
Phil Carmody5407a562010-05-26 14:42:42 -07004297 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004298
4299 /*
4300 * Iterate backward over array of thresholds starting from
4301 * current_threshold and check if a threshold is crossed.
4302 * If none of thresholds below usage is crossed, we read
4303 * only one element of the array here.
4304 */
4305 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4306 eventfd_signal(t->entries[i].eventfd, 1);
4307
4308 /* i = current_threshold + 1 */
4309 i++;
4310
4311 /*
4312 * Iterate forward over array of thresholds starting from
4313 * current_threshold+1 and check if a threshold is crossed.
4314 * If none of thresholds above usage is crossed, we read
4315 * only one element of the array here.
4316 */
4317 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4318 eventfd_signal(t->entries[i].eventfd, 1);
4319
4320 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004321 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004322unlock:
4323 rcu_read_unlock();
4324}
4325
4326static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4327{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004328 while (memcg) {
4329 __mem_cgroup_threshold(memcg, false);
4330 if (do_swap_account)
4331 __mem_cgroup_threshold(memcg, true);
4332
4333 memcg = parent_mem_cgroup(memcg);
4334 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004335}
4336
4337static int compare_thresholds(const void *a, const void *b)
4338{
4339 const struct mem_cgroup_threshold *_a = a;
4340 const struct mem_cgroup_threshold *_b = b;
4341
4342 return _a->threshold - _b->threshold;
4343}
4344
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004345static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004346{
4347 struct mem_cgroup_eventfd_list *ev;
4348
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004349 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004350 eventfd_signal(ev->eventfd, 1);
4351 return 0;
4352}
4353
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004354static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004355{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004356 struct mem_cgroup *iter;
4357
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004358 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004359 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004360}
4361
4362static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4363 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004364{
4365 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004366 struct mem_cgroup_thresholds *thresholds;
4367 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004368 int type = MEMFILE_TYPE(cft->private);
4369 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004370 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004371
4372 ret = res_counter_memparse_write_strategy(args, &threshold);
4373 if (ret)
4374 return ret;
4375
4376 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004377
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004378 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004379 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004380 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004381 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004382 else
4383 BUG();
4384
4385 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4386
4387 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004388 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004389 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4390
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004391 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004392
4393 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004394 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004395 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004396 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004397 ret = -ENOMEM;
4398 goto unlock;
4399 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004400 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004401
4402 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004403 if (thresholds->primary) {
4404 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004405 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004406 }
4407
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004408 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004409 new->entries[size - 1].eventfd = eventfd;
4410 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004411
4412 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004413 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004414 compare_thresholds, NULL);
4415
4416 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004417 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004418 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004419 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004420 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004421 * new->current_threshold will not be used until
4422 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004423 * it here.
4424 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004425 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004426 } else
4427 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004428 }
4429
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004430 /* Free old spare buffer and save old primary buffer as spare */
4431 kfree(thresholds->spare);
4432 thresholds->spare = thresholds->primary;
4433
4434 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004435
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004436 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004437 synchronize_rcu();
4438
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004439unlock:
4440 mutex_unlock(&memcg->thresholds_lock);
4441
4442 return ret;
4443}
4444
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004445static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004446 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004447{
4448 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004449 struct mem_cgroup_thresholds *thresholds;
4450 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004451 int type = MEMFILE_TYPE(cft->private);
4452 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004453 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004454
4455 mutex_lock(&memcg->thresholds_lock);
4456 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004457 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004458 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004459 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004460 else
4461 BUG();
4462
Anton Vorontsov371528c2012-02-24 05:14:46 +04004463 if (!thresholds->primary)
4464 goto unlock;
4465
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004466 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4467
4468 /* Check if a threshold crossed before removing */
4469 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4470
4471 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004472 size = 0;
4473 for (i = 0; i < thresholds->primary->size; i++) {
4474 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004475 size++;
4476 }
4477
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004478 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004479
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004480 /* Set thresholds array to NULL if we don't have thresholds */
4481 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004482 kfree(new);
4483 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004484 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004485 }
4486
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004487 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004488
4489 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004490 new->current_threshold = -1;
4491 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4492 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004493 continue;
4494
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004495 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004496 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004497 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004498 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004499 * until rcu_assign_pointer(), so it's safe to increment
4500 * it here.
4501 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004502 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004503 }
4504 j++;
4505 }
4506
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004507swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004508 /* Swap primary and spare array */
4509 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004510 /* If all events are unregistered, free the spare array */
4511 if (!new) {
4512 kfree(thresholds->spare);
4513 thresholds->spare = NULL;
4514 }
4515
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004516 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004517
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004518 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004519 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04004520unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004521 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004522}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004523
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004524static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4525 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4526{
4527 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4528 struct mem_cgroup_eventfd_list *event;
4529 int type = MEMFILE_TYPE(cft->private);
4530
4531 BUG_ON(type != _OOM_TYPE);
4532 event = kmalloc(sizeof(*event), GFP_KERNEL);
4533 if (!event)
4534 return -ENOMEM;
4535
Michal Hocko1af8efe2011-07-26 16:08:24 -07004536 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004537
4538 event->eventfd = eventfd;
4539 list_add(&event->list, &memcg->oom_notify);
4540
4541 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004542 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004543 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004544 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004545
4546 return 0;
4547}
4548
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004549static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004550 struct cftype *cft, struct eventfd_ctx *eventfd)
4551{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004552 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004553 struct mem_cgroup_eventfd_list *ev, *tmp;
4554 int type = MEMFILE_TYPE(cft->private);
4555
4556 BUG_ON(type != _OOM_TYPE);
4557
Michal Hocko1af8efe2011-07-26 16:08:24 -07004558 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004559
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004560 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004561 if (ev->eventfd == eventfd) {
4562 list_del(&ev->list);
4563 kfree(ev);
4564 }
4565 }
4566
Michal Hocko1af8efe2011-07-26 16:08:24 -07004567 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004568}
4569
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004570static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4571 struct cftype *cft, struct cgroup_map_cb *cb)
4572{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004573 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004574
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004575 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004576
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004577 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004578 cb->fill(cb, "under_oom", 1);
4579 else
4580 cb->fill(cb, "under_oom", 0);
4581 return 0;
4582}
4583
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004584static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4585 struct cftype *cft, u64 val)
4586{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004587 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004588 struct mem_cgroup *parent;
4589
4590 /* cannot set to root cgroup and only 0 and 1 are allowed */
4591 if (!cgrp->parent || !((val == 0) || (val == 1)))
4592 return -EINVAL;
4593
4594 parent = mem_cgroup_from_cont(cgrp->parent);
4595
4596 cgroup_lock();
4597 /* oom-kill-disable is a flag for subhierarchy. */
4598 if ((parent->use_hierarchy) ||
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004599 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004600 cgroup_unlock();
4601 return -EINVAL;
4602 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004603 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004604 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004605 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004606 cgroup_unlock();
4607 return 0;
4608}
4609
Glauber Costae5671df2011-12-11 21:47:01 +00004610#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03004611static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004612{
Glauber Costa1d62e432012-04-09 19:36:33 -03004613 return mem_cgroup_sockets_init(memcg, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00004614};
4615
Glauber Costa1d62e432012-04-09 19:36:33 -03004616static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004617{
Glauber Costa1d62e432012-04-09 19:36:33 -03004618 mem_cgroup_sockets_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004619}
Glauber Costae5671df2011-12-11 21:47:01 +00004620#else
Glauber Costacbe128e32012-04-09 19:36:34 -03004621static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004622{
4623 return 0;
4624}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004625
Glauber Costa1d62e432012-04-09 19:36:33 -03004626static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004627{
4628}
Glauber Costae5671df2011-12-11 21:47:01 +00004629#endif
4630
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004631static struct cftype mem_cgroup_files[] = {
4632 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004633 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004634 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004635 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004636 .register_event = mem_cgroup_usage_register_event,
4637 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004638 },
4639 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004640 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004641 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004642 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004643 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004644 },
4645 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004646 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004647 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07004648 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004649 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004650 },
4651 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004652 .name = "soft_limit_in_bytes",
4653 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4654 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004655 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07004656 },
4657 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004658 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004659 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004660 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004661 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004662 },
Balbir Singh8697d332008-02-07 00:13:59 -08004663 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004664 .name = "stat",
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004665 .read_seq_string = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004666 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004667 {
4668 .name = "force_empty",
4669 .trigger = mem_cgroup_force_empty_write,
4670 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004671 {
4672 .name = "use_hierarchy",
4673 .write_u64 = mem_cgroup_hierarchy_write,
4674 .read_u64 = mem_cgroup_hierarchy_read,
4675 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004676 {
4677 .name = "swappiness",
4678 .read_u64 = mem_cgroup_swappiness_read,
4679 .write_u64 = mem_cgroup_swappiness_write,
4680 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004681 {
4682 .name = "move_charge_at_immigrate",
4683 .read_u64 = mem_cgroup_move_charge_read,
4684 .write_u64 = mem_cgroup_move_charge_write,
4685 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004686 {
4687 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004688 .read_map = mem_cgroup_oom_control_read,
4689 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004690 .register_event = mem_cgroup_oom_register_event,
4691 .unregister_event = mem_cgroup_oom_unregister_event,
4692 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4693 },
Ying Han406eb0c2011-05-26 16:25:37 -07004694#ifdef CONFIG_NUMA
4695 {
4696 .name = "numa_stat",
Johannes Weinerfada52c2012-05-29 15:07:06 -07004697 .read_seq_string = mem_control_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07004698 },
4699#endif
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004700#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004701 {
4702 .name = "memsw.usage_in_bytes",
4703 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004704 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004705 .register_event = mem_cgroup_usage_register_event,
4706 .unregister_event = mem_cgroup_usage_unregister_event,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004707 },
4708 {
4709 .name = "memsw.max_usage_in_bytes",
4710 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4711 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004712 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004713 },
4714 {
4715 .name = "memsw.limit_in_bytes",
4716 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4717 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004718 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004719 },
4720 {
4721 .name = "memsw.failcnt",
4722 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4723 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004724 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004725 },
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004726#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07004727 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07004728};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004729
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004730static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004731{
4732 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004733 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004734 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004735 /*
4736 * This routine is called against possible nodes.
4737 * But it's BUG to call kmalloc() against offline node.
4738 *
4739 * TODO: this routine can waste much memory for nodes which will
4740 * never be onlined. It's better to use memory hotplug callback
4741 * function.
4742 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004743 if (!node_state(node, N_NORMAL_MEMORY))
4744 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004745 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004746 if (!pn)
4747 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004748
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004749 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4750 mz = &pn->zoneinfo[zone];
Konstantin Khlebnikov7f5e86c2012-05-29 15:06:58 -07004751 lruvec_init(&mz->lruvec, &NODE_DATA(node)->node_zones[zone]);
Balbir Singhf64c3f52009-09-23 15:56:37 -07004752 mz->usage_in_excess = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07004753 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004754 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004755 }
Igor Mammedov0a619e52011-11-02 13:38:21 -07004756 memcg->info.nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004757 return 0;
4758}
4759
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004760static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004761{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004762 kfree(memcg->info.nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004763}
4764
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004765static struct mem_cgroup *mem_cgroup_alloc(void)
4766{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004767 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004768 int size = sizeof(struct mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004769
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004770 /* Can be very big if MAX_NUMNODES is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08004771 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004772 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004773 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004774 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004775
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004776 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004777 return NULL;
4778
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004779 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
4780 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004781 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004782 spin_lock_init(&memcg->pcp_counter_lock);
4783 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004784
4785out_free:
4786 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004787 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004788 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004789 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004790 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004791}
4792
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004793/*
Hugh Dickins59927fb2012-03-15 15:17:07 -07004794 * Helpers for freeing a vzalloc()ed mem_cgroup by RCU,
4795 * but in process context. The work_freeing structure is overlaid
4796 * on the rcu_freeing structure, which itself is overlaid on memsw.
4797 */
4798static void vfree_work(struct work_struct *work)
4799{
4800 struct mem_cgroup *memcg;
4801
4802 memcg = container_of(work, struct mem_cgroup, work_freeing);
4803 vfree(memcg);
4804}
4805static void vfree_rcu(struct rcu_head *rcu_head)
4806{
4807 struct mem_cgroup *memcg;
4808
4809 memcg = container_of(rcu_head, struct mem_cgroup, rcu_freeing);
4810 INIT_WORK(&memcg->work_freeing, vfree_work);
4811 schedule_work(&memcg->work_freeing);
4812}
4813
4814/*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004815 * At destroying mem_cgroup, references from swap_cgroup can remain.
4816 * (scanning all at force_empty is too costly...)
4817 *
4818 * Instead of clearing all references at force_empty, we remember
4819 * the number of reference from swap_cgroup and free mem_cgroup when
4820 * it goes down to 0.
4821 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004822 * Removal of cgroup itself succeeds regardless of refs from swap.
4823 */
4824
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004825static void __mem_cgroup_free(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004826{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004827 int node;
4828
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004829 mem_cgroup_remove_from_trees(memcg);
4830 free_css_id(&mem_cgroup_subsys, &memcg->css);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004831
Bob Liu3ed28fa2012-01-12 17:19:04 -08004832 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004833 free_mem_cgroup_per_zone_info(memcg, node);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004834
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004835 free_percpu(memcg->stat);
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004836 if (sizeof(struct mem_cgroup) < PAGE_SIZE)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004837 kfree_rcu(memcg, rcu_freeing);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004838 else
Hugh Dickins59927fb2012-03-15 15:17:07 -07004839 call_rcu(&memcg->rcu_freeing, vfree_rcu);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004840}
4841
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004842static void mem_cgroup_get(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004843{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004844 atomic_inc(&memcg->refcnt);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004845}
4846
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004847static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004848{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004849 if (atomic_sub_and_test(count, &memcg->refcnt)) {
4850 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4851 __mem_cgroup_free(memcg);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004852 if (parent)
4853 mem_cgroup_put(parent);
4854 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004855}
4856
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004857static void mem_cgroup_put(struct mem_cgroup *memcg)
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004858{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004859 __mem_cgroup_put(memcg, 1);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004860}
4861
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004862/*
4863 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4864 */
Glauber Costae1aab162011-12-11 21:47:03 +00004865struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004866{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004867 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004868 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004869 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004870}
Glauber Costae1aab162011-12-11 21:47:03 +00004871EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004872
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004873#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
4874static void __init enable_swap_cgroup(void)
4875{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004876 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004877 do_swap_account = 1;
4878}
4879#else
4880static void __init enable_swap_cgroup(void)
4881{
4882}
4883#endif
4884
Balbir Singhf64c3f52009-09-23 15:56:37 -07004885static int mem_cgroup_soft_limit_tree_init(void)
4886{
4887 struct mem_cgroup_tree_per_node *rtpn;
4888 struct mem_cgroup_tree_per_zone *rtpz;
4889 int tmp, node, zone;
4890
Bob Liu3ed28fa2012-01-12 17:19:04 -08004891 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -07004892 tmp = node;
4893 if (!node_state(node, N_NORMAL_MEMORY))
4894 tmp = -1;
4895 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
4896 if (!rtpn)
Michal Hockoc3cecc62012-01-12 17:18:50 -08004897 goto err_cleanup;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004898
4899 soft_limit_tree.rb_tree_per_node[node] = rtpn;
4900
4901 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4902 rtpz = &rtpn->rb_tree_per_zone[zone];
4903 rtpz->rb_root = RB_ROOT;
4904 spin_lock_init(&rtpz->lock);
4905 }
4906 }
4907 return 0;
Michal Hockoc3cecc62012-01-12 17:18:50 -08004908
4909err_cleanup:
Bob Liu3ed28fa2012-01-12 17:19:04 -08004910 for_each_node(node) {
Michal Hockoc3cecc62012-01-12 17:18:50 -08004911 if (!soft_limit_tree.rb_tree_per_node[node])
4912 break;
4913 kfree(soft_limit_tree.rb_tree_per_node[node]);
4914 soft_limit_tree.rb_tree_per_node[node] = NULL;
4915 }
4916 return 1;
4917
Balbir Singhf64c3f52009-09-23 15:56:37 -07004918}
4919
Li Zefan0eb253e2009-01-15 13:51:25 -08004920static struct cgroup_subsys_state * __ref
Li Zefan761b3ef2012-01-31 13:47:36 +08004921mem_cgroup_create(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004922{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004923 struct mem_cgroup *memcg, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004924 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004925 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004926
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004927 memcg = mem_cgroup_alloc();
4928 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004929 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004930
Bob Liu3ed28fa2012-01-12 17:19:04 -08004931 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004932 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004933 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004934
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004935 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004936 if (cont->parent == NULL) {
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004937 int cpu;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004938 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004939 parent = NULL;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004940 if (mem_cgroup_soft_limit_tree_init())
4941 goto free_out;
Hillf Dantona41c58a2011-12-19 17:11:57 -08004942 root_mem_cgroup = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004943 for_each_possible_cpu(cpu) {
4944 struct memcg_stock_pcp *stock =
4945 &per_cpu(memcg_stock, cpu);
4946 INIT_WORK(&stock->work, drain_local_stock);
4947 }
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07004948 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004949 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004950 parent = mem_cgroup_from_cont(cont->parent);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004951 memcg->use_hierarchy = parent->use_hierarchy;
4952 memcg->oom_kill_disable = parent->oom_kill_disable;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004953 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004954
Balbir Singh18f59ea2009-01-07 18:08:07 -08004955 if (parent && parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004956 res_counter_init(&memcg->res, &parent->res);
4957 res_counter_init(&memcg->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004958 /*
4959 * We increment refcnt of the parent to ensure that we can
4960 * safely access it on res_counter_charge/uncharge.
4961 * This refcnt will be decremented when freeing this
4962 * mem_cgroup(see mem_cgroup_put).
4963 */
4964 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004965 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004966 res_counter_init(&memcg->res, NULL);
4967 res_counter_init(&memcg->memsw, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004968 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004969 memcg->last_scanned_node = MAX_NUMNODES;
4970 INIT_LIST_HEAD(&memcg->oom_notify);
Balbir Singh6d61ef42009-01-07 18:08:06 -08004971
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004972 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004973 memcg->swappiness = mem_cgroup_swappiness(parent);
4974 atomic_set(&memcg->refcnt, 1);
4975 memcg->move_charge_at_immigrate = 0;
4976 mutex_init(&memcg->thresholds_lock);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07004977 spin_lock_init(&memcg->move_lock);
Glauber Costacbe128e32012-04-09 19:36:34 -03004978
4979 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
4980 if (error) {
4981 /*
4982 * We call put now because our (and parent's) refcnts
4983 * are already in place. mem_cgroup_put() will internally
4984 * call __mem_cgroup_free, so return directly
4985 */
4986 mem_cgroup_put(memcg);
4987 return ERR_PTR(error);
4988 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004989 return &memcg->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004990free_out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004991 __mem_cgroup_free(memcg);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004992 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004993}
4994
Li Zefan761b3ef2012-01-31 13:47:36 +08004995static int mem_cgroup_pre_destroy(struct cgroup *cont)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08004996{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004997 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004998
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004999 return mem_cgroup_force_empty(memcg, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005000}
5001
Li Zefan761b3ef2012-01-31 13:47:36 +08005002static void mem_cgroup_destroy(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005003{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005004 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005005
Glauber Costa1d62e432012-04-09 19:36:33 -03005006 kmem_cgroup_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005007
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005008 mem_cgroup_put(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005009}
5010
Daisuke Nishimura02491442010-03-10 15:22:17 -08005011#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005012/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005013#define PRECHARGE_COUNT_AT_ONCE 256
5014static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005015{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005016 int ret = 0;
5017 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005018 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005019
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005020 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005021 mc.precharge += count;
5022 /* we don't need css_get for root */
5023 return ret;
5024 }
5025 /* try to charge at once */
5026 if (count > 1) {
5027 struct res_counter *dummy;
5028 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005029 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005030 * by cgroup_lock_live_cgroup() that it is not removed and we
5031 * are still under the same cgroup_mutex. So we can postpone
5032 * css_get().
5033 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005034 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005035 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005036 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005037 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005038 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005039 goto one_by_one;
5040 }
5041 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005042 return ret;
5043 }
5044one_by_one:
5045 /* fall back to one by one charge */
5046 while (count--) {
5047 if (signal_pending(current)) {
5048 ret = -EINTR;
5049 break;
5050 }
5051 if (!batch_count--) {
5052 batch_count = PRECHARGE_COUNT_AT_ONCE;
5053 cond_resched();
5054 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005055 ret = __mem_cgroup_try_charge(NULL,
5056 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005057 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005058 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005059 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005060 mc.precharge++;
5061 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005062 return ret;
5063}
5064
5065/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005066 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005067 * @vma: the vma the pte to be checked belongs
5068 * @addr: the address corresponding to the pte to be checked
5069 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005070 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005071 *
5072 * Returns
5073 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5074 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5075 * move charge. if @target is not NULL, the page is stored in target->page
5076 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005077 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5078 * target for charge migration. if @target is not NULL, the entry is stored
5079 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005080 *
5081 * Called with pte lock held.
5082 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005083union mc_target {
5084 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005085 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005086};
5087
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005088enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005089 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005090 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005091 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005092};
5093
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005094static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5095 unsigned long addr, pte_t ptent)
5096{
5097 struct page *page = vm_normal_page(vma, addr, ptent);
5098
5099 if (!page || !page_mapped(page))
5100 return NULL;
5101 if (PageAnon(page)) {
5102 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005103 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005104 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005105 } else if (!move_file())
5106 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005107 return NULL;
5108 if (!get_page_unless_zero(page))
5109 return NULL;
5110
5111 return page;
5112}
5113
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005114#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005115static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5116 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5117{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005118 struct page *page = NULL;
5119 swp_entry_t ent = pte_to_swp_entry(ptent);
5120
5121 if (!move_anon() || non_swap_entry(ent))
5122 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005123 /*
5124 * Because lookup_swap_cache() updates some statistics counter,
5125 * we call find_get_page() with swapper_space directly.
5126 */
5127 page = find_get_page(&swapper_space, ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005128 if (do_swap_account)
5129 entry->val = ent.val;
5130
5131 return page;
5132}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005133#else
5134static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5135 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5136{
5137 return NULL;
5138}
5139#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005140
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005141static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5142 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5143{
5144 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005145 struct address_space *mapping;
5146 pgoff_t pgoff;
5147
5148 if (!vma->vm_file) /* anonymous vma */
5149 return NULL;
5150 if (!move_file())
5151 return NULL;
5152
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005153 mapping = vma->vm_file->f_mapping;
5154 if (pte_none(ptent))
5155 pgoff = linear_page_index(vma, addr);
5156 else /* pte_file(ptent) is true */
5157 pgoff = pte_to_pgoff(ptent);
5158
5159 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005160 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005161
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005162#ifdef CONFIG_SWAP
5163 /* shmem/tmpfs may report page out on swap: account for that too. */
5164 if (radix_tree_exceptional_entry(page)) {
5165 swp_entry_t swap = radix_to_swp_entry(page);
5166 if (do_swap_account)
5167 *entry = swap;
5168 page = find_get_page(&swapper_space, swap.val);
5169 }
5170#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005171 return page;
5172}
5173
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005174static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005175 unsigned long addr, pte_t ptent, union mc_target *target)
5176{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005177 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005178 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005179 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005180 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005181
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005182 if (pte_present(ptent))
5183 page = mc_handle_present_pte(vma, addr, ptent);
5184 else if (is_swap_pte(ptent))
5185 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005186 else if (pte_none(ptent) || pte_file(ptent))
5187 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005188
5189 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005190 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005191 if (page) {
5192 pc = lookup_page_cgroup(page);
5193 /*
5194 * Do only loose check w/o page_cgroup lock.
5195 * mem_cgroup_move_account() checks the pc is valid or not under
5196 * the lock.
5197 */
5198 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5199 ret = MC_TARGET_PAGE;
5200 if (target)
5201 target->page = page;
5202 }
5203 if (!ret || !target)
5204 put_page(page);
5205 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005206 /* There is a swap entry and a page doesn't exist or isn't charged */
5207 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08005208 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005209 ret = MC_TARGET_SWAP;
5210 if (target)
5211 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005212 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005213 return ret;
5214}
5215
Naoya Horiguchi12724852012-03-21 16:34:28 -07005216#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5217/*
5218 * We don't consider swapping or file mapped pages because THP does not
5219 * support them for now.
5220 * Caller should make sure that pmd_trans_huge(pmd) is true.
5221 */
5222static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5223 unsigned long addr, pmd_t pmd, union mc_target *target)
5224{
5225 struct page *page = NULL;
5226 struct page_cgroup *pc;
5227 enum mc_target_type ret = MC_TARGET_NONE;
5228
5229 page = pmd_page(pmd);
5230 VM_BUG_ON(!page || !PageHead(page));
5231 if (!move_anon())
5232 return ret;
5233 pc = lookup_page_cgroup(page);
5234 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5235 ret = MC_TARGET_PAGE;
5236 if (target) {
5237 get_page(page);
5238 target->page = page;
5239 }
5240 }
5241 return ret;
5242}
5243#else
5244static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5245 unsigned long addr, pmd_t pmd, union mc_target *target)
5246{
5247 return MC_TARGET_NONE;
5248}
5249#endif
5250
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005251static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5252 unsigned long addr, unsigned long end,
5253 struct mm_walk *walk)
5254{
5255 struct vm_area_struct *vma = walk->private;
5256 pte_t *pte;
5257 spinlock_t *ptl;
5258
Naoya Horiguchi12724852012-03-21 16:34:28 -07005259 if (pmd_trans_huge_lock(pmd, vma) == 1) {
5260 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5261 mc.precharge += HPAGE_PMD_NR;
5262 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005263 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005264 }
Dave Hansen03319322011-03-22 16:32:56 -07005265
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005266 if (pmd_trans_unstable(pmd))
5267 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005268 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5269 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005270 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005271 mc.precharge++; /* increment precharge temporarily */
5272 pte_unmap_unlock(pte - 1, ptl);
5273 cond_resched();
5274
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005275 return 0;
5276}
5277
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005278static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5279{
5280 unsigned long precharge;
5281 struct vm_area_struct *vma;
5282
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005283 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005284 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5285 struct mm_walk mem_cgroup_count_precharge_walk = {
5286 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5287 .mm = mm,
5288 .private = vma,
5289 };
5290 if (is_vm_hugetlb_page(vma))
5291 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005292 walk_page_range(vma->vm_start, vma->vm_end,
5293 &mem_cgroup_count_precharge_walk);
5294 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005295 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005296
5297 precharge = mc.precharge;
5298 mc.precharge = 0;
5299
5300 return precharge;
5301}
5302
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005303static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5304{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005305 unsigned long precharge = mem_cgroup_count_precharge(mm);
5306
5307 VM_BUG_ON(mc.moving_task);
5308 mc.moving_task = current;
5309 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005310}
5311
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005312/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5313static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005314{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005315 struct mem_cgroup *from = mc.from;
5316 struct mem_cgroup *to = mc.to;
5317
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005318 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005319 if (mc.precharge) {
5320 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
5321 mc.precharge = 0;
5322 }
5323 /*
5324 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5325 * we must uncharge here.
5326 */
5327 if (mc.moved_charge) {
5328 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
5329 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005330 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005331 /* we must fixup refcnts and charges */
5332 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005333 /* uncharge swap account from the old cgroup */
5334 if (!mem_cgroup_is_root(mc.from))
5335 res_counter_uncharge(&mc.from->memsw,
5336 PAGE_SIZE * mc.moved_swap);
5337 __mem_cgroup_put(mc.from, mc.moved_swap);
5338
5339 if (!mem_cgroup_is_root(mc.to)) {
5340 /*
5341 * we charged both to->res and to->memsw, so we should
5342 * uncharge to->res.
5343 */
5344 res_counter_uncharge(&mc.to->res,
5345 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005346 }
5347 /* we've already done mem_cgroup_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005348 mc.moved_swap = 0;
5349 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005350 memcg_oom_recover(from);
5351 memcg_oom_recover(to);
5352 wake_up_all(&mc.waitq);
5353}
5354
5355static void mem_cgroup_clear_mc(void)
5356{
5357 struct mem_cgroup *from = mc.from;
5358
5359 /*
5360 * we must clear moving_task before waking up waiters at the end of
5361 * task migration.
5362 */
5363 mc.moving_task = NULL;
5364 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005365 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005366 mc.from = NULL;
5367 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005368 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005369 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005370}
5371
Li Zefan761b3ef2012-01-31 13:47:36 +08005372static int mem_cgroup_can_attach(struct cgroup *cgroup,
5373 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005374{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005375 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005376 int ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005377 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005378
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005379 if (memcg->move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005380 struct mm_struct *mm;
5381 struct mem_cgroup *from = mem_cgroup_from_task(p);
5382
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005383 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005384
5385 mm = get_task_mm(p);
5386 if (!mm)
5387 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005388 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005389 if (mm->owner == p) {
5390 VM_BUG_ON(mc.from);
5391 VM_BUG_ON(mc.to);
5392 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005393 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005394 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005395 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005396 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005397 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005398 mc.to = memcg;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005399 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005400 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005401
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005402 ret = mem_cgroup_precharge_mc(mm);
5403 if (ret)
5404 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005405 }
5406 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005407 }
5408 return ret;
5409}
5410
Li Zefan761b3ef2012-01-31 13:47:36 +08005411static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5412 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005413{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005414 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005415}
5416
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005417static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5418 unsigned long addr, unsigned long end,
5419 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005420{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005421 int ret = 0;
5422 struct vm_area_struct *vma = walk->private;
5423 pte_t *pte;
5424 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005425 enum mc_target_type target_type;
5426 union mc_target target;
5427 struct page *page;
5428 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005429
Naoya Horiguchi12724852012-03-21 16:34:28 -07005430 /*
5431 * We don't take compound_lock() here but no race with splitting thp
5432 * happens because:
5433 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
5434 * under splitting, which means there's no concurrent thp split,
5435 * - if another thread runs into split_huge_page() just after we
5436 * entered this if-block, the thread must wait for page table lock
5437 * to be unlocked in __split_huge_page_splitting(), where the main
5438 * part of thp split is not executed yet.
5439 */
5440 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07005441 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005442 spin_unlock(&vma->vm_mm->page_table_lock);
5443 return 0;
5444 }
5445 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5446 if (target_type == MC_TARGET_PAGE) {
5447 page = target.page;
5448 if (!isolate_lru_page(page)) {
5449 pc = lookup_page_cgroup(page);
5450 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005451 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005452 mc.precharge -= HPAGE_PMD_NR;
5453 mc.moved_charge += HPAGE_PMD_NR;
5454 }
5455 putback_lru_page(page);
5456 }
5457 put_page(page);
5458 }
5459 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005460 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005461 }
5462
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005463 if (pmd_trans_unstable(pmd))
5464 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005465retry:
5466 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5467 for (; addr != end; addr += PAGE_SIZE) {
5468 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08005469 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005470
5471 if (!mc.precharge)
5472 break;
5473
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005474 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005475 case MC_TARGET_PAGE:
5476 page = target.page;
5477 if (isolate_lru_page(page))
5478 goto put;
5479 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07005480 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005481 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005482 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005483 /* we uncharge from mc.from later. */
5484 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005485 }
5486 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005487put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005488 put_page(page);
5489 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005490 case MC_TARGET_SWAP:
5491 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07005492 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005493 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005494 /* we fixup refcnts and charges later. */
5495 mc.moved_swap++;
5496 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08005497 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005498 default:
5499 break;
5500 }
5501 }
5502 pte_unmap_unlock(pte - 1, ptl);
5503 cond_resched();
5504
5505 if (addr != end) {
5506 /*
5507 * We have consumed all precharges we got in can_attach().
5508 * We try charge one by one, but don't do any additional
5509 * charges to mc.to if we have failed in charge once in attach()
5510 * phase.
5511 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005512 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005513 if (!ret)
5514 goto retry;
5515 }
5516
5517 return ret;
5518}
5519
5520static void mem_cgroup_move_charge(struct mm_struct *mm)
5521{
5522 struct vm_area_struct *vma;
5523
5524 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005525retry:
5526 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5527 /*
5528 * Someone who are holding the mmap_sem might be waiting in
5529 * waitq. So we cancel all extra charges, wake up all waiters,
5530 * and retry. Because we cancel precharges, we might not be able
5531 * to move enough charges, but moving charge is a best-effort
5532 * feature anyway, so it wouldn't be a big problem.
5533 */
5534 __mem_cgroup_clear_mc();
5535 cond_resched();
5536 goto retry;
5537 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005538 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5539 int ret;
5540 struct mm_walk mem_cgroup_move_charge_walk = {
5541 .pmd_entry = mem_cgroup_move_charge_pte_range,
5542 .mm = mm,
5543 .private = vma,
5544 };
5545 if (is_vm_hugetlb_page(vma))
5546 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005547 ret = walk_page_range(vma->vm_start, vma->vm_end,
5548 &mem_cgroup_move_charge_walk);
5549 if (ret)
5550 /*
5551 * means we have consumed all precharges and failed in
5552 * doing additional charge. Just abandon here.
5553 */
5554 break;
5555 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005556 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005557}
5558
Li Zefan761b3ef2012-01-31 13:47:36 +08005559static void mem_cgroup_move_task(struct cgroup *cont,
5560 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08005561{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005562 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005563 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005564
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005565 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005566 if (mc.to)
5567 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005568 mmput(mm);
5569 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005570 if (mc.to)
5571 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005572}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005573#else /* !CONFIG_MMU */
Li Zefan761b3ef2012-01-31 13:47:36 +08005574static int mem_cgroup_can_attach(struct cgroup *cgroup,
5575 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005576{
5577 return 0;
5578}
Li Zefan761b3ef2012-01-31 13:47:36 +08005579static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5580 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005581{
5582}
Li Zefan761b3ef2012-01-31 13:47:36 +08005583static void mem_cgroup_move_task(struct cgroup *cont,
5584 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005585{
5586}
5587#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005588
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005589struct cgroup_subsys mem_cgroup_subsys = {
5590 .name = "memory",
5591 .subsys_id = mem_cgroup_subsys_id,
5592 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005593 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005594 .destroy = mem_cgroup_destroy,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005595 .can_attach = mem_cgroup_can_attach,
5596 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005597 .attach = mem_cgroup_move_task,
Tejun Heo6bc10342012-04-01 12:09:55 -07005598 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005599 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005600 .use_id = 1,
Tejun Heo48ddbe12012-04-01 12:09:56 -07005601 .__DEPRECATED_clear_css_refs = true,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005602};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005603
5604#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08005605static int __init enable_swap_account(char *s)
5606{
5607 /* consider enabled if no parameter or 1 is given */
Michal Hockoa2c89902011-05-24 17:12:50 -07005608 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005609 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07005610 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005611 really_do_swap_account = 0;
5612 return 1;
5613}
Michal Hockoa2c89902011-05-24 17:12:50 -07005614__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005615
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005616#endif