blob: b06833f2b89ef1d861a229119d408871994f8b1e [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
Andrew Mortonc255a452012-07-31 16:43:02 -070064#ifdef CONFIG_MEMCG_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*/
Andrew Mortonc255a452012-07-31 16:43:02 -070069#ifdef CONFIG_MEMCG_SWAP_ENABLED
Michal Hockoa42c3902010-11-24 12:57:08 -080070static 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 */
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -070090 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080091 MEM_CGROUP_STAT_NSTATS,
92};
93
Johannes Weineraf7c4b02012-05-29 15:07:08 -070094static const char * const mem_cgroup_stat_names[] = {
95 "cache",
96 "rss",
97 "mapped_file",
98 "swap",
99};
100
Johannes Weinere9f89742011-03-23 16:42:37 -0700101enum mem_cgroup_events_index {
102 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
103 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -0700104 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
105 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700106 MEM_CGROUP_EVENTS_NSTATS,
107};
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700108
109static const char * const mem_cgroup_events_names[] = {
110 "pgpgin",
111 "pgpgout",
112 "pgfault",
113 "pgmajfault",
114};
115
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700116/*
117 * Per memcg event counter is incremented at every pagein/pageout. With THP,
118 * it will be incremated by the number of pages. This counter is used for
119 * for trigger some periodic events. This is straightforward and better
120 * than using jiffies etc. to handle periodic memcg event.
121 */
122enum mem_cgroup_events_target {
123 MEM_CGROUP_TARGET_THRESH,
124 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700125 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700126 MEM_CGROUP_NTARGETS,
127};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700128#define THRESHOLDS_EVENTS_TARGET 128
129#define SOFTLIMIT_EVENTS_TARGET 1024
130#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700131
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800132struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700133 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700134 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700135 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700136 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800137};
138
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800139struct mem_cgroup_reclaim_iter {
140 /* css_id of the last scanned hierarchy member */
141 int position;
142 /* scan generation, increased every round-trip */
143 unsigned int generation;
144};
145
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800146/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800147 * per-zone information in memory controller.
148 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800149struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800150 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700151 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800152
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800153 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
154
Balbir Singhf64c3f52009-09-23 15:56:37 -0700155 struct rb_node tree_node; /* RB tree node */
156 unsigned long long usage_in_excess;/* Set to the value by which */
157 /* the soft limit is exceeded*/
158 bool on_tree;
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700159 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700160 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800161};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800162
163struct mem_cgroup_per_node {
164 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
165};
166
167struct mem_cgroup_lru_info {
168 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
169};
170
171/*
Balbir Singhf64c3f52009-09-23 15:56:37 -0700172 * Cgroups above their limits are maintained in a RB-Tree, independent of
173 * their hierarchy representation
174 */
175
176struct mem_cgroup_tree_per_zone {
177 struct rb_root rb_root;
178 spinlock_t lock;
179};
180
181struct mem_cgroup_tree_per_node {
182 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
183};
184
185struct mem_cgroup_tree {
186 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
187};
188
189static struct mem_cgroup_tree soft_limit_tree __read_mostly;
190
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800191struct mem_cgroup_threshold {
192 struct eventfd_ctx *eventfd;
193 u64 threshold;
194};
195
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700196/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800197struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700198 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700199 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800200 /* Size of entries[] */
201 unsigned int size;
202 /* Array of thresholds */
203 struct mem_cgroup_threshold entries[0];
204};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700205
206struct mem_cgroup_thresholds {
207 /* Primary thresholds array */
208 struct mem_cgroup_threshold_ary *primary;
209 /*
210 * Spare threshold array.
211 * This is needed to make mem_cgroup_unregister_event() "never fail".
212 * It must be able to store at least primary->size - 1 entries.
213 */
214 struct mem_cgroup_threshold_ary *spare;
215};
216
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700217/* for OOM */
218struct mem_cgroup_eventfd_list {
219 struct list_head list;
220 struct eventfd_ctx *eventfd;
221};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800222
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700223static void mem_cgroup_threshold(struct mem_cgroup *memcg);
224static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800225
Balbir Singhf64c3f52009-09-23 15:56:37 -0700226/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800227 * The memory controller data structure. The memory controller controls both
228 * page cache and RSS per cgroup. We would eventually like to provide
229 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
230 * to help the administrator determine what knobs to tune.
231 *
232 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800233 * we hit the water mark. May be even add a low water mark, such that
234 * no reclaim occurs from a cgroup at it's low water mark, this is
235 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800236 */
237struct mem_cgroup {
238 struct cgroup_subsys_state css;
239 /*
240 * the counter to account for memory usage
241 */
242 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700243
244 union {
245 /*
246 * the counter to account for mem+swap usage.
247 */
248 struct res_counter memsw;
249
250 /*
251 * rcu_freeing is used only when freeing struct mem_cgroup,
252 * so put it into a union to avoid wasting more memory.
253 * It must be disjoint from the css field. It could be
254 * in a union with the res field, but res plays a much
255 * larger part in mem_cgroup life than memsw, and might
256 * be of interest, even at time of free, when debugging.
257 * So share rcu_head with the less interesting memsw.
258 */
259 struct rcu_head rcu_freeing;
260 /*
Glauber Costa3afe36b2012-05-29 15:07:10 -0700261 * We also need some space for a worker in deferred freeing.
262 * By the time we call it, rcu_freeing is no longer in use.
Hugh Dickins59927fb2012-03-15 15:17:07 -0700263 */
264 struct work_struct work_freeing;
265 };
266
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800267 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800268 * Per cgroup active and inactive list, similar to the
269 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800270 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800271 struct mem_cgroup_lru_info info;
Ying Han889976d2011-05-26 16:25:33 -0700272 int last_scanned_node;
273#if MAX_NUMNODES > 1
274 nodemask_t scan_nodes;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700275 atomic_t numainfo_events;
276 atomic_t numainfo_updating;
Ying Han889976d2011-05-26 16:25:33 -0700277#endif
Balbir Singh18f59ea2009-01-07 18:08:07 -0800278 /*
279 * Should the accounting and control be hierarchical, per subtree?
280 */
281 bool use_hierarchy;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700282
283 bool oom_lock;
284 atomic_t under_oom;
285
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800286 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800287
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700288 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700289 /* OOM-Killer disable */
290 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800291
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700292 /* set when res.limit == memsw.limit */
293 bool memsw_is_minimum;
294
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800295 /* protect arrays of thresholds */
296 struct mutex thresholds_lock;
297
298 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700299 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700300
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800301 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700302 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700303
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700304 /* For oom notifier event fd */
305 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700306
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800307 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800308 * Should we move charges of a task when a task is moved into this
309 * mem_cgroup ? And what type of charges should we move ?
310 */
311 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800312 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700313 * set > 0 if pages under this cgroup are moving to other cgroup.
314 */
315 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700316 /* taken only while moving_account > 0 */
317 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700318 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800319 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800320 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700321 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700322 /*
323 * used when a cpu is offlined or other synchronizations
324 * See mem_cgroup_read_stat().
325 */
326 struct mem_cgroup_stat_cpu nocpu_base;
327 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000328
329#ifdef CONFIG_INET
330 struct tcp_memcontrol tcp_mem;
331#endif
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800332};
333
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800334/* Stuffs for move charges at task migration. */
335/*
336 * Types of charges to be moved. "move_charge_at_immitgrate" is treated as a
337 * left-shifted bitmap of these types.
338 */
339enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800340 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700341 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800342 NR_MOVE_TYPE,
343};
344
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800345/* "mc" and its members are protected by cgroup_mutex */
346static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800347 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800348 struct mem_cgroup *from;
349 struct mem_cgroup *to;
350 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800351 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800352 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800353 struct task_struct *moving_task; /* a task moving charges */
354 wait_queue_head_t waitq; /* a waitq for other context */
355} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700356 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800357 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
358};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800359
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700360static bool move_anon(void)
361{
362 return test_bit(MOVE_CHARGE_TYPE_ANON,
363 &mc.to->move_charge_at_immigrate);
364}
365
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700366static bool move_file(void)
367{
368 return test_bit(MOVE_CHARGE_TYPE_FILE,
369 &mc.to->move_charge_at_immigrate);
370}
371
Balbir Singh4e416952009-09-23 15:56:39 -0700372/*
373 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
374 * limit reclaim to prevent infinite loops, if they ever occur.
375 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700376#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
377#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700378
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800379enum charge_type {
380 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700381 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800382 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700383 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700384 NR_CHARGE_TYPE,
385};
386
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800387/* for encoding cft->private value on file */
Glauber Costa65c64ce2011-12-22 01:02:27 +0000388#define _MEM (0)
389#define _MEMSWAP (1)
390#define _OOM_TYPE (2)
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700391#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
392#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800393#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700394/* Used for OOM nofiier */
395#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800396
Balbir Singh75822b42009-09-23 15:56:38 -0700397/*
398 * Reclaim flags for mem_cgroup_hierarchical_reclaim
399 */
400#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
401#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
402#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
403#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
404
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700405static void mem_cgroup_get(struct mem_cgroup *memcg);
406static void mem_cgroup_put(struct mem_cgroup *memcg);
Glauber Costae1aab162011-12-11 21:47:03 +0000407
408/* Writing them here to avoid exposing memcg's inner layout */
Andrew Mortonc255a452012-07-31 16:43:02 -0700409#ifdef CONFIG_MEMCG_KMEM
Glauber Costae1aab162011-12-11 21:47:03 +0000410#include <net/sock.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000411#include <net/ip.h>
Glauber Costae1aab162011-12-11 21:47:03 +0000412
413static bool mem_cgroup_is_root(struct mem_cgroup *memcg);
414void sock_update_memcg(struct sock *sk)
415{
Glauber Costa376be5f2012-01-20 04:57:14 +0000416 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000417 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700418 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000419
420 BUG_ON(!sk->sk_prot->proto_cgroup);
421
Glauber Costaf3f511e2012-01-05 20:16:39 +0000422 /* Socket cloning can throw us here with sk_cgrp already
423 * filled. It won't however, necessarily happen from
424 * process context. So the test for root memcg given
425 * the current task's memcg won't help us in this case.
426 *
427 * Respecting the original socket's memcg is a better
428 * decision in this case.
429 */
430 if (sk->sk_cgrp) {
431 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
432 mem_cgroup_get(sk->sk_cgrp->memcg);
433 return;
434 }
435
Glauber Costae1aab162011-12-11 21:47:03 +0000436 rcu_read_lock();
437 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700438 cg_proto = sk->sk_prot->proto_cgroup(memcg);
439 if (!mem_cgroup_is_root(memcg) && memcg_proto_active(cg_proto)) {
Glauber Costae1aab162011-12-11 21:47:03 +0000440 mem_cgroup_get(memcg);
Glauber Costa3f134612012-05-29 15:07:11 -0700441 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000442 }
443 rcu_read_unlock();
444 }
445}
446EXPORT_SYMBOL(sock_update_memcg);
447
448void sock_release_memcg(struct sock *sk)
449{
Glauber Costa376be5f2012-01-20 04:57:14 +0000450 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000451 struct mem_cgroup *memcg;
452 WARN_ON(!sk->sk_cgrp->memcg);
453 memcg = sk->sk_cgrp->memcg;
454 mem_cgroup_put(memcg);
455 }
456}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000457
Glauber Costa319d3b92012-01-15 22:04:39 +0000458#ifdef CONFIG_INET
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000459struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
460{
461 if (!memcg || mem_cgroup_is_root(memcg))
462 return NULL;
463
464 return &memcg->tcp_mem.cg_proto;
465}
466EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000467#endif /* CONFIG_INET */
Andrew Mortonc255a452012-07-31 16:43:02 -0700468#endif /* CONFIG_MEMCG_KMEM */
Glauber Costae1aab162011-12-11 21:47:03 +0000469
Andrew Mortonc255a452012-07-31 16:43:02 -0700470#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costa3f134612012-05-29 15:07:11 -0700471static void disarm_sock_keys(struct mem_cgroup *memcg)
472{
473 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
474 return;
475 static_key_slow_dec(&memcg_socket_limit_enabled);
476}
477#else
478static void disarm_sock_keys(struct mem_cgroup *memcg)
479{
480}
481#endif
482
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700483static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800484
Balbir Singhf64c3f52009-09-23 15:56:37 -0700485static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700486mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700487{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700488 return &memcg->info.nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700489}
490
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700491struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100492{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700493 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100494}
495
Balbir Singhf64c3f52009-09-23 15:56:37 -0700496static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700497page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700498{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700499 int nid = page_to_nid(page);
500 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700501
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700502 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700503}
504
505static struct mem_cgroup_tree_per_zone *
506soft_limit_tree_node_zone(int nid, int zid)
507{
508 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
509}
510
511static struct mem_cgroup_tree_per_zone *
512soft_limit_tree_from_page(struct page *page)
513{
514 int nid = page_to_nid(page);
515 int zid = page_zonenum(page);
516
517 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
518}
519
520static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700521__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700522 struct mem_cgroup_per_zone *mz,
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700523 struct mem_cgroup_tree_per_zone *mctz,
524 unsigned long long new_usage_in_excess)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700525{
526 struct rb_node **p = &mctz->rb_root.rb_node;
527 struct rb_node *parent = NULL;
528 struct mem_cgroup_per_zone *mz_node;
529
530 if (mz->on_tree)
531 return;
532
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700533 mz->usage_in_excess = new_usage_in_excess;
534 if (!mz->usage_in_excess)
535 return;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700536 while (*p) {
537 parent = *p;
538 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
539 tree_node);
540 if (mz->usage_in_excess < mz_node->usage_in_excess)
541 p = &(*p)->rb_left;
542 /*
543 * We can't avoid mem cgroups that are over their soft
544 * limit by the same amount
545 */
546 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
547 p = &(*p)->rb_right;
548 }
549 rb_link_node(&mz->tree_node, parent, p);
550 rb_insert_color(&mz->tree_node, &mctz->rb_root);
551 mz->on_tree = true;
Balbir Singh4e416952009-09-23 15:56:39 -0700552}
553
554static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700555__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -0700556 struct mem_cgroup_per_zone *mz,
557 struct mem_cgroup_tree_per_zone *mctz)
558{
559 if (!mz->on_tree)
560 return;
561 rb_erase(&mz->tree_node, &mctz->rb_root);
562 mz->on_tree = false;
563}
564
565static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700566mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700567 struct mem_cgroup_per_zone *mz,
568 struct mem_cgroup_tree_per_zone *mctz)
569{
570 spin_lock(&mctz->lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700571 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700572 spin_unlock(&mctz->lock);
573}
574
Balbir Singhf64c3f52009-09-23 15:56:37 -0700575
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700576static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700577{
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700578 unsigned long long excess;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700579 struct mem_cgroup_per_zone *mz;
580 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700581 int nid = page_to_nid(page);
582 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700583 mctz = soft_limit_tree_from_page(page);
584
585 /*
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700586 * Necessary to update all ancestors when hierarchy is used.
587 * because their event counter is not touched.
Balbir Singhf64c3f52009-09-23 15:56:37 -0700588 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700589 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
590 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
591 excess = res_counter_soft_limit_excess(&memcg->res);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700592 /*
593 * We have to update the tree if mz is on RB-tree or
594 * mem is over its softlimit.
595 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700596 if (excess || mz->on_tree) {
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700597 spin_lock(&mctz->lock);
598 /* if on-tree, remove it */
599 if (mz->on_tree)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700600 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700601 /*
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700602 * Insert again. mz->usage_in_excess will be updated.
603 * If excess is 0, no tree ops.
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700604 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700605 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700606 spin_unlock(&mctz->lock);
607 }
Balbir Singhf64c3f52009-09-23 15:56:37 -0700608 }
609}
610
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700611static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700612{
613 int node, zone;
614 struct mem_cgroup_per_zone *mz;
615 struct mem_cgroup_tree_per_zone *mctz;
616
Bob Liu3ed28fa2012-01-12 17:19:04 -0800617 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -0700618 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700619 mz = mem_cgroup_zoneinfo(memcg, node, zone);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700620 mctz = soft_limit_tree_node_zone(node, zone);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700621 mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700622 }
623 }
624}
625
Balbir Singh4e416952009-09-23 15:56:39 -0700626static struct mem_cgroup_per_zone *
627__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
628{
629 struct rb_node *rightmost = NULL;
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700630 struct mem_cgroup_per_zone *mz;
Balbir Singh4e416952009-09-23 15:56:39 -0700631
632retry:
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700633 mz = NULL;
Balbir Singh4e416952009-09-23 15:56:39 -0700634 rightmost = rb_last(&mctz->rb_root);
635 if (!rightmost)
636 goto done; /* Nothing to reclaim from */
637
638 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
639 /*
640 * Remove the node now but someone else can add it back,
641 * we will to add it back at the end of reclaim to its correct
642 * position in the tree.
643 */
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700644 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
645 if (!res_counter_soft_limit_excess(&mz->memcg->res) ||
646 !css_tryget(&mz->memcg->css))
Balbir Singh4e416952009-09-23 15:56:39 -0700647 goto retry;
648done:
649 return mz;
650}
651
652static struct mem_cgroup_per_zone *
653mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
654{
655 struct mem_cgroup_per_zone *mz;
656
657 spin_lock(&mctz->lock);
658 mz = __mem_cgroup_largest_soft_limit_node(mctz);
659 spin_unlock(&mctz->lock);
660 return mz;
661}
662
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700663/*
664 * Implementation Note: reading percpu statistics for memcg.
665 *
666 * Both of vmstat[] and percpu_counter has threshold and do periodic
667 * synchronization to implement "quick" read. There are trade-off between
668 * reading cost and precision of value. Then, we may have a chance to implement
669 * a periodic synchronizion of counter in memcg's counter.
670 *
671 * But this _read() function is used for user interface now. The user accounts
672 * memory usage by memory cgroup and he _always_ requires exact value because
673 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
674 * have to visit all online cpus and make sum. So, for now, unnecessary
675 * synchronization is not implemented. (just implemented for cpu hotplug)
676 *
677 * If there are kernel internal actions which can make use of some not-exact
678 * value, and reading all cpu value can be performance bottleneck in some
679 * common workload, threashold and synchonization as vmstat[] should be
680 * implemented.
681 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700682static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700683 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800684{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700685 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800686 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800687
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700688 get_online_cpus();
689 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700690 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700691#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700692 spin_lock(&memcg->pcp_counter_lock);
693 val += memcg->nocpu_base.count[idx];
694 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700695#endif
696 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800697 return val;
698}
699
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700700static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700701 bool charge)
702{
703 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700704 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700705}
706
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700707static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700708 enum mem_cgroup_events_index idx)
709{
710 unsigned long val = 0;
711 int cpu;
712
713 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700714 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700715#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700716 spin_lock(&memcg->pcp_counter_lock);
717 val += memcg->nocpu_base.events[idx];
718 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700719#endif
720 return val;
721}
722
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700723static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700724 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800725{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800726 preempt_disable();
727
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700728 /*
729 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
730 * counted as CACHE even if it's on ANON LRU.
731 */
732 if (anon)
733 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700734 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800735 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700736 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700737 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700738
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800739 /* pagein of a big page is an event. So, ignore page size */
740 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700741 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800742 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700743 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800744 nr_pages = -nr_pages; /* for event */
745 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800746
Johannes Weiner13114712012-05-29 15:07:07 -0700747 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800748
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800749 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800750}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800751
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700752unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700753mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700754{
755 struct mem_cgroup_per_zone *mz;
756
757 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
758 return mz->lru_size[lru];
759}
760
761static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700762mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700763 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700764{
765 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700766 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700767 unsigned long ret = 0;
768
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700769 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700770
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700771 for_each_lru(lru) {
772 if (BIT(lru) & lru_mask)
773 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700774 }
775 return ret;
776}
777
778static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700779mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700780 int nid, unsigned int lru_mask)
781{
Ying Han889976d2011-05-26 16:25:33 -0700782 u64 total = 0;
783 int zid;
784
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700785 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700786 total += mem_cgroup_zone_nr_lru_pages(memcg,
787 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700788
Ying Han889976d2011-05-26 16:25:33 -0700789 return total;
790}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700791
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700792static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700793 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800794{
Ying Han889976d2011-05-26 16:25:33 -0700795 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800796 u64 total = 0;
797
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700798 for_each_node_state(nid, N_HIGH_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700799 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800800 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800801}
802
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800803static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
804 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800805{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700806 unsigned long val, next;
807
Johannes Weiner13114712012-05-29 15:07:07 -0700808 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700809 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700810 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800811 if ((long)next - (long)val < 0) {
812 switch (target) {
813 case MEM_CGROUP_TARGET_THRESH:
814 next = val + THRESHOLDS_EVENTS_TARGET;
815 break;
816 case MEM_CGROUP_TARGET_SOFTLIMIT:
817 next = val + SOFTLIMIT_EVENTS_TARGET;
818 break;
819 case MEM_CGROUP_TARGET_NUMAINFO:
820 next = val + NUMAINFO_EVENTS_TARGET;
821 break;
822 default:
823 break;
824 }
825 __this_cpu_write(memcg->stat->targets[target], next);
826 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700827 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800828 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800829}
830
831/*
832 * Check events in order.
833 *
834 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700835static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800836{
Steven Rostedt47994012011-11-02 13:38:33 -0700837 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800838 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800839 if (unlikely(mem_cgroup_event_ratelimit(memcg,
840 MEM_CGROUP_TARGET_THRESH))) {
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800841 bool do_softlimit;
842 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800843
844 do_softlimit = mem_cgroup_event_ratelimit(memcg,
845 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700846#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800847 do_numainfo = mem_cgroup_event_ratelimit(memcg,
848 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700849#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800850 preempt_enable();
851
852 mem_cgroup_threshold(memcg);
853 if (unlikely(do_softlimit))
854 mem_cgroup_update_tree(memcg, page);
855#if MAX_NUMNODES > 1
856 if (unlikely(do_numainfo))
857 atomic_inc(&memcg->numainfo_events);
858#endif
859 } else
860 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800861}
862
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000863struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800864{
865 return container_of(cgroup_subsys_state(cont,
866 mem_cgroup_subsys_id), struct mem_cgroup,
867 css);
868}
869
Balbir Singhcf475ad2008-04-29 01:00:16 -0700870struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800871{
Balbir Singh31a78f22008-09-28 23:09:31 +0100872 /*
873 * mm_update_next_owner() may clear mm->owner to NULL
874 * if it races with swapoff, page migration, etc.
875 * So this can be called with p == NULL.
876 */
877 if (unlikely(!p))
878 return NULL;
879
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800880 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
881 struct mem_cgroup, css);
882}
883
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700884struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800885{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700886 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700887
888 if (!mm)
889 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800890 /*
891 * Because we have no locks, mm->owner's may be being moved to other
892 * cgroup. We use css_tryget() here even if this looks
893 * pessimistic (rather than adding locks here).
894 */
895 rcu_read_lock();
896 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700897 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
898 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800899 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700900 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800901 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700902 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800903}
904
Johannes Weiner56600482012-01-12 17:17:59 -0800905/**
906 * mem_cgroup_iter - iterate over memory cgroup hierarchy
907 * @root: hierarchy root
908 * @prev: previously returned memcg, NULL on first invocation
909 * @reclaim: cookie for shared reclaim walks, NULL for full walks
910 *
911 * Returns references to children of the hierarchy below @root, or
912 * @root itself, or %NULL after a full round-trip.
913 *
914 * Caller must pass the return value in @prev on subsequent
915 * invocations for reference counting, or use mem_cgroup_iter_break()
916 * to cancel a hierarchy walk before the round-trip is complete.
917 *
918 * Reclaimers can specify a zone and a priority level in @reclaim to
919 * divide up the memcgs in the hierarchy among all concurrent
920 * reclaimers operating on the same zone and priority.
921 */
922struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
923 struct mem_cgroup *prev,
924 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700925{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800926 struct mem_cgroup *memcg = NULL;
927 int id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700928
Johannes Weiner56600482012-01-12 17:17:59 -0800929 if (mem_cgroup_disabled())
930 return NULL;
931
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700932 if (!root)
933 root = root_mem_cgroup;
934
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800935 if (prev && !reclaim)
936 id = css_id(&prev->css);
937
938 if (prev && prev != root)
939 css_put(&prev->css);
940
941 if (!root->use_hierarchy && root != root_mem_cgroup) {
942 if (prev)
943 return NULL;
944 return root;
945 }
946
947 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800948 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800949 struct cgroup_subsys_state *css;
950
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800951 if (reclaim) {
952 int nid = zone_to_nid(reclaim->zone);
953 int zid = zone_idx(reclaim->zone);
954 struct mem_cgroup_per_zone *mz;
955
956 mz = mem_cgroup_zoneinfo(root, nid, zid);
957 iter = &mz->reclaim_iter[reclaim->priority];
958 if (prev && reclaim->generation != iter->generation)
959 return NULL;
960 id = iter->position;
961 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800962
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700963 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800964 css = css_get_next(&mem_cgroup_subsys, id + 1, &root->css, &id);
965 if (css) {
966 if (css == &root->css || css_tryget(css))
967 memcg = container_of(css,
968 struct mem_cgroup, css);
969 } else
970 id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700971 rcu_read_unlock();
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700972
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800973 if (reclaim) {
974 iter->position = id;
975 if (!css)
976 iter->generation++;
977 else if (!prev && memcg)
978 reclaim->generation = iter->generation;
979 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800980
981 if (prev && !css)
982 return NULL;
983 }
984 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700985}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800986
Johannes Weiner56600482012-01-12 17:17:59 -0800987/**
988 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
989 * @root: hierarchy root
990 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
991 */
992void mem_cgroup_iter_break(struct mem_cgroup *root,
993 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800994{
995 if (!root)
996 root = root_mem_cgroup;
997 if (prev && prev != root)
998 css_put(&prev->css);
999}
1000
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001001/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001002 * Iteration constructs for visiting all cgroups (under a tree). If
1003 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1004 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001005 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001006#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001007 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001008 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001009 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001010
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001011#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001012 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001013 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001014 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001015
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001016static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
Balbir Singh4b3bde42009-09-23 15:56:32 -07001017{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001018 return (memcg == root_mem_cgroup);
Balbir Singh4b3bde42009-09-23 15:56:32 -07001019}
1020
Ying Han456f9982011-05-26 16:25:38 -07001021void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
1022{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001023 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001024
1025 if (!mm)
1026 return;
1027
1028 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001029 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1030 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001031 goto out;
1032
1033 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001034 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001035 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1036 break;
1037 case PGMAJFAULT:
1038 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001039 break;
1040 default:
1041 BUG();
1042 }
1043out:
1044 rcu_read_unlock();
1045}
1046EXPORT_SYMBOL(mem_cgroup_count_vm_event);
1047
Johannes Weiner925b7672012-01-12 17:18:15 -08001048/**
1049 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1050 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001051 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001052 *
1053 * Returns the lru list vector holding pages for the given @zone and
1054 * @mem. This can be the global zone lruvec, if the memory controller
1055 * is disabled.
1056 */
1057struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1058 struct mem_cgroup *memcg)
1059{
1060 struct mem_cgroup_per_zone *mz;
1061
1062 if (mem_cgroup_disabled())
1063 return &zone->lruvec;
1064
1065 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
1066 return &mz->lruvec;
1067}
1068
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001069/*
1070 * Following LRU functions are allowed to be used without PCG_LOCK.
1071 * Operations are called by routine of global LRU independently from memcg.
1072 * What we have to take care of here is validness of pc->mem_cgroup.
1073 *
1074 * Changes to pc->mem_cgroup happens when
1075 * 1. charge
1076 * 2. moving account
1077 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1078 * It is added to LRU before charge.
1079 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1080 * When moving account, the page is not on LRU. It's isolated.
1081 */
1082
Johannes Weiner925b7672012-01-12 17:18:15 -08001083/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001084 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001085 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001086 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001087 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001088struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001089{
1090 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001091 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001092 struct page_cgroup *pc;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001093
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08001094 if (mem_cgroup_disabled())
Johannes Weiner925b7672012-01-12 17:18:15 -08001095 return &zone->lruvec;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001096
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001097 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001098 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001099
1100 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001101 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001102 * an uncharged page off lru does nothing to secure
1103 * its former mem_cgroup from sudden removal.
1104 *
1105 * Our caller holds lru_lock, and PageCgroupUsed is updated
1106 * under page_cgroup lock: between them, they make all uses
1107 * of pc->mem_cgroup safe.
1108 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001109 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001110 pc->mem_cgroup = memcg = root_mem_cgroup;
1111
Johannes Weiner925b7672012-01-12 17:18:15 -08001112 mz = page_cgroup_zoneinfo(memcg, page);
Johannes Weiner925b7672012-01-12 17:18:15 -08001113 return &mz->lruvec;
1114}
1115
1116/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001117 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1118 * @lruvec: mem_cgroup per zone lru vector
1119 * @lru: index of lru list the page is sitting on
1120 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001121 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001122 * This function must be called when a page is added to or removed from an
1123 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001124 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001125void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1126 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001127{
1128 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001129 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001130
1131 if (mem_cgroup_disabled())
1132 return;
1133
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001134 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1135 lru_size = mz->lru_size + lru;
1136 *lru_size += nr_pages;
1137 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001138}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001139
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001140/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001141 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001142 * hierarchy subtree
1143 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001144bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1145 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001146{
Johannes Weiner91c637342012-05-29 15:06:24 -07001147 if (root_memcg == memcg)
1148 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001149 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001150 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001151 return css_is_ancestor(&memcg->css, &root_memcg->css);
1152}
1153
1154static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1155 struct mem_cgroup *memcg)
1156{
1157 bool ret;
1158
Johannes Weiner91c637342012-05-29 15:06:24 -07001159 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001160 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001161 rcu_read_unlock();
1162 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001163}
1164
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001165int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001166{
1167 int ret;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001168 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001169 struct task_struct *p;
David Rientjes4c4a2212008-02-07 00:14:06 -08001170
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001171 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001172 if (p) {
1173 curr = try_get_mem_cgroup_from_mm(p->mm);
1174 task_unlock(p);
1175 } else {
1176 /*
1177 * All threads may have already detached their mm's, but the oom
1178 * killer still needs to detect if they have already been oom
1179 * killed to prevent needlessly killing additional tasks.
1180 */
1181 task_lock(task);
1182 curr = mem_cgroup_from_task(task);
1183 if (curr)
1184 css_get(&curr->css);
1185 task_unlock(task);
1186 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001187 if (!curr)
1188 return 0;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001189 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001190 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001191 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001192 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1193 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001194 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001195 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001196 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001197 return ret;
1198}
1199
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001200int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001201{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001202 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001203 unsigned long inactive;
1204 unsigned long active;
1205 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001206
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001207 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1208 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001209
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001210 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1211 if (gb)
1212 inactive_ratio = int_sqrt(10 * gb);
1213 else
1214 inactive_ratio = 1;
1215
Johannes Weiner9b272972011-11-02 13:38:23 -07001216 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001217}
1218
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001219int mem_cgroup_inactive_file_is_low(struct lruvec *lruvec)
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001220{
1221 unsigned long active;
1222 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001223
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001224 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_FILE);
1225 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_FILE);
Rik van Riel56e49d22009-06-16 15:32:28 -07001226
1227 return (active > inactive);
1228}
1229
Balbir Singh6d61ef42009-01-07 18:08:06 -08001230#define mem_cgroup_from_res_counter(counter, member) \
1231 container_of(counter, struct mem_cgroup, member)
1232
Johannes Weiner19942822011-02-01 15:52:43 -08001233/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001234 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001235 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001236 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001237 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001238 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001239 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001240static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001241{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001242 unsigned long long margin;
1243
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001244 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001245 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001246 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001247 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001248}
1249
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001250int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001251{
1252 struct cgroup *cgrp = memcg->css.cgroup;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001253
1254 /* root ? */
1255 if (cgrp->parent == NULL)
1256 return vm_swappiness;
1257
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001258 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001259}
1260
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001261/*
1262 * memcg->moving_account is used for checking possibility that some thread is
1263 * calling move_account(). When a thread on CPU-A starts moving pages under
1264 * a memcg, other threads should check memcg->moving_account under
1265 * rcu_read_lock(), like this:
1266 *
1267 * CPU-A CPU-B
1268 * rcu_read_lock()
1269 * memcg->moving_account+1 if (memcg->mocing_account)
1270 * take heavy locks.
1271 * synchronize_rcu() update something.
1272 * rcu_read_unlock()
1273 * start move here.
1274 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001275
1276/* for quick checking without looking up memcg */
1277atomic_t memcg_moving __read_mostly;
1278
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001279static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001280{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001281 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001282 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001283 synchronize_rcu();
1284}
1285
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001286static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001287{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001288 /*
1289 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1290 * We check NULL in callee rather than caller.
1291 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001292 if (memcg) {
1293 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001294 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001295 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001296}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001297
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001298/*
1299 * 2 routines for checking "mem" is under move_account() or not.
1300 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001301 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1302 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001303 * pc->mem_cgroup may be overwritten.
1304 *
1305 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1306 * under hierarchy of moving cgroups. This is for
1307 * waiting at hith-memory prressure caused by "move".
1308 */
1309
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001310static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001311{
1312 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001313 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001314}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001315
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001316static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001317{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001318 struct mem_cgroup *from;
1319 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001320 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001321 /*
1322 * Unlike task_move routines, we access mc.to, mc.from not under
1323 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1324 */
1325 spin_lock(&mc.lock);
1326 from = mc.from;
1327 to = mc.to;
1328 if (!from)
1329 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001330
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001331 ret = mem_cgroup_same_or_subtree(memcg, from)
1332 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001333unlock:
1334 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001335 return ret;
1336}
1337
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001338static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001339{
1340 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001341 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001342 DEFINE_WAIT(wait);
1343 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1344 /* moving charge context might have finished. */
1345 if (mc.moving_task)
1346 schedule();
1347 finish_wait(&mc.waitq, &wait);
1348 return true;
1349 }
1350 }
1351 return false;
1352}
1353
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001354/*
1355 * Take this lock when
1356 * - a code tries to modify page's memcg while it's USED.
1357 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001358 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001359 */
1360static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1361 unsigned long *flags)
1362{
1363 spin_lock_irqsave(&memcg->move_lock, *flags);
1364}
1365
1366static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1367 unsigned long *flags)
1368{
1369 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1370}
1371
Balbir Singhe2224322009-04-02 16:57:39 -07001372/**
Kirill A. Shutemov6a6135b2010-03-10 15:22:25 -08001373 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
Balbir Singhe2224322009-04-02 16:57:39 -07001374 * @memcg: The memory cgroup that went over limit
1375 * @p: Task that is going to be killed
1376 *
1377 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1378 * enabled
1379 */
1380void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1381{
1382 struct cgroup *task_cgrp;
1383 struct cgroup *mem_cgrp;
1384 /*
1385 * Need a buffer in BSS, can't rely on allocations. The code relies
1386 * on the assumption that OOM is serialized for memory controller.
1387 * If this assumption is broken, revisit this code.
1388 */
1389 static char memcg_name[PATH_MAX];
1390 int ret;
1391
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001392 if (!memcg || !p)
Balbir Singhe2224322009-04-02 16:57:39 -07001393 return;
1394
Balbir Singhe2224322009-04-02 16:57:39 -07001395 rcu_read_lock();
1396
1397 mem_cgrp = memcg->css.cgroup;
1398 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1399
1400 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1401 if (ret < 0) {
1402 /*
1403 * Unfortunately, we are unable to convert to a useful name
1404 * But we'll still print out the usage information
1405 */
1406 rcu_read_unlock();
1407 goto done;
1408 }
1409 rcu_read_unlock();
1410
1411 printk(KERN_INFO "Task in %s killed", memcg_name);
1412
1413 rcu_read_lock();
1414 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1415 if (ret < 0) {
1416 rcu_read_unlock();
1417 goto done;
1418 }
1419 rcu_read_unlock();
1420
1421 /*
1422 * Continues from above, so we don't need an KERN_ level
1423 */
1424 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1425done:
1426
1427 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1428 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1429 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1430 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1431 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1432 "failcnt %llu\n",
1433 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1434 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1435 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
1436}
1437
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001438/*
1439 * This function returns the number of memcg under hierarchy tree. Returns
1440 * 1(self count) if no children.
1441 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001442static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001443{
1444 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001445 struct mem_cgroup *iter;
1446
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001447 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001448 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001449 return num;
1450}
1451
Balbir Singh6d61ef42009-01-07 18:08:06 -08001452/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001453 * Return the memory (and swap, if configured) limit for a memcg.
1454 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001455static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001456{
1457 u64 limit;
1458 u64 memsw;
1459
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001460 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
1461 limit += total_swap_pages << PAGE_SHIFT;
1462
David Rientjesa63d83f2010-08-09 17:19:46 -07001463 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1464 /*
1465 * If memsw is finite and limits the amount of swap space available
1466 * to this memcg, return that limit.
1467 */
1468 return min(limit, memsw);
1469}
1470
David Rientjes876aafb2012-07-31 16:43:48 -07001471void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1472 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001473{
1474 struct mem_cgroup *iter;
1475 unsigned long chosen_points = 0;
1476 unsigned long totalpages;
1477 unsigned int points = 0;
1478 struct task_struct *chosen = NULL;
1479
David Rientjes876aafb2012-07-31 16:43:48 -07001480 /*
1481 * If current has a pending SIGKILL, then automatically select it. The
1482 * goal is to allow it to allocate so that it may quickly exit and free
1483 * its memory.
1484 */
1485 if (fatal_signal_pending(current)) {
1486 set_thread_flag(TIF_MEMDIE);
1487 return;
1488 }
1489
1490 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001491 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1492 for_each_mem_cgroup_tree(iter, memcg) {
1493 struct cgroup *cgroup = iter->css.cgroup;
1494 struct cgroup_iter it;
1495 struct task_struct *task;
1496
1497 cgroup_iter_start(cgroup, &it);
1498 while ((task = cgroup_iter_next(cgroup, &it))) {
1499 switch (oom_scan_process_thread(task, totalpages, NULL,
1500 false)) {
1501 case OOM_SCAN_SELECT:
1502 if (chosen)
1503 put_task_struct(chosen);
1504 chosen = task;
1505 chosen_points = ULONG_MAX;
1506 get_task_struct(chosen);
1507 /* fall through */
1508 case OOM_SCAN_CONTINUE:
1509 continue;
1510 case OOM_SCAN_ABORT:
1511 cgroup_iter_end(cgroup, &it);
1512 mem_cgroup_iter_break(memcg, iter);
1513 if (chosen)
1514 put_task_struct(chosen);
1515 return;
1516 case OOM_SCAN_OK:
1517 break;
1518 };
1519 points = oom_badness(task, memcg, NULL, totalpages);
1520 if (points > chosen_points) {
1521 if (chosen)
1522 put_task_struct(chosen);
1523 chosen = task;
1524 chosen_points = points;
1525 get_task_struct(chosen);
1526 }
1527 }
1528 cgroup_iter_end(cgroup, &it);
1529 }
1530
1531 if (!chosen)
1532 return;
1533 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001534 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1535 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001536}
1537
Johannes Weiner56600482012-01-12 17:17:59 -08001538static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1539 gfp_t gfp_mask,
1540 unsigned long flags)
1541{
1542 unsigned long total = 0;
1543 bool noswap = false;
1544 int loop;
1545
1546 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1547 noswap = true;
1548 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1549 noswap = true;
1550
1551 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1552 if (loop)
1553 drain_all_stock_async(memcg);
1554 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1555 /*
1556 * Allow limit shrinkers, which are triggered directly
1557 * by userspace, to catch signals and stop reclaim
1558 * after minimal progress, regardless of the margin.
1559 */
1560 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1561 break;
1562 if (mem_cgroup_margin(memcg))
1563 break;
1564 /*
1565 * If nothing was reclaimed after two attempts, there
1566 * may be no reclaimable pages in this hierarchy.
1567 */
1568 if (loop && !total)
1569 break;
1570 }
1571 return total;
1572}
1573
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001574/**
1575 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001576 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001577 * @nid: the node ID to be checked.
1578 * @noswap : specify true here if the user wants flle only information.
1579 *
1580 * This function returns whether the specified memcg contains any
1581 * reclaimable pages on a node. Returns true if there are any reclaimable
1582 * pages in the node.
1583 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001584static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001585 int nid, bool noswap)
1586{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001587 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001588 return true;
1589 if (noswap || !total_swap_pages)
1590 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001591 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001592 return true;
1593 return false;
1594
1595}
Ying Han889976d2011-05-26 16:25:33 -07001596#if MAX_NUMNODES > 1
1597
1598/*
1599 * Always updating the nodemask is not very good - even if we have an empty
1600 * list or the wrong list here, we can start from some node and traverse all
1601 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1602 *
1603 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001604static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001605{
1606 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001607 /*
1608 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1609 * pagein/pageout changes since the last update.
1610 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001611 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001612 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001613 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001614 return;
1615
Ying Han889976d2011-05-26 16:25:33 -07001616 /* make a nodemask where this memcg uses memory from */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001617 memcg->scan_nodes = node_states[N_HIGH_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001618
1619 for_each_node_mask(nid, node_states[N_HIGH_MEMORY]) {
1620
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001621 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1622 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001623 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001624
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001625 atomic_set(&memcg->numainfo_events, 0);
1626 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001627}
1628
1629/*
1630 * Selecting a node where we start reclaim from. Because what we need is just
1631 * reducing usage counter, start from anywhere is O,K. Considering
1632 * memory reclaim from current node, there are pros. and cons.
1633 *
1634 * Freeing memory from current node means freeing memory from a node which
1635 * we'll use or we've used. So, it may make LRU bad. And if several threads
1636 * hit limits, it will see a contention on a node. But freeing from remote
1637 * node means more costs for memory reclaim because of memory latency.
1638 *
1639 * Now, we use round-robin. Better algorithm is welcomed.
1640 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001641int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001642{
1643 int node;
1644
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001645 mem_cgroup_may_update_nodemask(memcg);
1646 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001647
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001648 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001649 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001650 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001651 /*
1652 * We call this when we hit limit, not when pages are added to LRU.
1653 * No LRU may hold pages because all pages are UNEVICTABLE or
1654 * memcg is too small and all pages are not on LRU. In that case,
1655 * we use curret node.
1656 */
1657 if (unlikely(node == MAX_NUMNODES))
1658 node = numa_node_id();
1659
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001660 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001661 return node;
1662}
1663
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001664/*
1665 * Check all nodes whether it contains reclaimable pages or not.
1666 * For quick scan, we make use of scan_nodes. This will allow us to skip
1667 * unused nodes. But scan_nodes is lazily updated and may not cotain
1668 * enough new information. We need to do double check.
1669 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001670static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001671{
1672 int nid;
1673
1674 /*
1675 * quick check...making use of scan_node.
1676 * We can skip unused nodes.
1677 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001678 if (!nodes_empty(memcg->scan_nodes)) {
1679 for (nid = first_node(memcg->scan_nodes);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001680 nid < MAX_NUMNODES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001681 nid = next_node(nid, memcg->scan_nodes)) {
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001682
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001683 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001684 return true;
1685 }
1686 }
1687 /*
1688 * Check rest of nodes.
1689 */
1690 for_each_node_state(nid, N_HIGH_MEMORY) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001691 if (node_isset(nid, memcg->scan_nodes))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001692 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001693 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001694 return true;
1695 }
1696 return false;
1697}
1698
Ying Han889976d2011-05-26 16:25:33 -07001699#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001700int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001701{
1702 return 0;
1703}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001704
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001705static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001706{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001707 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001708}
Ying Han889976d2011-05-26 16:25:33 -07001709#endif
1710
Johannes Weiner56600482012-01-12 17:17:59 -08001711static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1712 struct zone *zone,
1713 gfp_t gfp_mask,
1714 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001715{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001716 struct mem_cgroup *victim = NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001717 int total = 0;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001718 int loop = 0;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001719 unsigned long excess;
Johannes Weiner185efc02011-09-14 16:21:58 -07001720 unsigned long nr_scanned;
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001721 struct mem_cgroup_reclaim_cookie reclaim = {
1722 .zone = zone,
1723 .priority = 0,
1724 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001725
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001726 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001727
Balbir Singh4e416952009-09-23 15:56:39 -07001728 while (1) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001729 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001730 if (!victim) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001731 loop++;
Balbir Singh4e416952009-09-23 15:56:39 -07001732 if (loop >= 2) {
1733 /*
1734 * If we have not been able to reclaim
1735 * anything, it might because there are
1736 * no reclaimable pages under this hierarchy
1737 */
Johannes Weiner56600482012-01-12 17:17:59 -08001738 if (!total)
Balbir Singh4e416952009-09-23 15:56:39 -07001739 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001740 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001741 * We want to do more targeted reclaim.
Balbir Singh4e416952009-09-23 15:56:39 -07001742 * excess >> 2 is not to excessive so as to
1743 * reclaim too much, nor too less that we keep
1744 * coming back to reclaim from this cgroup
1745 */
1746 if (total >= (excess >> 2) ||
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001747 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
Balbir Singh4e416952009-09-23 15:56:39 -07001748 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001749 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001750 continue;
Balbir Singh4e416952009-09-23 15:56:39 -07001751 }
Johannes Weiner56600482012-01-12 17:17:59 -08001752 if (!mem_cgroup_reclaimable(victim, false))
Balbir Singh6d61ef42009-01-07 18:08:06 -08001753 continue;
Johannes Weiner56600482012-01-12 17:17:59 -08001754 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1755 zone, &nr_scanned);
1756 *total_scanned += nr_scanned;
1757 if (!res_counter_soft_limit_excess(&root_memcg->res))
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001758 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001759 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001760 mem_cgroup_iter_break(root_memcg, victim);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001761 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001762}
1763
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001764/*
1765 * Check OOM-Killer is already running under our hierarchy.
1766 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001767 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001768 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001769static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001770{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001771 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001772
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001773 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001774 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001775 /*
1776 * this subtree of our hierarchy is already locked
1777 * so we cannot give a lock.
1778 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001779 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001780 mem_cgroup_iter_break(memcg, iter);
1781 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001782 } else
1783 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001784 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001785
Michal Hocko79dfdac2011-07-26 16:08:23 -07001786 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001787 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001788
1789 /*
1790 * OK, we failed to lock the whole subtree so we have to clean up
1791 * what we set up to the failing subtree
1792 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001793 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001794 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001795 mem_cgroup_iter_break(memcg, iter);
1796 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001797 }
1798 iter->oom_lock = false;
1799 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001800 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001801}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001802
Michal Hocko79dfdac2011-07-26 16:08:23 -07001803/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001804 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001805 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001806static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001807{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001808 struct mem_cgroup *iter;
1809
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001810 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001811 iter->oom_lock = false;
1812 return 0;
1813}
1814
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001815static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001816{
1817 struct mem_cgroup *iter;
1818
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001819 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001820 atomic_inc(&iter->under_oom);
1821}
1822
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001823static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001824{
1825 struct mem_cgroup *iter;
1826
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001827 /*
1828 * When a new child is created while the hierarchy is under oom,
1829 * mem_cgroup_oom_lock() may not be called. We have to use
1830 * atomic_add_unless() here.
1831 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001832 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001833 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001834}
1835
Michal Hocko1af8efe2011-07-26 16:08:24 -07001836static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001837static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1838
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001839struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001840 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001841 wait_queue_t wait;
1842};
1843
1844static int memcg_oom_wake_function(wait_queue_t *wait,
1845 unsigned mode, int sync, void *arg)
1846{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001847 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1848 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001849 struct oom_wait_info *oom_wait_info;
1850
1851 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001852 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001853
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001854 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001855 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001856 * Then we can use css_is_ancestor without taking care of RCU.
1857 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001858 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1859 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001860 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001861 return autoremove_wake_function(wait, mode, sync, arg);
1862}
1863
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001864static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001865{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001866 /* for filtering, pass "memcg" as argument. */
1867 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001868}
1869
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001870static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001871{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001872 if (memcg && atomic_read(&memcg->under_oom))
1873 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001874}
1875
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001876/*
1877 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1878 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001879static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
1880 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001881{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001882 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001883 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001884
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001885 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001886 owait.wait.flags = 0;
1887 owait.wait.func = memcg_oom_wake_function;
1888 owait.wait.private = current;
1889 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001890 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001891 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001892
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001893 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001894 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001895 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001896 /*
1897 * Even if signal_pending(), we can't quit charge() loop without
1898 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1899 * under OOM is always welcomed, use TASK_KILLABLE here.
1900 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001901 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001902 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001903 need_to_kill = false;
1904 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001905 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001906 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001907
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001908 if (need_to_kill) {
1909 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07001910 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001911 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001912 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001913 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001914 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001915 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001916 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001917 mem_cgroup_oom_unlock(memcg);
1918 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001919 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001920
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001921 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001922
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001923 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1924 return false;
1925 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001926 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001927 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001928}
1929
Balbir Singhd69b0422009-06-17 16:26:34 -07001930/*
1931 * Currently used to update mapped file statistics, but the routine can be
1932 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001933 *
1934 * Notes: Race condition
1935 *
1936 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1937 * it tends to be costly. But considering some conditions, we doesn't need
1938 * to do so _always_.
1939 *
1940 * Considering "charge", lock_page_cgroup() is not required because all
1941 * file-stat operations happen after a page is attached to radix-tree. There
1942 * are no race with "charge".
1943 *
1944 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1945 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1946 * if there are race with "uncharge". Statistics itself is properly handled
1947 * by flags.
1948 *
1949 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001950 * small, we check mm->moving_account and detect there are possibility of race
1951 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07001952 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001953
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001954void __mem_cgroup_begin_update_page_stat(struct page *page,
1955 bool *locked, unsigned long *flags)
1956{
1957 struct mem_cgroup *memcg;
1958 struct page_cgroup *pc;
1959
1960 pc = lookup_page_cgroup(page);
1961again:
1962 memcg = pc->mem_cgroup;
1963 if (unlikely(!memcg || !PageCgroupUsed(pc)))
1964 return;
1965 /*
1966 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07001967 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001968 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001969 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001970 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001971 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001972 return;
1973
1974 move_lock_mem_cgroup(memcg, flags);
1975 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
1976 move_unlock_mem_cgroup(memcg, flags);
1977 goto again;
1978 }
1979 *locked = true;
1980}
1981
1982void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
1983{
1984 struct page_cgroup *pc = lookup_page_cgroup(page);
1985
1986 /*
1987 * It's guaranteed that pc->mem_cgroup never changes while
1988 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07001989 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001990 */
1991 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
1992}
1993
Greg Thelen2a7106f2011-01-13 15:47:37 -08001994void mem_cgroup_update_page_stat(struct page *page,
1995 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07001996{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001997 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001998 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08001999 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002000
Johannes Weinercfa44942012-01-12 17:18:38 -08002001 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002002 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002003
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002004 memcg = pc->mem_cgroup;
2005 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002006 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002007
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002008 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002009 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08002010 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002011 break;
2012 default:
2013 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002014 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002015
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002016 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002017}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002018
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002019/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002020 * size of first charge trial. "32" comes from vmscan.c's magic value.
2021 * TODO: maybe necessary to use big numbers in big irons.
2022 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002023#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002024struct memcg_stock_pcp {
2025 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002026 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002027 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002028 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002029#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002030};
2031static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002032static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002033
2034/*
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002035 * Try to consume stocked charge on this cpu. If success, one page is consumed
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002036 * from local stock and true is returned. If the stock is 0 or charges from a
2037 * cgroup which is not current target, returns false. This stock will be
2038 * refilled.
2039 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002040static bool consume_stock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002041{
2042 struct memcg_stock_pcp *stock;
2043 bool ret = true;
2044
2045 stock = &get_cpu_var(memcg_stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002046 if (memcg == stock->cached && stock->nr_pages)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002047 stock->nr_pages--;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002048 else /* need to call res_counter_charge */
2049 ret = false;
2050 put_cpu_var(memcg_stock);
2051 return ret;
2052}
2053
2054/*
2055 * Returns stocks cached in percpu to res_counter and reset cached information.
2056 */
2057static void drain_stock(struct memcg_stock_pcp *stock)
2058{
2059 struct mem_cgroup *old = stock->cached;
2060
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002061 if (stock->nr_pages) {
2062 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2063
2064 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002065 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002066 res_counter_uncharge(&old->memsw, bytes);
2067 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002068 }
2069 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002070}
2071
2072/*
2073 * This must be called under preempt disabled or must be called by
2074 * a thread which is pinned to local cpu.
2075 */
2076static void drain_local_stock(struct work_struct *dummy)
2077{
2078 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2079 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002080 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002081}
2082
2083/*
2084 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002085 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002086 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002087static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002088{
2089 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2090
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002091 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002092 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002093 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002094 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002095 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002096 put_cpu_var(memcg_stock);
2097}
2098
2099/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002100 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002101 * of the hierarchy under it. sync flag says whether we should block
2102 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002103 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002104static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002105{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002106 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002107
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002108 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002109 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002110 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002111 for_each_online_cpu(cpu) {
2112 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002113 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002114
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002115 memcg = stock->cached;
2116 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002117 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002118 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002119 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002120 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2121 if (cpu == curcpu)
2122 drain_local_stock(&stock->work);
2123 else
2124 schedule_work_on(cpu, &stock->work);
2125 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002126 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002127 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002128
2129 if (!sync)
2130 goto out;
2131
2132 for_each_online_cpu(cpu) {
2133 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002134 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002135 flush_work(&stock->work);
2136 }
2137out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002138 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002139}
2140
2141/*
2142 * Tries to drain stocked charges in other cpus. This function is asynchronous
2143 * and just put a work per cpu for draining localy on each cpu. Caller can
2144 * expects some charges will be back to res_counter later but cannot wait for
2145 * it.
2146 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002147static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002148{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002149 /*
2150 * If someone calls draining, avoid adding more kworker runs.
2151 */
2152 if (!mutex_trylock(&percpu_charge_mutex))
2153 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002154 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002155 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002156}
2157
2158/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002159static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002160{
2161 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002162 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002163 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002164 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002165}
2166
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002167/*
2168 * This function drains percpu counter value from DEAD cpu and
2169 * move it to local cpu. Note that this function can be preempted.
2170 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002171static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002172{
2173 int i;
2174
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002175 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002176 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002177 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002178
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002179 per_cpu(memcg->stat->count[i], cpu) = 0;
2180 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002181 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002182 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002183 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002184
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002185 per_cpu(memcg->stat->events[i], cpu) = 0;
2186 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002187 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002188 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002189}
2190
2191static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002192 unsigned long action,
2193 void *hcpu)
2194{
2195 int cpu = (unsigned long)hcpu;
2196 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002197 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002198
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002199 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002200 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002201
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002202 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002203 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002204
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002205 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002206 mem_cgroup_drain_pcp_counter(iter, cpu);
2207
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002208 stock = &per_cpu(memcg_stock, cpu);
2209 drain_stock(stock);
2210 return NOTIFY_OK;
2211}
2212
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002213
2214/* See __mem_cgroup_try_charge() for details */
2215enum {
2216 CHARGE_OK, /* success */
2217 CHARGE_RETRY, /* need to retry but retry is not bad */
2218 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2219 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2220 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2221};
2222
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002223static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002224 unsigned int nr_pages, bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002225{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002226 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002227 struct mem_cgroup *mem_over_limit;
2228 struct res_counter *fail_res;
2229 unsigned long flags = 0;
2230 int ret;
2231
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002232 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002233
2234 if (likely(!ret)) {
2235 if (!do_swap_account)
2236 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002237 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002238 if (likely(!ret))
2239 return CHARGE_OK;
2240
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002241 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002242 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2243 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2244 } else
2245 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002246 /*
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002247 * nr_pages can be either a huge page (HPAGE_PMD_NR), a batch
2248 * of regular pages (CHARGE_BATCH), or a single regular page (1).
Johannes Weiner9221edb2011-02-01 15:52:42 -08002249 *
2250 * Never reclaim on behalf of optional batching, retry with a
2251 * single page instead.
2252 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002253 if (nr_pages == CHARGE_BATCH)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002254 return CHARGE_RETRY;
2255
2256 if (!(gfp_mask & __GFP_WAIT))
2257 return CHARGE_WOULDBLOCK;
2258
Johannes Weiner56600482012-01-12 17:17:59 -08002259 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002260 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002261 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002262 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002263 * Even though the limit is exceeded at this point, reclaim
2264 * may have been able to free some pages. Retry the charge
2265 * before killing the task.
2266 *
2267 * Only for regular pages, though: huge pages are rather
2268 * unlikely to succeed so close to the limit, and we fall back
2269 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002270 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002271 if (nr_pages == 1 && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002272 return CHARGE_RETRY;
2273
2274 /*
2275 * At task move, charge accounts can be doubly counted. So, it's
2276 * better to wait until the end of task_move if something is going on.
2277 */
2278 if (mem_cgroup_wait_acct_move(mem_over_limit))
2279 return CHARGE_RETRY;
2280
2281 /* If we don't need to call oom-killer at el, return immediately */
2282 if (!oom_check)
2283 return CHARGE_NOMEM;
2284 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002285 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002286 return CHARGE_OOM_DIE;
2287
2288 return CHARGE_RETRY;
2289}
2290
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002291/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002292 * __mem_cgroup_try_charge() does
2293 * 1. detect memcg to be charged against from passed *mm and *ptr,
2294 * 2. update res_counter
2295 * 3. call memory reclaim if necessary.
2296 *
2297 * In some special case, if the task is fatal, fatal_signal_pending() or
2298 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2299 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2300 * as possible without any hazards. 2: all pages should have a valid
2301 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2302 * pointer, that is treated as a charge to root_mem_cgroup.
2303 *
2304 * So __mem_cgroup_try_charge() will return
2305 * 0 ... on success, filling *ptr with a valid memcg pointer.
2306 * -ENOMEM ... charge failure because of resource limits.
2307 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2308 *
2309 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2310 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002311 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002312static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002313 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002314 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002315 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002316 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002317{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002318 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002319 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002320 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002321 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002322
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002323 /*
2324 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2325 * in system level. So, allow to go ahead dying process in addition to
2326 * MEMDIE process.
2327 */
2328 if (unlikely(test_thread_flag(TIF_MEMDIE)
2329 || fatal_signal_pending(current)))
2330 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002331
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002332 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002333 * We always charge the cgroup the mm_struct belongs to.
2334 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002335 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002336 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002337 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002338 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002339 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002340again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002341 if (*ptr) { /* css should be a valid one */
2342 memcg = *ptr;
2343 VM_BUG_ON(css_is_removed(&memcg->css));
2344 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002345 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002346 if (nr_pages == 1 && consume_stock(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002347 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002348 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002349 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002350 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002351
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002352 rcu_read_lock();
2353 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002354 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002355 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002356 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002357 * race with swapoff. Then, we have small risk of mis-accouning.
2358 * But such kind of mis-account by race always happens because
2359 * we don't have cgroup_mutex(). It's overkill and we allo that
2360 * small race, here.
2361 * (*) swapoff at el will charge against mm-struct not against
2362 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002363 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002364 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002365 if (!memcg)
2366 memcg = root_mem_cgroup;
2367 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002368 rcu_read_unlock();
2369 goto done;
2370 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002371 if (nr_pages == 1 && consume_stock(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002372 /*
2373 * It seems dagerous to access memcg without css_get().
2374 * But considering how consume_stok works, it's not
2375 * necessary. If consume_stock success, some charges
2376 * from this memcg are cached on this cpu. So, we
2377 * don't need to call css_get()/css_tryget() before
2378 * calling consume_stock().
2379 */
2380 rcu_read_unlock();
2381 goto done;
2382 }
2383 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002384 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002385 rcu_read_unlock();
2386 goto again;
2387 }
2388 rcu_read_unlock();
2389 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002390
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002391 do {
2392 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002393
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002394 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002395 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002396 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002397 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002398 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002399
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002400 oom_check = false;
2401 if (oom && !nr_oom_retries) {
2402 oom_check = true;
2403 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2404 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002405
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002406 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002407 switch (ret) {
2408 case CHARGE_OK:
2409 break;
2410 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002411 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002412 css_put(&memcg->css);
2413 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002414 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002415 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002416 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002417 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002418 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002419 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002420 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002421 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002422 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002423 /* If oom, we never return -ENOMEM */
2424 nr_oom_retries--;
2425 break;
2426 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002427 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002428 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002429 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002430 } while (ret != CHARGE_OK);
2431
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002432 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002433 refill_stock(memcg, batch - nr_pages);
2434 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002435done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002436 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002437 return 0;
2438nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002439 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002440 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002441bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002442 *ptr = root_mem_cgroup;
2443 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002444}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002445
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002446/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002447 * Somemtimes we have to undo a charge we got by try_charge().
2448 * This function is for that and do uncharge, put css's refcnt.
2449 * gotten by try_charge().
2450 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002451static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002452 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002453{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002454 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002455 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002456
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002457 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002458 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002459 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002460 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002461}
2462
2463/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002464 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2465 * This is useful when moving usage to parent cgroup.
2466 */
2467static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2468 unsigned int nr_pages)
2469{
2470 unsigned long bytes = nr_pages * PAGE_SIZE;
2471
2472 if (mem_cgroup_is_root(memcg))
2473 return;
2474
2475 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2476 if (do_swap_account)
2477 res_counter_uncharge_until(&memcg->memsw,
2478 memcg->memsw.parent, bytes);
2479}
2480
2481/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002482 * A helper function to get mem_cgroup from ID. must be called under
2483 * rcu_read_lock(). The caller must check css_is_removed() or some if
2484 * it's concern. (dropping refcnt from swap can be called against removed
2485 * memcg.)
2486 */
2487static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2488{
2489 struct cgroup_subsys_state *css;
2490
2491 /* ID 0 is unused ID */
2492 if (!id)
2493 return NULL;
2494 css = css_lookup(&mem_cgroup_subsys, id);
2495 if (!css)
2496 return NULL;
2497 return container_of(css, struct mem_cgroup, css);
2498}
2499
Wu Fengguange42d9d52009-12-16 12:19:59 +01002500struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002501{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002502 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002503 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002504 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002505 swp_entry_t ent;
2506
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002507 VM_BUG_ON(!PageLocked(page));
2508
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002509 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002510 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002511 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002512 memcg = pc->mem_cgroup;
2513 if (memcg && !css_tryget(&memcg->css))
2514 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002515 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002516 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002517 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002518 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002519 memcg = mem_cgroup_lookup(id);
2520 if (memcg && !css_tryget(&memcg->css))
2521 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002522 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002523 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002524 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002525 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002526}
2527
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002528static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002529 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002530 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002531 enum charge_type ctype,
2532 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002533{
Johannes Weinerce587e62012-04-24 20:22:33 +02002534 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002535 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002536 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002537 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002538 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002539
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002540 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002541 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002542 /*
2543 * we don't need page_cgroup_lock about tail pages, becase they are not
2544 * accessed by any other context at this point.
2545 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002546
2547 /*
2548 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2549 * may already be on some other mem_cgroup's LRU. Take care of it.
2550 */
2551 if (lrucare) {
2552 zone = page_zone(page);
2553 spin_lock_irq(&zone->lru_lock);
2554 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002555 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002556 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002557 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002558 was_on_lru = true;
2559 }
2560 }
2561
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002562 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002563 /*
2564 * We access a page_cgroup asynchronously without lock_page_cgroup().
2565 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2566 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2567 * before USED bit, we need memory barrier here.
2568 * See mem_cgroup_add_lru_list(), etc.
2569 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002570 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002571 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002572
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002573 if (lrucare) {
2574 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002575 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002576 VM_BUG_ON(PageLRU(page));
2577 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002578 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002579 }
2580 spin_unlock_irq(&zone->lru_lock);
2581 }
2582
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002583 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002584 anon = true;
2585 else
2586 anon = false;
2587
2588 mem_cgroup_charge_statistics(memcg, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002589 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002590
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002591 /*
2592 * "charge_statistics" updated event counter. Then, check it.
2593 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2594 * if they exceeds softlimit.
2595 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002596 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002597}
2598
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002599#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2600
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002601#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002602/*
2603 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002604 * zone->lru_lock, 'splitting on pmd' and compound_lock.
2605 * charge/uncharge will be never happen and move_account() is done under
2606 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002607 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002608void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002609{
2610 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002611 struct page_cgroup *pc;
2612 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002613
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002614 if (mem_cgroup_disabled())
2615 return;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002616 for (i = 1; i < HPAGE_PMD_NR; i++) {
2617 pc = head_pc + i;
2618 pc->mem_cgroup = head_pc->mem_cgroup;
2619 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002620 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2621 }
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002622}
Hugh Dickins12d27102012-01-12 17:19:52 -08002623#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002624
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002625/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07002626 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07002627 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002628 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002629 * @pc: page_cgroup of the page.
2630 * @from: mem_cgroup which the page is moved from.
2631 * @to: mem_cgroup which the page is moved to. @from != @to.
2632 *
2633 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002634 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002635 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002636 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002637 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
2638 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002639 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002640static int mem_cgroup_move_account(struct page *page,
2641 unsigned int nr_pages,
2642 struct page_cgroup *pc,
2643 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002644 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002645{
Johannes Weinerde3638d2011-03-23 16:42:28 -07002646 unsigned long flags;
2647 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002648 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002649
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002650 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07002651 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07002652 /*
2653 * The page is isolated from LRU. So, collapse function
2654 * will not handle this page. But page splitting can happen.
2655 * Do this check under compound_page_lock(). The caller should
2656 * hold it.
2657 */
2658 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002659 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07002660 goto out;
2661
2662 lock_page_cgroup(pc);
2663
2664 ret = -EINVAL;
2665 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2666 goto unlock;
2667
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002668 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002669
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07002670 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08002671 /* Update mapped_file data for mem_cgroup */
2672 preempt_disable();
2673 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2674 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2675 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07002676 }
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002677 mem_cgroup_charge_statistics(from, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07002678
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002679 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002680 pc->mem_cgroup = to;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002681 mem_cgroup_charge_statistics(to, anon, nr_pages);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002682 /*
2683 * We charges against "to" which may not have any tasks. Then, "to"
2684 * can be under rmdir(). But in current implementation, caller of
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002685 * this function is just force_empty() and move charge, so it's
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002686 * guaranteed that "to" is never removed. So, we don't check rmdir
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08002687 * status here.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002688 */
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002689 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002690 ret = 0;
2691unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002692 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08002693 /*
2694 * check events
2695 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002696 memcg_check_events(to, page);
2697 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002698out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002699 return ret;
2700}
2701
2702/*
2703 * move charges to its parent.
2704 */
2705
Johannes Weiner5564e882011-03-23 16:42:29 -07002706static int mem_cgroup_move_parent(struct page *page,
2707 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07002708 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002709{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002710 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002711 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07002712 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002713 int ret;
2714
2715 /* Is ROOT ? */
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002716 if (mem_cgroup_is_root(child))
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002717 return -EINVAL;
2718
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002719 ret = -EBUSY;
2720 if (!get_page_unless_zero(page))
2721 goto out;
2722 if (isolate_lru_page(page))
2723 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08002724
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002725 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002726
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002727 parent = parent_mem_cgroup(child);
2728 /*
2729 * If no parent, move charges to root cgroup.
2730 */
2731 if (!parent)
2732 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002733
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002734 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002735 flags = compound_lock_irqsave(page);
2736
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002737 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002738 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002739 if (!ret)
2740 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002741
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002742 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002743 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002744 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002745put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08002746 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002747out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002748 return ret;
2749}
2750
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002751/*
2752 * Charge the memory controller for page usage.
2753 * Return
2754 * 0 if the charge was successful
2755 * < 0 if the cgroup is over its limit
2756 */
2757static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002758 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002759{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002760 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002761 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08002762 bool oom = true;
2763 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08002764
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002765 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002766 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002767 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08002768 /*
2769 * Never OOM-kill a process for a huge page. The
2770 * fault handler will fall back to regular pages.
2771 */
2772 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002773 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002774
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002775 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002776 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002777 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02002778 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002779 return 0;
2780}
2781
2782int mem_cgroup_newpage_charge(struct page *page,
2783 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002784{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002785 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002786 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08002787 VM_BUG_ON(page_mapped(page));
2788 VM_BUG_ON(page->mapping && !PageAnon(page));
2789 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002790 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002791 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002792}
2793
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002794/*
2795 * While swap-in, try_charge -> commit or cancel, the page is locked.
2796 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02002797 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002798 * "commit()" or removed by "cancel()"
2799 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002800static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2801 struct page *page,
2802 gfp_t mask,
2803 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002804{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002805 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07002806 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002807 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002808
Johannes Weiner90deb782012-07-31 16:45:47 -07002809 pc = lookup_page_cgroup(page);
2810 /*
2811 * Every swap fault against a single page tries to charge the
2812 * page, bail as early as possible. shmem_unuse() encounters
2813 * already charged pages, too. The USED bit is protected by
2814 * the page lock, which serializes swap cache removal, which
2815 * in turn serializes uncharging.
2816 */
2817 if (PageCgroupUsed(pc))
2818 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002819 if (!do_swap_account)
2820 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002821 memcg = try_get_mem_cgroup_from_page(page);
2822 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002823 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08002824 *memcgp = memcg;
2825 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002826 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002827 if (ret == -EINTR)
2828 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002829 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002830charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002831 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
2832 if (ret == -EINTR)
2833 ret = 0;
2834 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002835}
2836
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002837int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
2838 gfp_t gfp_mask, struct mem_cgroup **memcgp)
2839{
2840 *memcgp = NULL;
2841 if (mem_cgroup_disabled())
2842 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07002843 /*
2844 * A racing thread's fault, or swapoff, may have already
2845 * updated the pte, and even removed page from swap cache: in
2846 * those cases unuse_pte()'s pte_same() test will fail; but
2847 * there's also a KSM case which does need to charge the page.
2848 */
2849 if (!PageSwapCache(page)) {
2850 int ret;
2851
2852 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
2853 if (ret == -EINTR)
2854 ret = 0;
2855 return ret;
2856 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002857 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
2858}
2859
Johannes Weiner827a03d2012-07-31 16:45:36 -07002860void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
2861{
2862 if (mem_cgroup_disabled())
2863 return;
2864 if (!memcg)
2865 return;
2866 __mem_cgroup_cancel_charge(memcg, 1);
2867}
2868
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002869static void
Johannes Weiner72835c82012-01-12 17:18:32 -08002870__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002871 enum charge_type ctype)
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;
Johannes Weiner72835c82012-01-12 17:18:32 -08002875 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002876 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002877 cgroup_exclude_rmdir(&memcg->css);
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002878
Johannes Weinerce587e62012-04-24 20:22:33 +02002879 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002880 /*
2881 * Now swap is on-memory. This means this page may be
2882 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002883 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2884 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2885 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002886 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002887 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002888 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07002889 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002890 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002891 /*
2892 * At swapin, we may charge account against cgroup which has no tasks.
2893 * So, rmdir()->pre_destroy() can be called while we do this charge.
2894 * In that case, we need to call pre_destroy() again. check it here.
2895 */
Johannes Weiner72835c82012-01-12 17:18:32 -08002896 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002897}
2898
Johannes Weiner72835c82012-01-12 17:18:32 -08002899void mem_cgroup_commit_charge_swapin(struct page *page,
2900 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002901{
Johannes Weiner72835c82012-01-12 17:18:32 -08002902 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002903 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002904}
2905
Johannes Weiner827a03d2012-07-31 16:45:36 -07002906int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2907 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002908{
Johannes Weiner827a03d2012-07-31 16:45:36 -07002909 struct mem_cgroup *memcg = NULL;
2910 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
2911 int ret;
2912
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002913 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07002914 return 0;
2915 if (PageCompound(page))
2916 return 0;
2917
Johannes Weiner827a03d2012-07-31 16:45:36 -07002918 if (!PageSwapCache(page))
2919 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
2920 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002921 ret = __mem_cgroup_try_charge_swapin(mm, page,
2922 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07002923 if (!ret)
2924 __mem_cgroup_commit_charge_swapin(page, memcg, type);
2925 }
2926 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002927}
2928
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002929static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002930 unsigned int nr_pages,
2931 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002932{
2933 struct memcg_batch_info *batch = NULL;
2934 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002935
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002936 /* If swapout, usage of swap doesn't decrease */
2937 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
2938 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002939
2940 batch = &current->memcg_batch;
2941 /*
2942 * In usual, we do css_get() when we remember memcg pointer.
2943 * But in this case, we keep res->usage until end of a series of
2944 * uncharges. Then, it's ok to ignore memcg's refcnt.
2945 */
2946 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002947 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002948 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002949 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002950 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002951 * the same cgroup and we have chance to coalesce uncharges.
2952 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
2953 * because we want to do uncharge as soon as possible.
2954 */
2955
2956 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
2957 goto direct_uncharge;
2958
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002959 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08002960 goto direct_uncharge;
2961
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002962 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002963 * In typical case, batch->memcg == mem. This means we can
2964 * merge a series of uncharges to an uncharge of res_counter.
2965 * If not, we uncharge res_counter ony by one.
2966 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002967 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002968 goto direct_uncharge;
2969 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002970 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002971 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07002972 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002973 return;
2974direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002975 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002976 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002977 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
2978 if (unlikely(batch->memcg != memcg))
2979 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08002980}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002981
Balbir Singh8697d332008-02-07 00:13:59 -08002982/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07002983 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002984 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002985static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07002986__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
2987 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002988{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002989 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002990 unsigned int nr_pages = 1;
2991 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002992 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002993
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002994 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002995 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07002996
Johannes Weiner0c59b892012-07-31 16:45:31 -07002997 VM_BUG_ON(PageSwapCache(page));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08002998
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002999 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003000 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003001 VM_BUG_ON(!PageTransHuge(page));
3002 }
Balbir Singh8697d332008-02-07 00:13:59 -08003003 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003004 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003005 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003006 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003007 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003008 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003009
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003010 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003011
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003012 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003013
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003014 if (!PageCgroupUsed(pc))
3015 goto unlock_out;
3016
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003017 anon = PageAnon(page);
3018
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003019 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003020 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003021 /*
3022 * Generally PageAnon tells if it's the anon statistics to be
3023 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
3024 * used before page reached the stage of being marked PageAnon.
3025 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003026 anon = true;
3027 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003028 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003029 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07003030 if (page_mapped(page))
3031 goto unlock_out;
3032 /*
3033 * Pages under migration may not be uncharged. But
3034 * end_migration() /must/ be the one uncharging the
3035 * unused post-migration page and so it has to call
3036 * here with the migration bit still set. See the
3037 * res_counter handling below.
3038 */
3039 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003040 goto unlock_out;
3041 break;
3042 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
3043 if (!PageAnon(page)) { /* Shared memory */
3044 if (page->mapping && !page_is_file_cache(page))
3045 goto unlock_out;
3046 } else if (page_mapped(page)) /* Anon */
3047 goto unlock_out;
3048 break;
3049 default:
3050 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003051 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003052
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003053 mem_cgroup_charge_statistics(memcg, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07003054
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003055 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08003056 /*
3057 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3058 * freed from LRU. This is safe because uncharged page is expected not
3059 * to be reused (freed soon). Exception is SwapCache, it's handled by
3060 * special functions.
3061 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003062
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003063 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003064 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003065 * even after unlock, we have memcg->res.usage here and this memcg
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003066 * will never be freed.
3067 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003068 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003069 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003070 mem_cgroup_swap_statistics(memcg, true);
3071 mem_cgroup_get(memcg);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003072 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003073 /*
3074 * Migration does not charge the res_counter for the
3075 * replacement page, so leave it alone when phasing out the
3076 * page that is unused after the migration.
3077 */
3078 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003079 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003080
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003081 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003082
3083unlock_out:
3084 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003085 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003086}
3087
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003088void mem_cgroup_uncharge_page(struct page *page)
3089{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003090 /* early check. */
3091 if (page_mapped(page))
3092 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08003093 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner0c59b892012-07-31 16:45:31 -07003094 if (PageSwapCache(page))
3095 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07003096 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003097}
3098
3099void mem_cgroup_uncharge_cache_page(struct page *page)
3100{
3101 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003102 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07003103 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003104}
3105
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003106/*
3107 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3108 * In that cases, pages are freed continuously and we can expect pages
3109 * are in the same memcg. All these calls itself limits the number of
3110 * pages freed at once, then uncharge_start/end() is called properly.
3111 * This may be called prural(2) times in a context,
3112 */
3113
3114void mem_cgroup_uncharge_start(void)
3115{
3116 current->memcg_batch.do_batch++;
3117 /* We can do nest. */
3118 if (current->memcg_batch.do_batch == 1) {
3119 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003120 current->memcg_batch.nr_pages = 0;
3121 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003122 }
3123}
3124
3125void mem_cgroup_uncharge_end(void)
3126{
3127 struct memcg_batch_info *batch = &current->memcg_batch;
3128
3129 if (!batch->do_batch)
3130 return;
3131
3132 batch->do_batch--;
3133 if (batch->do_batch) /* If stacked, do nothing. */
3134 return;
3135
3136 if (!batch->memcg)
3137 return;
3138 /*
3139 * This "batch->memcg" is valid without any css_get/put etc...
3140 * bacause we hide charges behind us.
3141 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003142 if (batch->nr_pages)
3143 res_counter_uncharge(&batch->memcg->res,
3144 batch->nr_pages * PAGE_SIZE);
3145 if (batch->memsw_nr_pages)
3146 res_counter_uncharge(&batch->memcg->memsw,
3147 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003148 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003149 /* forget this pointer (for sanity check) */
3150 batch->memcg = NULL;
3151}
3152
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003153#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003154/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003155 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003156 * memcg information is recorded to swap_cgroup of "ent"
3157 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003158void
3159mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003160{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003161 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003162 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003163
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003164 if (!swapout) /* this was a swap cache but the swap is unused ! */
3165 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
3166
Johannes Weiner0030f532012-07-31 16:45:25 -07003167 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003168
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003169 /*
3170 * record memcg information, if swapout && memcg != NULL,
3171 * mem_cgroup_get() was called in uncharge().
3172 */
3173 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003174 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003175}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003176#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003177
Andrew Mortonc255a452012-07-31 16:43:02 -07003178#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003179/*
3180 * called from swap_entry_free(). remove record in swap_cgroup and
3181 * uncharge "memsw" account.
3182 */
3183void mem_cgroup_uncharge_swap(swp_entry_t ent)
3184{
3185 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003186 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003187
3188 if (!do_swap_account)
3189 return;
3190
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003191 id = swap_cgroup_record(ent, 0);
3192 rcu_read_lock();
3193 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003194 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003195 /*
3196 * We uncharge this because swap is freed.
3197 * This memcg can be obsolete one. We avoid calling css_tryget
3198 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003199 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07003200 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003201 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003202 mem_cgroup_put(memcg);
3203 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003204 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003205}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003206
3207/**
3208 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3209 * @entry: swap entry to be moved
3210 * @from: mem_cgroup which the entry is moved from
3211 * @to: mem_cgroup which the entry is moved to
3212 *
3213 * It succeeds only when the swap_cgroup's record for this entry is the same
3214 * as the mem_cgroup's id of @from.
3215 *
3216 * Returns 0 on success, -EINVAL on failure.
3217 *
3218 * The caller must have charged to @to, IOW, called res_counter_charge() about
3219 * both res and memsw, and called css_get().
3220 */
3221static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003222 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003223{
3224 unsigned short old_id, new_id;
3225
3226 old_id = css_id(&from->css);
3227 new_id = css_id(&to->css);
3228
3229 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003230 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003231 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003232 /*
3233 * This function is only called from task migration context now.
3234 * It postpones res_counter and refcount handling till the end
3235 * of task migration(mem_cgroup_clear_mc()) for performance
3236 * improvement. But we cannot postpone mem_cgroup_get(to)
3237 * because if the process that has been moved to @to does
3238 * swap-in, the refcount of @to might be decreased to 0.
3239 */
Daisuke Nishimura02491442010-03-10 15:22:17 -08003240 mem_cgroup_get(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003241 return 0;
3242 }
3243 return -EINVAL;
3244}
3245#else
3246static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003247 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003248{
3249 return -EINVAL;
3250}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003251#endif
3252
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003253/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003254 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
3255 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003256 */
Johannes Weiner0030f532012-07-31 16:45:25 -07003257void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
3258 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003259{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003260 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003261 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003262 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003263
Johannes Weiner72835c82012-01-12 17:18:32 -08003264 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003265
Andrea Arcangeliec168512011-01-13 15:46:56 -08003266 VM_BUG_ON(PageTransHuge(page));
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003267 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07003268 return;
Balbir Singh40779602008-04-04 14:29:59 -07003269
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003270 pc = lookup_page_cgroup(page);
3271 lock_page_cgroup(pc);
3272 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003273 memcg = pc->mem_cgroup;
3274 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003275 /*
3276 * At migrating an anonymous page, its mapcount goes down
3277 * to 0 and uncharge() will be called. But, even if it's fully
3278 * unmapped, migration may fail and this page has to be
3279 * charged again. We set MIGRATION flag here and delay uncharge
3280 * until end_migration() is called
3281 *
3282 * Corner Case Thinking
3283 * A)
3284 * When the old page was mapped as Anon and it's unmap-and-freed
3285 * while migration was ongoing.
3286 * If unmap finds the old page, uncharge() of it will be delayed
3287 * until end_migration(). If unmap finds a new page, it's
3288 * uncharged when it make mapcount to be 1->0. If unmap code
3289 * finds swap_migration_entry, the new page will not be mapped
3290 * and end_migration() will find it(mapcount==0).
3291 *
3292 * B)
3293 * When the old page was mapped but migraion fails, the kernel
3294 * remaps it. A charge for it is kept by MIGRATION flag even
3295 * if mapcount goes down to 0. We can do remap successfully
3296 * without charging it again.
3297 *
3298 * C)
3299 * The "old" page is under lock_page() until the end of
3300 * migration, so, the old page itself will not be swapped-out.
3301 * If the new page is swapped out before end_migraton, our
3302 * hook to usual swap-out path will catch the event.
3303 */
3304 if (PageAnon(page))
3305 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003306 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003307 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003308 /*
3309 * If the page is not charged at this point,
3310 * we return here.
3311 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003312 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07003313 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003314
Johannes Weiner72835c82012-01-12 17:18:32 -08003315 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003316 /*
3317 * We charge new page before it's used/mapped. So, even if unlock_page()
3318 * is called before end_migration, we can catch all events on this new
3319 * page. In the case new page is migrated but not remapped, new page's
3320 * mapcount will be finally 0 and we call uncharge in end_migration().
3321 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003322 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003323 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003324 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07003325 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07003326 /*
3327 * The page is committed to the memcg, but it's not actually
3328 * charged to the res_counter since we plan on replacing the
3329 * old one and only one page is going to be left afterwards.
3330 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003331 __mem_cgroup_commit_charge(memcg, newpage, 1, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003332}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08003333
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003334/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003335void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003336 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003337{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003338 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003339 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003340 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003341
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003342 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003343 return;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003344 /* blocks rmdir() */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003345 cgroup_exclude_rmdir(&memcg->css);
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003346 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003347 used = oldpage;
3348 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003349 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003350 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003351 unused = oldpage;
3352 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003353 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07003354 __mem_cgroup_uncharge_common(unused,
3355 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
3356 : MEM_CGROUP_CHARGE_TYPE_CACHE,
3357 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07003358 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003359 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003360 * We disallowed uncharge of pages under migration because mapcount
3361 * of the page goes down to zero, temporarly.
3362 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003363 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003364 pc = lookup_page_cgroup(oldpage);
3365 lock_page_cgroup(pc);
3366 ClearPageCgroupMigration(pc);
3367 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003368
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003369 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003370 * If a page is a file cache, radix-tree replacement is very atomic
3371 * and we can skip this check. When it was an Anon page, its mapcount
3372 * goes down to 0. But because we added MIGRATION flage, it's not
3373 * uncharged yet. There are several case but page->mapcount check
3374 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3375 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003376 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003377 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003378 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003379 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003380 * At migration, we may charge account against cgroup which has no
3381 * tasks.
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003382 * So, rmdir()->pre_destroy() can be called while we do this charge.
3383 * In that case, we need to call pre_destroy() again. check it here.
3384 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003385 cgroup_release_and_wakeup_rmdir(&memcg->css);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003386}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08003387
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003388/*
3389 * At replace page cache, newpage is not under any memcg but it's on
3390 * LRU. So, this function doesn't touch res_counter but handles LRU
3391 * in correct way. Both pages are locked so we cannot race with uncharge.
3392 */
3393void mem_cgroup_replace_page_cache(struct page *oldpage,
3394 struct page *newpage)
3395{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003396 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003397 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003398 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003399
3400 if (mem_cgroup_disabled())
3401 return;
3402
3403 pc = lookup_page_cgroup(oldpage);
3404 /* fix accounting on old pages */
3405 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003406 if (PageCgroupUsed(pc)) {
3407 memcg = pc->mem_cgroup;
3408 mem_cgroup_charge_statistics(memcg, false, -1);
3409 ClearPageCgroupUsed(pc);
3410 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003411 unlock_page_cgroup(pc);
3412
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003413 /*
3414 * When called from shmem_replace_page(), in some cases the
3415 * oldpage has already been charged, and in some cases not.
3416 */
3417 if (!memcg)
3418 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003419 /*
3420 * Even if newpage->mapping was NULL before starting replacement,
3421 * the newpage may be on LRU(or pagevec for LRU) already. We lock
3422 * LRU while we overwrite pc->mem_cgroup.
3423 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003424 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003425}
3426
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003427#ifdef CONFIG_DEBUG_VM
3428static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3429{
3430 struct page_cgroup *pc;
3431
3432 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003433 /*
3434 * Can be NULL while feeding pages into the page allocator for
3435 * the first time, i.e. during boot or memory hotplug;
3436 * or when mem_cgroup_disabled().
3437 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003438 if (likely(pc) && PageCgroupUsed(pc))
3439 return pc;
3440 return NULL;
3441}
3442
3443bool mem_cgroup_bad_page_check(struct page *page)
3444{
3445 if (mem_cgroup_disabled())
3446 return false;
3447
3448 return lookup_page_cgroup_used(page) != NULL;
3449}
3450
3451void mem_cgroup_print_bad_page(struct page *page)
3452{
3453 struct page_cgroup *pc;
3454
3455 pc = lookup_page_cgroup_used(page);
3456 if (pc) {
Hugh Dickins90b3fea2012-01-12 17:19:54 -08003457 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003458 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003459 }
3460}
3461#endif
3462
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003463static DEFINE_MUTEX(set_limit_mutex);
3464
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003465static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003466 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003467{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003468 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003469 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003470 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003471 int children = mem_cgroup_count_children(memcg);
3472 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003473 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003474
3475 /*
3476 * For keeping hierarchical_reclaim simple, how long we should retry
3477 * is depends on callers. We set our retry-count to be function
3478 * of # of children which we should visit in this loop.
3479 */
3480 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3481
3482 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003483
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003484 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003485 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003486 if (signal_pending(current)) {
3487 ret = -EINTR;
3488 break;
3489 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003490 /*
3491 * Rather than hide all in some function, I do this in
3492 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003493 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003494 */
3495 mutex_lock(&set_limit_mutex);
3496 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3497 if (memswlimit < val) {
3498 ret = -EINVAL;
3499 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003500 break;
3501 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003502
3503 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3504 if (memlimit < val)
3505 enlarge = 1;
3506
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003507 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003508 if (!ret) {
3509 if (memswlimit == val)
3510 memcg->memsw_is_minimum = true;
3511 else
3512 memcg->memsw_is_minimum = false;
3513 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003514 mutex_unlock(&set_limit_mutex);
3515
3516 if (!ret)
3517 break;
3518
Johannes Weiner56600482012-01-12 17:17:59 -08003519 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3520 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003521 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3522 /* Usage is reduced ? */
3523 if (curusage >= oldusage)
3524 retry_count--;
3525 else
3526 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003527 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003528 if (!ret && enlarge)
3529 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003530
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003531 return ret;
3532}
3533
Li Zefan338c8432009-06-17 16:27:15 -07003534static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3535 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003536{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003537 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003538 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003539 int children = mem_cgroup_count_children(memcg);
3540 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003541 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003542
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003543 /* see mem_cgroup_resize_res_limit */
3544 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3545 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003546 while (retry_count) {
3547 if (signal_pending(current)) {
3548 ret = -EINTR;
3549 break;
3550 }
3551 /*
3552 * Rather than hide all in some function, I do this in
3553 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003554 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003555 */
3556 mutex_lock(&set_limit_mutex);
3557 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3558 if (memlimit > val) {
3559 ret = -EINVAL;
3560 mutex_unlock(&set_limit_mutex);
3561 break;
3562 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003563 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3564 if (memswlimit < val)
3565 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003566 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003567 if (!ret) {
3568 if (memlimit == val)
3569 memcg->memsw_is_minimum = true;
3570 else
3571 memcg->memsw_is_minimum = false;
3572 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003573 mutex_unlock(&set_limit_mutex);
3574
3575 if (!ret)
3576 break;
3577
Johannes Weiner56600482012-01-12 17:17:59 -08003578 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3579 MEM_CGROUP_RECLAIM_NOSWAP |
3580 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003581 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003582 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003583 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003584 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003585 else
3586 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003587 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003588 if (!ret && enlarge)
3589 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003590 return ret;
3591}
3592
Balbir Singh4e416952009-09-23 15:56:39 -07003593unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
Ying Han0ae5e892011-05-26 16:25:25 -07003594 gfp_t gfp_mask,
3595 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003596{
3597 unsigned long nr_reclaimed = 0;
3598 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3599 unsigned long reclaimed;
3600 int loop = 0;
3601 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003602 unsigned long long excess;
Ying Han0ae5e892011-05-26 16:25:25 -07003603 unsigned long nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003604
3605 if (order > 0)
3606 return 0;
3607
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07003608 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
Balbir Singh4e416952009-09-23 15:56:39 -07003609 /*
3610 * This loop can run a while, specially if mem_cgroup's continuously
3611 * keep exceeding their soft limit and putting the system under
3612 * pressure
3613 */
3614 do {
3615 if (next_mz)
3616 mz = next_mz;
3617 else
3618 mz = mem_cgroup_largest_soft_limit_node(mctz);
3619 if (!mz)
3620 break;
3621
Ying Han0ae5e892011-05-26 16:25:25 -07003622 nr_scanned = 0;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003623 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
Johannes Weiner56600482012-01-12 17:17:59 -08003624 gfp_mask, &nr_scanned);
Balbir Singh4e416952009-09-23 15:56:39 -07003625 nr_reclaimed += reclaimed;
Ying Han0ae5e892011-05-26 16:25:25 -07003626 *total_scanned += nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003627 spin_lock(&mctz->lock);
3628
3629 /*
3630 * If we failed to reclaim anything from this memory cgroup
3631 * it is time to move on to the next cgroup
3632 */
3633 next_mz = NULL;
3634 if (!reclaimed) {
3635 do {
3636 /*
3637 * Loop until we find yet another one.
3638 *
3639 * By the time we get the soft_limit lock
3640 * again, someone might have aded the
3641 * group back on the RB tree. Iterate to
3642 * make sure we get a different mem.
3643 * mem_cgroup_largest_soft_limit_node returns
3644 * NULL if no other cgroup is present on
3645 * the tree
3646 */
3647 next_mz =
3648 __mem_cgroup_largest_soft_limit_node(mctz);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003649 if (next_mz == mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003650 css_put(&next_mz->memcg->css);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003651 else /* next_mz == NULL or other memcg */
Balbir Singh4e416952009-09-23 15:56:39 -07003652 break;
3653 } while (1);
3654 }
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003655 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
3656 excess = res_counter_soft_limit_excess(&mz->memcg->res);
Balbir Singh4e416952009-09-23 15:56:39 -07003657 /*
3658 * One school of thought says that we should not add
3659 * back the node to the tree if reclaim returns 0.
3660 * But our reclaim could return 0, simply because due
3661 * to priority we are exposing a smaller subset of
3662 * memory to reclaim from. Consider this as a longer
3663 * term TODO.
3664 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003665 /* If excess == 0, no tree ops */
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003666 __mem_cgroup_insert_exceeded(mz->memcg, mz, mctz, excess);
Balbir Singh4e416952009-09-23 15:56:39 -07003667 spin_unlock(&mctz->lock);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003668 css_put(&mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003669 loop++;
3670 /*
3671 * Could not reclaim anything and there are no more
3672 * mem cgroups to try or we seem to be looping without
3673 * reclaiming anything.
3674 */
3675 if (!nr_reclaimed &&
3676 (next_mz == NULL ||
3677 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3678 break;
3679 } while (!nr_reclaimed);
3680 if (next_mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003681 css_put(&next_mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003682 return nr_reclaimed;
3683}
3684
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07003685/*
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003686 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
3687 * reclaim the pages page themselves - it just removes the page_cgroups.
3688 * Returns true if some page_cgroups were not freed, indicating that the caller
3689 * must retry this operation.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003690 */
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003691static bool mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003692 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003693{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003694 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003695 unsigned long flags, loop;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003696 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08003697 struct page *busy;
3698 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003699
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003700 zone = &NODE_DATA(node)->node_zones[zid];
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003701 mz = mem_cgroup_zoneinfo(memcg, node, zid);
Johannes Weiner6290df52012-01-12 17:18:10 -08003702 list = &mz->lruvec.lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003703
Hugh Dickins1eb49272012-03-21 16:34:19 -07003704 loop = mz->lru_size[lru];
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003705 /* give some margin against EBUSY etc...*/
3706 loop += 256;
3707 busy = NULL;
3708 while (loop--) {
Johannes Weiner925b7672012-01-12 17:18:15 -08003709 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07003710 struct page *page;
3711
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003712 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003713 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003714 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003715 break;
3716 }
Johannes Weiner925b7672012-01-12 17:18:15 -08003717 page = list_entry(list->prev, struct page, lru);
3718 if (busy == page) {
3719 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003720 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003721 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003722 continue;
3723 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003724 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003725
Johannes Weiner925b7672012-01-12 17:18:15 -08003726 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07003727
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003728 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003729 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08003730 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003731 cond_resched();
3732 } else
3733 busy = NULL;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003734 }
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003735 return !list_empty(list);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003736}
3737
3738/*
3739 * make mem_cgroup's charge to be 0 if there is no task.
3740 * This enables deleting this mem_cgroup.
3741 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003742static int mem_cgroup_force_empty(struct mem_cgroup *memcg, bool free_all)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003743{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003744 int ret;
3745 int node, zid, shrink;
3746 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003747 struct cgroup *cgrp = memcg->css.cgroup;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003748
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003749 css_get(&memcg->css);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003750
3751 shrink = 0;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003752 /* should free all ? */
3753 if (free_all)
3754 goto try_to_free;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003755move_account:
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003756 do {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003757 ret = -EBUSY;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003758 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003759 goto out;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003760 /* This is for making all *used* pages to be on LRU. */
3761 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003762 drain_all_stock_sync(memcg);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003763 ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003764 mem_cgroup_start_move(memcg);
KAMEZAWA Hiroyuki299b4ea2009-01-29 14:25:17 -08003765 for_each_node_state(node, N_HIGH_MEMORY) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003766 for (zid = 0; !ret && zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003767 enum lru_list lru;
3768 for_each_lru(lru) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003769 ret = mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003770 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003771 if (ret)
3772 break;
3773 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003774 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003775 if (ret)
3776 break;
3777 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003778 mem_cgroup_end_move(memcg);
3779 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003780 cond_resched();
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003781 /* "ret" should also be checked to ensure all lists are empty. */
Glauber Costa569530f2012-04-12 12:49:13 -07003782 } while (res_counter_read_u64(&memcg->res, RES_USAGE) > 0 || ret);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003783out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003784 css_put(&memcg->css);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003785 return ret;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003786
3787try_to_free:
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003788 /* returns EBUSY if there is a task or if we come here twice. */
3789 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children) || shrink) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003790 ret = -EBUSY;
3791 goto out;
3792 }
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003793 /* we call try-to-free pages for make this cgroup empty */
3794 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003795 /* try to free all pages in this cgroup */
3796 shrink = 1;
Glauber Costa569530f2012-04-12 12:49:13 -07003797 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003798 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003799
3800 if (signal_pending(current)) {
3801 ret = -EINTR;
3802 goto out;
3803 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003804 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07003805 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003806 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003807 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003808 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003809 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003810 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003811
3812 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003813 lru_add_drain();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003814 /* try move_account...there may be some *locked* pages. */
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003815 goto move_account;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003816}
3817
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07003818static int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003819{
3820 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont), true);
3821}
3822
3823
Balbir Singh18f59ea2009-01-07 18:08:07 -08003824static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3825{
3826 return mem_cgroup_from_cont(cont)->use_hierarchy;
3827}
3828
3829static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3830 u64 val)
3831{
3832 int retval = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003833 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003834 struct cgroup *parent = cont->parent;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003835 struct mem_cgroup *parent_memcg = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003836
3837 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003838 parent_memcg = mem_cgroup_from_cont(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003839
3840 cgroup_lock();
Glauber Costa567fb432012-07-31 16:43:07 -07003841
3842 if (memcg->use_hierarchy == val)
3843 goto out;
3844
Balbir Singh18f59ea2009-01-07 18:08:07 -08003845 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003846 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003847 * in the child subtrees. If it is unset, then the change can
3848 * occur, provided the current cgroup has no children.
3849 *
3850 * For the root cgroup, parent_mem is NULL, we allow value to be
3851 * set if there are no children.
3852 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003853 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003854 (val == 1 || val == 0)) {
3855 if (list_empty(&cont->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003856 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003857 else
3858 retval = -EBUSY;
3859 } else
3860 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07003861
3862out:
Balbir Singh18f59ea2009-01-07 18:08:07 -08003863 cgroup_unlock();
3864
3865 return retval;
3866}
3867
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003868
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003869static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003870 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003871{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003872 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003873 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003874
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003875 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003876 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003877 val += mem_cgroup_read_stat(iter, idx);
3878
3879 if (val < 0) /* race ? */
3880 val = 0;
3881 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003882}
3883
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003884static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003885{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003886 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003887
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003888 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003889 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00003890 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003891 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00003892 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003893 }
3894
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003895 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
3896 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003897
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003898 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07003899 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003900
3901 return val << PAGE_SHIFT;
3902}
3903
Tejun Heoaf36f902012-04-01 12:09:55 -07003904static ssize_t mem_cgroup_read(struct cgroup *cont, struct cftype *cft,
3905 struct file *file, char __user *buf,
3906 size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003907{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003908 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Tejun Heoaf36f902012-04-01 12:09:55 -07003909 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003910 u64 val;
Tejun Heoaf36f902012-04-01 12:09:55 -07003911 int type, name, len;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003912
3913 type = MEMFILE_TYPE(cft->private);
3914 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003915
3916 if (!do_swap_account && type == _MEMSWAP)
3917 return -EOPNOTSUPP;
3918
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003919 switch (type) {
3920 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003921 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003922 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003923 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003924 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003925 break;
3926 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003927 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003928 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003929 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003930 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003931 break;
3932 default:
3933 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003934 }
Tejun Heoaf36f902012-04-01 12:09:55 -07003935
3936 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
3937 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003938}
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003939/*
3940 * The user of this function is...
3941 * RES_LIMIT.
3942 */
Paul Menage856c13a2008-07-25 01:47:04 -07003943static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
3944 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003945{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003946 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003947 int type, name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003948 unsigned long long val;
3949 int ret;
3950
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003951 type = MEMFILE_TYPE(cft->private);
3952 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003953
3954 if (!do_swap_account && type == _MEMSWAP)
3955 return -EOPNOTSUPP;
3956
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003957 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003958 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07003959 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3960 ret = -EINVAL;
3961 break;
3962 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003963 /* This function does all necessary parse...reuse it */
3964 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003965 if (ret)
3966 break;
3967 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003968 ret = mem_cgroup_resize_limit(memcg, val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003969 else
3970 ret = mem_cgroup_resize_memsw_limit(memcg, val);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003971 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07003972 case RES_SOFT_LIMIT:
3973 ret = res_counter_memparse_write_strategy(buffer, &val);
3974 if (ret)
3975 break;
3976 /*
3977 * For memsw, soft limits are hard to implement in terms
3978 * of semantics, for now, we support soft limits for
3979 * control without swap
3980 */
3981 if (type == _MEM)
3982 ret = res_counter_set_soft_limit(&memcg->res, val);
3983 else
3984 ret = -EINVAL;
3985 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003986 default:
3987 ret = -EINVAL; /* should be BUG() ? */
3988 break;
3989 }
3990 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003991}
3992
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08003993static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
3994 unsigned long long *mem_limit, unsigned long long *memsw_limit)
3995{
3996 struct cgroup *cgroup;
3997 unsigned long long min_limit, min_memsw_limit, tmp;
3998
3999 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4000 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4001 cgroup = memcg->css.cgroup;
4002 if (!memcg->use_hierarchy)
4003 goto out;
4004
4005 while (cgroup->parent) {
4006 cgroup = cgroup->parent;
4007 memcg = mem_cgroup_from_cont(cgroup);
4008 if (!memcg->use_hierarchy)
4009 break;
4010 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4011 min_limit = min(min_limit, tmp);
4012 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4013 min_memsw_limit = min(min_memsw_limit, tmp);
4014 }
4015out:
4016 *mem_limit = min_limit;
4017 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004018}
4019
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004020static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004021{
Tejun Heoaf36f902012-04-01 12:09:55 -07004022 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004023 int type, name;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004024
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004025 type = MEMFILE_TYPE(event);
4026 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07004027
4028 if (!do_swap_account && type == _MEMSWAP)
4029 return -EOPNOTSUPP;
4030
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004031 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004032 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004033 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004034 res_counter_reset_max(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004035 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004036 res_counter_reset_max(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004037 break;
4038 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004039 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004040 res_counter_reset_failcnt(&memcg->res);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004041 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004042 res_counter_reset_failcnt(&memcg->memsw);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004043 break;
4044 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004045
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004046 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004047}
4048
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004049static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
4050 struct cftype *cft)
4051{
4052 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
4053}
4054
Daisuke Nishimura02491442010-03-10 15:22:17 -08004055#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004056static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4057 struct cftype *cft, u64 val)
4058{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004059 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004060
4061 if (val >= (1 << NR_MOVE_TYPE))
4062 return -EINVAL;
4063 /*
4064 * We check this value several times in both in can_attach() and
4065 * attach(), so we need cgroup lock to prevent this value from being
4066 * inconsistent.
4067 */
4068 cgroup_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004069 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004070 cgroup_unlock();
4071
4072 return 0;
4073}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004074#else
4075static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4076 struct cftype *cft, u64 val)
4077{
4078 return -ENOSYS;
4079}
4080#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004081
Ying Han406eb0c2011-05-26 16:25:37 -07004082#ifdef CONFIG_NUMA
Wanpeng Liab215882012-07-31 16:43:09 -07004083static int memcg_numa_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weinerfada52c2012-05-29 15:07:06 -07004084 struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07004085{
4086 int nid;
4087 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
4088 unsigned long node_nr;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004089 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Ying Han406eb0c2011-05-26 16:25:37 -07004090
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004091 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004092 seq_printf(m, "total=%lu", total_nr);
4093 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004094 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004095 seq_printf(m, " N%d=%lu", nid, node_nr);
4096 }
4097 seq_putc(m, '\n');
4098
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004099 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004100 seq_printf(m, "file=%lu", file_nr);
4101 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004102 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004103 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004104 seq_printf(m, " N%d=%lu", nid, node_nr);
4105 }
4106 seq_putc(m, '\n');
4107
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004108 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004109 seq_printf(m, "anon=%lu", anon_nr);
4110 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004111 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004112 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004113 seq_printf(m, " N%d=%lu", nid, node_nr);
4114 }
4115 seq_putc(m, '\n');
4116
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004117 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004118 seq_printf(m, "unevictable=%lu", unevictable_nr);
4119 for_each_node_state(nid, N_HIGH_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004120 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004121 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004122 seq_printf(m, " N%d=%lu", nid, node_nr);
4123 }
4124 seq_putc(m, '\n');
4125 return 0;
4126}
4127#endif /* CONFIG_NUMA */
4128
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004129static const char * const mem_cgroup_lru_names[] = {
4130 "inactive_anon",
4131 "active_anon",
4132 "inactive_file",
4133 "active_file",
4134 "unevictable",
4135};
4136
4137static inline void mem_cgroup_lru_names_not_uptodate(void)
4138{
4139 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
4140}
4141
Wanpeng Liab215882012-07-31 16:43:09 -07004142static int memcg_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004143 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004144{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004145 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004146 struct mem_cgroup *mi;
4147 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004148
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004149 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004150 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004151 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004152 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
4153 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004154 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004155
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004156 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
4157 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
4158 mem_cgroup_read_events(memcg, i));
4159
4160 for (i = 0; i < NR_LRU_LISTS; i++)
4161 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
4162 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
4163
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004164 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004165 {
4166 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004167 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004168 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004169 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004170 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4171 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004172 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004173
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004174 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
4175 long long val = 0;
4176
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004177 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004178 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004179 for_each_mem_cgroup_tree(mi, memcg)
4180 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
4181 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
4182 }
4183
4184 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
4185 unsigned long long val = 0;
4186
4187 for_each_mem_cgroup_tree(mi, memcg)
4188 val += mem_cgroup_read_events(mi, i);
4189 seq_printf(m, "total_%s %llu\n",
4190 mem_cgroup_events_names[i], val);
4191 }
4192
4193 for (i = 0; i < NR_LRU_LISTS; i++) {
4194 unsigned long long val = 0;
4195
4196 for_each_mem_cgroup_tree(mi, memcg)
4197 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
4198 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004199 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004200
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004201#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004202 {
4203 int nid, zid;
4204 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07004205 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004206 unsigned long recent_rotated[2] = {0, 0};
4207 unsigned long recent_scanned[2] = {0, 0};
4208
4209 for_each_online_node(nid)
4210 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004211 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07004212 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004213
Hugh Dickins89abfab2012-05-29 15:06:53 -07004214 recent_rotated[0] += rstat->recent_rotated[0];
4215 recent_rotated[1] += rstat->recent_rotated[1];
4216 recent_scanned[0] += rstat->recent_scanned[0];
4217 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004218 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004219 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
4220 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
4221 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
4222 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004223 }
4224#endif
4225
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004226 return 0;
4227}
4228
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004229static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
4230{
4231 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4232
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004233 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004234}
4235
4236static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
4237 u64 val)
4238{
4239 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4240 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08004241
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004242 if (val > 100)
4243 return -EINVAL;
4244
4245 if (cgrp->parent == NULL)
4246 return -EINVAL;
4247
4248 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08004249
4250 cgroup_lock();
4251
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004252 /* If under hierarchy, only empty-root can set this value */
4253 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08004254 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
4255 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004256 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08004257 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004258
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004259 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004260
Li Zefan068b38c2009-01-15 13:51:26 -08004261 cgroup_unlock();
4262
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004263 return 0;
4264}
4265
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004266static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4267{
4268 struct mem_cgroup_threshold_ary *t;
4269 u64 usage;
4270 int i;
4271
4272 rcu_read_lock();
4273 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004274 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004275 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004276 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004277
4278 if (!t)
4279 goto unlock;
4280
4281 usage = mem_cgroup_usage(memcg, swap);
4282
4283 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004284 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004285 * If it's not true, a threshold was crossed after last
4286 * call of __mem_cgroup_threshold().
4287 */
Phil Carmody5407a562010-05-26 14:42:42 -07004288 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004289
4290 /*
4291 * Iterate backward over array of thresholds starting from
4292 * current_threshold and check if a threshold is crossed.
4293 * If none of thresholds below usage is crossed, we read
4294 * only one element of the array here.
4295 */
4296 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4297 eventfd_signal(t->entries[i].eventfd, 1);
4298
4299 /* i = current_threshold + 1 */
4300 i++;
4301
4302 /*
4303 * Iterate forward over array of thresholds starting from
4304 * current_threshold+1 and check if a threshold is crossed.
4305 * If none of thresholds above usage is crossed, we read
4306 * only one element of the array here.
4307 */
4308 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4309 eventfd_signal(t->entries[i].eventfd, 1);
4310
4311 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004312 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004313unlock:
4314 rcu_read_unlock();
4315}
4316
4317static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4318{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004319 while (memcg) {
4320 __mem_cgroup_threshold(memcg, false);
4321 if (do_swap_account)
4322 __mem_cgroup_threshold(memcg, true);
4323
4324 memcg = parent_mem_cgroup(memcg);
4325 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004326}
4327
4328static int compare_thresholds(const void *a, const void *b)
4329{
4330 const struct mem_cgroup_threshold *_a = a;
4331 const struct mem_cgroup_threshold *_b = b;
4332
4333 return _a->threshold - _b->threshold;
4334}
4335
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004336static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004337{
4338 struct mem_cgroup_eventfd_list *ev;
4339
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004340 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004341 eventfd_signal(ev->eventfd, 1);
4342 return 0;
4343}
4344
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004345static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004346{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004347 struct mem_cgroup *iter;
4348
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004349 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004350 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004351}
4352
4353static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4354 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004355{
4356 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004357 struct mem_cgroup_thresholds *thresholds;
4358 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004359 int type = MEMFILE_TYPE(cft->private);
4360 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004361 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004362
4363 ret = res_counter_memparse_write_strategy(args, &threshold);
4364 if (ret)
4365 return ret;
4366
4367 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004368
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004369 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004370 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004371 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004372 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004373 else
4374 BUG();
4375
4376 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4377
4378 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004379 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004380 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4381
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004382 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004383
4384 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004385 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004386 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004387 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004388 ret = -ENOMEM;
4389 goto unlock;
4390 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004391 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004392
4393 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004394 if (thresholds->primary) {
4395 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004396 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004397 }
4398
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004399 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004400 new->entries[size - 1].eventfd = eventfd;
4401 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004402
4403 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004404 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004405 compare_thresholds, NULL);
4406
4407 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004408 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004409 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004410 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004411 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004412 * new->current_threshold will not be used until
4413 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004414 * it here.
4415 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004416 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004417 } else
4418 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004419 }
4420
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004421 /* Free old spare buffer and save old primary buffer as spare */
4422 kfree(thresholds->spare);
4423 thresholds->spare = thresholds->primary;
4424
4425 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004426
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004427 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004428 synchronize_rcu();
4429
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004430unlock:
4431 mutex_unlock(&memcg->thresholds_lock);
4432
4433 return ret;
4434}
4435
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004436static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004437 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004438{
4439 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004440 struct mem_cgroup_thresholds *thresholds;
4441 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004442 int type = MEMFILE_TYPE(cft->private);
4443 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004444 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004445
4446 mutex_lock(&memcg->thresholds_lock);
4447 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004448 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004449 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004450 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004451 else
4452 BUG();
4453
Anton Vorontsov371528c2012-02-24 05:14:46 +04004454 if (!thresholds->primary)
4455 goto unlock;
4456
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004457 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4458
4459 /* Check if a threshold crossed before removing */
4460 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4461
4462 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004463 size = 0;
4464 for (i = 0; i < thresholds->primary->size; i++) {
4465 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004466 size++;
4467 }
4468
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004469 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004470
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004471 /* Set thresholds array to NULL if we don't have thresholds */
4472 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004473 kfree(new);
4474 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004475 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004476 }
4477
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004478 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004479
4480 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004481 new->current_threshold = -1;
4482 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4483 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004484 continue;
4485
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004486 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004487 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004488 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004489 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004490 * until rcu_assign_pointer(), so it's safe to increment
4491 * it here.
4492 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004493 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004494 }
4495 j++;
4496 }
4497
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004498swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004499 /* Swap primary and spare array */
4500 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004501 /* If all events are unregistered, free the spare array */
4502 if (!new) {
4503 kfree(thresholds->spare);
4504 thresholds->spare = NULL;
4505 }
4506
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004507 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004508
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004509 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004510 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04004511unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004512 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004513}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004514
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004515static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4516 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4517{
4518 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4519 struct mem_cgroup_eventfd_list *event;
4520 int type = MEMFILE_TYPE(cft->private);
4521
4522 BUG_ON(type != _OOM_TYPE);
4523 event = kmalloc(sizeof(*event), GFP_KERNEL);
4524 if (!event)
4525 return -ENOMEM;
4526
Michal Hocko1af8efe2011-07-26 16:08:24 -07004527 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004528
4529 event->eventfd = eventfd;
4530 list_add(&event->list, &memcg->oom_notify);
4531
4532 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004533 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004534 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004535 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004536
4537 return 0;
4538}
4539
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004540static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004541 struct cftype *cft, struct eventfd_ctx *eventfd)
4542{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004543 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004544 struct mem_cgroup_eventfd_list *ev, *tmp;
4545 int type = MEMFILE_TYPE(cft->private);
4546
4547 BUG_ON(type != _OOM_TYPE);
4548
Michal Hocko1af8efe2011-07-26 16:08:24 -07004549 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004550
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004551 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004552 if (ev->eventfd == eventfd) {
4553 list_del(&ev->list);
4554 kfree(ev);
4555 }
4556 }
4557
Michal Hocko1af8efe2011-07-26 16:08:24 -07004558 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004559}
4560
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004561static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4562 struct cftype *cft, struct cgroup_map_cb *cb)
4563{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004564 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004565
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004566 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004567
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004568 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004569 cb->fill(cb, "under_oom", 1);
4570 else
4571 cb->fill(cb, "under_oom", 0);
4572 return 0;
4573}
4574
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004575static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4576 struct cftype *cft, u64 val)
4577{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004578 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004579 struct mem_cgroup *parent;
4580
4581 /* cannot set to root cgroup and only 0 and 1 are allowed */
4582 if (!cgrp->parent || !((val == 0) || (val == 1)))
4583 return -EINVAL;
4584
4585 parent = mem_cgroup_from_cont(cgrp->parent);
4586
4587 cgroup_lock();
4588 /* oom-kill-disable is a flag for subhierarchy. */
4589 if ((parent->use_hierarchy) ||
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004590 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004591 cgroup_unlock();
4592 return -EINVAL;
4593 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004594 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004595 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004596 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004597 cgroup_unlock();
4598 return 0;
4599}
4600
Andrew Mortonc255a452012-07-31 16:43:02 -07004601#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03004602static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004603{
Glauber Costa1d62e432012-04-09 19:36:33 -03004604 return mem_cgroup_sockets_init(memcg, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00004605};
4606
Glauber Costa1d62e432012-04-09 19:36:33 -03004607static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004608{
Glauber Costa1d62e432012-04-09 19:36:33 -03004609 mem_cgroup_sockets_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004610}
Glauber Costae5671df2011-12-11 21:47:01 +00004611#else
Glauber Costacbe128e32012-04-09 19:36:34 -03004612static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004613{
4614 return 0;
4615}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004616
Glauber Costa1d62e432012-04-09 19:36:33 -03004617static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004618{
4619}
Glauber Costae5671df2011-12-11 21:47:01 +00004620#endif
4621
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004622static struct cftype mem_cgroup_files[] = {
4623 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004624 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004625 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004626 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004627 .register_event = mem_cgroup_usage_register_event,
4628 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004629 },
4630 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004631 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004632 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004633 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004634 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004635 },
4636 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004637 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004638 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07004639 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004640 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004641 },
4642 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004643 .name = "soft_limit_in_bytes",
4644 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4645 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004646 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07004647 },
4648 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004649 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004650 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004651 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004652 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004653 },
Balbir Singh8697d332008-02-07 00:13:59 -08004654 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004655 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004656 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004657 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004658 {
4659 .name = "force_empty",
4660 .trigger = mem_cgroup_force_empty_write,
4661 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004662 {
4663 .name = "use_hierarchy",
4664 .write_u64 = mem_cgroup_hierarchy_write,
4665 .read_u64 = mem_cgroup_hierarchy_read,
4666 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004667 {
4668 .name = "swappiness",
4669 .read_u64 = mem_cgroup_swappiness_read,
4670 .write_u64 = mem_cgroup_swappiness_write,
4671 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004672 {
4673 .name = "move_charge_at_immigrate",
4674 .read_u64 = mem_cgroup_move_charge_read,
4675 .write_u64 = mem_cgroup_move_charge_write,
4676 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004677 {
4678 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004679 .read_map = mem_cgroup_oom_control_read,
4680 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004681 .register_event = mem_cgroup_oom_register_event,
4682 .unregister_event = mem_cgroup_oom_unregister_event,
4683 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4684 },
Ying Han406eb0c2011-05-26 16:25:37 -07004685#ifdef CONFIG_NUMA
4686 {
4687 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004688 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07004689 },
4690#endif
Andrew Mortonc255a452012-07-31 16:43:02 -07004691#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004692 {
4693 .name = "memsw.usage_in_bytes",
4694 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004695 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004696 .register_event = mem_cgroup_usage_register_event,
4697 .unregister_event = mem_cgroup_usage_unregister_event,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004698 },
4699 {
4700 .name = "memsw.max_usage_in_bytes",
4701 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4702 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004703 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004704 },
4705 {
4706 .name = "memsw.limit_in_bytes",
4707 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4708 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004709 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004710 },
4711 {
4712 .name = "memsw.failcnt",
4713 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4714 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004715 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004716 },
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004717#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07004718 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07004719};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004720
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004721static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004722{
4723 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004724 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004725 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004726 /*
4727 * This routine is called against possible nodes.
4728 * But it's BUG to call kmalloc() against offline node.
4729 *
4730 * TODO: this routine can waste much memory for nodes which will
4731 * never be onlined. It's better to use memory hotplug callback
4732 * function.
4733 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004734 if (!node_state(node, N_NORMAL_MEMORY))
4735 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004736 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004737 if (!pn)
4738 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004739
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004740 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4741 mz = &pn->zoneinfo[zone];
Konstantin Khlebnikov7f5e86c2012-05-29 15:06:58 -07004742 lruvec_init(&mz->lruvec, &NODE_DATA(node)->node_zones[zone]);
Balbir Singhf64c3f52009-09-23 15:56:37 -07004743 mz->usage_in_excess = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07004744 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004745 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004746 }
Igor Mammedov0a619e52011-11-02 13:38:21 -07004747 memcg->info.nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004748 return 0;
4749}
4750
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004751static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004752{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004753 kfree(memcg->info.nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004754}
4755
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004756static struct mem_cgroup *mem_cgroup_alloc(void)
4757{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004758 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004759 int size = sizeof(struct mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004760
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004761 /* Can be very big if MAX_NUMNODES is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08004762 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004763 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004764 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004765 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004766
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004767 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004768 return NULL;
4769
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004770 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
4771 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004772 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004773 spin_lock_init(&memcg->pcp_counter_lock);
4774 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004775
4776out_free:
4777 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004778 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004779 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004780 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004781 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004782}
4783
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004784/*
Glauber Costa3afe36b2012-05-29 15:07:10 -07004785 * Helpers for freeing a kmalloc()ed/vzalloc()ed mem_cgroup by RCU,
Hugh Dickins59927fb2012-03-15 15:17:07 -07004786 * but in process context. The work_freeing structure is overlaid
4787 * on the rcu_freeing structure, which itself is overlaid on memsw.
4788 */
Glauber Costa3afe36b2012-05-29 15:07:10 -07004789static void free_work(struct work_struct *work)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004790{
4791 struct mem_cgroup *memcg;
Glauber Costa3afe36b2012-05-29 15:07:10 -07004792 int size = sizeof(struct mem_cgroup);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004793
4794 memcg = container_of(work, struct mem_cgroup, work_freeing);
Glauber Costa3f134612012-05-29 15:07:11 -07004795 /*
4796 * We need to make sure that (at least for now), the jump label
4797 * destruction code runs outside of the cgroup lock. This is because
4798 * get_online_cpus(), which is called from the static_branch update,
4799 * can't be called inside the cgroup_lock. cpusets are the ones
4800 * enforcing this dependency, so if they ever change, we might as well.
4801 *
4802 * schedule_work() will guarantee this happens. Be careful if you need
4803 * to move this code around, and make sure it is outside
4804 * the cgroup_lock.
4805 */
4806 disarm_sock_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004807 if (size < PAGE_SIZE)
4808 kfree(memcg);
4809 else
4810 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004811}
Glauber Costa3afe36b2012-05-29 15:07:10 -07004812
4813static void free_rcu(struct rcu_head *rcu_head)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004814{
4815 struct mem_cgroup *memcg;
4816
4817 memcg = container_of(rcu_head, struct mem_cgroup, rcu_freeing);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004818 INIT_WORK(&memcg->work_freeing, free_work);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004819 schedule_work(&memcg->work_freeing);
4820}
4821
4822/*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004823 * At destroying mem_cgroup, references from swap_cgroup can remain.
4824 * (scanning all at force_empty is too costly...)
4825 *
4826 * Instead of clearing all references at force_empty, we remember
4827 * the number of reference from swap_cgroup and free mem_cgroup when
4828 * it goes down to 0.
4829 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004830 * Removal of cgroup itself succeeds regardless of refs from swap.
4831 */
4832
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004833static void __mem_cgroup_free(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004834{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004835 int node;
4836
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004837 mem_cgroup_remove_from_trees(memcg);
4838 free_css_id(&mem_cgroup_subsys, &memcg->css);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004839
Bob Liu3ed28fa2012-01-12 17:19:04 -08004840 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004841 free_mem_cgroup_per_zone_info(memcg, node);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004842
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004843 free_percpu(memcg->stat);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004844 call_rcu(&memcg->rcu_freeing, free_rcu);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004845}
4846
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004847static void mem_cgroup_get(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004848{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004849 atomic_inc(&memcg->refcnt);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004850}
4851
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004852static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004853{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004854 if (atomic_sub_and_test(count, &memcg->refcnt)) {
4855 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4856 __mem_cgroup_free(memcg);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004857 if (parent)
4858 mem_cgroup_put(parent);
4859 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004860}
4861
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004862static void mem_cgroup_put(struct mem_cgroup *memcg)
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004863{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004864 __mem_cgroup_put(memcg, 1);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004865}
4866
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004867/*
4868 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4869 */
Glauber Costae1aab162011-12-11 21:47:03 +00004870struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004871{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004872 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004873 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004874 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004875}
Glauber Costae1aab162011-12-11 21:47:03 +00004876EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004877
Andrew Mortonc255a452012-07-31 16:43:02 -07004878#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004879static void __init enable_swap_cgroup(void)
4880{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004881 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004882 do_swap_account = 1;
4883}
4884#else
4885static void __init enable_swap_cgroup(void)
4886{
4887}
4888#endif
4889
Balbir Singhf64c3f52009-09-23 15:56:37 -07004890static int mem_cgroup_soft_limit_tree_init(void)
4891{
4892 struct mem_cgroup_tree_per_node *rtpn;
4893 struct mem_cgroup_tree_per_zone *rtpz;
4894 int tmp, node, zone;
4895
Bob Liu3ed28fa2012-01-12 17:19:04 -08004896 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -07004897 tmp = node;
4898 if (!node_state(node, N_NORMAL_MEMORY))
4899 tmp = -1;
4900 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
4901 if (!rtpn)
Michal Hockoc3cecc62012-01-12 17:18:50 -08004902 goto err_cleanup;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004903
4904 soft_limit_tree.rb_tree_per_node[node] = rtpn;
4905
4906 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4907 rtpz = &rtpn->rb_tree_per_zone[zone];
4908 rtpz->rb_root = RB_ROOT;
4909 spin_lock_init(&rtpz->lock);
4910 }
4911 }
4912 return 0;
Michal Hockoc3cecc62012-01-12 17:18:50 -08004913
4914err_cleanup:
Bob Liu3ed28fa2012-01-12 17:19:04 -08004915 for_each_node(node) {
Michal Hockoc3cecc62012-01-12 17:18:50 -08004916 if (!soft_limit_tree.rb_tree_per_node[node])
4917 break;
4918 kfree(soft_limit_tree.rb_tree_per_node[node]);
4919 soft_limit_tree.rb_tree_per_node[node] = NULL;
4920 }
4921 return 1;
4922
Balbir Singhf64c3f52009-09-23 15:56:37 -07004923}
4924
Li Zefan0eb253e2009-01-15 13:51:25 -08004925static struct cgroup_subsys_state * __ref
Li Zefan761b3ef2012-01-31 13:47:36 +08004926mem_cgroup_create(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004927{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004928 struct mem_cgroup *memcg, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004929 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004930 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004931
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004932 memcg = mem_cgroup_alloc();
4933 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004934 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004935
Bob Liu3ed28fa2012-01-12 17:19:04 -08004936 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004937 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004938 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004939
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004940 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004941 if (cont->parent == NULL) {
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004942 int cpu;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004943 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004944 parent = NULL;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004945 if (mem_cgroup_soft_limit_tree_init())
4946 goto free_out;
Hillf Dantona41c58a2011-12-19 17:11:57 -08004947 root_mem_cgroup = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08004948 for_each_possible_cpu(cpu) {
4949 struct memcg_stock_pcp *stock =
4950 &per_cpu(memcg_stock, cpu);
4951 INIT_WORK(&stock->work, drain_local_stock);
4952 }
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07004953 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004954 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004955 parent = mem_cgroup_from_cont(cont->parent);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004956 memcg->use_hierarchy = parent->use_hierarchy;
4957 memcg->oom_kill_disable = parent->oom_kill_disable;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004958 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004959
Balbir Singh18f59ea2009-01-07 18:08:07 -08004960 if (parent && parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004961 res_counter_init(&memcg->res, &parent->res);
4962 res_counter_init(&memcg->memsw, &parent->memsw);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004963 /*
4964 * We increment refcnt of the parent to ensure that we can
4965 * safely access it on res_counter_charge/uncharge.
4966 * This refcnt will be decremented when freeing this
4967 * mem_cgroup(see mem_cgroup_put).
4968 */
4969 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004970 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004971 res_counter_init(&memcg->res, NULL);
4972 res_counter_init(&memcg->memsw, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004973 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004974 memcg->last_scanned_node = MAX_NUMNODES;
4975 INIT_LIST_HEAD(&memcg->oom_notify);
Balbir Singh6d61ef42009-01-07 18:08:06 -08004976
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004977 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004978 memcg->swappiness = mem_cgroup_swappiness(parent);
4979 atomic_set(&memcg->refcnt, 1);
4980 memcg->move_charge_at_immigrate = 0;
4981 mutex_init(&memcg->thresholds_lock);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07004982 spin_lock_init(&memcg->move_lock);
Glauber Costacbe128e32012-04-09 19:36:34 -03004983
4984 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
4985 if (error) {
4986 /*
4987 * We call put now because our (and parent's) refcnts
4988 * are already in place. mem_cgroup_put() will internally
4989 * call __mem_cgroup_free, so return directly
4990 */
4991 mem_cgroup_put(memcg);
4992 return ERR_PTR(error);
4993 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004994 return &memcg->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004995free_out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004996 __mem_cgroup_free(memcg);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004997 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004998}
4999
Li Zefan761b3ef2012-01-31 13:47:36 +08005000static int mem_cgroup_pre_destroy(struct cgroup *cont)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005001{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005002 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005003
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005004 return mem_cgroup_force_empty(memcg, false);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005005}
5006
Li Zefan761b3ef2012-01-31 13:47:36 +08005007static void mem_cgroup_destroy(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005008{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005009 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005010
Glauber Costa1d62e432012-04-09 19:36:33 -03005011 kmem_cgroup_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005012
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005013 mem_cgroup_put(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005014}
5015
Daisuke Nishimura02491442010-03-10 15:22:17 -08005016#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005017/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005018#define PRECHARGE_COUNT_AT_ONCE 256
5019static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005020{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005021 int ret = 0;
5022 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005023 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005024
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005025 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005026 mc.precharge += count;
5027 /* we don't need css_get for root */
5028 return ret;
5029 }
5030 /* try to charge at once */
5031 if (count > 1) {
5032 struct res_counter *dummy;
5033 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005034 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005035 * by cgroup_lock_live_cgroup() that it is not removed and we
5036 * are still under the same cgroup_mutex. So we can postpone
5037 * css_get().
5038 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005039 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005040 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005041 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005042 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005043 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005044 goto one_by_one;
5045 }
5046 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005047 return ret;
5048 }
5049one_by_one:
5050 /* fall back to one by one charge */
5051 while (count--) {
5052 if (signal_pending(current)) {
5053 ret = -EINTR;
5054 break;
5055 }
5056 if (!batch_count--) {
5057 batch_count = PRECHARGE_COUNT_AT_ONCE;
5058 cond_resched();
5059 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005060 ret = __mem_cgroup_try_charge(NULL,
5061 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005062 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005063 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005064 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005065 mc.precharge++;
5066 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005067 return ret;
5068}
5069
5070/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005071 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005072 * @vma: the vma the pte to be checked belongs
5073 * @addr: the address corresponding to the pte to be checked
5074 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005075 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005076 *
5077 * Returns
5078 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5079 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5080 * move charge. if @target is not NULL, the page is stored in target->page
5081 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005082 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5083 * target for charge migration. if @target is not NULL, the entry is stored
5084 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005085 *
5086 * Called with pte lock held.
5087 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005088union mc_target {
5089 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005090 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005091};
5092
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005093enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005094 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005095 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005096 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005097};
5098
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005099static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5100 unsigned long addr, pte_t ptent)
5101{
5102 struct page *page = vm_normal_page(vma, addr, ptent);
5103
5104 if (!page || !page_mapped(page))
5105 return NULL;
5106 if (PageAnon(page)) {
5107 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005108 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005109 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005110 } else if (!move_file())
5111 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005112 return NULL;
5113 if (!get_page_unless_zero(page))
5114 return NULL;
5115
5116 return page;
5117}
5118
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005119#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005120static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5121 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5122{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005123 struct page *page = NULL;
5124 swp_entry_t ent = pte_to_swp_entry(ptent);
5125
5126 if (!move_anon() || non_swap_entry(ent))
5127 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005128 /*
5129 * Because lookup_swap_cache() updates some statistics counter,
5130 * we call find_get_page() with swapper_space directly.
5131 */
5132 page = find_get_page(&swapper_space, ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005133 if (do_swap_account)
5134 entry->val = ent.val;
5135
5136 return page;
5137}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005138#else
5139static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5140 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5141{
5142 return NULL;
5143}
5144#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005145
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005146static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5147 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5148{
5149 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005150 struct address_space *mapping;
5151 pgoff_t pgoff;
5152
5153 if (!vma->vm_file) /* anonymous vma */
5154 return NULL;
5155 if (!move_file())
5156 return NULL;
5157
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005158 mapping = vma->vm_file->f_mapping;
5159 if (pte_none(ptent))
5160 pgoff = linear_page_index(vma, addr);
5161 else /* pte_file(ptent) is true */
5162 pgoff = pte_to_pgoff(ptent);
5163
5164 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005165 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005166
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005167#ifdef CONFIG_SWAP
5168 /* shmem/tmpfs may report page out on swap: account for that too. */
5169 if (radix_tree_exceptional_entry(page)) {
5170 swp_entry_t swap = radix_to_swp_entry(page);
5171 if (do_swap_account)
5172 *entry = swap;
5173 page = find_get_page(&swapper_space, swap.val);
5174 }
5175#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005176 return page;
5177}
5178
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005179static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005180 unsigned long addr, pte_t ptent, union mc_target *target)
5181{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005182 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005183 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005184 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005185 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005186
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005187 if (pte_present(ptent))
5188 page = mc_handle_present_pte(vma, addr, ptent);
5189 else if (is_swap_pte(ptent))
5190 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005191 else if (pte_none(ptent) || pte_file(ptent))
5192 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005193
5194 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005195 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005196 if (page) {
5197 pc = lookup_page_cgroup(page);
5198 /*
5199 * Do only loose check w/o page_cgroup lock.
5200 * mem_cgroup_move_account() checks the pc is valid or not under
5201 * the lock.
5202 */
5203 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5204 ret = MC_TARGET_PAGE;
5205 if (target)
5206 target->page = page;
5207 }
5208 if (!ret || !target)
5209 put_page(page);
5210 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005211 /* There is a swap entry and a page doesn't exist or isn't charged */
5212 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08005213 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005214 ret = MC_TARGET_SWAP;
5215 if (target)
5216 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005217 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005218 return ret;
5219}
5220
Naoya Horiguchi12724852012-03-21 16:34:28 -07005221#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5222/*
5223 * We don't consider swapping or file mapped pages because THP does not
5224 * support them for now.
5225 * Caller should make sure that pmd_trans_huge(pmd) is true.
5226 */
5227static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5228 unsigned long addr, pmd_t pmd, union mc_target *target)
5229{
5230 struct page *page = NULL;
5231 struct page_cgroup *pc;
5232 enum mc_target_type ret = MC_TARGET_NONE;
5233
5234 page = pmd_page(pmd);
5235 VM_BUG_ON(!page || !PageHead(page));
5236 if (!move_anon())
5237 return ret;
5238 pc = lookup_page_cgroup(page);
5239 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5240 ret = MC_TARGET_PAGE;
5241 if (target) {
5242 get_page(page);
5243 target->page = page;
5244 }
5245 }
5246 return ret;
5247}
5248#else
5249static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5250 unsigned long addr, pmd_t pmd, union mc_target *target)
5251{
5252 return MC_TARGET_NONE;
5253}
5254#endif
5255
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005256static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5257 unsigned long addr, unsigned long end,
5258 struct mm_walk *walk)
5259{
5260 struct vm_area_struct *vma = walk->private;
5261 pte_t *pte;
5262 spinlock_t *ptl;
5263
Naoya Horiguchi12724852012-03-21 16:34:28 -07005264 if (pmd_trans_huge_lock(pmd, vma) == 1) {
5265 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5266 mc.precharge += HPAGE_PMD_NR;
5267 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005268 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005269 }
Dave Hansen03319322011-03-22 16:32:56 -07005270
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005271 if (pmd_trans_unstable(pmd))
5272 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005273 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5274 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005275 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005276 mc.precharge++; /* increment precharge temporarily */
5277 pte_unmap_unlock(pte - 1, ptl);
5278 cond_resched();
5279
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005280 return 0;
5281}
5282
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005283static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5284{
5285 unsigned long precharge;
5286 struct vm_area_struct *vma;
5287
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005288 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005289 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5290 struct mm_walk mem_cgroup_count_precharge_walk = {
5291 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5292 .mm = mm,
5293 .private = vma,
5294 };
5295 if (is_vm_hugetlb_page(vma))
5296 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005297 walk_page_range(vma->vm_start, vma->vm_end,
5298 &mem_cgroup_count_precharge_walk);
5299 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005300 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005301
5302 precharge = mc.precharge;
5303 mc.precharge = 0;
5304
5305 return precharge;
5306}
5307
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005308static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5309{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005310 unsigned long precharge = mem_cgroup_count_precharge(mm);
5311
5312 VM_BUG_ON(mc.moving_task);
5313 mc.moving_task = current;
5314 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005315}
5316
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005317/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5318static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005319{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005320 struct mem_cgroup *from = mc.from;
5321 struct mem_cgroup *to = mc.to;
5322
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005323 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005324 if (mc.precharge) {
5325 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
5326 mc.precharge = 0;
5327 }
5328 /*
5329 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5330 * we must uncharge here.
5331 */
5332 if (mc.moved_charge) {
5333 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
5334 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005335 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005336 /* we must fixup refcnts and charges */
5337 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005338 /* uncharge swap account from the old cgroup */
5339 if (!mem_cgroup_is_root(mc.from))
5340 res_counter_uncharge(&mc.from->memsw,
5341 PAGE_SIZE * mc.moved_swap);
5342 __mem_cgroup_put(mc.from, mc.moved_swap);
5343
5344 if (!mem_cgroup_is_root(mc.to)) {
5345 /*
5346 * we charged both to->res and to->memsw, so we should
5347 * uncharge to->res.
5348 */
5349 res_counter_uncharge(&mc.to->res,
5350 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005351 }
5352 /* we've already done mem_cgroup_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005353 mc.moved_swap = 0;
5354 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005355 memcg_oom_recover(from);
5356 memcg_oom_recover(to);
5357 wake_up_all(&mc.waitq);
5358}
5359
5360static void mem_cgroup_clear_mc(void)
5361{
5362 struct mem_cgroup *from = mc.from;
5363
5364 /*
5365 * we must clear moving_task before waking up waiters at the end of
5366 * task migration.
5367 */
5368 mc.moving_task = NULL;
5369 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005370 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005371 mc.from = NULL;
5372 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005373 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005374 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005375}
5376
Li Zefan761b3ef2012-01-31 13:47:36 +08005377static int mem_cgroup_can_attach(struct cgroup *cgroup,
5378 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005379{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005380 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005381 int ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005382 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005383
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005384 if (memcg->move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005385 struct mm_struct *mm;
5386 struct mem_cgroup *from = mem_cgroup_from_task(p);
5387
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005388 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005389
5390 mm = get_task_mm(p);
5391 if (!mm)
5392 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005393 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005394 if (mm->owner == p) {
5395 VM_BUG_ON(mc.from);
5396 VM_BUG_ON(mc.to);
5397 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005398 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005399 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005400 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005401 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005402 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005403 mc.to = memcg;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005404 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005405 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005406
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005407 ret = mem_cgroup_precharge_mc(mm);
5408 if (ret)
5409 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005410 }
5411 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005412 }
5413 return ret;
5414}
5415
Li Zefan761b3ef2012-01-31 13:47:36 +08005416static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5417 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005418{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005419 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005420}
5421
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005422static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5423 unsigned long addr, unsigned long end,
5424 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005425{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005426 int ret = 0;
5427 struct vm_area_struct *vma = walk->private;
5428 pte_t *pte;
5429 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005430 enum mc_target_type target_type;
5431 union mc_target target;
5432 struct page *page;
5433 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005434
Naoya Horiguchi12724852012-03-21 16:34:28 -07005435 /*
5436 * We don't take compound_lock() here but no race with splitting thp
5437 * happens because:
5438 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
5439 * under splitting, which means there's no concurrent thp split,
5440 * - if another thread runs into split_huge_page() just after we
5441 * entered this if-block, the thread must wait for page table lock
5442 * to be unlocked in __split_huge_page_splitting(), where the main
5443 * part of thp split is not executed yet.
5444 */
5445 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07005446 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005447 spin_unlock(&vma->vm_mm->page_table_lock);
5448 return 0;
5449 }
5450 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5451 if (target_type == MC_TARGET_PAGE) {
5452 page = target.page;
5453 if (!isolate_lru_page(page)) {
5454 pc = lookup_page_cgroup(page);
5455 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005456 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005457 mc.precharge -= HPAGE_PMD_NR;
5458 mc.moved_charge += HPAGE_PMD_NR;
5459 }
5460 putback_lru_page(page);
5461 }
5462 put_page(page);
5463 }
5464 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005465 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005466 }
5467
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005468 if (pmd_trans_unstable(pmd))
5469 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005470retry:
5471 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5472 for (; addr != end; addr += PAGE_SIZE) {
5473 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08005474 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005475
5476 if (!mc.precharge)
5477 break;
5478
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005479 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005480 case MC_TARGET_PAGE:
5481 page = target.page;
5482 if (isolate_lru_page(page))
5483 goto put;
5484 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07005485 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005486 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005487 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005488 /* we uncharge from mc.from later. */
5489 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005490 }
5491 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005492put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005493 put_page(page);
5494 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005495 case MC_TARGET_SWAP:
5496 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07005497 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005498 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005499 /* we fixup refcnts and charges later. */
5500 mc.moved_swap++;
5501 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08005502 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005503 default:
5504 break;
5505 }
5506 }
5507 pte_unmap_unlock(pte - 1, ptl);
5508 cond_resched();
5509
5510 if (addr != end) {
5511 /*
5512 * We have consumed all precharges we got in can_attach().
5513 * We try charge one by one, but don't do any additional
5514 * charges to mc.to if we have failed in charge once in attach()
5515 * phase.
5516 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005517 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005518 if (!ret)
5519 goto retry;
5520 }
5521
5522 return ret;
5523}
5524
5525static void mem_cgroup_move_charge(struct mm_struct *mm)
5526{
5527 struct vm_area_struct *vma;
5528
5529 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005530retry:
5531 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5532 /*
5533 * Someone who are holding the mmap_sem might be waiting in
5534 * waitq. So we cancel all extra charges, wake up all waiters,
5535 * and retry. Because we cancel precharges, we might not be able
5536 * to move enough charges, but moving charge is a best-effort
5537 * feature anyway, so it wouldn't be a big problem.
5538 */
5539 __mem_cgroup_clear_mc();
5540 cond_resched();
5541 goto retry;
5542 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005543 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5544 int ret;
5545 struct mm_walk mem_cgroup_move_charge_walk = {
5546 .pmd_entry = mem_cgroup_move_charge_pte_range,
5547 .mm = mm,
5548 .private = vma,
5549 };
5550 if (is_vm_hugetlb_page(vma))
5551 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005552 ret = walk_page_range(vma->vm_start, vma->vm_end,
5553 &mem_cgroup_move_charge_walk);
5554 if (ret)
5555 /*
5556 * means we have consumed all precharges and failed in
5557 * doing additional charge. Just abandon here.
5558 */
5559 break;
5560 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005561 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005562}
5563
Li Zefan761b3ef2012-01-31 13:47:36 +08005564static void mem_cgroup_move_task(struct cgroup *cont,
5565 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08005566{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005567 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005568 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005569
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005570 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005571 if (mc.to)
5572 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005573 mmput(mm);
5574 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005575 if (mc.to)
5576 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005577}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005578#else /* !CONFIG_MMU */
Li Zefan761b3ef2012-01-31 13:47:36 +08005579static int mem_cgroup_can_attach(struct cgroup *cgroup,
5580 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005581{
5582 return 0;
5583}
Li Zefan761b3ef2012-01-31 13:47:36 +08005584static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5585 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005586{
5587}
Li Zefan761b3ef2012-01-31 13:47:36 +08005588static void mem_cgroup_move_task(struct cgroup *cont,
5589 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005590{
5591}
5592#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005593
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005594struct cgroup_subsys mem_cgroup_subsys = {
5595 .name = "memory",
5596 .subsys_id = mem_cgroup_subsys_id,
5597 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005598 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005599 .destroy = mem_cgroup_destroy,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005600 .can_attach = mem_cgroup_can_attach,
5601 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005602 .attach = mem_cgroup_move_task,
Tejun Heo6bc10342012-04-01 12:09:55 -07005603 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005604 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005605 .use_id = 1,
Tejun Heo48ddbe12012-04-01 12:09:56 -07005606 .__DEPRECATED_clear_css_refs = true,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005607};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005608
Andrew Mortonc255a452012-07-31 16:43:02 -07005609#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08005610static int __init enable_swap_account(char *s)
5611{
5612 /* consider enabled if no parameter or 1 is given */
Michal Hockoa2c89902011-05-24 17:12:50 -07005613 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005614 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07005615 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005616 really_do_swap_account = 0;
5617 return 1;
5618}
Michal Hockoa2c89902011-05-24 17:12:50 -07005619__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005620
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005621#endif