blob: bba1cb4bbb82aa6e8a5ad50c0c28cbed99bf0dc7 [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08009 * Memory thresholds
10 * Copyright (C) 2009 Nokia Corporation
11 * Author: Kirill A. Shutemov
12 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -080013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 */
23
24#include <linux/res_counter.h>
25#include <linux/memcontrol.h>
26#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080027#include <linux/mm.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080028#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080029#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080030#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080031#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080032#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080033#include <linux/bit_spinlock.h>
34#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070035#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040036#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080037#include <linux/mutex.h>
Balbir Singhf64c3f52009-09-23 15:56:37 -070038#include <linux/rbtree.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070039#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080040#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080041#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080042#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080043#include <linux/eventfd.h>
44#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080045#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080046#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070047#include <linux/vmalloc.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070048#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070049#include <linux/page_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080050#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070051#include <linux/oom.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080052#include "internal.h"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000053#include <net/sock.h>
Michal Hocko4bd2c1e2012-10-08 16:33:10 -070054#include <net/ip.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +000055#include <net/tcp_memcontrol.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080056
Balbir Singh8697d332008-02-07 00:13:59 -080057#include <asm/uaccess.h>
58
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070059#include <trace/events/vmscan.h>
60
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070061struct cgroup_subsys mem_cgroup_subsys __read_mostly;
David Rientjes68ae5642012-12-12 13:51:57 -080062EXPORT_SYMBOL(mem_cgroup_subsys);
63
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070064#define MEM_CGROUP_RECLAIM_RETRIES 5
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -070065static struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080066
Andrew Mortonc255a452012-07-31 16:43:02 -070067#ifdef CONFIG_MEMCG_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070068/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080069int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080070
71/* for remember boot option*/
Andrew Mortonc255a452012-07-31 16:43:02 -070072#ifdef CONFIG_MEMCG_SWAP_ENABLED
Michal Hockoa42c3902010-11-24 12:57:08 -080073static int really_do_swap_account __initdata = 1;
74#else
75static int really_do_swap_account __initdata = 0;
76#endif
77
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080078#else
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -070079#define do_swap_account 0
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080080#endif
81
82
Balbir Singh8cdea7c2008-02-07 00:13:50 -080083/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080084 * Statistics for memory cgroup.
85 */
86enum mem_cgroup_stat_index {
87 /*
88 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
89 */
90 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
Balbir Singhd69b0422009-06-17 16:26:34 -070091 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
KAMEZAWA Hiroyukid8046582009-12-15 16:47:09 -080092 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -070093 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080094 MEM_CGROUP_STAT_NSTATS,
95};
96
Johannes Weineraf7c4b02012-05-29 15:07:08 -070097static const char * const mem_cgroup_stat_names[] = {
98 "cache",
99 "rss",
100 "mapped_file",
101 "swap",
102};
103
Johannes Weinere9f89742011-03-23 16:42:37 -0700104enum mem_cgroup_events_index {
105 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
106 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -0700107 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
108 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700109 MEM_CGROUP_EVENTS_NSTATS,
110};
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700111
112static const char * const mem_cgroup_events_names[] = {
113 "pgpgin",
114 "pgpgout",
115 "pgfault",
116 "pgmajfault",
117};
118
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700119/*
120 * Per memcg event counter is incremented at every pagein/pageout. With THP,
121 * it will be incremated by the number of pages. This counter is used for
122 * for trigger some periodic events. This is straightforward and better
123 * than using jiffies etc. to handle periodic memcg event.
124 */
125enum mem_cgroup_events_target {
126 MEM_CGROUP_TARGET_THRESH,
127 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700128 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700129 MEM_CGROUP_NTARGETS,
130};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700131#define THRESHOLDS_EVENTS_TARGET 128
132#define SOFTLIMIT_EVENTS_TARGET 1024
133#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700134
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800135struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700136 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700137 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700138 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700139 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800140};
141
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800142struct mem_cgroup_reclaim_iter {
143 /* css_id of the last scanned hierarchy member */
144 int position;
145 /* scan generation, increased every round-trip */
146 unsigned int generation;
147};
148
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800149/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800150 * per-zone information in memory controller.
151 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800152struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800153 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700154 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800155
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800156 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
157
Balbir Singhf64c3f52009-09-23 15:56:37 -0700158 struct rb_node tree_node; /* RB tree node */
159 unsigned long long usage_in_excess;/* Set to the value by which */
160 /* the soft limit is exceeded*/
161 bool on_tree;
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700162 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700163 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800164};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800165
166struct mem_cgroup_per_node {
167 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
168};
169
170struct mem_cgroup_lru_info {
171 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
172};
173
174/*
Balbir Singhf64c3f52009-09-23 15:56:37 -0700175 * Cgroups above their limits are maintained in a RB-Tree, independent of
176 * their hierarchy representation
177 */
178
179struct mem_cgroup_tree_per_zone {
180 struct rb_root rb_root;
181 spinlock_t lock;
182};
183
184struct mem_cgroup_tree_per_node {
185 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
186};
187
188struct mem_cgroup_tree {
189 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
190};
191
192static struct mem_cgroup_tree soft_limit_tree __read_mostly;
193
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800194struct mem_cgroup_threshold {
195 struct eventfd_ctx *eventfd;
196 u64 threshold;
197};
198
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700199/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800200struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700201 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700202 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800203 /* Size of entries[] */
204 unsigned int size;
205 /* Array of thresholds */
206 struct mem_cgroup_threshold entries[0];
207};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700208
209struct mem_cgroup_thresholds {
210 /* Primary thresholds array */
211 struct mem_cgroup_threshold_ary *primary;
212 /*
213 * Spare threshold array.
214 * This is needed to make mem_cgroup_unregister_event() "never fail".
215 * It must be able to store at least primary->size - 1 entries.
216 */
217 struct mem_cgroup_threshold_ary *spare;
218};
219
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700220/* for OOM */
221struct mem_cgroup_eventfd_list {
222 struct list_head list;
223 struct eventfd_ctx *eventfd;
224};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800225
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700226static void mem_cgroup_threshold(struct mem_cgroup *memcg);
227static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800228
Balbir Singhf64c3f52009-09-23 15:56:37 -0700229/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800230 * The memory controller data structure. The memory controller controls both
231 * page cache and RSS per cgroup. We would eventually like to provide
232 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
233 * to help the administrator determine what knobs to tune.
234 *
235 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800236 * we hit the water mark. May be even add a low water mark, such that
237 * no reclaim occurs from a cgroup at it's low water mark, this is
238 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800239 */
240struct mem_cgroup {
241 struct cgroup_subsys_state css;
242 /*
243 * the counter to account for memory usage
244 */
245 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700246
247 union {
248 /*
249 * the counter to account for mem+swap usage.
250 */
251 struct res_counter memsw;
252
253 /*
254 * rcu_freeing is used only when freeing struct mem_cgroup,
255 * so put it into a union to avoid wasting more memory.
256 * It must be disjoint from the css field. It could be
257 * in a union with the res field, but res plays a much
258 * larger part in mem_cgroup life than memsw, and might
259 * be of interest, even at time of free, when debugging.
260 * So share rcu_head with the less interesting memsw.
261 */
262 struct rcu_head rcu_freeing;
263 /*
Glauber Costa3afe36b2012-05-29 15:07:10 -0700264 * We also need some space for a worker in deferred freeing.
265 * By the time we call it, rcu_freeing is no longer in use.
Hugh Dickins59927fb2012-03-15 15:17:07 -0700266 */
267 struct work_struct work_freeing;
268 };
269
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800270 /*
Glauber Costa510fc4e2012-12-18 14:21:47 -0800271 * the counter to account for kernel memory usage.
272 */
273 struct res_counter kmem;
274 /*
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800275 * Per cgroup active and inactive list, similar to the
276 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800277 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800278 struct mem_cgroup_lru_info info;
Ying Han889976d2011-05-26 16:25:33 -0700279 int last_scanned_node;
280#if MAX_NUMNODES > 1
281 nodemask_t scan_nodes;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700282 atomic_t numainfo_events;
283 atomic_t numainfo_updating;
Ying Han889976d2011-05-26 16:25:33 -0700284#endif
Balbir Singh18f59ea2009-01-07 18:08:07 -0800285 /*
286 * Should the accounting and control be hierarchical, per subtree?
287 */
288 bool use_hierarchy;
Glauber Costa510fc4e2012-12-18 14:21:47 -0800289 unsigned long kmem_account_flags; /* See KMEM_ACCOUNTED_*, below */
Michal Hocko79dfdac2011-07-26 16:08:23 -0700290
291 bool oom_lock;
292 atomic_t under_oom;
293
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800294 atomic_t refcnt;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800295
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700296 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700297 /* OOM-Killer disable */
298 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800299
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700300 /* set when res.limit == memsw.limit */
301 bool memsw_is_minimum;
302
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800303 /* protect arrays of thresholds */
304 struct mutex thresholds_lock;
305
306 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700307 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700308
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800309 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700310 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700311
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700312 /* For oom notifier event fd */
313 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700314
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800315 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800316 * Should we move charges of a task when a task is moved into this
317 * mem_cgroup ? And what type of charges should we move ?
318 */
319 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800320 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700321 * set > 0 if pages under this cgroup are moving to other cgroup.
322 */
323 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700324 /* taken only while moving_account > 0 */
325 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700326 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800327 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800328 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700329 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700330 /*
331 * used when a cpu is offlined or other synchronizations
332 * See mem_cgroup_read_stat().
333 */
334 struct mem_cgroup_stat_cpu nocpu_base;
335 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000336
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700337#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000338 struct tcp_memcontrol tcp_mem;
339#endif
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800340};
341
Glauber Costa510fc4e2012-12-18 14:21:47 -0800342/* internal only representation about the status of kmem accounting. */
343enum {
344 KMEM_ACCOUNTED_ACTIVE = 0, /* accounted by this cgroup itself */
345};
346
347#define KMEM_ACCOUNTED_MASK (1 << KMEM_ACCOUNTED_ACTIVE)
348
349#ifdef CONFIG_MEMCG_KMEM
350static inline void memcg_kmem_set_active(struct mem_cgroup *memcg)
351{
352 set_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
353}
354#endif
355
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800356/* Stuffs for move charges at task migration. */
357/*
358 * Types of charges to be moved. "move_charge_at_immitgrate" is treated as a
359 * left-shifted bitmap of these types.
360 */
361enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800362 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700363 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800364 NR_MOVE_TYPE,
365};
366
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800367/* "mc" and its members are protected by cgroup_mutex */
368static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800369 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800370 struct mem_cgroup *from;
371 struct mem_cgroup *to;
372 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800373 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800374 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800375 struct task_struct *moving_task; /* a task moving charges */
376 wait_queue_head_t waitq; /* a waitq for other context */
377} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700378 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800379 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
380};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800381
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700382static bool move_anon(void)
383{
384 return test_bit(MOVE_CHARGE_TYPE_ANON,
385 &mc.to->move_charge_at_immigrate);
386}
387
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700388static bool move_file(void)
389{
390 return test_bit(MOVE_CHARGE_TYPE_FILE,
391 &mc.to->move_charge_at_immigrate);
392}
393
Balbir Singh4e416952009-09-23 15:56:39 -0700394/*
395 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
396 * limit reclaim to prevent infinite loops, if they ever occur.
397 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700398#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
399#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700400
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800401enum charge_type {
402 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700403 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800404 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700405 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700406 NR_CHARGE_TYPE,
407};
408
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800409/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800410enum res_type {
411 _MEM,
412 _MEMSWAP,
413 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800414 _KMEM,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800415};
416
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700417#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
418#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800419#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700420/* Used for OOM nofiier */
421#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800422
Balbir Singh75822b42009-09-23 15:56:38 -0700423/*
424 * Reclaim flags for mem_cgroup_hierarchical_reclaim
425 */
426#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
427#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
428#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
429#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
430
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700431static void mem_cgroup_get(struct mem_cgroup *memcg);
432static void mem_cgroup_put(struct mem_cgroup *memcg);
Glauber Costae1aab162011-12-11 21:47:03 +0000433
Wanpeng Lib2145142012-07-31 16:46:01 -0700434static inline
435struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
436{
437 return container_of(s, struct mem_cgroup, css);
438}
439
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700440static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
441{
442 return (memcg == root_mem_cgroup);
443}
444
Glauber Costae1aab162011-12-11 21:47:03 +0000445/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700446#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000447
Glauber Costae1aab162011-12-11 21:47:03 +0000448void sock_update_memcg(struct sock *sk)
449{
Glauber Costa376be5f2012-01-20 04:57:14 +0000450 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000451 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700452 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000453
454 BUG_ON(!sk->sk_prot->proto_cgroup);
455
Glauber Costaf3f511e2012-01-05 20:16:39 +0000456 /* Socket cloning can throw us here with sk_cgrp already
457 * filled. It won't however, necessarily happen from
458 * process context. So the test for root memcg given
459 * the current task's memcg won't help us in this case.
460 *
461 * Respecting the original socket's memcg is a better
462 * decision in this case.
463 */
464 if (sk->sk_cgrp) {
465 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
466 mem_cgroup_get(sk->sk_cgrp->memcg);
467 return;
468 }
469
Glauber Costae1aab162011-12-11 21:47:03 +0000470 rcu_read_lock();
471 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700472 cg_proto = sk->sk_prot->proto_cgroup(memcg);
473 if (!mem_cgroup_is_root(memcg) && memcg_proto_active(cg_proto)) {
Glauber Costae1aab162011-12-11 21:47:03 +0000474 mem_cgroup_get(memcg);
Glauber Costa3f134612012-05-29 15:07:11 -0700475 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000476 }
477 rcu_read_unlock();
478 }
479}
480EXPORT_SYMBOL(sock_update_memcg);
481
482void sock_release_memcg(struct sock *sk)
483{
Glauber Costa376be5f2012-01-20 04:57:14 +0000484 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000485 struct mem_cgroup *memcg;
486 WARN_ON(!sk->sk_cgrp->memcg);
487 memcg = sk->sk_cgrp->memcg;
488 mem_cgroup_put(memcg);
489 }
490}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000491
492struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
493{
494 if (!memcg || mem_cgroup_is_root(memcg))
495 return NULL;
496
497 return &memcg->tcp_mem.cg_proto;
498}
499EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000500
Glauber Costa3f134612012-05-29 15:07:11 -0700501static void disarm_sock_keys(struct mem_cgroup *memcg)
502{
503 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
504 return;
505 static_key_slow_dec(&memcg_socket_limit_enabled);
506}
507#else
508static void disarm_sock_keys(struct mem_cgroup *memcg)
509{
510}
511#endif
512
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700513static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800514
Balbir Singhf64c3f52009-09-23 15:56:37 -0700515static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700516mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700517{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700518 return &memcg->info.nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700519}
520
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700521struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100522{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700523 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100524}
525
Balbir Singhf64c3f52009-09-23 15:56:37 -0700526static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700527page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700528{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700529 int nid = page_to_nid(page);
530 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700531
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700532 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700533}
534
535static struct mem_cgroup_tree_per_zone *
536soft_limit_tree_node_zone(int nid, int zid)
537{
538 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
539}
540
541static struct mem_cgroup_tree_per_zone *
542soft_limit_tree_from_page(struct page *page)
543{
544 int nid = page_to_nid(page);
545 int zid = page_zonenum(page);
546
547 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
548}
549
550static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700551__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700552 struct mem_cgroup_per_zone *mz,
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700553 struct mem_cgroup_tree_per_zone *mctz,
554 unsigned long long new_usage_in_excess)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700555{
556 struct rb_node **p = &mctz->rb_root.rb_node;
557 struct rb_node *parent = NULL;
558 struct mem_cgroup_per_zone *mz_node;
559
560 if (mz->on_tree)
561 return;
562
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700563 mz->usage_in_excess = new_usage_in_excess;
564 if (!mz->usage_in_excess)
565 return;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700566 while (*p) {
567 parent = *p;
568 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
569 tree_node);
570 if (mz->usage_in_excess < mz_node->usage_in_excess)
571 p = &(*p)->rb_left;
572 /*
573 * We can't avoid mem cgroups that are over their soft
574 * limit by the same amount
575 */
576 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
577 p = &(*p)->rb_right;
578 }
579 rb_link_node(&mz->tree_node, parent, p);
580 rb_insert_color(&mz->tree_node, &mctz->rb_root);
581 mz->on_tree = true;
Balbir Singh4e416952009-09-23 15:56:39 -0700582}
583
584static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700585__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -0700586 struct mem_cgroup_per_zone *mz,
587 struct mem_cgroup_tree_per_zone *mctz)
588{
589 if (!mz->on_tree)
590 return;
591 rb_erase(&mz->tree_node, &mctz->rb_root);
592 mz->on_tree = false;
593}
594
595static void
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700596mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
Balbir Singhf64c3f52009-09-23 15:56:37 -0700597 struct mem_cgroup_per_zone *mz,
598 struct mem_cgroup_tree_per_zone *mctz)
599{
600 spin_lock(&mctz->lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700601 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700602 spin_unlock(&mctz->lock);
603}
604
Balbir Singhf64c3f52009-09-23 15:56:37 -0700605
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700606static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700607{
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700608 unsigned long long excess;
Balbir Singhf64c3f52009-09-23 15:56:37 -0700609 struct mem_cgroup_per_zone *mz;
610 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700611 int nid = page_to_nid(page);
612 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700613 mctz = soft_limit_tree_from_page(page);
614
615 /*
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700616 * Necessary to update all ancestors when hierarchy is used.
617 * because their event counter is not touched.
Balbir Singhf64c3f52009-09-23 15:56:37 -0700618 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700619 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
620 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
621 excess = res_counter_soft_limit_excess(&memcg->res);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700622 /*
623 * We have to update the tree if mz is on RB-tree or
624 * mem is over its softlimit.
625 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700626 if (excess || mz->on_tree) {
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700627 spin_lock(&mctz->lock);
628 /* if on-tree, remove it */
629 if (mz->on_tree)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700630 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700631 /*
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -0700632 * Insert again. mz->usage_in_excess will be updated.
633 * If excess is 0, no tree ops.
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700634 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700635 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -0700636 spin_unlock(&mctz->lock);
637 }
Balbir Singhf64c3f52009-09-23 15:56:37 -0700638 }
639}
640
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700641static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700642{
643 int node, zone;
644 struct mem_cgroup_per_zone *mz;
645 struct mem_cgroup_tree_per_zone *mctz;
646
Bob Liu3ed28fa2012-01-12 17:19:04 -0800647 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -0700648 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700649 mz = mem_cgroup_zoneinfo(memcg, node, zone);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700650 mctz = soft_limit_tree_node_zone(node, zone);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700651 mem_cgroup_remove_exceeded(memcg, mz, mctz);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700652 }
653 }
654}
655
Balbir Singh4e416952009-09-23 15:56:39 -0700656static struct mem_cgroup_per_zone *
657__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
658{
659 struct rb_node *rightmost = NULL;
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700660 struct mem_cgroup_per_zone *mz;
Balbir Singh4e416952009-09-23 15:56:39 -0700661
662retry:
KAMEZAWA Hiroyuki26251ea2009-10-01 15:44:08 -0700663 mz = NULL;
Balbir Singh4e416952009-09-23 15:56:39 -0700664 rightmost = rb_last(&mctz->rb_root);
665 if (!rightmost)
666 goto done; /* Nothing to reclaim from */
667
668 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
669 /*
670 * Remove the node now but someone else can add it back,
671 * we will to add it back at the end of reclaim to its correct
672 * position in the tree.
673 */
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700674 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
675 if (!res_counter_soft_limit_excess(&mz->memcg->res) ||
676 !css_tryget(&mz->memcg->css))
Balbir Singh4e416952009-09-23 15:56:39 -0700677 goto retry;
678done:
679 return mz;
680}
681
682static struct mem_cgroup_per_zone *
683mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
684{
685 struct mem_cgroup_per_zone *mz;
686
687 spin_lock(&mctz->lock);
688 mz = __mem_cgroup_largest_soft_limit_node(mctz);
689 spin_unlock(&mctz->lock);
690 return mz;
691}
692
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700693/*
694 * Implementation Note: reading percpu statistics for memcg.
695 *
696 * Both of vmstat[] and percpu_counter has threshold and do periodic
697 * synchronization to implement "quick" read. There are trade-off between
698 * reading cost and precision of value. Then, we may have a chance to implement
699 * a periodic synchronizion of counter in memcg's counter.
700 *
701 * But this _read() function is used for user interface now. The user accounts
702 * memory usage by memory cgroup and he _always_ requires exact value because
703 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
704 * have to visit all online cpus and make sum. So, for now, unnecessary
705 * synchronization is not implemented. (just implemented for cpu hotplug)
706 *
707 * If there are kernel internal actions which can make use of some not-exact
708 * value, and reading all cpu value can be performance bottleneck in some
709 * common workload, threashold and synchonization as vmstat[] should be
710 * implemented.
711 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700712static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700713 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800714{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700715 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800716 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800717
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700718 get_online_cpus();
719 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700720 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700721#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700722 spin_lock(&memcg->pcp_counter_lock);
723 val += memcg->nocpu_base.count[idx];
724 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700725#endif
726 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800727 return val;
728}
729
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700730static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700731 bool charge)
732{
733 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700734 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700735}
736
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700737static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700738 enum mem_cgroup_events_index idx)
739{
740 unsigned long val = 0;
741 int cpu;
742
743 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700744 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700745#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700746 spin_lock(&memcg->pcp_counter_lock);
747 val += memcg->nocpu_base.events[idx];
748 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700749#endif
750 return val;
751}
752
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700753static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700754 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800755{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800756 preempt_disable();
757
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700758 /*
759 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
760 * counted as CACHE even if it's on ANON LRU.
761 */
762 if (anon)
763 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700764 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800765 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700766 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700767 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700768
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800769 /* pagein of a big page is an event. So, ignore page size */
770 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700771 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800772 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700773 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800774 nr_pages = -nr_pages; /* for event */
775 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800776
Johannes Weiner13114712012-05-29 15:07:07 -0700777 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800778
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800779 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800780}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800781
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700782unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700783mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700784{
785 struct mem_cgroup_per_zone *mz;
786
787 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
788 return mz->lru_size[lru];
789}
790
791static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700792mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700793 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700794{
795 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700796 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700797 unsigned long ret = 0;
798
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700799 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700800
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700801 for_each_lru(lru) {
802 if (BIT(lru) & lru_mask)
803 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700804 }
805 return ret;
806}
807
808static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700809mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700810 int nid, unsigned int lru_mask)
811{
Ying Han889976d2011-05-26 16:25:33 -0700812 u64 total = 0;
813 int zid;
814
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700815 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700816 total += mem_cgroup_zone_nr_lru_pages(memcg,
817 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700818
Ying Han889976d2011-05-26 16:25:33 -0700819 return total;
820}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700821
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700822static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700823 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800824{
Ying Han889976d2011-05-26 16:25:33 -0700825 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800826 u64 total = 0;
827
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800828 for_each_node_state(nid, N_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700829 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800830 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800831}
832
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800833static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
834 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800835{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700836 unsigned long val, next;
837
Johannes Weiner13114712012-05-29 15:07:07 -0700838 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700839 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700840 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800841 if ((long)next - (long)val < 0) {
842 switch (target) {
843 case MEM_CGROUP_TARGET_THRESH:
844 next = val + THRESHOLDS_EVENTS_TARGET;
845 break;
846 case MEM_CGROUP_TARGET_SOFTLIMIT:
847 next = val + SOFTLIMIT_EVENTS_TARGET;
848 break;
849 case MEM_CGROUP_TARGET_NUMAINFO:
850 next = val + NUMAINFO_EVENTS_TARGET;
851 break;
852 default:
853 break;
854 }
855 __this_cpu_write(memcg->stat->targets[target], next);
856 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700857 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800858 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800859}
860
861/*
862 * Check events in order.
863 *
864 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700865static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800866{
Steven Rostedt47994012011-11-02 13:38:33 -0700867 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800868 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800869 if (unlikely(mem_cgroup_event_ratelimit(memcg,
870 MEM_CGROUP_TARGET_THRESH))) {
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800871 bool do_softlimit;
872 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800873
874 do_softlimit = mem_cgroup_event_ratelimit(memcg,
875 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700876#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800877 do_numainfo = mem_cgroup_event_ratelimit(memcg,
878 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700879#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800880 preempt_enable();
881
882 mem_cgroup_threshold(memcg);
883 if (unlikely(do_softlimit))
884 mem_cgroup_update_tree(memcg, page);
885#if MAX_NUMNODES > 1
886 if (unlikely(do_numainfo))
887 atomic_inc(&memcg->numainfo_events);
888#endif
889 } else
890 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800891}
892
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000893struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800894{
Wanpeng Lib2145142012-07-31 16:46:01 -0700895 return mem_cgroup_from_css(
896 cgroup_subsys_state(cont, mem_cgroup_subsys_id));
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800897}
898
Balbir Singhcf475ad2008-04-29 01:00:16 -0700899struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800900{
Balbir Singh31a78f22008-09-28 23:09:31 +0100901 /*
902 * mm_update_next_owner() may clear mm->owner to NULL
903 * if it races with swapoff, page migration, etc.
904 * So this can be called with p == NULL.
905 */
906 if (unlikely(!p))
907 return NULL;
908
Wanpeng Lib2145142012-07-31 16:46:01 -0700909 return mem_cgroup_from_css(task_subsys_state(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800910}
911
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700912struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800913{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700914 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700915
916 if (!mm)
917 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800918 /*
919 * Because we have no locks, mm->owner's may be being moved to other
920 * cgroup. We use css_tryget() here even if this looks
921 * pessimistic (rather than adding locks here).
922 */
923 rcu_read_lock();
924 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700925 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
926 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800927 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700928 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800929 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700930 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800931}
932
Johannes Weiner56600482012-01-12 17:17:59 -0800933/**
934 * mem_cgroup_iter - iterate over memory cgroup hierarchy
935 * @root: hierarchy root
936 * @prev: previously returned memcg, NULL on first invocation
937 * @reclaim: cookie for shared reclaim walks, NULL for full walks
938 *
939 * Returns references to children of the hierarchy below @root, or
940 * @root itself, or %NULL after a full round-trip.
941 *
942 * Caller must pass the return value in @prev on subsequent
943 * invocations for reference counting, or use mem_cgroup_iter_break()
944 * to cancel a hierarchy walk before the round-trip is complete.
945 *
946 * Reclaimers can specify a zone and a priority level in @reclaim to
947 * divide up the memcgs in the hierarchy among all concurrent
948 * reclaimers operating on the same zone and priority.
949 */
950struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
951 struct mem_cgroup *prev,
952 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700953{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800954 struct mem_cgroup *memcg = NULL;
955 int id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700956
Johannes Weiner56600482012-01-12 17:17:59 -0800957 if (mem_cgroup_disabled())
958 return NULL;
959
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700960 if (!root)
961 root = root_mem_cgroup;
962
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800963 if (prev && !reclaim)
964 id = css_id(&prev->css);
965
966 if (prev && prev != root)
967 css_put(&prev->css);
968
969 if (!root->use_hierarchy && root != root_mem_cgroup) {
970 if (prev)
971 return NULL;
972 return root;
973 }
974
975 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800976 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800977 struct cgroup_subsys_state *css;
978
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800979 if (reclaim) {
980 int nid = zone_to_nid(reclaim->zone);
981 int zid = zone_idx(reclaim->zone);
982 struct mem_cgroup_per_zone *mz;
983
984 mz = mem_cgroup_zoneinfo(root, nid, zid);
985 iter = &mz->reclaim_iter[reclaim->priority];
986 if (prev && reclaim->generation != iter->generation)
987 return NULL;
988 id = iter->position;
989 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800990
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700991 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800992 css = css_get_next(&mem_cgroup_subsys, id + 1, &root->css, &id);
993 if (css) {
994 if (css == &root->css || css_tryget(css))
Wanpeng Lib2145142012-07-31 16:46:01 -0700995 memcg = mem_cgroup_from_css(css);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800996 } else
997 id = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700998 rcu_read_unlock();
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700999
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001000 if (reclaim) {
1001 iter->position = id;
1002 if (!css)
1003 iter->generation++;
1004 else if (!prev && memcg)
1005 reclaim->generation = iter->generation;
1006 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001007
1008 if (prev && !css)
1009 return NULL;
1010 }
1011 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001012}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001013
Johannes Weiner56600482012-01-12 17:17:59 -08001014/**
1015 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1016 * @root: hierarchy root
1017 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1018 */
1019void mem_cgroup_iter_break(struct mem_cgroup *root,
1020 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001021{
1022 if (!root)
1023 root = root_mem_cgroup;
1024 if (prev && prev != root)
1025 css_put(&prev->css);
1026}
1027
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001028/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001029 * Iteration constructs for visiting all cgroups (under a tree). If
1030 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1031 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001032 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001033#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001034 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001035 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001036 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001037
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001038#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001039 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001040 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001041 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001042
David Rientjes68ae5642012-12-12 13:51:57 -08001043void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001044{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001045 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001046
Ying Han456f9982011-05-26 16:25:38 -07001047 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001048 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1049 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001050 goto out;
1051
1052 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001053 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001054 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1055 break;
1056 case PGMAJFAULT:
1057 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001058 break;
1059 default:
1060 BUG();
1061 }
1062out:
1063 rcu_read_unlock();
1064}
David Rientjes68ae5642012-12-12 13:51:57 -08001065EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001066
Johannes Weiner925b7672012-01-12 17:18:15 -08001067/**
1068 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1069 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001070 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001071 *
1072 * Returns the lru list vector holding pages for the given @zone and
1073 * @mem. This can be the global zone lruvec, if the memory controller
1074 * is disabled.
1075 */
1076struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1077 struct mem_cgroup *memcg)
1078{
1079 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001080 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001081
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001082 if (mem_cgroup_disabled()) {
1083 lruvec = &zone->lruvec;
1084 goto out;
1085 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001086
1087 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001088 lruvec = &mz->lruvec;
1089out:
1090 /*
1091 * Since a node can be onlined after the mem_cgroup was created,
1092 * we have to be prepared to initialize lruvec->zone here;
1093 * and if offlined then reonlined, we need to reinitialize it.
1094 */
1095 if (unlikely(lruvec->zone != zone))
1096 lruvec->zone = zone;
1097 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001098}
1099
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001100/*
1101 * Following LRU functions are allowed to be used without PCG_LOCK.
1102 * Operations are called by routine of global LRU independently from memcg.
1103 * What we have to take care of here is validness of pc->mem_cgroup.
1104 *
1105 * Changes to pc->mem_cgroup happens when
1106 * 1. charge
1107 * 2. moving account
1108 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1109 * It is added to LRU before charge.
1110 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1111 * When moving account, the page is not on LRU. It's isolated.
1112 */
1113
Johannes Weiner925b7672012-01-12 17:18:15 -08001114/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001115 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001116 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001117 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001118 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001119struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001120{
1121 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001122 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001123 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001124 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001125
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001126 if (mem_cgroup_disabled()) {
1127 lruvec = &zone->lruvec;
1128 goto out;
1129 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001130
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001131 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001132 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001133
1134 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001135 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001136 * an uncharged page off lru does nothing to secure
1137 * its former mem_cgroup from sudden removal.
1138 *
1139 * Our caller holds lru_lock, and PageCgroupUsed is updated
1140 * under page_cgroup lock: between them, they make all uses
1141 * of pc->mem_cgroup safe.
1142 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001143 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001144 pc->mem_cgroup = memcg = root_mem_cgroup;
1145
Johannes Weiner925b7672012-01-12 17:18:15 -08001146 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001147 lruvec = &mz->lruvec;
1148out:
1149 /*
1150 * Since a node can be onlined after the mem_cgroup was created,
1151 * we have to be prepared to initialize lruvec->zone here;
1152 * and if offlined then reonlined, we need to reinitialize it.
1153 */
1154 if (unlikely(lruvec->zone != zone))
1155 lruvec->zone = zone;
1156 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001157}
1158
1159/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001160 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1161 * @lruvec: mem_cgroup per zone lru vector
1162 * @lru: index of lru list the page is sitting on
1163 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001164 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001165 * This function must be called when a page is added to or removed from an
1166 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001167 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001168void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1169 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001170{
1171 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001172 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001173
1174 if (mem_cgroup_disabled())
1175 return;
1176
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001177 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1178 lru_size = mz->lru_size + lru;
1179 *lru_size += nr_pages;
1180 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001181}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001182
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001183/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001184 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001185 * hierarchy subtree
1186 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001187bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1188 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001189{
Johannes Weiner91c637342012-05-29 15:06:24 -07001190 if (root_memcg == memcg)
1191 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001192 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001193 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001194 return css_is_ancestor(&memcg->css, &root_memcg->css);
1195}
1196
1197static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1198 struct mem_cgroup *memcg)
1199{
1200 bool ret;
1201
Johannes Weiner91c637342012-05-29 15:06:24 -07001202 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001203 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001204 rcu_read_unlock();
1205 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001206}
1207
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001208int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001209{
1210 int ret;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001211 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001212 struct task_struct *p;
David Rientjes4c4a2212008-02-07 00:14:06 -08001213
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001214 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001215 if (p) {
1216 curr = try_get_mem_cgroup_from_mm(p->mm);
1217 task_unlock(p);
1218 } else {
1219 /*
1220 * All threads may have already detached their mm's, but the oom
1221 * killer still needs to detect if they have already been oom
1222 * killed to prevent needlessly killing additional tasks.
1223 */
1224 task_lock(task);
1225 curr = mem_cgroup_from_task(task);
1226 if (curr)
1227 css_get(&curr->css);
1228 task_unlock(task);
1229 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001230 if (!curr)
1231 return 0;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001232 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001233 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001234 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001235 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1236 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001237 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001238 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001239 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001240 return ret;
1241}
1242
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001243int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001244{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001245 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001246 unsigned long inactive;
1247 unsigned long active;
1248 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001249
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001250 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1251 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001252
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001253 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1254 if (gb)
1255 inactive_ratio = int_sqrt(10 * gb);
1256 else
1257 inactive_ratio = 1;
1258
Johannes Weiner9b272972011-11-02 13:38:23 -07001259 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001260}
1261
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001262int mem_cgroup_inactive_file_is_low(struct lruvec *lruvec)
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001263{
1264 unsigned long active;
1265 unsigned long inactive;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001266
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001267 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_FILE);
1268 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_FILE);
Rik van Riel56e49d22009-06-16 15:32:28 -07001269
1270 return (active > inactive);
1271}
1272
Balbir Singh6d61ef42009-01-07 18:08:06 -08001273#define mem_cgroup_from_res_counter(counter, member) \
1274 container_of(counter, struct mem_cgroup, member)
1275
Johannes Weiner19942822011-02-01 15:52:43 -08001276/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001277 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001278 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001279 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001280 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001281 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001282 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001283static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001284{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001285 unsigned long long margin;
1286
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001287 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001288 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001289 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001290 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001291}
1292
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001293int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001294{
1295 struct cgroup *cgrp = memcg->css.cgroup;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001296
1297 /* root ? */
1298 if (cgrp->parent == NULL)
1299 return vm_swappiness;
1300
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001301 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001302}
1303
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001304/*
1305 * memcg->moving_account is used for checking possibility that some thread is
1306 * calling move_account(). When a thread on CPU-A starts moving pages under
1307 * a memcg, other threads should check memcg->moving_account under
1308 * rcu_read_lock(), like this:
1309 *
1310 * CPU-A CPU-B
1311 * rcu_read_lock()
1312 * memcg->moving_account+1 if (memcg->mocing_account)
1313 * take heavy locks.
1314 * synchronize_rcu() update something.
1315 * rcu_read_unlock()
1316 * start move here.
1317 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001318
1319/* for quick checking without looking up memcg */
1320atomic_t memcg_moving __read_mostly;
1321
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001322static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001323{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001324 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001325 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001326 synchronize_rcu();
1327}
1328
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001329static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001330{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001331 /*
1332 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1333 * We check NULL in callee rather than caller.
1334 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001335 if (memcg) {
1336 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001337 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001338 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001339}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001340
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001341/*
1342 * 2 routines for checking "mem" is under move_account() or not.
1343 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001344 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1345 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001346 * pc->mem_cgroup may be overwritten.
1347 *
1348 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1349 * under hierarchy of moving cgroups. This is for
1350 * waiting at hith-memory prressure caused by "move".
1351 */
1352
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001353static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001354{
1355 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001356 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001357}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001358
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001359static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001360{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001361 struct mem_cgroup *from;
1362 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001363 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001364 /*
1365 * Unlike task_move routines, we access mc.to, mc.from not under
1366 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1367 */
1368 spin_lock(&mc.lock);
1369 from = mc.from;
1370 to = mc.to;
1371 if (!from)
1372 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001373
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001374 ret = mem_cgroup_same_or_subtree(memcg, from)
1375 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001376unlock:
1377 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001378 return ret;
1379}
1380
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001381static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001382{
1383 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001384 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001385 DEFINE_WAIT(wait);
1386 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1387 /* moving charge context might have finished. */
1388 if (mc.moving_task)
1389 schedule();
1390 finish_wait(&mc.waitq, &wait);
1391 return true;
1392 }
1393 }
1394 return false;
1395}
1396
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001397/*
1398 * Take this lock when
1399 * - a code tries to modify page's memcg while it's USED.
1400 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001401 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001402 */
1403static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1404 unsigned long *flags)
1405{
1406 spin_lock_irqsave(&memcg->move_lock, *flags);
1407}
1408
1409static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1410 unsigned long *flags)
1411{
1412 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1413}
1414
Balbir Singhe2224322009-04-02 16:57:39 -07001415/**
Kirill A. Shutemov6a6135b2010-03-10 15:22:25 -08001416 * mem_cgroup_print_oom_info: Called from OOM with tasklist_lock held in read mode.
Balbir Singhe2224322009-04-02 16:57:39 -07001417 * @memcg: The memory cgroup that went over limit
1418 * @p: Task that is going to be killed
1419 *
1420 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1421 * enabled
1422 */
1423void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1424{
1425 struct cgroup *task_cgrp;
1426 struct cgroup *mem_cgrp;
1427 /*
1428 * Need a buffer in BSS, can't rely on allocations. The code relies
1429 * on the assumption that OOM is serialized for memory controller.
1430 * If this assumption is broken, revisit this code.
1431 */
1432 static char memcg_name[PATH_MAX];
1433 int ret;
1434
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001435 if (!memcg || !p)
Balbir Singhe2224322009-04-02 16:57:39 -07001436 return;
1437
Balbir Singhe2224322009-04-02 16:57:39 -07001438 rcu_read_lock();
1439
1440 mem_cgrp = memcg->css.cgroup;
1441 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1442
1443 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1444 if (ret < 0) {
1445 /*
1446 * Unfortunately, we are unable to convert to a useful name
1447 * But we'll still print out the usage information
1448 */
1449 rcu_read_unlock();
1450 goto done;
1451 }
1452 rcu_read_unlock();
1453
1454 printk(KERN_INFO "Task in %s killed", memcg_name);
1455
1456 rcu_read_lock();
1457 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1458 if (ret < 0) {
1459 rcu_read_unlock();
1460 goto done;
1461 }
1462 rcu_read_unlock();
1463
1464 /*
1465 * Continues from above, so we don't need an KERN_ level
1466 */
1467 printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
1468done:
1469
1470 printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
1471 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1472 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1473 res_counter_read_u64(&memcg->res, RES_FAILCNT));
1474 printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
1475 "failcnt %llu\n",
1476 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1477 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1478 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Glauber Costa510fc4e2012-12-18 14:21:47 -08001479 printk(KERN_INFO "kmem: usage %llukB, limit %llukB, failcnt %llu\n",
1480 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1481 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1482 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Balbir Singhe2224322009-04-02 16:57:39 -07001483}
1484
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001485/*
1486 * This function returns the number of memcg under hierarchy tree. Returns
1487 * 1(self count) if no children.
1488 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001489static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001490{
1491 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001492 struct mem_cgroup *iter;
1493
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001494 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001495 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001496 return num;
1497}
1498
Balbir Singh6d61ef42009-01-07 18:08:06 -08001499/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001500 * Return the memory (and swap, if configured) limit for a memcg.
1501 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001502static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001503{
1504 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001505
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001506 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001507
David Rientjesa63d83f2010-08-09 17:19:46 -07001508 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001509 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001510 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001511 if (mem_cgroup_swappiness(memcg)) {
1512 u64 memsw;
1513
1514 limit += total_swap_pages << PAGE_SHIFT;
1515 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1516
1517 /*
1518 * If memsw is finite and limits the amount of swap space
1519 * available to this memcg, return that limit.
1520 */
1521 limit = min(limit, memsw);
1522 }
1523
1524 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001525}
1526
David Rientjes19965462012-12-11 16:00:26 -08001527static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1528 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001529{
1530 struct mem_cgroup *iter;
1531 unsigned long chosen_points = 0;
1532 unsigned long totalpages;
1533 unsigned int points = 0;
1534 struct task_struct *chosen = NULL;
1535
David Rientjes876aafb2012-07-31 16:43:48 -07001536 /*
1537 * If current has a pending SIGKILL, then automatically select it. The
1538 * goal is to allow it to allocate so that it may quickly exit and free
1539 * its memory.
1540 */
1541 if (fatal_signal_pending(current)) {
1542 set_thread_flag(TIF_MEMDIE);
1543 return;
1544 }
1545
1546 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001547 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1548 for_each_mem_cgroup_tree(iter, memcg) {
1549 struct cgroup *cgroup = iter->css.cgroup;
1550 struct cgroup_iter it;
1551 struct task_struct *task;
1552
1553 cgroup_iter_start(cgroup, &it);
1554 while ((task = cgroup_iter_next(cgroup, &it))) {
1555 switch (oom_scan_process_thread(task, totalpages, NULL,
1556 false)) {
1557 case OOM_SCAN_SELECT:
1558 if (chosen)
1559 put_task_struct(chosen);
1560 chosen = task;
1561 chosen_points = ULONG_MAX;
1562 get_task_struct(chosen);
1563 /* fall through */
1564 case OOM_SCAN_CONTINUE:
1565 continue;
1566 case OOM_SCAN_ABORT:
1567 cgroup_iter_end(cgroup, &it);
1568 mem_cgroup_iter_break(memcg, iter);
1569 if (chosen)
1570 put_task_struct(chosen);
1571 return;
1572 case OOM_SCAN_OK:
1573 break;
1574 };
1575 points = oom_badness(task, memcg, NULL, totalpages);
1576 if (points > chosen_points) {
1577 if (chosen)
1578 put_task_struct(chosen);
1579 chosen = task;
1580 chosen_points = points;
1581 get_task_struct(chosen);
1582 }
1583 }
1584 cgroup_iter_end(cgroup, &it);
1585 }
1586
1587 if (!chosen)
1588 return;
1589 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001590 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1591 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001592}
1593
Johannes Weiner56600482012-01-12 17:17:59 -08001594static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1595 gfp_t gfp_mask,
1596 unsigned long flags)
1597{
1598 unsigned long total = 0;
1599 bool noswap = false;
1600 int loop;
1601
1602 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1603 noswap = true;
1604 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1605 noswap = true;
1606
1607 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1608 if (loop)
1609 drain_all_stock_async(memcg);
1610 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1611 /*
1612 * Allow limit shrinkers, which are triggered directly
1613 * by userspace, to catch signals and stop reclaim
1614 * after minimal progress, regardless of the margin.
1615 */
1616 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1617 break;
1618 if (mem_cgroup_margin(memcg))
1619 break;
1620 /*
1621 * If nothing was reclaimed after two attempts, there
1622 * may be no reclaimable pages in this hierarchy.
1623 */
1624 if (loop && !total)
1625 break;
1626 }
1627 return total;
1628}
1629
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001630/**
1631 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001632 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001633 * @nid: the node ID to be checked.
1634 * @noswap : specify true here if the user wants flle only information.
1635 *
1636 * This function returns whether the specified memcg contains any
1637 * reclaimable pages on a node. Returns true if there are any reclaimable
1638 * pages in the node.
1639 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001640static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001641 int nid, bool noswap)
1642{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001643 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001644 return true;
1645 if (noswap || !total_swap_pages)
1646 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001647 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001648 return true;
1649 return false;
1650
1651}
Ying Han889976d2011-05-26 16:25:33 -07001652#if MAX_NUMNODES > 1
1653
1654/*
1655 * Always updating the nodemask is not very good - even if we have an empty
1656 * list or the wrong list here, we can start from some node and traverse all
1657 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1658 *
1659 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001660static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001661{
1662 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001663 /*
1664 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1665 * pagein/pageout changes since the last update.
1666 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001667 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001668 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001669 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001670 return;
1671
Ying Han889976d2011-05-26 16:25:33 -07001672 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001673 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001674
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001675 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001676
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001677 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1678 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001679 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001680
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001681 atomic_set(&memcg->numainfo_events, 0);
1682 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001683}
1684
1685/*
1686 * Selecting a node where we start reclaim from. Because what we need is just
1687 * reducing usage counter, start from anywhere is O,K. Considering
1688 * memory reclaim from current node, there are pros. and cons.
1689 *
1690 * Freeing memory from current node means freeing memory from a node which
1691 * we'll use or we've used. So, it may make LRU bad. And if several threads
1692 * hit limits, it will see a contention on a node. But freeing from remote
1693 * node means more costs for memory reclaim because of memory latency.
1694 *
1695 * Now, we use round-robin. Better algorithm is welcomed.
1696 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001697int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001698{
1699 int node;
1700
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001701 mem_cgroup_may_update_nodemask(memcg);
1702 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001703
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001704 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001705 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001706 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001707 /*
1708 * We call this when we hit limit, not when pages are added to LRU.
1709 * No LRU may hold pages because all pages are UNEVICTABLE or
1710 * memcg is too small and all pages are not on LRU. In that case,
1711 * we use curret node.
1712 */
1713 if (unlikely(node == MAX_NUMNODES))
1714 node = numa_node_id();
1715
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001716 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001717 return node;
1718}
1719
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001720/*
1721 * Check all nodes whether it contains reclaimable pages or not.
1722 * For quick scan, we make use of scan_nodes. This will allow us to skip
1723 * unused nodes. But scan_nodes is lazily updated and may not cotain
1724 * enough new information. We need to do double check.
1725 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001726static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001727{
1728 int nid;
1729
1730 /*
1731 * quick check...making use of scan_node.
1732 * We can skip unused nodes.
1733 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001734 if (!nodes_empty(memcg->scan_nodes)) {
1735 for (nid = first_node(memcg->scan_nodes);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001736 nid < MAX_NUMNODES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001737 nid = next_node(nid, memcg->scan_nodes)) {
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001738
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001739 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001740 return true;
1741 }
1742 }
1743 /*
1744 * Check rest of nodes.
1745 */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001746 for_each_node_state(nid, N_MEMORY) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001747 if (node_isset(nid, memcg->scan_nodes))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001748 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001749 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001750 return true;
1751 }
1752 return false;
1753}
1754
Ying Han889976d2011-05-26 16:25:33 -07001755#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001756int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001757{
1758 return 0;
1759}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001760
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001761static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001762{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001763 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001764}
Ying Han889976d2011-05-26 16:25:33 -07001765#endif
1766
Johannes Weiner56600482012-01-12 17:17:59 -08001767static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1768 struct zone *zone,
1769 gfp_t gfp_mask,
1770 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001771{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001772 struct mem_cgroup *victim = NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001773 int total = 0;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001774 int loop = 0;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001775 unsigned long excess;
Johannes Weiner185efc02011-09-14 16:21:58 -07001776 unsigned long nr_scanned;
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001777 struct mem_cgroup_reclaim_cookie reclaim = {
1778 .zone = zone,
1779 .priority = 0,
1780 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001781
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001782 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001783
Balbir Singh4e416952009-09-23 15:56:39 -07001784 while (1) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001785 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001786 if (!victim) {
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001787 loop++;
Balbir Singh4e416952009-09-23 15:56:39 -07001788 if (loop >= 2) {
1789 /*
1790 * If we have not been able to reclaim
1791 * anything, it might because there are
1792 * no reclaimable pages under this hierarchy
1793 */
Johannes Weiner56600482012-01-12 17:17:59 -08001794 if (!total)
Balbir Singh4e416952009-09-23 15:56:39 -07001795 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001796 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001797 * We want to do more targeted reclaim.
Balbir Singh4e416952009-09-23 15:56:39 -07001798 * excess >> 2 is not to excessive so as to
1799 * reclaim too much, nor too less that we keep
1800 * coming back to reclaim from this cgroup
1801 */
1802 if (total >= (excess >> 2) ||
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001803 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
Balbir Singh4e416952009-09-23 15:56:39 -07001804 break;
Balbir Singh4e416952009-09-23 15:56:39 -07001805 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001806 continue;
Balbir Singh4e416952009-09-23 15:56:39 -07001807 }
Johannes Weiner56600482012-01-12 17:17:59 -08001808 if (!mem_cgroup_reclaimable(victim, false))
Balbir Singh6d61ef42009-01-07 18:08:06 -08001809 continue;
Johannes Weiner56600482012-01-12 17:17:59 -08001810 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1811 zone, &nr_scanned);
1812 *total_scanned += nr_scanned;
1813 if (!res_counter_soft_limit_excess(&root_memcg->res))
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001814 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001815 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001816 mem_cgroup_iter_break(root_memcg, victim);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07001817 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001818}
1819
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001820/*
1821 * Check OOM-Killer is already running under our hierarchy.
1822 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001823 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001824 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001825static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001826{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001827 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001828
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001829 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001830 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001831 /*
1832 * this subtree of our hierarchy is already locked
1833 * so we cannot give a lock.
1834 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001835 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001836 mem_cgroup_iter_break(memcg, iter);
1837 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001838 } else
1839 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001840 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001841
Michal Hocko79dfdac2011-07-26 16:08:23 -07001842 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001843 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001844
1845 /*
1846 * OK, we failed to lock the whole subtree so we have to clean up
1847 * what we set up to the failing subtree
1848 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001849 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001850 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001851 mem_cgroup_iter_break(memcg, iter);
1852 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001853 }
1854 iter->oom_lock = false;
1855 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001856 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001857}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001858
Michal Hocko79dfdac2011-07-26 16:08:23 -07001859/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001860 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001861 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001862static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001863{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001864 struct mem_cgroup *iter;
1865
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001866 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001867 iter->oom_lock = false;
1868 return 0;
1869}
1870
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001871static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001872{
1873 struct mem_cgroup *iter;
1874
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001875 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001876 atomic_inc(&iter->under_oom);
1877}
1878
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001879static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001880{
1881 struct mem_cgroup *iter;
1882
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001883 /*
1884 * When a new child is created while the hierarchy is under oom,
1885 * mem_cgroup_oom_lock() may not be called. We have to use
1886 * atomic_add_unless() here.
1887 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001888 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001889 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001890}
1891
Michal Hocko1af8efe2011-07-26 16:08:24 -07001892static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001893static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1894
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001895struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001896 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001897 wait_queue_t wait;
1898};
1899
1900static int memcg_oom_wake_function(wait_queue_t *wait,
1901 unsigned mode, int sync, void *arg)
1902{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001903 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1904 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001905 struct oom_wait_info *oom_wait_info;
1906
1907 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001908 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001909
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001910 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001911 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001912 * Then we can use css_is_ancestor without taking care of RCU.
1913 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001914 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1915 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001916 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001917 return autoremove_wake_function(wait, mode, sync, arg);
1918}
1919
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001920static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001921{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001922 /* for filtering, pass "memcg" as argument. */
1923 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001924}
1925
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001926static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001927{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001928 if (memcg && atomic_read(&memcg->under_oom))
1929 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001930}
1931
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001932/*
1933 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1934 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001935static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
1936 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001937{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001938 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001939 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001940
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001941 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001942 owait.wait.flags = 0;
1943 owait.wait.func = memcg_oom_wake_function;
1944 owait.wait.private = current;
1945 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001946 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001947 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001948
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001949 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001950 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001951 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001952 /*
1953 * Even if signal_pending(), we can't quit charge() loop without
1954 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1955 * under OOM is always welcomed, use TASK_KILLABLE here.
1956 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001957 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001958 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001959 need_to_kill = false;
1960 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001961 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001962 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001963
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001964 if (need_to_kill) {
1965 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07001966 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001967 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001968 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001969 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001970 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001971 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001972 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001973 mem_cgroup_oom_unlock(memcg);
1974 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001975 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001976
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001977 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001978
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001979 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1980 return false;
1981 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001982 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001983 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001984}
1985
Balbir Singhd69b0422009-06-17 16:26:34 -07001986/*
1987 * Currently used to update mapped file statistics, but the routine can be
1988 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001989 *
1990 * Notes: Race condition
1991 *
1992 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1993 * it tends to be costly. But considering some conditions, we doesn't need
1994 * to do so _always_.
1995 *
1996 * Considering "charge", lock_page_cgroup() is not required because all
1997 * file-stat operations happen after a page is attached to radix-tree. There
1998 * are no race with "charge".
1999 *
2000 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2001 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2002 * if there are race with "uncharge". Statistics itself is properly handled
2003 * by flags.
2004 *
2005 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002006 * small, we check mm->moving_account and detect there are possibility of race
2007 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002008 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002009
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002010void __mem_cgroup_begin_update_page_stat(struct page *page,
2011 bool *locked, unsigned long *flags)
2012{
2013 struct mem_cgroup *memcg;
2014 struct page_cgroup *pc;
2015
2016 pc = lookup_page_cgroup(page);
2017again:
2018 memcg = pc->mem_cgroup;
2019 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2020 return;
2021 /*
2022 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002023 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002024 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002025 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002026 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002027 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002028 return;
2029
2030 move_lock_mem_cgroup(memcg, flags);
2031 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2032 move_unlock_mem_cgroup(memcg, flags);
2033 goto again;
2034 }
2035 *locked = true;
2036}
2037
2038void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2039{
2040 struct page_cgroup *pc = lookup_page_cgroup(page);
2041
2042 /*
2043 * It's guaranteed that pc->mem_cgroup never changes while
2044 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002045 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002046 */
2047 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2048}
2049
Greg Thelen2a7106f2011-01-13 15:47:37 -08002050void mem_cgroup_update_page_stat(struct page *page,
2051 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002052{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002053 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002054 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002055 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002056
Johannes Weinercfa44942012-01-12 17:18:38 -08002057 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002058 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002059
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002060 memcg = pc->mem_cgroup;
2061 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002062 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002063
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002064 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002065 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08002066 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002067 break;
2068 default:
2069 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002070 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002071
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002072 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002073}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002074
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002075/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002076 * size of first charge trial. "32" comes from vmscan.c's magic value.
2077 * TODO: maybe necessary to use big numbers in big irons.
2078 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002079#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002080struct memcg_stock_pcp {
2081 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002082 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002083 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002084 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002085#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002086};
2087static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002088static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002089
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002090/**
2091 * consume_stock: Try to consume stocked charge on this cpu.
2092 * @memcg: memcg to consume from.
2093 * @nr_pages: how many pages to charge.
2094 *
2095 * The charges will only happen if @memcg matches the current cpu's memcg
2096 * stock, and at least @nr_pages are available in that stock. Failure to
2097 * service an allocation will refill the stock.
2098 *
2099 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002100 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002101static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002102{
2103 struct memcg_stock_pcp *stock;
2104 bool ret = true;
2105
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002106 if (nr_pages > CHARGE_BATCH)
2107 return false;
2108
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002109 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002110 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2111 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002112 else /* need to call res_counter_charge */
2113 ret = false;
2114 put_cpu_var(memcg_stock);
2115 return ret;
2116}
2117
2118/*
2119 * Returns stocks cached in percpu to res_counter and reset cached information.
2120 */
2121static void drain_stock(struct memcg_stock_pcp *stock)
2122{
2123 struct mem_cgroup *old = stock->cached;
2124
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002125 if (stock->nr_pages) {
2126 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2127
2128 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002129 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002130 res_counter_uncharge(&old->memsw, bytes);
2131 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002132 }
2133 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002134}
2135
2136/*
2137 * This must be called under preempt disabled or must be called by
2138 * a thread which is pinned to local cpu.
2139 */
2140static void drain_local_stock(struct work_struct *dummy)
2141{
2142 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2143 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002144 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002145}
2146
2147/*
2148 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002149 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002150 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002151static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002152{
2153 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2154
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002155 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002156 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002157 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002158 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002159 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002160 put_cpu_var(memcg_stock);
2161}
2162
2163/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002164 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002165 * of the hierarchy under it. sync flag says whether we should block
2166 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002167 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002168static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002169{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002170 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002171
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002172 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002173 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002174 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002175 for_each_online_cpu(cpu) {
2176 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002177 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002178
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002179 memcg = stock->cached;
2180 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002181 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002182 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002183 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002184 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2185 if (cpu == curcpu)
2186 drain_local_stock(&stock->work);
2187 else
2188 schedule_work_on(cpu, &stock->work);
2189 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002190 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002191 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002192
2193 if (!sync)
2194 goto out;
2195
2196 for_each_online_cpu(cpu) {
2197 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002198 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002199 flush_work(&stock->work);
2200 }
2201out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002202 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002203}
2204
2205/*
2206 * Tries to drain stocked charges in other cpus. This function is asynchronous
2207 * and just put a work per cpu for draining localy on each cpu. Caller can
2208 * expects some charges will be back to res_counter later but cannot wait for
2209 * it.
2210 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002211static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002212{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002213 /*
2214 * If someone calls draining, avoid adding more kworker runs.
2215 */
2216 if (!mutex_trylock(&percpu_charge_mutex))
2217 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002218 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002219 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002220}
2221
2222/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002223static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002224{
2225 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002226 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002227 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002228 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002229}
2230
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002231/*
2232 * This function drains percpu counter value from DEAD cpu and
2233 * move it to local cpu. Note that this function can be preempted.
2234 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002235static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002236{
2237 int i;
2238
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002239 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002240 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002241 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002242
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002243 per_cpu(memcg->stat->count[i], cpu) = 0;
2244 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002245 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002246 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002247 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002248
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002249 per_cpu(memcg->stat->events[i], cpu) = 0;
2250 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002251 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002252 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002253}
2254
2255static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002256 unsigned long action,
2257 void *hcpu)
2258{
2259 int cpu = (unsigned long)hcpu;
2260 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002261 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002262
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002263 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002264 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002265
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002266 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002267 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002268
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002269 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002270 mem_cgroup_drain_pcp_counter(iter, cpu);
2271
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002272 stock = &per_cpu(memcg_stock, cpu);
2273 drain_stock(stock);
2274 return NOTIFY_OK;
2275}
2276
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002277
2278/* See __mem_cgroup_try_charge() for details */
2279enum {
2280 CHARGE_OK, /* success */
2281 CHARGE_RETRY, /* need to retry but retry is not bad */
2282 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2283 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2284 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2285};
2286
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002287static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002288 unsigned int nr_pages, unsigned int min_pages,
2289 bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002290{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002291 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002292 struct mem_cgroup *mem_over_limit;
2293 struct res_counter *fail_res;
2294 unsigned long flags = 0;
2295 int ret;
2296
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002297 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002298
2299 if (likely(!ret)) {
2300 if (!do_swap_account)
2301 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002302 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002303 if (likely(!ret))
2304 return CHARGE_OK;
2305
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002306 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002307 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2308 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2309 } else
2310 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002311 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002312 * Never reclaim on behalf of optional batching, retry with a
2313 * single page instead.
2314 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002315 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002316 return CHARGE_RETRY;
2317
2318 if (!(gfp_mask & __GFP_WAIT))
2319 return CHARGE_WOULDBLOCK;
2320
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002321 if (gfp_mask & __GFP_NORETRY)
2322 return CHARGE_NOMEM;
2323
Johannes Weiner56600482012-01-12 17:17:59 -08002324 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002325 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002326 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002327 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002328 * Even though the limit is exceeded at this point, reclaim
2329 * may have been able to free some pages. Retry the charge
2330 * before killing the task.
2331 *
2332 * Only for regular pages, though: huge pages are rather
2333 * unlikely to succeed so close to the limit, and we fall back
2334 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002335 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002336 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002337 return CHARGE_RETRY;
2338
2339 /*
2340 * At task move, charge accounts can be doubly counted. So, it's
2341 * better to wait until the end of task_move if something is going on.
2342 */
2343 if (mem_cgroup_wait_acct_move(mem_over_limit))
2344 return CHARGE_RETRY;
2345
2346 /* If we don't need to call oom-killer at el, return immediately */
2347 if (!oom_check)
2348 return CHARGE_NOMEM;
2349 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002350 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002351 return CHARGE_OOM_DIE;
2352
2353 return CHARGE_RETRY;
2354}
2355
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002356/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002357 * __mem_cgroup_try_charge() does
2358 * 1. detect memcg to be charged against from passed *mm and *ptr,
2359 * 2. update res_counter
2360 * 3. call memory reclaim if necessary.
2361 *
2362 * In some special case, if the task is fatal, fatal_signal_pending() or
2363 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2364 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2365 * as possible without any hazards. 2: all pages should have a valid
2366 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2367 * pointer, that is treated as a charge to root_mem_cgroup.
2368 *
2369 * So __mem_cgroup_try_charge() will return
2370 * 0 ... on success, filling *ptr with a valid memcg pointer.
2371 * -ENOMEM ... charge failure because of resource limits.
2372 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2373 *
2374 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2375 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002376 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002377static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002378 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002379 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002380 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002381 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002382{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002383 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002384 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002385 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002386 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002387
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002388 /*
2389 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2390 * in system level. So, allow to go ahead dying process in addition to
2391 * MEMDIE process.
2392 */
2393 if (unlikely(test_thread_flag(TIF_MEMDIE)
2394 || fatal_signal_pending(current)))
2395 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002396
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002397 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002398 * We always charge the cgroup the mm_struct belongs to.
2399 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002400 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002401 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002402 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002403 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002404 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002405again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002406 if (*ptr) { /* css should be a valid one */
2407 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002408 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002409 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002410 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002411 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002412 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002413 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002414 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002415
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002416 rcu_read_lock();
2417 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002418 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002419 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002420 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002421 * race with swapoff. Then, we have small risk of mis-accouning.
2422 * But such kind of mis-account by race always happens because
2423 * we don't have cgroup_mutex(). It's overkill and we allo that
2424 * small race, here.
2425 * (*) swapoff at el will charge against mm-struct not against
2426 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002427 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002428 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002429 if (!memcg)
2430 memcg = root_mem_cgroup;
2431 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002432 rcu_read_unlock();
2433 goto done;
2434 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002435 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002436 /*
2437 * It seems dagerous to access memcg without css_get().
2438 * But considering how consume_stok works, it's not
2439 * necessary. If consume_stock success, some charges
2440 * from this memcg are cached on this cpu. So, we
2441 * don't need to call css_get()/css_tryget() before
2442 * calling consume_stock().
2443 */
2444 rcu_read_unlock();
2445 goto done;
2446 }
2447 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002448 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002449 rcu_read_unlock();
2450 goto again;
2451 }
2452 rcu_read_unlock();
2453 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002454
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002455 do {
2456 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002457
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002458 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002459 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002460 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002461 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002462 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002463
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002464 oom_check = false;
2465 if (oom && !nr_oom_retries) {
2466 oom_check = true;
2467 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2468 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002469
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002470 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, nr_pages,
2471 oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002472 switch (ret) {
2473 case CHARGE_OK:
2474 break;
2475 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002476 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002477 css_put(&memcg->css);
2478 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002479 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002480 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002481 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002482 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002483 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002484 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002485 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002486 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002487 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002488 /* If oom, we never return -ENOMEM */
2489 nr_oom_retries--;
2490 break;
2491 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002492 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002493 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002494 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002495 } while (ret != CHARGE_OK);
2496
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002497 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002498 refill_stock(memcg, batch - nr_pages);
2499 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002500done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002501 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002502 return 0;
2503nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002504 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002505 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002506bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002507 *ptr = root_mem_cgroup;
2508 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002509}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002510
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002511/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002512 * Somemtimes we have to undo a charge we got by try_charge().
2513 * This function is for that and do uncharge, put css's refcnt.
2514 * gotten by try_charge().
2515 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002516static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002517 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002518{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002519 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002520 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002521
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002522 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002523 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002524 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002525 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002526}
2527
2528/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002529 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2530 * This is useful when moving usage to parent cgroup.
2531 */
2532static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2533 unsigned int nr_pages)
2534{
2535 unsigned long bytes = nr_pages * PAGE_SIZE;
2536
2537 if (mem_cgroup_is_root(memcg))
2538 return;
2539
2540 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2541 if (do_swap_account)
2542 res_counter_uncharge_until(&memcg->memsw,
2543 memcg->memsw.parent, bytes);
2544}
2545
2546/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002547 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002548 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2549 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2550 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002551 */
2552static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2553{
2554 struct cgroup_subsys_state *css;
2555
2556 /* ID 0 is unused ID */
2557 if (!id)
2558 return NULL;
2559 css = css_lookup(&mem_cgroup_subsys, id);
2560 if (!css)
2561 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002562 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002563}
2564
Wu Fengguange42d9d52009-12-16 12:19:59 +01002565struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002566{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002567 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002568 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002569 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002570 swp_entry_t ent;
2571
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002572 VM_BUG_ON(!PageLocked(page));
2573
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002574 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002575 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002576 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002577 memcg = pc->mem_cgroup;
2578 if (memcg && !css_tryget(&memcg->css))
2579 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002580 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002581 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002582 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002583 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002584 memcg = mem_cgroup_lookup(id);
2585 if (memcg && !css_tryget(&memcg->css))
2586 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002587 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002588 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002589 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002590 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002591}
2592
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002593static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002594 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002595 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002596 enum charge_type ctype,
2597 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002598{
Johannes Weinerce587e62012-04-24 20:22:33 +02002599 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002600 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002601 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002602 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002603 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002604
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002605 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002606 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002607 /*
2608 * we don't need page_cgroup_lock about tail pages, becase they are not
2609 * accessed by any other context at this point.
2610 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002611
2612 /*
2613 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2614 * may already be on some other mem_cgroup's LRU. Take care of it.
2615 */
2616 if (lrucare) {
2617 zone = page_zone(page);
2618 spin_lock_irq(&zone->lru_lock);
2619 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002620 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002621 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002622 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002623 was_on_lru = true;
2624 }
2625 }
2626
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002627 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002628 /*
2629 * We access a page_cgroup asynchronously without lock_page_cgroup().
2630 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2631 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2632 * before USED bit, we need memory barrier here.
2633 * See mem_cgroup_add_lru_list(), etc.
2634 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002635 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002636 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002637
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002638 if (lrucare) {
2639 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002640 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002641 VM_BUG_ON(PageLRU(page));
2642 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002643 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002644 }
2645 spin_unlock_irq(&zone->lru_lock);
2646 }
2647
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002648 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002649 anon = true;
2650 else
2651 anon = false;
2652
2653 mem_cgroup_charge_statistics(memcg, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002654 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002655
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002656 /*
2657 * "charge_statistics" updated event counter. Then, check it.
2658 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2659 * if they exceeds softlimit.
2660 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002661 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002662}
2663
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002664#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2665
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002666#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002667/*
2668 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002669 * zone->lru_lock, 'splitting on pmd' and compound_lock.
2670 * charge/uncharge will be never happen and move_account() is done under
2671 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002672 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002673void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002674{
2675 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002676 struct page_cgroup *pc;
2677 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002678
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002679 if (mem_cgroup_disabled())
2680 return;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002681 for (i = 1; i < HPAGE_PMD_NR; i++) {
2682 pc = head_pc + i;
2683 pc->mem_cgroup = head_pc->mem_cgroup;
2684 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002685 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
2686 }
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002687}
Hugh Dickins12d27102012-01-12 17:19:52 -08002688#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002689
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002690/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07002691 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07002692 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002693 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002694 * @pc: page_cgroup of the page.
2695 * @from: mem_cgroup which the page is moved from.
2696 * @to: mem_cgroup which the page is moved to. @from != @to.
2697 *
2698 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002699 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002700 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002701 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002702 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
2703 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002704 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002705static int mem_cgroup_move_account(struct page *page,
2706 unsigned int nr_pages,
2707 struct page_cgroup *pc,
2708 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002709 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002710{
Johannes Weinerde3638d2011-03-23 16:42:28 -07002711 unsigned long flags;
2712 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002713 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002714
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002715 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07002716 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07002717 /*
2718 * The page is isolated from LRU. So, collapse function
2719 * will not handle this page. But page splitting can happen.
2720 * Do this check under compound_page_lock(). The caller should
2721 * hold it.
2722 */
2723 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002724 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07002725 goto out;
2726
2727 lock_page_cgroup(pc);
2728
2729 ret = -EINVAL;
2730 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
2731 goto unlock;
2732
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002733 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002734
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07002735 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08002736 /* Update mapped_file data for mem_cgroup */
2737 preempt_disable();
2738 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2739 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
2740 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07002741 }
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002742 mem_cgroup_charge_statistics(from, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07002743
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002744 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002745 pc->mem_cgroup = to;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002746 mem_cgroup_charge_statistics(to, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07002747 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002748 ret = 0;
2749unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002750 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08002751 /*
2752 * check events
2753 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002754 memcg_check_events(to, page);
2755 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07002756out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002757 return ret;
2758}
2759
Michal Hocko2ef37d32012-10-26 13:37:30 +02002760/**
2761 * mem_cgroup_move_parent - moves page to the parent group
2762 * @page: the page to move
2763 * @pc: page_cgroup of the page
2764 * @child: page's cgroup
2765 *
2766 * move charges to its parent or the root cgroup if the group has no
2767 * parent (aka use_hierarchy==0).
2768 * Although this might fail (get_page_unless_zero, isolate_lru_page or
2769 * mem_cgroup_move_account fails) the failure is always temporary and
2770 * it signals a race with a page removal/uncharge or migration. In the
2771 * first case the page is on the way out and it will vanish from the LRU
2772 * on the next attempt and the call should be retried later.
2773 * Isolation from the LRU fails only if page has been isolated from
2774 * the LRU since we looked at it and that usually means either global
2775 * reclaim or migration going on. The page will either get back to the
2776 * LRU or vanish.
2777 * Finaly mem_cgroup_move_account fails only if the page got uncharged
2778 * (!PageCgroupUsed) or moved to a different group. The page will
2779 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002780 */
Johannes Weiner5564e882011-03-23 16:42:29 -07002781static int mem_cgroup_move_parent(struct page *page,
2782 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07002783 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002784{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002785 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002786 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07002787 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002788 int ret;
2789
Michal Hockod8423012012-10-26 13:37:29 +02002790 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002791
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002792 ret = -EBUSY;
2793 if (!get_page_unless_zero(page))
2794 goto out;
2795 if (isolate_lru_page(page))
2796 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08002797
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002798 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002799
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002800 parent = parent_mem_cgroup(child);
2801 /*
2802 * If no parent, move charges to root cgroup.
2803 */
2804 if (!parent)
2805 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002806
Michal Hocko2ef37d32012-10-26 13:37:30 +02002807 if (nr_pages > 1) {
2808 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002809 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02002810 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002811
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002812 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07002813 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07002814 if (!ret)
2815 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08002816
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002817 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08002818 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002819 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002820put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08002821 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08002822out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002823 return ret;
2824}
2825
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002826/*
2827 * Charge the memory controller for page usage.
2828 * Return
2829 * 0 if the charge was successful
2830 * < 0 if the cgroup is over its limit
2831 */
2832static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07002833 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002834{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002835 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002836 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08002837 bool oom = true;
2838 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08002839
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002840 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002841 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002842 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08002843 /*
2844 * Never OOM-kill a process for a huge page. The
2845 * fault handler will fall back to regular pages.
2846 */
2847 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08002848 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002849
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002850 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002851 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002852 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02002853 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002854 return 0;
2855}
2856
2857int mem_cgroup_newpage_charge(struct page *page,
2858 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002859{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002860 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07002861 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08002862 VM_BUG_ON(page_mapped(page));
2863 VM_BUG_ON(page->mapping && !PageAnon(page));
2864 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002865 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002866 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08002867}
2868
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002869/*
2870 * While swap-in, try_charge -> commit or cancel, the page is locked.
2871 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02002872 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002873 * "commit()" or removed by "cancel()"
2874 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002875static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
2876 struct page *page,
2877 gfp_t mask,
2878 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002879{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002880 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07002881 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002882 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002883
Johannes Weiner90deb782012-07-31 16:45:47 -07002884 pc = lookup_page_cgroup(page);
2885 /*
2886 * Every swap fault against a single page tries to charge the
2887 * page, bail as early as possible. shmem_unuse() encounters
2888 * already charged pages, too. The USED bit is protected by
2889 * the page lock, which serializes swap cache removal, which
2890 * in turn serializes uncharging.
2891 */
2892 if (PageCgroupUsed(pc))
2893 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002894 if (!do_swap_account)
2895 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002896 memcg = try_get_mem_cgroup_from_page(page);
2897 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002898 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08002899 *memcgp = memcg;
2900 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002901 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002902 if (ret == -EINTR)
2903 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002904 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002905charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002906 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
2907 if (ret == -EINTR)
2908 ret = 0;
2909 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002910}
2911
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002912int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
2913 gfp_t gfp_mask, struct mem_cgroup **memcgp)
2914{
2915 *memcgp = NULL;
2916 if (mem_cgroup_disabled())
2917 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07002918 /*
2919 * A racing thread's fault, or swapoff, may have already
2920 * updated the pte, and even removed page from swap cache: in
2921 * those cases unuse_pte()'s pte_same() test will fail; but
2922 * there's also a KSM case which does need to charge the page.
2923 */
2924 if (!PageSwapCache(page)) {
2925 int ret;
2926
2927 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
2928 if (ret == -EINTR)
2929 ret = 0;
2930 return ret;
2931 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002932 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
2933}
2934
Johannes Weiner827a03d2012-07-31 16:45:36 -07002935void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
2936{
2937 if (mem_cgroup_disabled())
2938 return;
2939 if (!memcg)
2940 return;
2941 __mem_cgroup_cancel_charge(memcg, 1);
2942}
2943
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002944static void
Johannes Weiner72835c82012-01-12 17:18:32 -08002945__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002946 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002947{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002948 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002949 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08002950 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002951 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07002952
Johannes Weinerce587e62012-04-24 20:22:33 +02002953 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002954 /*
2955 * Now swap is on-memory. This means this page may be
2956 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002957 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
2958 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
2959 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002960 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08002961 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002962 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07002963 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002964 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002965}
2966
Johannes Weiner72835c82012-01-12 17:18:32 -08002967void mem_cgroup_commit_charge_swapin(struct page *page,
2968 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002969{
Johannes Weiner72835c82012-01-12 17:18:32 -08002970 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002971 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07002972}
2973
Johannes Weiner827a03d2012-07-31 16:45:36 -07002974int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
2975 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002976{
Johannes Weiner827a03d2012-07-31 16:45:36 -07002977 struct mem_cgroup *memcg = NULL;
2978 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
2979 int ret;
2980
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08002981 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07002982 return 0;
2983 if (PageCompound(page))
2984 return 0;
2985
Johannes Weiner827a03d2012-07-31 16:45:36 -07002986 if (!PageSwapCache(page))
2987 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
2988 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07002989 ret = __mem_cgroup_try_charge_swapin(mm, page,
2990 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07002991 if (!ret)
2992 __mem_cgroup_commit_charge_swapin(page, memcg, type);
2993 }
2994 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002995}
2996
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002997static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002998 unsigned int nr_pages,
2999 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003000{
3001 struct memcg_batch_info *batch = NULL;
3002 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003003
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003004 /* If swapout, usage of swap doesn't decrease */
3005 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3006 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003007
3008 batch = &current->memcg_batch;
3009 /*
3010 * In usual, we do css_get() when we remember memcg pointer.
3011 * But in this case, we keep res->usage until end of a series of
3012 * uncharges. Then, it's ok to ignore memcg's refcnt.
3013 */
3014 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003015 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003016 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003017 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003018 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003019 * the same cgroup and we have chance to coalesce uncharges.
3020 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3021 * because we want to do uncharge as soon as possible.
3022 */
3023
3024 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
3025 goto direct_uncharge;
3026
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003027 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08003028 goto direct_uncharge;
3029
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003030 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003031 * In typical case, batch->memcg == mem. This means we can
3032 * merge a series of uncharges to an uncharge of res_counter.
3033 * If not, we uncharge res_counter ony by one.
3034 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003035 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003036 goto direct_uncharge;
3037 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003038 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003039 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003040 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003041 return;
3042direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003043 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003044 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003045 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
3046 if (unlikely(batch->memcg != memcg))
3047 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003048}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003049
Balbir Singh8697d332008-02-07 00:13:59 -08003050/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003051 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003052 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003053static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07003054__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
3055 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003056{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003057 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003058 unsigned int nr_pages = 1;
3059 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003060 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003061
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003062 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003063 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07003064
Johannes Weiner0c59b892012-07-31 16:45:31 -07003065 VM_BUG_ON(PageSwapCache(page));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003066
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003067 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003068 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003069 VM_BUG_ON(!PageTransHuge(page));
3070 }
Balbir Singh8697d332008-02-07 00:13:59 -08003071 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003072 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003073 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003074 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003075 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003076 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003077
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003078 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003079
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003080 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003081
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003082 if (!PageCgroupUsed(pc))
3083 goto unlock_out;
3084
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003085 anon = PageAnon(page);
3086
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003087 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003088 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003089 /*
3090 * Generally PageAnon tells if it's the anon statistics to be
3091 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
3092 * used before page reached the stage of being marked PageAnon.
3093 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003094 anon = true;
3095 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003096 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003097 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07003098 if (page_mapped(page))
3099 goto unlock_out;
3100 /*
3101 * Pages under migration may not be uncharged. But
3102 * end_migration() /must/ be the one uncharging the
3103 * unused post-migration page and so it has to call
3104 * here with the migration bit still set. See the
3105 * res_counter handling below.
3106 */
3107 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003108 goto unlock_out;
3109 break;
3110 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
3111 if (!PageAnon(page)) { /* Shared memory */
3112 if (page->mapping && !page_is_file_cache(page))
3113 goto unlock_out;
3114 } else if (page_mapped(page)) /* Anon */
3115 goto unlock_out;
3116 break;
3117 default:
3118 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003119 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003120
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003121 mem_cgroup_charge_statistics(memcg, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07003122
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003123 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08003124 /*
3125 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3126 * freed from LRU. This is safe because uncharged page is expected not
3127 * to be reused (freed soon). Exception is SwapCache, it's handled by
3128 * special functions.
3129 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003130
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003131 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003132 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003133 * even after unlock, we have memcg->res.usage here and this memcg
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003134 * will never be freed.
3135 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003136 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003137 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003138 mem_cgroup_swap_statistics(memcg, true);
3139 mem_cgroup_get(memcg);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003140 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003141 /*
3142 * Migration does not charge the res_counter for the
3143 * replacement page, so leave it alone when phasing out the
3144 * page that is unused after the migration.
3145 */
3146 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003147 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003148
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003149 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003150
3151unlock_out:
3152 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003153 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003154}
3155
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003156void mem_cgroup_uncharge_page(struct page *page)
3157{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003158 /* early check. */
3159 if (page_mapped(page))
3160 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08003161 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner0c59b892012-07-31 16:45:31 -07003162 if (PageSwapCache(page))
3163 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07003164 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003165}
3166
3167void mem_cgroup_uncharge_cache_page(struct page *page)
3168{
3169 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003170 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07003171 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003172}
3173
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003174/*
3175 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3176 * In that cases, pages are freed continuously and we can expect pages
3177 * are in the same memcg. All these calls itself limits the number of
3178 * pages freed at once, then uncharge_start/end() is called properly.
3179 * This may be called prural(2) times in a context,
3180 */
3181
3182void mem_cgroup_uncharge_start(void)
3183{
3184 current->memcg_batch.do_batch++;
3185 /* We can do nest. */
3186 if (current->memcg_batch.do_batch == 1) {
3187 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003188 current->memcg_batch.nr_pages = 0;
3189 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003190 }
3191}
3192
3193void mem_cgroup_uncharge_end(void)
3194{
3195 struct memcg_batch_info *batch = &current->memcg_batch;
3196
3197 if (!batch->do_batch)
3198 return;
3199
3200 batch->do_batch--;
3201 if (batch->do_batch) /* If stacked, do nothing. */
3202 return;
3203
3204 if (!batch->memcg)
3205 return;
3206 /*
3207 * This "batch->memcg" is valid without any css_get/put etc...
3208 * bacause we hide charges behind us.
3209 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003210 if (batch->nr_pages)
3211 res_counter_uncharge(&batch->memcg->res,
3212 batch->nr_pages * PAGE_SIZE);
3213 if (batch->memsw_nr_pages)
3214 res_counter_uncharge(&batch->memcg->memsw,
3215 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003216 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003217 /* forget this pointer (for sanity check) */
3218 batch->memcg = NULL;
3219}
3220
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003221#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003222/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003223 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003224 * memcg information is recorded to swap_cgroup of "ent"
3225 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003226void
3227mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003228{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003229 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003230 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003231
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003232 if (!swapout) /* this was a swap cache but the swap is unused ! */
3233 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
3234
Johannes Weiner0030f532012-07-31 16:45:25 -07003235 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003236
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003237 /*
3238 * record memcg information, if swapout && memcg != NULL,
3239 * mem_cgroup_get() was called in uncharge().
3240 */
3241 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003242 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003243}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07003244#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003245
Andrew Mortonc255a452012-07-31 16:43:02 -07003246#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003247/*
3248 * called from swap_entry_free(). remove record in swap_cgroup and
3249 * uncharge "memsw" account.
3250 */
3251void mem_cgroup_uncharge_swap(swp_entry_t ent)
3252{
3253 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003254 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003255
3256 if (!do_swap_account)
3257 return;
3258
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003259 id = swap_cgroup_record(ent, 0);
3260 rcu_read_lock();
3261 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003262 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003263 /*
3264 * We uncharge this because swap is freed.
3265 * This memcg can be obsolete one. We avoid calling css_tryget
3266 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003267 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07003268 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003269 mem_cgroup_swap_statistics(memcg, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003270 mem_cgroup_put(memcg);
3271 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07003272 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003273}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003274
3275/**
3276 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3277 * @entry: swap entry to be moved
3278 * @from: mem_cgroup which the entry is moved from
3279 * @to: mem_cgroup which the entry is moved to
3280 *
3281 * It succeeds only when the swap_cgroup's record for this entry is the same
3282 * as the mem_cgroup's id of @from.
3283 *
3284 * Returns 0 on success, -EINVAL on failure.
3285 *
3286 * The caller must have charged to @to, IOW, called res_counter_charge() about
3287 * both res and memsw, and called css_get().
3288 */
3289static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003290 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003291{
3292 unsigned short old_id, new_id;
3293
3294 old_id = css_id(&from->css);
3295 new_id = css_id(&to->css);
3296
3297 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003298 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003299 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003300 /*
3301 * This function is only called from task migration context now.
3302 * It postpones res_counter and refcount handling till the end
3303 * of task migration(mem_cgroup_clear_mc()) for performance
3304 * improvement. But we cannot postpone mem_cgroup_get(to)
3305 * because if the process that has been moved to @to does
3306 * swap-in, the refcount of @to might be decreased to 0.
3307 */
Daisuke Nishimura02491442010-03-10 15:22:17 -08003308 mem_cgroup_get(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003309 return 0;
3310 }
3311 return -EINVAL;
3312}
3313#else
3314static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003315 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003316{
3317 return -EINVAL;
3318}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003319#endif
3320
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003321/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003322 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
3323 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003324 */
Johannes Weiner0030f532012-07-31 16:45:25 -07003325void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
3326 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003327{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003328 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00003329 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003330 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003331 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003332
Johannes Weiner72835c82012-01-12 17:18:32 -08003333 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003334
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003335 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07003336 return;
Balbir Singh40779602008-04-04 14:29:59 -07003337
Mel Gormanb32967f2012-11-19 12:35:47 +00003338 if (PageTransHuge(page))
3339 nr_pages <<= compound_order(page);
3340
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003341 pc = lookup_page_cgroup(page);
3342 lock_page_cgroup(pc);
3343 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003344 memcg = pc->mem_cgroup;
3345 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003346 /*
3347 * At migrating an anonymous page, its mapcount goes down
3348 * to 0 and uncharge() will be called. But, even if it's fully
3349 * unmapped, migration may fail and this page has to be
3350 * charged again. We set MIGRATION flag here and delay uncharge
3351 * until end_migration() is called
3352 *
3353 * Corner Case Thinking
3354 * A)
3355 * When the old page was mapped as Anon and it's unmap-and-freed
3356 * while migration was ongoing.
3357 * If unmap finds the old page, uncharge() of it will be delayed
3358 * until end_migration(). If unmap finds a new page, it's
3359 * uncharged when it make mapcount to be 1->0. If unmap code
3360 * finds swap_migration_entry, the new page will not be mapped
3361 * and end_migration() will find it(mapcount==0).
3362 *
3363 * B)
3364 * When the old page was mapped but migraion fails, the kernel
3365 * remaps it. A charge for it is kept by MIGRATION flag even
3366 * if mapcount goes down to 0. We can do remap successfully
3367 * without charging it again.
3368 *
3369 * C)
3370 * The "old" page is under lock_page() until the end of
3371 * migration, so, the old page itself will not be swapped-out.
3372 * If the new page is swapped out before end_migraton, our
3373 * hook to usual swap-out path will catch the event.
3374 */
3375 if (PageAnon(page))
3376 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003377 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003378 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003379 /*
3380 * If the page is not charged at this point,
3381 * we return here.
3382 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003383 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07003384 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003385
Johannes Weiner72835c82012-01-12 17:18:32 -08003386 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003387 /*
3388 * We charge new page before it's used/mapped. So, even if unlock_page()
3389 * is called before end_migration, we can catch all events on this new
3390 * page. In the case new page is migrated but not remapped, new page's
3391 * mapcount will be finally 0 and we call uncharge in end_migration().
3392 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003393 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003394 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003395 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07003396 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07003397 /*
3398 * The page is committed to the memcg, but it's not actually
3399 * charged to the res_counter since we plan on replacing the
3400 * old one and only one page is going to be left afterwards.
3401 */
Mel Gormanb32967f2012-11-19 12:35:47 +00003402 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003403}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08003404
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003405/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003406void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003407 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07003408{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003409 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003410 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003411 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003412
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003413 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003414 return;
Tejun Heob25ed602012-11-05 09:16:59 -08003415
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08003416 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003417 used = oldpage;
3418 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003419 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003420 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003421 unused = oldpage;
3422 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003423 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07003424 __mem_cgroup_uncharge_common(unused,
3425 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
3426 : MEM_CGROUP_CHARGE_TYPE_CACHE,
3427 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07003428 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003429 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003430 * We disallowed uncharge of pages under migration because mapcount
3431 * of the page goes down to zero, temporarly.
3432 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003433 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003434 pc = lookup_page_cgroup(oldpage);
3435 lock_page_cgroup(pc);
3436 ClearPageCgroupMigration(pc);
3437 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003438
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003439 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003440 * If a page is a file cache, radix-tree replacement is very atomic
3441 * and we can skip this check. When it was an Anon page, its mapcount
3442 * goes down to 0. But because we added MIGRATION flage, it's not
3443 * uncharged yet. There are several case but page->mapcount check
3444 * and USED bit check in mem_cgroup_uncharge_page() will do enough
3445 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08003446 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003447 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003448 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08003449}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08003450
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003451/*
3452 * At replace page cache, newpage is not under any memcg but it's on
3453 * LRU. So, this function doesn't touch res_counter but handles LRU
3454 * in correct way. Both pages are locked so we cannot race with uncharge.
3455 */
3456void mem_cgroup_replace_page_cache(struct page *oldpage,
3457 struct page *newpage)
3458{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003459 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003460 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003461 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003462
3463 if (mem_cgroup_disabled())
3464 return;
3465
3466 pc = lookup_page_cgroup(oldpage);
3467 /* fix accounting on old pages */
3468 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003469 if (PageCgroupUsed(pc)) {
3470 memcg = pc->mem_cgroup;
3471 mem_cgroup_charge_statistics(memcg, false, -1);
3472 ClearPageCgroupUsed(pc);
3473 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003474 unlock_page_cgroup(pc);
3475
Hugh Dickinsbde05d12012-05-29 15:06:38 -07003476 /*
3477 * When called from shmem_replace_page(), in some cases the
3478 * oldpage has already been charged, and in some cases not.
3479 */
3480 if (!memcg)
3481 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003482 /*
3483 * Even if newpage->mapping was NULL before starting replacement,
3484 * the newpage may be on LRU(or pagevec for LRU) already. We lock
3485 * LRU while we overwrite pc->mem_cgroup.
3486 */
Johannes Weinerce587e62012-04-24 20:22:33 +02003487 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08003488}
3489
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003490#ifdef CONFIG_DEBUG_VM
3491static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3492{
3493 struct page_cgroup *pc;
3494
3495 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003496 /*
3497 * Can be NULL while feeding pages into the page allocator for
3498 * the first time, i.e. during boot or memory hotplug;
3499 * or when mem_cgroup_disabled().
3500 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003501 if (likely(pc) && PageCgroupUsed(pc))
3502 return pc;
3503 return NULL;
3504}
3505
3506bool mem_cgroup_bad_page_check(struct page *page)
3507{
3508 if (mem_cgroup_disabled())
3509 return false;
3510
3511 return lookup_page_cgroup_used(page) != NULL;
3512}
3513
3514void mem_cgroup_print_bad_page(struct page *page)
3515{
3516 struct page_cgroup *pc;
3517
3518 pc = lookup_page_cgroup_used(page);
3519 if (pc) {
Hugh Dickins90b3fea2012-01-12 17:19:54 -08003520 printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003521 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003522 }
3523}
3524#endif
3525
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003526static DEFINE_MUTEX(set_limit_mutex);
3527
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003528static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003529 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003530{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003531 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003532 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003533 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003534 int children = mem_cgroup_count_children(memcg);
3535 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003536 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003537
3538 /*
3539 * For keeping hierarchical_reclaim simple, how long we should retry
3540 * is depends on callers. We set our retry-count to be function
3541 * of # of children which we should visit in this loop.
3542 */
3543 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3544
3545 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003546
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003547 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003548 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003549 if (signal_pending(current)) {
3550 ret = -EINTR;
3551 break;
3552 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003553 /*
3554 * Rather than hide all in some function, I do this in
3555 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003556 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003557 */
3558 mutex_lock(&set_limit_mutex);
3559 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3560 if (memswlimit < val) {
3561 ret = -EINVAL;
3562 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003563 break;
3564 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003565
3566 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3567 if (memlimit < val)
3568 enlarge = 1;
3569
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003570 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003571 if (!ret) {
3572 if (memswlimit == val)
3573 memcg->memsw_is_minimum = true;
3574 else
3575 memcg->memsw_is_minimum = false;
3576 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003577 mutex_unlock(&set_limit_mutex);
3578
3579 if (!ret)
3580 break;
3581
Johannes Weiner56600482012-01-12 17:17:59 -08003582 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3583 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003584 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3585 /* Usage is reduced ? */
3586 if (curusage >= oldusage)
3587 retry_count--;
3588 else
3589 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003590 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003591 if (!ret && enlarge)
3592 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003593
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003594 return ret;
3595}
3596
Li Zefan338c8432009-06-17 16:27:15 -07003597static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3598 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003599{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003600 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003601 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003602 int children = mem_cgroup_count_children(memcg);
3603 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003604 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003605
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003606 /* see mem_cgroup_resize_res_limit */
3607 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
3608 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003609 while (retry_count) {
3610 if (signal_pending(current)) {
3611 ret = -EINTR;
3612 break;
3613 }
3614 /*
3615 * Rather than hide all in some function, I do this in
3616 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003617 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003618 */
3619 mutex_lock(&set_limit_mutex);
3620 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
3621 if (memlimit > val) {
3622 ret = -EINVAL;
3623 mutex_unlock(&set_limit_mutex);
3624 break;
3625 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003626 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
3627 if (memswlimit < val)
3628 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003629 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07003630 if (!ret) {
3631 if (memlimit == val)
3632 memcg->memsw_is_minimum = true;
3633 else
3634 memcg->memsw_is_minimum = false;
3635 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003636 mutex_unlock(&set_limit_mutex);
3637
3638 if (!ret)
3639 break;
3640
Johannes Weiner56600482012-01-12 17:17:59 -08003641 mem_cgroup_reclaim(memcg, GFP_KERNEL,
3642 MEM_CGROUP_RECLAIM_NOSWAP |
3643 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003644 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003645 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003646 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003647 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003648 else
3649 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003650 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003651 if (!ret && enlarge)
3652 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003653 return ret;
3654}
3655
Balbir Singh4e416952009-09-23 15:56:39 -07003656unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
Ying Han0ae5e892011-05-26 16:25:25 -07003657 gfp_t gfp_mask,
3658 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003659{
3660 unsigned long nr_reclaimed = 0;
3661 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3662 unsigned long reclaimed;
3663 int loop = 0;
3664 struct mem_cgroup_tree_per_zone *mctz;
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003665 unsigned long long excess;
Ying Han0ae5e892011-05-26 16:25:25 -07003666 unsigned long nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003667
3668 if (order > 0)
3669 return 0;
3670
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07003671 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
Balbir Singh4e416952009-09-23 15:56:39 -07003672 /*
3673 * This loop can run a while, specially if mem_cgroup's continuously
3674 * keep exceeding their soft limit and putting the system under
3675 * pressure
3676 */
3677 do {
3678 if (next_mz)
3679 mz = next_mz;
3680 else
3681 mz = mem_cgroup_largest_soft_limit_node(mctz);
3682 if (!mz)
3683 break;
3684
Ying Han0ae5e892011-05-26 16:25:25 -07003685 nr_scanned = 0;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003686 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
Johannes Weiner56600482012-01-12 17:17:59 -08003687 gfp_mask, &nr_scanned);
Balbir Singh4e416952009-09-23 15:56:39 -07003688 nr_reclaimed += reclaimed;
Ying Han0ae5e892011-05-26 16:25:25 -07003689 *total_scanned += nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003690 spin_lock(&mctz->lock);
3691
3692 /*
3693 * If we failed to reclaim anything from this memory cgroup
3694 * it is time to move on to the next cgroup
3695 */
3696 next_mz = NULL;
3697 if (!reclaimed) {
3698 do {
3699 /*
3700 * Loop until we find yet another one.
3701 *
3702 * By the time we get the soft_limit lock
3703 * again, someone might have aded the
3704 * group back on the RB tree. Iterate to
3705 * make sure we get a different mem.
3706 * mem_cgroup_largest_soft_limit_node returns
3707 * NULL if no other cgroup is present on
3708 * the tree
3709 */
3710 next_mz =
3711 __mem_cgroup_largest_soft_limit_node(mctz);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003712 if (next_mz == mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003713 css_put(&next_mz->memcg->css);
Michal Hocko39cc98f2011-05-26 16:25:28 -07003714 else /* next_mz == NULL or other memcg */
Balbir Singh4e416952009-09-23 15:56:39 -07003715 break;
3716 } while (1);
3717 }
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003718 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
3719 excess = res_counter_soft_limit_excess(&mz->memcg->res);
Balbir Singh4e416952009-09-23 15:56:39 -07003720 /*
3721 * One school of thought says that we should not add
3722 * back the node to the tree if reclaim returns 0.
3723 * But our reclaim could return 0, simply because due
3724 * to priority we are exposing a smaller subset of
3725 * memory to reclaim from. Consider this as a longer
3726 * term TODO.
3727 */
KAMEZAWA Hiroyukief8745c2009-10-01 15:44:12 -07003728 /* If excess == 0, no tree ops */
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003729 __mem_cgroup_insert_exceeded(mz->memcg, mz, mctz, excess);
Balbir Singh4e416952009-09-23 15:56:39 -07003730 spin_unlock(&mctz->lock);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003731 css_put(&mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003732 loop++;
3733 /*
3734 * Could not reclaim anything and there are no more
3735 * mem cgroups to try or we seem to be looping without
3736 * reclaiming anything.
3737 */
3738 if (!nr_reclaimed &&
3739 (next_mz == NULL ||
3740 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3741 break;
3742 } while (!nr_reclaimed);
3743 if (next_mz)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07003744 css_put(&next_mz->memcg->css);
Balbir Singh4e416952009-09-23 15:56:39 -07003745 return nr_reclaimed;
3746}
3747
Michal Hocko2ef37d32012-10-26 13:37:30 +02003748/**
3749 * mem_cgroup_force_empty_list - clears LRU of a group
3750 * @memcg: group to clear
3751 * @node: NUMA node
3752 * @zid: zone id
3753 * @lru: lru to to clear
3754 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003755 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02003756 * reclaim the pages page themselves - pages are moved to the parent (or root)
3757 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003758 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02003759static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003760 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003761{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08003762 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02003763 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003764 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08003765 struct page *busy;
3766 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003767
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003768 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08003769 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
3770 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003771
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003772 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02003773 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08003774 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07003775 struct page *page;
3776
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003777 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003778 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003779 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003780 break;
3781 }
Johannes Weiner925b7672012-01-12 17:18:15 -08003782 page = list_entry(list->prev, struct page, lru);
3783 if (busy == page) {
3784 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003785 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003786 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003787 continue;
3788 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003789 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003790
Johannes Weiner925b7672012-01-12 17:18:15 -08003791 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07003792
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003793 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003794 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08003795 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003796 cond_resched();
3797 } else
3798 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02003799 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003800}
3801
3802/*
Michal Hockoc26251f2012-10-26 13:37:28 +02003803 * make mem_cgroup's charge to be 0 if there is no task by moving
3804 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003805 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02003806 *
3807 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003808 */
Michal Hockoab5196c2012-10-26 13:37:32 +02003809static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003810{
Michal Hockoc26251f2012-10-26 13:37:28 +02003811 int node, zid;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003812
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003813 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003814 /* This is for making all *used* pages to be on LRU. */
3815 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003816 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003817 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08003818 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02003819 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003820 enum lru_list lru;
3821 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02003822 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003823 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003824 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003825 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003826 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003827 mem_cgroup_end_move(memcg);
3828 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003829 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003830
Michal Hocko2ef37d32012-10-26 13:37:30 +02003831 /*
3832 * This is a safety check because mem_cgroup_force_empty_list
3833 * could have raced with mem_cgroup_replace_page_cache callers
3834 * so the lru seemed empty but the page could have been added
3835 * right after the check. RES_USAGE should be safe as we always
3836 * charge before adding to the LRU.
3837 */
3838 } while (res_counter_read_u64(&memcg->res, RES_USAGE) > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02003839}
3840
3841/*
3842 * Reclaims as many pages from the given memcg as possible and moves
3843 * the rest to the parent.
3844 *
3845 * Caller is responsible for holding css reference for memcg.
3846 */
3847static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
3848{
3849 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
3850 struct cgroup *cgrp = memcg->css.cgroup;
3851
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003852 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02003853 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
3854 return -EBUSY;
3855
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003856 /* we call try-to-free pages for make this cgroup empty */
3857 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003858 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07003859 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003860 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003861
Michal Hockoc26251f2012-10-26 13:37:28 +02003862 if (signal_pending(current))
3863 return -EINTR;
3864
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003865 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07003866 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003867 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003868 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003869 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003870 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003871 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003872
3873 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003874 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02003875 mem_cgroup_reparent_charges(memcg);
3876
3877 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003878}
3879
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07003880static int mem_cgroup_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003881{
Michal Hockoc26251f2012-10-26 13:37:28 +02003882 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
3883 int ret;
3884
Michal Hockod8423012012-10-26 13:37:29 +02003885 if (mem_cgroup_is_root(memcg))
3886 return -EINVAL;
Michal Hockoc26251f2012-10-26 13:37:28 +02003887 css_get(&memcg->css);
3888 ret = mem_cgroup_force_empty(memcg);
3889 css_put(&memcg->css);
3890
3891 return ret;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003892}
3893
3894
Balbir Singh18f59ea2009-01-07 18:08:07 -08003895static u64 mem_cgroup_hierarchy_read(struct cgroup *cont, struct cftype *cft)
3896{
3897 return mem_cgroup_from_cont(cont)->use_hierarchy;
3898}
3899
3900static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
3901 u64 val)
3902{
3903 int retval = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003904 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003905 struct cgroup *parent = cont->parent;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003906 struct mem_cgroup *parent_memcg = NULL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003907
3908 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003909 parent_memcg = mem_cgroup_from_cont(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003910
3911 cgroup_lock();
Glauber Costa567fb432012-07-31 16:43:07 -07003912
3913 if (memcg->use_hierarchy == val)
3914 goto out;
3915
Balbir Singh18f59ea2009-01-07 18:08:07 -08003916 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003917 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003918 * in the child subtrees. If it is unset, then the change can
3919 * occur, provided the current cgroup has no children.
3920 *
3921 * For the root cgroup, parent_mem is NULL, we allow value to be
3922 * set if there are no children.
3923 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003924 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003925 (val == 1 || val == 0)) {
3926 if (list_empty(&cont->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003927 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003928 else
3929 retval = -EBUSY;
3930 } else
3931 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07003932
3933out:
Balbir Singh18f59ea2009-01-07 18:08:07 -08003934 cgroup_unlock();
3935
3936 return retval;
3937}
3938
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003939
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003940static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003941 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003942{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003943 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003944 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003945
Johannes Weiner7a159cc2011-03-23 16:42:38 -07003946 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003947 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003948 val += mem_cgroup_read_stat(iter, idx);
3949
3950 if (val < 0) /* race ? */
3951 val = 0;
3952 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07003953}
3954
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003955static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003956{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003957 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003958
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003959 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003960 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00003961 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003962 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00003963 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003964 }
3965
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003966 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
3967 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003968
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003969 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07003970 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003971
3972 return val << PAGE_SHIFT;
3973}
3974
Tejun Heoaf36f902012-04-01 12:09:55 -07003975static ssize_t mem_cgroup_read(struct cgroup *cont, struct cftype *cft,
3976 struct file *file, char __user *buf,
3977 size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003978{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003979 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Tejun Heoaf36f902012-04-01 12:09:55 -07003980 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003981 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08003982 int name, len;
3983 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003984
3985 type = MEMFILE_TYPE(cft->private);
3986 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07003987
3988 if (!do_swap_account && type == _MEMSWAP)
3989 return -EOPNOTSUPP;
3990
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003991 switch (type) {
3992 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003993 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003994 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003995 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003996 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003997 break;
3998 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08003999 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004000 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004001 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004002 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004003 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004004 case _KMEM:
4005 val = res_counter_read_u64(&memcg->kmem, name);
4006 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004007 default:
4008 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004009 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004010
4011 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4012 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004013}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004014
4015static int memcg_update_kmem_limit(struct cgroup *cont, u64 val)
4016{
4017 int ret = -EINVAL;
4018#ifdef CONFIG_MEMCG_KMEM
4019 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
4020 /*
4021 * For simplicity, we won't allow this to be disabled. It also can't
4022 * be changed if the cgroup has children already, or if tasks had
4023 * already joined.
4024 *
4025 * If tasks join before we set the limit, a person looking at
4026 * kmem.usage_in_bytes will have no way to determine when it took
4027 * place, which makes the value quite meaningless.
4028 *
4029 * After it first became limited, changes in the value of the limit are
4030 * of course permitted.
4031 *
4032 * Taking the cgroup_lock is really offensive, but it is so far the only
4033 * way to guarantee that no children will appear. There are plenty of
4034 * other offenders, and they should all go away. Fine grained locking
4035 * is probably the way to go here. When we are fully hierarchical, we
4036 * can also get rid of the use_hierarchy check.
4037 */
4038 cgroup_lock();
4039 mutex_lock(&set_limit_mutex);
4040 if (!memcg->kmem_account_flags && val != RESOURCE_MAX) {
4041 if (cgroup_task_count(cont) || (memcg->use_hierarchy &&
4042 !list_empty(&cont->children))) {
4043 ret = -EBUSY;
4044 goto out;
4045 }
4046 ret = res_counter_set_limit(&memcg->kmem, val);
4047 VM_BUG_ON(ret);
4048
4049 memcg_kmem_set_active(memcg);
4050 } else
4051 ret = res_counter_set_limit(&memcg->kmem, val);
4052out:
4053 mutex_unlock(&set_limit_mutex);
4054 cgroup_unlock();
4055#endif
4056 return ret;
4057}
4058
4059static void memcg_propagate_kmem(struct mem_cgroup *memcg)
4060{
4061 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4062 if (!parent)
4063 return;
4064 memcg->kmem_account_flags = parent->kmem_account_flags;
4065}
4066
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004067/*
4068 * The user of this function is...
4069 * RES_LIMIT.
4070 */
Paul Menage856c13a2008-07-25 01:47:04 -07004071static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
4072 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004073{
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004074 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Glauber Costa86ae53e2012-12-18 14:21:45 -08004075 enum res_type type;
4076 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004077 unsigned long long val;
4078 int ret;
4079
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004080 type = MEMFILE_TYPE(cft->private);
4081 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004082
4083 if (!do_swap_account && type == _MEMSWAP)
4084 return -EOPNOTSUPP;
4085
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004086 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004087 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07004088 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
4089 ret = -EINVAL;
4090 break;
4091 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004092 /* This function does all necessary parse...reuse it */
4093 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004094 if (ret)
4095 break;
4096 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004097 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004098 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004099 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004100 else if (type == _KMEM)
4101 ret = memcg_update_kmem_limit(cont, val);
4102 else
4103 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004104 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07004105 case RES_SOFT_LIMIT:
4106 ret = res_counter_memparse_write_strategy(buffer, &val);
4107 if (ret)
4108 break;
4109 /*
4110 * For memsw, soft limits are hard to implement in terms
4111 * of semantics, for now, we support soft limits for
4112 * control without swap
4113 */
4114 if (type == _MEM)
4115 ret = res_counter_set_soft_limit(&memcg->res, val);
4116 else
4117 ret = -EINVAL;
4118 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004119 default:
4120 ret = -EINVAL; /* should be BUG() ? */
4121 break;
4122 }
4123 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004124}
4125
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004126static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
4127 unsigned long long *mem_limit, unsigned long long *memsw_limit)
4128{
4129 struct cgroup *cgroup;
4130 unsigned long long min_limit, min_memsw_limit, tmp;
4131
4132 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4133 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4134 cgroup = memcg->css.cgroup;
4135 if (!memcg->use_hierarchy)
4136 goto out;
4137
4138 while (cgroup->parent) {
4139 cgroup = cgroup->parent;
4140 memcg = mem_cgroup_from_cont(cgroup);
4141 if (!memcg->use_hierarchy)
4142 break;
4143 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4144 min_limit = min(min_limit, tmp);
4145 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4146 min_memsw_limit = min(min_memsw_limit, tmp);
4147 }
4148out:
4149 *mem_limit = min_limit;
4150 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004151}
4152
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004153static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004154{
Tejun Heoaf36f902012-04-01 12:09:55 -07004155 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Glauber Costa86ae53e2012-12-18 14:21:45 -08004156 int name;
4157 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004158
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004159 type = MEMFILE_TYPE(event);
4160 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07004161
4162 if (!do_swap_account && type == _MEMSWAP)
4163 return -EOPNOTSUPP;
4164
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004165 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004166 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004167 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004168 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004169 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004170 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004171 else if (type == _KMEM)
4172 res_counter_reset_max(&memcg->kmem);
4173 else
4174 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004175 break;
4176 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004177 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004178 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004179 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004180 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004181 else if (type == _KMEM)
4182 res_counter_reset_failcnt(&memcg->kmem);
4183 else
4184 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004185 break;
4186 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004187
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004188 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004189}
4190
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004191static u64 mem_cgroup_move_charge_read(struct cgroup *cgrp,
4192 struct cftype *cft)
4193{
4194 return mem_cgroup_from_cont(cgrp)->move_charge_at_immigrate;
4195}
4196
Daisuke Nishimura02491442010-03-10 15:22:17 -08004197#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004198static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4199 struct cftype *cft, u64 val)
4200{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004201 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004202
4203 if (val >= (1 << NR_MOVE_TYPE))
4204 return -EINVAL;
4205 /*
4206 * We check this value several times in both in can_attach() and
4207 * attach(), so we need cgroup lock to prevent this value from being
4208 * inconsistent.
4209 */
4210 cgroup_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004211 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004212 cgroup_unlock();
4213
4214 return 0;
4215}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004216#else
4217static int mem_cgroup_move_charge_write(struct cgroup *cgrp,
4218 struct cftype *cft, u64 val)
4219{
4220 return -ENOSYS;
4221}
4222#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004223
Ying Han406eb0c2011-05-26 16:25:37 -07004224#ifdef CONFIG_NUMA
Wanpeng Liab215882012-07-31 16:43:09 -07004225static int memcg_numa_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weinerfada52c2012-05-29 15:07:06 -07004226 struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07004227{
4228 int nid;
4229 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
4230 unsigned long node_nr;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004231 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Ying Han406eb0c2011-05-26 16:25:37 -07004232
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004233 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004234 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004235 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004236 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07004237 seq_printf(m, " N%d=%lu", nid, node_nr);
4238 }
4239 seq_putc(m, '\n');
4240
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004241 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004242 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004243 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004244 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004245 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07004246 seq_printf(m, " N%d=%lu", nid, node_nr);
4247 }
4248 seq_putc(m, '\n');
4249
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004250 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004251 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004252 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004253 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004254 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07004255 seq_printf(m, " N%d=%lu", nid, node_nr);
4256 }
4257 seq_putc(m, '\n');
4258
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004259 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004260 seq_printf(m, "unevictable=%lu", unevictable_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004261 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004262 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07004263 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07004264 seq_printf(m, " N%d=%lu", nid, node_nr);
4265 }
4266 seq_putc(m, '\n');
4267 return 0;
4268}
4269#endif /* CONFIG_NUMA */
4270
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004271static const char * const mem_cgroup_lru_names[] = {
4272 "inactive_anon",
4273 "active_anon",
4274 "inactive_file",
4275 "active_file",
4276 "unevictable",
4277};
4278
4279static inline void mem_cgroup_lru_names_not_uptodate(void)
4280{
4281 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
4282}
4283
Wanpeng Liab215882012-07-31 16:43:09 -07004284static int memcg_stat_show(struct cgroup *cont, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004285 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004286{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004287 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004288 struct mem_cgroup *mi;
4289 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004290
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004291 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004292 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004293 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004294 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
4295 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004296 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004297
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004298 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
4299 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
4300 mem_cgroup_read_events(memcg, i));
4301
4302 for (i = 0; i < NR_LRU_LISTS; i++)
4303 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
4304 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
4305
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004306 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004307 {
4308 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004309 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004310 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004311 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004312 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4313 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004314 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004315
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004316 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
4317 long long val = 0;
4318
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004319 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004320 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004321 for_each_mem_cgroup_tree(mi, memcg)
4322 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
4323 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
4324 }
4325
4326 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
4327 unsigned long long val = 0;
4328
4329 for_each_mem_cgroup_tree(mi, memcg)
4330 val += mem_cgroup_read_events(mi, i);
4331 seq_printf(m, "total_%s %llu\n",
4332 mem_cgroup_events_names[i], val);
4333 }
4334
4335 for (i = 0; i < NR_LRU_LISTS; i++) {
4336 unsigned long long val = 0;
4337
4338 for_each_mem_cgroup_tree(mi, memcg)
4339 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
4340 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004341 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004342
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004343#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004344 {
4345 int nid, zid;
4346 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07004347 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004348 unsigned long recent_rotated[2] = {0, 0};
4349 unsigned long recent_scanned[2] = {0, 0};
4350
4351 for_each_online_node(nid)
4352 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004353 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07004354 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004355
Hugh Dickins89abfab2012-05-29 15:06:53 -07004356 recent_rotated[0] += rstat->recent_rotated[0];
4357 recent_rotated[1] += rstat->recent_rotated[1];
4358 recent_scanned[0] += rstat->recent_scanned[0];
4359 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004360 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004361 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
4362 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
4363 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
4364 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004365 }
4366#endif
4367
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004368 return 0;
4369}
4370
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004371static u64 mem_cgroup_swappiness_read(struct cgroup *cgrp, struct cftype *cft)
4372{
4373 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4374
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004375 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004376}
4377
4378static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
4379 u64 val)
4380{
4381 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4382 struct mem_cgroup *parent;
Li Zefan068b38c2009-01-15 13:51:26 -08004383
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004384 if (val > 100)
4385 return -EINVAL;
4386
4387 if (cgrp->parent == NULL)
4388 return -EINVAL;
4389
4390 parent = mem_cgroup_from_cont(cgrp->parent);
Li Zefan068b38c2009-01-15 13:51:26 -08004391
4392 cgroup_lock();
4393
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004394 /* If under hierarchy, only empty-root can set this value */
4395 if ((parent->use_hierarchy) ||
Li Zefan068b38c2009-01-15 13:51:26 -08004396 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
4397 cgroup_unlock();
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004398 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08004399 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004400
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004401 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004402
Li Zefan068b38c2009-01-15 13:51:26 -08004403 cgroup_unlock();
4404
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004405 return 0;
4406}
4407
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004408static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4409{
4410 struct mem_cgroup_threshold_ary *t;
4411 u64 usage;
4412 int i;
4413
4414 rcu_read_lock();
4415 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004416 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004417 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004418 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004419
4420 if (!t)
4421 goto unlock;
4422
4423 usage = mem_cgroup_usage(memcg, swap);
4424
4425 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004426 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004427 * If it's not true, a threshold was crossed after last
4428 * call of __mem_cgroup_threshold().
4429 */
Phil Carmody5407a562010-05-26 14:42:42 -07004430 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004431
4432 /*
4433 * Iterate backward over array of thresholds starting from
4434 * current_threshold and check if a threshold is crossed.
4435 * If none of thresholds below usage is crossed, we read
4436 * only one element of the array here.
4437 */
4438 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4439 eventfd_signal(t->entries[i].eventfd, 1);
4440
4441 /* i = current_threshold + 1 */
4442 i++;
4443
4444 /*
4445 * Iterate forward over array of thresholds starting from
4446 * current_threshold+1 and check if a threshold is crossed.
4447 * If none of thresholds above usage is crossed, we read
4448 * only one element of the array here.
4449 */
4450 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4451 eventfd_signal(t->entries[i].eventfd, 1);
4452
4453 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004454 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004455unlock:
4456 rcu_read_unlock();
4457}
4458
4459static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4460{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004461 while (memcg) {
4462 __mem_cgroup_threshold(memcg, false);
4463 if (do_swap_account)
4464 __mem_cgroup_threshold(memcg, true);
4465
4466 memcg = parent_mem_cgroup(memcg);
4467 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004468}
4469
4470static int compare_thresholds(const void *a, const void *b)
4471{
4472 const struct mem_cgroup_threshold *_a = a;
4473 const struct mem_cgroup_threshold *_b = b;
4474
4475 return _a->threshold - _b->threshold;
4476}
4477
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004478static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004479{
4480 struct mem_cgroup_eventfd_list *ev;
4481
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004482 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004483 eventfd_signal(ev->eventfd, 1);
4484 return 0;
4485}
4486
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004487static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004488{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004489 struct mem_cgroup *iter;
4490
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004491 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004492 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004493}
4494
4495static int mem_cgroup_usage_register_event(struct cgroup *cgrp,
4496 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004497{
4498 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004499 struct mem_cgroup_thresholds *thresholds;
4500 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004501 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004502 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004503 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004504
4505 ret = res_counter_memparse_write_strategy(args, &threshold);
4506 if (ret)
4507 return ret;
4508
4509 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004510
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004511 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004512 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004513 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004514 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004515 else
4516 BUG();
4517
4518 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4519
4520 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004521 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004522 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4523
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004524 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004525
4526 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004527 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004528 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004529 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004530 ret = -ENOMEM;
4531 goto unlock;
4532 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004533 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004534
4535 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004536 if (thresholds->primary) {
4537 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004538 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004539 }
4540
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004541 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004542 new->entries[size - 1].eventfd = eventfd;
4543 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004544
4545 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004546 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004547 compare_thresholds, NULL);
4548
4549 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004550 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004551 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004552 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004553 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004554 * new->current_threshold will not be used until
4555 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004556 * it here.
4557 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004558 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004559 } else
4560 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004561 }
4562
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004563 /* Free old spare buffer and save old primary buffer as spare */
4564 kfree(thresholds->spare);
4565 thresholds->spare = thresholds->primary;
4566
4567 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004568
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004569 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004570 synchronize_rcu();
4571
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004572unlock:
4573 mutex_unlock(&memcg->thresholds_lock);
4574
4575 return ret;
4576}
4577
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004578static void mem_cgroup_usage_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004579 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004580{
4581 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004582 struct mem_cgroup_thresholds *thresholds;
4583 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004584 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004585 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004586 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004587
4588 mutex_lock(&memcg->thresholds_lock);
4589 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004590 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004591 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004592 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004593 else
4594 BUG();
4595
Anton Vorontsov371528c2012-02-24 05:14:46 +04004596 if (!thresholds->primary)
4597 goto unlock;
4598
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004599 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
4600
4601 /* Check if a threshold crossed before removing */
4602 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4603
4604 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004605 size = 0;
4606 for (i = 0; i < thresholds->primary->size; i++) {
4607 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004608 size++;
4609 }
4610
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004611 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004612
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004613 /* Set thresholds array to NULL if we don't have thresholds */
4614 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004615 kfree(new);
4616 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004617 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004618 }
4619
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004620 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004621
4622 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004623 new->current_threshold = -1;
4624 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4625 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004626 continue;
4627
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004628 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004629 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004630 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004631 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004632 * until rcu_assign_pointer(), so it's safe to increment
4633 * it here.
4634 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004635 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004636 }
4637 j++;
4638 }
4639
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004640swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004641 /* Swap primary and spare array */
4642 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004643 /* If all events are unregistered, free the spare array */
4644 if (!new) {
4645 kfree(thresholds->spare);
4646 thresholds->spare = NULL;
4647 }
4648
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004649 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004650
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004651 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004652 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04004653unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004654 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004655}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004656
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004657static int mem_cgroup_oom_register_event(struct cgroup *cgrp,
4658 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
4659{
4660 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
4661 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004662 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004663
4664 BUG_ON(type != _OOM_TYPE);
4665 event = kmalloc(sizeof(*event), GFP_KERNEL);
4666 if (!event)
4667 return -ENOMEM;
4668
Michal Hocko1af8efe2011-07-26 16:08:24 -07004669 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004670
4671 event->eventfd = eventfd;
4672 list_add(&event->list, &memcg->oom_notify);
4673
4674 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004675 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004676 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004677 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004678
4679 return 0;
4680}
4681
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004682static void mem_cgroup_oom_unregister_event(struct cgroup *cgrp,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004683 struct cftype *cft, struct eventfd_ctx *eventfd)
4684{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004685 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004686 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004687 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004688
4689 BUG_ON(type != _OOM_TYPE);
4690
Michal Hocko1af8efe2011-07-26 16:08:24 -07004691 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004692
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004693 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004694 if (ev->eventfd == eventfd) {
4695 list_del(&ev->list);
4696 kfree(ev);
4697 }
4698 }
4699
Michal Hocko1af8efe2011-07-26 16:08:24 -07004700 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004701}
4702
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004703static int mem_cgroup_oom_control_read(struct cgroup *cgrp,
4704 struct cftype *cft, struct cgroup_map_cb *cb)
4705{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004706 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004707
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004708 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004709
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004710 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004711 cb->fill(cb, "under_oom", 1);
4712 else
4713 cb->fill(cb, "under_oom", 0);
4714 return 0;
4715}
4716
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004717static int mem_cgroup_oom_control_write(struct cgroup *cgrp,
4718 struct cftype *cft, u64 val)
4719{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004720 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004721 struct mem_cgroup *parent;
4722
4723 /* cannot set to root cgroup and only 0 and 1 are allowed */
4724 if (!cgrp->parent || !((val == 0) || (val == 1)))
4725 return -EINVAL;
4726
4727 parent = mem_cgroup_from_cont(cgrp->parent);
4728
4729 cgroup_lock();
4730 /* oom-kill-disable is a flag for subhierarchy. */
4731 if ((parent->use_hierarchy) ||
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004732 (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004733 cgroup_unlock();
4734 return -EINVAL;
4735 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004736 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004737 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004738 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004739 cgroup_unlock();
4740 return 0;
4741}
4742
Andrew Mortonc255a452012-07-31 16:43:02 -07004743#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03004744static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004745{
Glauber Costa510fc4e2012-12-18 14:21:47 -08004746 memcg_propagate_kmem(memcg);
Glauber Costa1d62e432012-04-09 19:36:33 -03004747 return mem_cgroup_sockets_init(memcg, ss);
Glauber Costae5671df2011-12-11 21:47:01 +00004748};
4749
Glauber Costa1d62e432012-04-09 19:36:33 -03004750static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004751{
Glauber Costa1d62e432012-04-09 19:36:33 -03004752 mem_cgroup_sockets_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004753}
Glauber Costae5671df2011-12-11 21:47:01 +00004754#else
Glauber Costacbe128e32012-04-09 19:36:34 -03004755static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004756{
4757 return 0;
4758}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004759
Glauber Costa1d62e432012-04-09 19:36:33 -03004760static void kmem_cgroup_destroy(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004761{
4762}
Glauber Costae5671df2011-12-11 21:47:01 +00004763#endif
4764
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004765static struct cftype mem_cgroup_files[] = {
4766 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004767 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004768 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004769 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004770 .register_event = mem_cgroup_usage_register_event,
4771 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004772 },
4773 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004774 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004775 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004776 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004777 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004778 },
4779 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004780 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004781 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07004782 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004783 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004784 },
4785 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004786 .name = "soft_limit_in_bytes",
4787 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4788 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004789 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07004790 },
4791 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004792 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004793 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004794 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004795 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004796 },
Balbir Singh8697d332008-02-07 00:13:59 -08004797 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004798 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004799 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004800 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004801 {
4802 .name = "force_empty",
4803 .trigger = mem_cgroup_force_empty_write,
4804 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004805 {
4806 .name = "use_hierarchy",
4807 .write_u64 = mem_cgroup_hierarchy_write,
4808 .read_u64 = mem_cgroup_hierarchy_read,
4809 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004810 {
4811 .name = "swappiness",
4812 .read_u64 = mem_cgroup_swappiness_read,
4813 .write_u64 = mem_cgroup_swappiness_write,
4814 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004815 {
4816 .name = "move_charge_at_immigrate",
4817 .read_u64 = mem_cgroup_move_charge_read,
4818 .write_u64 = mem_cgroup_move_charge_write,
4819 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004820 {
4821 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004822 .read_map = mem_cgroup_oom_control_read,
4823 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004824 .register_event = mem_cgroup_oom_register_event,
4825 .unregister_event = mem_cgroup_oom_unregister_event,
4826 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4827 },
Ying Han406eb0c2011-05-26 16:25:37 -07004828#ifdef CONFIG_NUMA
4829 {
4830 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07004831 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07004832 },
4833#endif
Andrew Mortonc255a452012-07-31 16:43:02 -07004834#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004835 {
4836 .name = "memsw.usage_in_bytes",
4837 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07004838 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004839 .register_event = mem_cgroup_usage_register_event,
4840 .unregister_event = mem_cgroup_usage_unregister_event,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004841 },
4842 {
4843 .name = "memsw.max_usage_in_bytes",
4844 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
4845 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004846 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004847 },
4848 {
4849 .name = "memsw.limit_in_bytes",
4850 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
4851 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07004852 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004853 },
4854 {
4855 .name = "memsw.failcnt",
4856 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
4857 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07004858 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004859 },
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004860#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08004861#ifdef CONFIG_MEMCG_KMEM
4862 {
4863 .name = "kmem.limit_in_bytes",
4864 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
4865 .write_string = mem_cgroup_write,
4866 .read = mem_cgroup_read,
4867 },
4868 {
4869 .name = "kmem.usage_in_bytes",
4870 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
4871 .read = mem_cgroup_read,
4872 },
4873 {
4874 .name = "kmem.failcnt",
4875 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
4876 .trigger = mem_cgroup_reset,
4877 .read = mem_cgroup_read,
4878 },
4879 {
4880 .name = "kmem.max_usage_in_bytes",
4881 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
4882 .trigger = mem_cgroup_reset,
4883 .read = mem_cgroup_read,
4884 },
4885#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07004886 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07004887};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004888
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004889static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004890{
4891 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004892 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004893 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004894 /*
4895 * This routine is called against possible nodes.
4896 * But it's BUG to call kmalloc() against offline node.
4897 *
4898 * TODO: this routine can waste much memory for nodes which will
4899 * never be onlined. It's better to use memory hotplug callback
4900 * function.
4901 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004902 if (!node_state(node, N_NORMAL_MEMORY))
4903 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004904 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004905 if (!pn)
4906 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004907
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004908 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4909 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004910 lruvec_init(&mz->lruvec);
Balbir Singhf64c3f52009-09-23 15:56:37 -07004911 mz->usage_in_excess = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07004912 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004913 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004914 }
Igor Mammedov0a619e52011-11-02 13:38:21 -07004915 memcg->info.nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004916 return 0;
4917}
4918
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004919static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004920{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004921 kfree(memcg->info.nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004922}
4923
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004924static struct mem_cgroup *mem_cgroup_alloc(void)
4925{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004926 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004927 int size = sizeof(struct mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004928
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08004929 /* Can be very big if MAX_NUMNODES is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08004930 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004931 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004932 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004933 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004934
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004935 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004936 return NULL;
4937
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004938 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
4939 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004940 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004941 spin_lock_init(&memcg->pcp_counter_lock);
4942 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004943
4944out_free:
4945 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004946 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004947 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004948 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004949 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004950}
4951
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004952/*
Glauber Costa3afe36b2012-05-29 15:07:10 -07004953 * Helpers for freeing a kmalloc()ed/vzalloc()ed mem_cgroup by RCU,
Hugh Dickins59927fb2012-03-15 15:17:07 -07004954 * but in process context. The work_freeing structure is overlaid
4955 * on the rcu_freeing structure, which itself is overlaid on memsw.
4956 */
Glauber Costa3afe36b2012-05-29 15:07:10 -07004957static void free_work(struct work_struct *work)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004958{
4959 struct mem_cgroup *memcg;
Glauber Costa3afe36b2012-05-29 15:07:10 -07004960 int size = sizeof(struct mem_cgroup);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004961
4962 memcg = container_of(work, struct mem_cgroup, work_freeing);
Glauber Costa3f134612012-05-29 15:07:11 -07004963 /*
4964 * We need to make sure that (at least for now), the jump label
4965 * destruction code runs outside of the cgroup lock. This is because
4966 * get_online_cpus(), which is called from the static_branch update,
4967 * can't be called inside the cgroup_lock. cpusets are the ones
4968 * enforcing this dependency, so if they ever change, we might as well.
4969 *
4970 * schedule_work() will guarantee this happens. Be careful if you need
4971 * to move this code around, and make sure it is outside
4972 * the cgroup_lock.
4973 */
4974 disarm_sock_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004975 if (size < PAGE_SIZE)
4976 kfree(memcg);
4977 else
4978 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004979}
Glauber Costa3afe36b2012-05-29 15:07:10 -07004980
4981static void free_rcu(struct rcu_head *rcu_head)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004982{
4983 struct mem_cgroup *memcg;
4984
4985 memcg = container_of(rcu_head, struct mem_cgroup, rcu_freeing);
Glauber Costa3afe36b2012-05-29 15:07:10 -07004986 INIT_WORK(&memcg->work_freeing, free_work);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004987 schedule_work(&memcg->work_freeing);
4988}
4989
4990/*
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004991 * At destroying mem_cgroup, references from swap_cgroup can remain.
4992 * (scanning all at force_empty is too costly...)
4993 *
4994 * Instead of clearing all references at force_empty, we remember
4995 * the number of reference from swap_cgroup and free mem_cgroup when
4996 * it goes down to 0.
4997 *
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004998 * Removal of cgroup itself succeeds regardless of refs from swap.
4999 */
5000
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005001static void __mem_cgroup_free(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005002{
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08005003 int node;
5004
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005005 mem_cgroup_remove_from_trees(memcg);
5006 free_css_id(&mem_cgroup_subsys, &memcg->css);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005007
Bob Liu3ed28fa2012-01-12 17:19:04 -08005008 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005009 free_mem_cgroup_per_zone_info(memcg, node);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08005010
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005011 free_percpu(memcg->stat);
Glauber Costa3afe36b2012-05-29 15:07:10 -07005012 call_rcu(&memcg->rcu_freeing, free_rcu);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005013}
5014
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005015static void mem_cgroup_get(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005016{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005017 atomic_inc(&memcg->refcnt);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005018}
5019
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005020static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005021{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005022 if (atomic_sub_and_test(count, &memcg->refcnt)) {
5023 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
5024 __mem_cgroup_free(memcg);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005025 if (parent)
5026 mem_cgroup_put(parent);
5027 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005028}
5029
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005030static void mem_cgroup_put(struct mem_cgroup *memcg)
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005031{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005032 __mem_cgroup_put(memcg, 1);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005033}
5034
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005035/*
5036 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5037 */
Glauber Costae1aab162011-12-11 21:47:03 +00005038struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005039{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005040 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005041 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005042 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005043}
Glauber Costae1aab162011-12-11 21:47:03 +00005044EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005045
Andrew Mortonc255a452012-07-31 16:43:02 -07005046#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005047static void __init enable_swap_cgroup(void)
5048{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08005049 if (!mem_cgroup_disabled() && really_do_swap_account)
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005050 do_swap_account = 1;
5051}
5052#else
5053static void __init enable_swap_cgroup(void)
5054{
5055}
5056#endif
5057
Balbir Singhf64c3f52009-09-23 15:56:37 -07005058static int mem_cgroup_soft_limit_tree_init(void)
5059{
5060 struct mem_cgroup_tree_per_node *rtpn;
5061 struct mem_cgroup_tree_per_zone *rtpz;
5062 int tmp, node, zone;
5063
Bob Liu3ed28fa2012-01-12 17:19:04 -08005064 for_each_node(node) {
Balbir Singhf64c3f52009-09-23 15:56:37 -07005065 tmp = node;
5066 if (!node_state(node, N_NORMAL_MEMORY))
5067 tmp = -1;
5068 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
5069 if (!rtpn)
Michal Hockoc3cecc62012-01-12 17:18:50 -08005070 goto err_cleanup;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005071
5072 soft_limit_tree.rb_tree_per_node[node] = rtpn;
5073
5074 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5075 rtpz = &rtpn->rb_tree_per_zone[zone];
5076 rtpz->rb_root = RB_ROOT;
5077 spin_lock_init(&rtpz->lock);
5078 }
5079 }
5080 return 0;
Michal Hockoc3cecc62012-01-12 17:18:50 -08005081
5082err_cleanup:
Bob Liu3ed28fa2012-01-12 17:19:04 -08005083 for_each_node(node) {
Michal Hockoc3cecc62012-01-12 17:18:50 -08005084 if (!soft_limit_tree.rb_tree_per_node[node])
5085 break;
5086 kfree(soft_limit_tree.rb_tree_per_node[node]);
5087 soft_limit_tree.rb_tree_per_node[node] = NULL;
5088 }
5089 return 1;
5090
Balbir Singhf64c3f52009-09-23 15:56:37 -07005091}
5092
Li Zefan0eb253e2009-01-15 13:51:25 -08005093static struct cgroup_subsys_state * __ref
Tejun Heo92fb9742012-11-19 08:13:38 -08005094mem_cgroup_css_alloc(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005095{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005096 struct mem_cgroup *memcg, *parent;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005097 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005098 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005099
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005100 memcg = mem_cgroup_alloc();
5101 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005102 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005103
Bob Liu3ed28fa2012-01-12 17:19:04 -08005104 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005105 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005106 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005107
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005108 /* root ? */
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005109 if (cont->parent == NULL) {
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08005110 int cpu;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005111 enable_swap_cgroup();
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005112 parent = NULL;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005113 if (mem_cgroup_soft_limit_tree_init())
5114 goto free_out;
Hillf Dantona41c58a2011-12-19 17:11:57 -08005115 root_mem_cgroup = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08005116 for_each_possible_cpu(cpu) {
5117 struct memcg_stock_pcp *stock =
5118 &per_cpu(memcg_stock, cpu);
5119 INIT_WORK(&stock->work, drain_local_stock);
5120 }
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07005121 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005122 } else {
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005123 parent = mem_cgroup_from_cont(cont->parent);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005124 memcg->use_hierarchy = parent->use_hierarchy;
5125 memcg->oom_kill_disable = parent->oom_kill_disable;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005126 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005127
Balbir Singh18f59ea2009-01-07 18:08:07 -08005128 if (parent && parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005129 res_counter_init(&memcg->res, &parent->res);
5130 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005131 res_counter_init(&memcg->kmem, &parent->kmem);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005132 /*
5133 * We increment refcnt of the parent to ensure that we can
5134 * safely access it on res_counter_charge/uncharge.
5135 * This refcnt will be decremented when freeing this
5136 * mem_cgroup(see mem_cgroup_put).
5137 */
5138 mem_cgroup_get(parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005139 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005140 res_counter_init(&memcg->res, NULL);
5141 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005142 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07005143 /*
5144 * Deeper hierachy with use_hierarchy == false doesn't make
5145 * much sense so let cgroup subsystem know about this
5146 * unfortunate state in our controller.
5147 */
5148 if (parent && parent != root_mem_cgroup)
5149 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005150 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005151 memcg->last_scanned_node = MAX_NUMNODES;
5152 INIT_LIST_HEAD(&memcg->oom_notify);
Balbir Singh6d61ef42009-01-07 18:08:06 -08005153
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005154 if (parent)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005155 memcg->swappiness = mem_cgroup_swappiness(parent);
5156 atomic_set(&memcg->refcnt, 1);
5157 memcg->move_charge_at_immigrate = 0;
5158 mutex_init(&memcg->thresholds_lock);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07005159 spin_lock_init(&memcg->move_lock);
Glauber Costacbe128e32012-04-09 19:36:34 -03005160
5161 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
5162 if (error) {
5163 /*
5164 * We call put now because our (and parent's) refcnts
5165 * are already in place. mem_cgroup_put() will internally
5166 * call __mem_cgroup_free, so return directly
5167 */
5168 mem_cgroup_put(memcg);
5169 return ERR_PTR(error);
5170 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005171 return &memcg->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005172free_out:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005173 __mem_cgroup_free(memcg);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005174 return ERR_PTR(error);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005175}
5176
Tejun Heo92fb9742012-11-19 08:13:38 -08005177static void mem_cgroup_css_offline(struct cgroup *cont)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005178{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005179 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005180
Michal Hockoab5196c2012-10-26 13:37:32 +02005181 mem_cgroup_reparent_charges(memcg);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005182}
5183
Tejun Heo92fb9742012-11-19 08:13:38 -08005184static void mem_cgroup_css_free(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005185{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005186 struct mem_cgroup *memcg = mem_cgroup_from_cont(cont);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005187
Glauber Costa1d62e432012-04-09 19:36:33 -03005188 kmem_cgroup_destroy(memcg);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005189
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005190 mem_cgroup_put(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005191}
5192
Daisuke Nishimura02491442010-03-10 15:22:17 -08005193#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005194/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005195#define PRECHARGE_COUNT_AT_ONCE 256
5196static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005197{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005198 int ret = 0;
5199 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005200 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005201
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005202 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005203 mc.precharge += count;
5204 /* we don't need css_get for root */
5205 return ret;
5206 }
5207 /* try to charge at once */
5208 if (count > 1) {
5209 struct res_counter *dummy;
5210 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005211 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005212 * by cgroup_lock_live_cgroup() that it is not removed and we
5213 * are still under the same cgroup_mutex. So we can postpone
5214 * css_get().
5215 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005216 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005217 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005218 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005219 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005220 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005221 goto one_by_one;
5222 }
5223 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005224 return ret;
5225 }
5226one_by_one:
5227 /* fall back to one by one charge */
5228 while (count--) {
5229 if (signal_pending(current)) {
5230 ret = -EINTR;
5231 break;
5232 }
5233 if (!batch_count--) {
5234 batch_count = PRECHARGE_COUNT_AT_ONCE;
5235 cond_resched();
5236 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005237 ret = __mem_cgroup_try_charge(NULL,
5238 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005239 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005240 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005241 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005242 mc.precharge++;
5243 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005244 return ret;
5245}
5246
5247/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005248 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005249 * @vma: the vma the pte to be checked belongs
5250 * @addr: the address corresponding to the pte to be checked
5251 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005252 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005253 *
5254 * Returns
5255 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5256 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5257 * move charge. if @target is not NULL, the page is stored in target->page
5258 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005259 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5260 * target for charge migration. if @target is not NULL, the entry is stored
5261 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005262 *
5263 * Called with pte lock held.
5264 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005265union mc_target {
5266 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005267 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005268};
5269
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005270enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005271 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005272 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005273 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005274};
5275
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005276static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5277 unsigned long addr, pte_t ptent)
5278{
5279 struct page *page = vm_normal_page(vma, addr, ptent);
5280
5281 if (!page || !page_mapped(page))
5282 return NULL;
5283 if (PageAnon(page)) {
5284 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005285 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005286 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005287 } else if (!move_file())
5288 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005289 return NULL;
5290 if (!get_page_unless_zero(page))
5291 return NULL;
5292
5293 return page;
5294}
5295
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005296#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005297static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5298 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5299{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005300 struct page *page = NULL;
5301 swp_entry_t ent = pte_to_swp_entry(ptent);
5302
5303 if (!move_anon() || non_swap_entry(ent))
5304 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005305 /*
5306 * Because lookup_swap_cache() updates some statistics counter,
5307 * we call find_get_page() with swapper_space directly.
5308 */
5309 page = find_get_page(&swapper_space, ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005310 if (do_swap_account)
5311 entry->val = ent.val;
5312
5313 return page;
5314}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005315#else
5316static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5317 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5318{
5319 return NULL;
5320}
5321#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005322
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005323static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5324 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5325{
5326 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005327 struct address_space *mapping;
5328 pgoff_t pgoff;
5329
5330 if (!vma->vm_file) /* anonymous vma */
5331 return NULL;
5332 if (!move_file())
5333 return NULL;
5334
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005335 mapping = vma->vm_file->f_mapping;
5336 if (pte_none(ptent))
5337 pgoff = linear_page_index(vma, addr);
5338 else /* pte_file(ptent) is true */
5339 pgoff = pte_to_pgoff(ptent);
5340
5341 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005342 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005343
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005344#ifdef CONFIG_SWAP
5345 /* shmem/tmpfs may report page out on swap: account for that too. */
5346 if (radix_tree_exceptional_entry(page)) {
5347 swp_entry_t swap = radix_to_swp_entry(page);
5348 if (do_swap_account)
5349 *entry = swap;
5350 page = find_get_page(&swapper_space, swap.val);
5351 }
5352#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005353 return page;
5354}
5355
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005356static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005357 unsigned long addr, pte_t ptent, union mc_target *target)
5358{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005359 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005360 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005361 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005362 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005363
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005364 if (pte_present(ptent))
5365 page = mc_handle_present_pte(vma, addr, ptent);
5366 else if (is_swap_pte(ptent))
5367 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005368 else if (pte_none(ptent) || pte_file(ptent))
5369 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005370
5371 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005372 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005373 if (page) {
5374 pc = lookup_page_cgroup(page);
5375 /*
5376 * Do only loose check w/o page_cgroup lock.
5377 * mem_cgroup_move_account() checks the pc is valid or not under
5378 * the lock.
5379 */
5380 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5381 ret = MC_TARGET_PAGE;
5382 if (target)
5383 target->page = page;
5384 }
5385 if (!ret || !target)
5386 put_page(page);
5387 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005388 /* There is a swap entry and a page doesn't exist or isn't charged */
5389 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08005390 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005391 ret = MC_TARGET_SWAP;
5392 if (target)
5393 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005394 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005395 return ret;
5396}
5397
Naoya Horiguchi12724852012-03-21 16:34:28 -07005398#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5399/*
5400 * We don't consider swapping or file mapped pages because THP does not
5401 * support them for now.
5402 * Caller should make sure that pmd_trans_huge(pmd) is true.
5403 */
5404static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5405 unsigned long addr, pmd_t pmd, union mc_target *target)
5406{
5407 struct page *page = NULL;
5408 struct page_cgroup *pc;
5409 enum mc_target_type ret = MC_TARGET_NONE;
5410
5411 page = pmd_page(pmd);
5412 VM_BUG_ON(!page || !PageHead(page));
5413 if (!move_anon())
5414 return ret;
5415 pc = lookup_page_cgroup(page);
5416 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5417 ret = MC_TARGET_PAGE;
5418 if (target) {
5419 get_page(page);
5420 target->page = page;
5421 }
5422 }
5423 return ret;
5424}
5425#else
5426static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5427 unsigned long addr, pmd_t pmd, union mc_target *target)
5428{
5429 return MC_TARGET_NONE;
5430}
5431#endif
5432
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005433static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5434 unsigned long addr, unsigned long end,
5435 struct mm_walk *walk)
5436{
5437 struct vm_area_struct *vma = walk->private;
5438 pte_t *pte;
5439 spinlock_t *ptl;
5440
Naoya Horiguchi12724852012-03-21 16:34:28 -07005441 if (pmd_trans_huge_lock(pmd, vma) == 1) {
5442 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5443 mc.precharge += HPAGE_PMD_NR;
5444 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005445 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005446 }
Dave Hansen03319322011-03-22 16:32:56 -07005447
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005448 if (pmd_trans_unstable(pmd))
5449 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005450 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5451 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005452 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005453 mc.precharge++; /* increment precharge temporarily */
5454 pte_unmap_unlock(pte - 1, ptl);
5455 cond_resched();
5456
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005457 return 0;
5458}
5459
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005460static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5461{
5462 unsigned long precharge;
5463 struct vm_area_struct *vma;
5464
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005465 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005466 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5467 struct mm_walk mem_cgroup_count_precharge_walk = {
5468 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5469 .mm = mm,
5470 .private = vma,
5471 };
5472 if (is_vm_hugetlb_page(vma))
5473 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005474 walk_page_range(vma->vm_start, vma->vm_end,
5475 &mem_cgroup_count_precharge_walk);
5476 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005477 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005478
5479 precharge = mc.precharge;
5480 mc.precharge = 0;
5481
5482 return precharge;
5483}
5484
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005485static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5486{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005487 unsigned long precharge = mem_cgroup_count_precharge(mm);
5488
5489 VM_BUG_ON(mc.moving_task);
5490 mc.moving_task = current;
5491 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005492}
5493
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005494/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5495static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005496{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005497 struct mem_cgroup *from = mc.from;
5498 struct mem_cgroup *to = mc.to;
5499
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005500 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005501 if (mc.precharge) {
5502 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
5503 mc.precharge = 0;
5504 }
5505 /*
5506 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5507 * we must uncharge here.
5508 */
5509 if (mc.moved_charge) {
5510 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
5511 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005512 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005513 /* we must fixup refcnts and charges */
5514 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005515 /* uncharge swap account from the old cgroup */
5516 if (!mem_cgroup_is_root(mc.from))
5517 res_counter_uncharge(&mc.from->memsw,
5518 PAGE_SIZE * mc.moved_swap);
5519 __mem_cgroup_put(mc.from, mc.moved_swap);
5520
5521 if (!mem_cgroup_is_root(mc.to)) {
5522 /*
5523 * we charged both to->res and to->memsw, so we should
5524 * uncharge to->res.
5525 */
5526 res_counter_uncharge(&mc.to->res,
5527 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005528 }
5529 /* we've already done mem_cgroup_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005530 mc.moved_swap = 0;
5531 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005532 memcg_oom_recover(from);
5533 memcg_oom_recover(to);
5534 wake_up_all(&mc.waitq);
5535}
5536
5537static void mem_cgroup_clear_mc(void)
5538{
5539 struct mem_cgroup *from = mc.from;
5540
5541 /*
5542 * we must clear moving_task before waking up waiters at the end of
5543 * task migration.
5544 */
5545 mc.moving_task = NULL;
5546 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005547 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005548 mc.from = NULL;
5549 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005550 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005551 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005552}
5553
Li Zefan761b3ef2012-01-31 13:47:36 +08005554static int mem_cgroup_can_attach(struct cgroup *cgroup,
5555 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005556{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005557 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005558 int ret = 0;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005559 struct mem_cgroup *memcg = mem_cgroup_from_cont(cgroup);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005560
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005561 if (memcg->move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005562 struct mm_struct *mm;
5563 struct mem_cgroup *from = mem_cgroup_from_task(p);
5564
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005565 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005566
5567 mm = get_task_mm(p);
5568 if (!mm)
5569 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005570 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005571 if (mm->owner == p) {
5572 VM_BUG_ON(mc.from);
5573 VM_BUG_ON(mc.to);
5574 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005575 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005576 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005577 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005578 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005579 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005580 mc.to = memcg;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005581 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005582 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005583
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005584 ret = mem_cgroup_precharge_mc(mm);
5585 if (ret)
5586 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005587 }
5588 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005589 }
5590 return ret;
5591}
5592
Li Zefan761b3ef2012-01-31 13:47:36 +08005593static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5594 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005595{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005596 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005597}
5598
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005599static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5600 unsigned long addr, unsigned long end,
5601 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005602{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005603 int ret = 0;
5604 struct vm_area_struct *vma = walk->private;
5605 pte_t *pte;
5606 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005607 enum mc_target_type target_type;
5608 union mc_target target;
5609 struct page *page;
5610 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005611
Naoya Horiguchi12724852012-03-21 16:34:28 -07005612 /*
5613 * We don't take compound_lock() here but no race with splitting thp
5614 * happens because:
5615 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
5616 * under splitting, which means there's no concurrent thp split,
5617 * - if another thread runs into split_huge_page() just after we
5618 * entered this if-block, the thread must wait for page table lock
5619 * to be unlocked in __split_huge_page_splitting(), where the main
5620 * part of thp split is not executed yet.
5621 */
5622 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07005623 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005624 spin_unlock(&vma->vm_mm->page_table_lock);
5625 return 0;
5626 }
5627 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5628 if (target_type == MC_TARGET_PAGE) {
5629 page = target.page;
5630 if (!isolate_lru_page(page)) {
5631 pc = lookup_page_cgroup(page);
5632 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005633 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005634 mc.precharge -= HPAGE_PMD_NR;
5635 mc.moved_charge += HPAGE_PMD_NR;
5636 }
5637 putback_lru_page(page);
5638 }
5639 put_page(page);
5640 }
5641 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005642 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005643 }
5644
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005645 if (pmd_trans_unstable(pmd))
5646 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005647retry:
5648 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5649 for (; addr != end; addr += PAGE_SIZE) {
5650 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08005651 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005652
5653 if (!mc.precharge)
5654 break;
5655
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005656 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005657 case MC_TARGET_PAGE:
5658 page = target.page;
5659 if (isolate_lru_page(page))
5660 goto put;
5661 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07005662 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07005663 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005664 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005665 /* we uncharge from mc.from later. */
5666 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005667 }
5668 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005669put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005670 put_page(page);
5671 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005672 case MC_TARGET_SWAP:
5673 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07005674 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005675 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005676 /* we fixup refcnts and charges later. */
5677 mc.moved_swap++;
5678 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08005679 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005680 default:
5681 break;
5682 }
5683 }
5684 pte_unmap_unlock(pte - 1, ptl);
5685 cond_resched();
5686
5687 if (addr != end) {
5688 /*
5689 * We have consumed all precharges we got in can_attach().
5690 * We try charge one by one, but don't do any additional
5691 * charges to mc.to if we have failed in charge once in attach()
5692 * phase.
5693 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005694 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005695 if (!ret)
5696 goto retry;
5697 }
5698
5699 return ret;
5700}
5701
5702static void mem_cgroup_move_charge(struct mm_struct *mm)
5703{
5704 struct vm_area_struct *vma;
5705
5706 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005707retry:
5708 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5709 /*
5710 * Someone who are holding the mmap_sem might be waiting in
5711 * waitq. So we cancel all extra charges, wake up all waiters,
5712 * and retry. Because we cancel precharges, we might not be able
5713 * to move enough charges, but moving charge is a best-effort
5714 * feature anyway, so it wouldn't be a big problem.
5715 */
5716 __mem_cgroup_clear_mc();
5717 cond_resched();
5718 goto retry;
5719 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005720 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5721 int ret;
5722 struct mm_walk mem_cgroup_move_charge_walk = {
5723 .pmd_entry = mem_cgroup_move_charge_pte_range,
5724 .mm = mm,
5725 .private = vma,
5726 };
5727 if (is_vm_hugetlb_page(vma))
5728 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005729 ret = walk_page_range(vma->vm_start, vma->vm_end,
5730 &mem_cgroup_move_charge_walk);
5731 if (ret)
5732 /*
5733 * means we have consumed all precharges and failed in
5734 * doing additional charge. Just abandon here.
5735 */
5736 break;
5737 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005738 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005739}
5740
Li Zefan761b3ef2012-01-31 13:47:36 +08005741static void mem_cgroup_move_task(struct cgroup *cont,
5742 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08005743{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005744 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005745 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005746
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005747 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005748 if (mc.to)
5749 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005750 mmput(mm);
5751 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005752 if (mc.to)
5753 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005754}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005755#else /* !CONFIG_MMU */
Li Zefan761b3ef2012-01-31 13:47:36 +08005756static int mem_cgroup_can_attach(struct cgroup *cgroup,
5757 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005758{
5759 return 0;
5760}
Li Zefan761b3ef2012-01-31 13:47:36 +08005761static void mem_cgroup_cancel_attach(struct cgroup *cgroup,
5762 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005763{
5764}
Li Zefan761b3ef2012-01-31 13:47:36 +08005765static void mem_cgroup_move_task(struct cgroup *cont,
5766 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005767{
5768}
5769#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005770
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005771struct cgroup_subsys mem_cgroup_subsys = {
5772 .name = "memory",
5773 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08005774 .css_alloc = mem_cgroup_css_alloc,
5775 .css_offline = mem_cgroup_css_offline,
5776 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005777 .can_attach = mem_cgroup_can_attach,
5778 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005779 .attach = mem_cgroup_move_task,
Tejun Heo6bc10342012-04-01 12:09:55 -07005780 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005781 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005782 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005783};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005784
Andrew Mortonc255a452012-07-31 16:43:02 -07005785#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08005786static int __init enable_swap_account(char *s)
5787{
5788 /* consider enabled if no parameter or 1 is given */
Michal Hockoa2c89902011-05-24 17:12:50 -07005789 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005790 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07005791 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08005792 really_do_swap_account = 0;
5793 return 1;
5794}
Michal Hockoa2c89902011-05-24 17:12:50 -07005795__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005796
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005797#endif