blob: 4129ad74e93b6337c3944ba9047ede98dd158769 [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 *
Glauber Costa7ae1e1d2012-12-18 14:21:56 -080013 * Kernel Memory Controller
14 * Copyright (C) 2012 Parallels Inc. and Google Inc.
15 * Authors: Glauber Costa and Suleiman Souhlal
16 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -080017 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 */
27
Johannes Weiner3e32cb22014-12-10 15:42:31 -080028#include <linux/page_counter.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080029#include <linux/memcontrol.h>
30#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080031#include <linux/mm.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080032#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080033#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080034#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080035#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080036#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080037#include <linux/bit_spinlock.h>
38#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070039#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040040#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080041#include <linux/mutex.h>
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -070042#include <linux/rbtree.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070043#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080044#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080045#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080046#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080047#include <linux/eventfd.h>
Tejun Heo79bd9812013-11-22 18:20:42 -050048#include <linux/poll.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080049#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080050#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080051#include <linux/seq_file.h>
Anton Vorontsov70ddf632013-04-29 15:08:31 -070052#include <linux/vmpressure.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070053#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070054#include <linux/page_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080055#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070056#include <linux/oom.h>
Johannes Weiner0056f4e2013-10-31 16:34:14 -070057#include <linux/lockdep.h>
Tejun Heo79bd9812013-11-22 18:20:42 -050058#include <linux/file.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080059#include "internal.h"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000060#include <net/sock.h>
Michal Hocko4bd2c1e2012-10-08 16:33:10 -070061#include <net/ip.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +000062#include <net/tcp_memcontrol.h>
Qiang Huangf35c3a82013-11-12 15:08:22 -080063#include "slab.h"
Balbir Singh8cdea7c2008-02-07 00:13:50 -080064
Balbir Singh8697d332008-02-07 00:13:59 -080065#include <asm/uaccess.h>
66
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070067#include <trace/events/vmscan.h>
68
Tejun Heo073219e2014-02-08 10:36:58 -050069struct cgroup_subsys memory_cgrp_subsys __read_mostly;
70EXPORT_SYMBOL(memory_cgrp_subsys);
David Rientjes68ae5642012-12-12 13:51:57 -080071
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070072#define MEM_CGROUP_RECLAIM_RETRIES 5
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -070073static struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080074
Andrew Mortonc255a452012-07-31 16:43:02 -070075#ifdef CONFIG_MEMCG_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070076/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080077int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080078
79/* for remember boot option*/
Andrew Mortonc255a452012-07-31 16:43:02 -070080#ifdef CONFIG_MEMCG_SWAP_ENABLED
Michal Hockoa42c3902010-11-24 12:57:08 -080081static int really_do_swap_account __initdata = 1;
82#else
Fabian Frederickada4ba52014-06-04 16:08:08 -070083static int really_do_swap_account __initdata;
Michal Hockoa42c3902010-11-24 12:57:08 -080084#endif
85
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080086#else
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -070087#define do_swap_account 0
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080088#endif
89
90
Johannes Weineraf7c4b02012-05-29 15:07:08 -070091static const char * const mem_cgroup_stat_names[] = {
92 "cache",
93 "rss",
David Rientjesb070e652013-05-07 16:18:09 -070094 "rss_huge",
Johannes Weineraf7c4b02012-05-29 15:07:08 -070095 "mapped_file",
Sha Zhengju3ea67d02013-09-12 15:13:53 -070096 "writeback",
Johannes Weineraf7c4b02012-05-29 15:07:08 -070097 "swap",
98};
99
Johannes Weinere9f89742011-03-23 16:42:37 -0700100enum mem_cgroup_events_index {
101 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
102 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -0700103 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
104 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700105 MEM_CGROUP_EVENTS_NSTATS,
106};
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700107
108static const char * const mem_cgroup_events_names[] = {
109 "pgpgin",
110 "pgpgout",
111 "pgfault",
112 "pgmajfault",
113};
114
Sha Zhengju58cf1882013-02-22 16:32:05 -0800115static const char * const mem_cgroup_lru_names[] = {
116 "inactive_anon",
117 "active_anon",
118 "inactive_file",
119 "active_file",
120 "unevictable",
121};
122
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700123/*
124 * Per memcg event counter is incremented at every pagein/pageout. With THP,
125 * it will be incremated by the number of pages. This counter is used for
126 * for trigger some periodic events. This is straightforward and better
127 * than using jiffies etc. to handle periodic memcg event.
128 */
129enum mem_cgroup_events_target {
130 MEM_CGROUP_TARGET_THRESH,
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700131 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700132 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700133 MEM_CGROUP_NTARGETS,
134};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700135#define THRESHOLDS_EVENTS_TARGET 128
136#define SOFTLIMIT_EVENTS_TARGET 1024
137#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700138
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800139struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700140 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700141 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700142 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700143 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800144};
145
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800146struct mem_cgroup_reclaim_iter {
Michal Hocko5f578162013-04-29 15:07:17 -0700147 /*
148 * last scanned hierarchy member. Valid only if last_dead_count
149 * matches memcg->dead_count of the hierarchy root group.
150 */
Michal Hocko542f85f2013-04-29 15:07:15 -0700151 struct mem_cgroup *last_visited;
Hugh Dickinsd2ab70a2014-01-23 15:53:30 -0800152 int last_dead_count;
Michal Hocko5f578162013-04-29 15:07:17 -0700153
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800154 /* scan generation, increased every round-trip */
155 unsigned int generation;
156};
157
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800158/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800159 * per-zone information in memory controller.
160 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800161struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800162 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700163 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800164
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800165 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
166
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700167 struct rb_node tree_node; /* RB tree node */
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800168 unsigned long usage_in_excess;/* Set to the value by which */
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700169 /* the soft limit is exceeded*/
170 bool on_tree;
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700171 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700172 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800173};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800174
175struct mem_cgroup_per_node {
176 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
177};
178
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700179/*
180 * Cgroups above their limits are maintained in a RB-Tree, independent of
181 * their hierarchy representation
182 */
183
184struct mem_cgroup_tree_per_zone {
185 struct rb_root rb_root;
186 spinlock_t lock;
187};
188
189struct mem_cgroup_tree_per_node {
190 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
191};
192
193struct mem_cgroup_tree {
194 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
195};
196
197static struct mem_cgroup_tree soft_limit_tree __read_mostly;
198
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800199struct mem_cgroup_threshold {
200 struct eventfd_ctx *eventfd;
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800201 unsigned long threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800202};
203
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700204/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800205struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700206 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700207 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800208 /* Size of entries[] */
209 unsigned int size;
210 /* Array of thresholds */
211 struct mem_cgroup_threshold entries[0];
212};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700213
214struct mem_cgroup_thresholds {
215 /* Primary thresholds array */
216 struct mem_cgroup_threshold_ary *primary;
217 /*
218 * Spare threshold array.
219 * This is needed to make mem_cgroup_unregister_event() "never fail".
220 * It must be able to store at least primary->size - 1 entries.
221 */
222 struct mem_cgroup_threshold_ary *spare;
223};
224
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700225/* for OOM */
226struct mem_cgroup_eventfd_list {
227 struct list_head list;
228 struct eventfd_ctx *eventfd;
229};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800230
Tejun Heo79bd9812013-11-22 18:20:42 -0500231/*
232 * cgroup_event represents events which userspace want to receive.
233 */
Tejun Heo3bc942f2013-11-22 18:20:44 -0500234struct mem_cgroup_event {
Tejun Heo79bd9812013-11-22 18:20:42 -0500235 /*
Tejun Heo59b6f872013-11-22 18:20:43 -0500236 * memcg which the event belongs to.
Tejun Heo79bd9812013-11-22 18:20:42 -0500237 */
Tejun Heo59b6f872013-11-22 18:20:43 -0500238 struct mem_cgroup *memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -0500239 /*
Tejun Heo79bd9812013-11-22 18:20:42 -0500240 * eventfd to signal userspace about the event.
241 */
242 struct eventfd_ctx *eventfd;
243 /*
244 * Each of these stored in a list by the cgroup.
245 */
246 struct list_head list;
247 /*
Tejun Heofba94802013-11-22 18:20:43 -0500248 * register_event() callback will be used to add new userspace
249 * waiter for changes related to this event. Use eventfd_signal()
250 * on eventfd to send notification to userspace.
251 */
Tejun Heo59b6f872013-11-22 18:20:43 -0500252 int (*register_event)(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -0500253 struct eventfd_ctx *eventfd, const char *args);
Tejun Heofba94802013-11-22 18:20:43 -0500254 /*
255 * unregister_event() callback will be called when userspace closes
256 * the eventfd or on cgroup removing. This callback must be set,
257 * if you want provide notification functionality.
258 */
Tejun Heo59b6f872013-11-22 18:20:43 -0500259 void (*unregister_event)(struct mem_cgroup *memcg,
Tejun Heofba94802013-11-22 18:20:43 -0500260 struct eventfd_ctx *eventfd);
261 /*
Tejun Heo79bd9812013-11-22 18:20:42 -0500262 * All fields below needed to unregister event when
263 * userspace closes eventfd.
264 */
265 poll_table pt;
266 wait_queue_head_t *wqh;
267 wait_queue_t wait;
268 struct work_struct remove;
269};
270
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700271static void mem_cgroup_threshold(struct mem_cgroup *memcg);
272static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800273
Balbir Singhf64c3f52009-09-23 15:56:37 -0700274/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800275 * The memory controller data structure. The memory controller controls both
276 * page cache and RSS per cgroup. We would eventually like to provide
277 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
278 * to help the administrator determine what knobs to tune.
279 *
280 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800281 * we hit the water mark. May be even add a low water mark, such that
282 * no reclaim occurs from a cgroup at it's low water mark, this is
283 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800284 */
285struct mem_cgroup {
286 struct cgroup_subsys_state css;
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800287
288 /* Accounted resources */
289 struct page_counter memory;
290 struct page_counter memsw;
291 struct page_counter kmem;
292
293 unsigned long soft_limit;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700294
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700295 /* vmpressure notifications */
296 struct vmpressure vmpressure;
297
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -0700298 /* css_online() has been completed */
299 int initialized;
300
Li Zefan465939a2013-07-08 16:00:38 -0700301 /*
Balbir Singh18f59ea2009-01-07 18:08:07 -0800302 * Should the accounting and control be hierarchical, per subtree?
303 */
304 bool use_hierarchy;
Glauber Costa510fc4e2012-12-18 14:21:47 -0800305 unsigned long kmem_account_flags; /* See KMEM_ACCOUNTED_*, below */
Michal Hocko79dfdac2011-07-26 16:08:23 -0700306
307 bool oom_lock;
308 atomic_t under_oom;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700309 atomic_t oom_wakeups;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700310
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700311 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700312 /* OOM-Killer disable */
313 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800314
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800315 /* protect arrays of thresholds */
316 struct mutex thresholds_lock;
317
318 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700319 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700320
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800321 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700322 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700323
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700324 /* For oom notifier event fd */
325 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700326
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800327 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800328 * Should we move charges of a task when a task is moved into this
329 * mem_cgroup ? And what type of charges should we move ?
330 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700331 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800332 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700333 * set > 0 if pages under this cgroup are moving to other cgroup.
334 */
335 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700336 /* taken only while moving_account > 0 */
337 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700338 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800339 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800340 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700341 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700342 /*
343 * used when a cpu is offlined or other synchronizations
344 * See mem_cgroup_read_stat().
345 */
346 struct mem_cgroup_stat_cpu nocpu_base;
347 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000348
Michal Hocko5f578162013-04-29 15:07:17 -0700349 atomic_t dead_count;
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700350#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Eric W. Biederman2e685ca2013-10-19 16:26:19 -0700351 struct cg_proto tcp_mem;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000352#endif
Glauber Costa2633d7a2012-12-18 14:22:34 -0800353#if defined(CONFIG_MEMCG_KMEM)
Vladimir Davydovbd673142014-06-04 16:07:40 -0700354 /* analogous to slab_common's slab_caches list, but per-memcg;
355 * protected by memcg_slab_mutex */
Glauber Costa2633d7a2012-12-18 14:22:34 -0800356 struct list_head memcg_slab_caches;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800357 /* Index in the kmem_cache->memcg_params->memcg_caches array */
358 int kmemcg_id;
359#endif
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800360
361 int last_scanned_node;
362#if MAX_NUMNODES > 1
363 nodemask_t scan_nodes;
364 atomic_t numainfo_events;
365 atomic_t numainfo_updating;
366#endif
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700367
Tejun Heofba94802013-11-22 18:20:43 -0500368 /* List of events which userspace want to receive */
369 struct list_head event_list;
370 spinlock_t event_list_lock;
371
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700372 struct mem_cgroup_per_node *nodeinfo[0];
373 /* WARNING: nodeinfo must be the last member here */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800374};
375
Glauber Costa510fc4e2012-12-18 14:21:47 -0800376/* internal only representation about the status of kmem accounting. */
377enum {
Vladimir Davydov6de64be2014-01-23 15:53:08 -0800378 KMEM_ACCOUNTED_ACTIVE, /* accounted by this cgroup itself */
Glauber Costa7de37682012-12-18 14:22:07 -0800379 KMEM_ACCOUNTED_DEAD, /* dead memcg with pending kmem charges */
Glauber Costa510fc4e2012-12-18 14:21:47 -0800380};
381
Glauber Costa510fc4e2012-12-18 14:21:47 -0800382#ifdef CONFIG_MEMCG_KMEM
383static inline void memcg_kmem_set_active(struct mem_cgroup *memcg)
384{
385 set_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
386}
Glauber Costa7de37682012-12-18 14:22:07 -0800387
388static bool memcg_kmem_is_active(struct mem_cgroup *memcg)
389{
390 return test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
391}
392
393static void memcg_kmem_mark_dead(struct mem_cgroup *memcg)
394{
Li Zefan10d5ebf2013-07-08 16:00:33 -0700395 /*
396 * Our caller must use css_get() first, because memcg_uncharge_kmem()
397 * will call css_put() if it sees the memcg is dead.
398 */
399 smp_wmb();
Glauber Costa7de37682012-12-18 14:22:07 -0800400 if (test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags))
401 set_bit(KMEM_ACCOUNTED_DEAD, &memcg->kmem_account_flags);
402}
403
404static bool memcg_kmem_test_and_clear_dead(struct mem_cgroup *memcg)
405{
406 return test_and_clear_bit(KMEM_ACCOUNTED_DEAD,
407 &memcg->kmem_account_flags);
408}
Glauber Costa510fc4e2012-12-18 14:21:47 -0800409#endif
410
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800411/* Stuffs for move charges at task migration. */
412/*
Glauber Costaee5e8472013-02-22 16:34:50 -0800413 * Types of charges to be moved. "move_charge_at_immitgrate" and
414 * "immigrate_flags" are treated as a left-shifted bitmap of these types.
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800415 */
416enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800417 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700418 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800419 NR_MOVE_TYPE,
420};
421
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800422/* "mc" and its members are protected by cgroup_mutex */
423static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800424 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800425 struct mem_cgroup *from;
426 struct mem_cgroup *to;
Glauber Costaee5e8472013-02-22 16:34:50 -0800427 unsigned long immigrate_flags;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800428 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800429 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800430 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800431 struct task_struct *moving_task; /* a task moving charges */
432 wait_queue_head_t waitq; /* a waitq for other context */
433} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700434 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800435 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
436};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800437
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700438static bool move_anon(void)
439{
Glauber Costaee5e8472013-02-22 16:34:50 -0800440 return test_bit(MOVE_CHARGE_TYPE_ANON, &mc.immigrate_flags);
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700441}
442
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700443static bool move_file(void)
444{
Glauber Costaee5e8472013-02-22 16:34:50 -0800445 return test_bit(MOVE_CHARGE_TYPE_FILE, &mc.immigrate_flags);
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700446}
447
Balbir Singh4e416952009-09-23 15:56:39 -0700448/*
449 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
450 * limit reclaim to prevent infinite loops, if they ever occur.
451 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700452#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700453#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700454
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800455enum charge_type {
456 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700457 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800458 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700459 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700460 NR_CHARGE_TYPE,
461};
462
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800463/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800464enum res_type {
465 _MEM,
466 _MEMSWAP,
467 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800468 _KMEM,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800469};
470
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700471#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
472#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800473#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700474/* Used for OOM nofiier */
475#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800476
Balbir Singh75822b42009-09-23 15:56:38 -0700477/*
Glauber Costa09998212013-02-22 16:34:55 -0800478 * The memcg_create_mutex will be held whenever a new cgroup is created.
479 * As a consequence, any change that needs to protect against new child cgroups
480 * appearing has to hold it as well.
481 */
482static DEFINE_MUTEX(memcg_create_mutex);
483
Wanpeng Lib2145142012-07-31 16:46:01 -0700484struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
485{
Tejun Heoa7c6d552013-08-08 20:11:23 -0400486 return s ? container_of(s, struct mem_cgroup, css) : NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -0700487}
488
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700489/* Some nice accessors for the vmpressure. */
490struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
491{
492 if (!memcg)
493 memcg = root_mem_cgroup;
494 return &memcg->vmpressure;
495}
496
497struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr)
498{
499 return &container_of(vmpr, struct mem_cgroup, vmpressure)->css;
500}
501
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700502static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
503{
504 return (memcg == root_mem_cgroup);
505}
506
Li Zefan4219b2d2013-09-23 16:56:29 +0800507/*
508 * We restrict the id in the range of [1, 65535], so it can fit into
509 * an unsigned short.
510 */
511#define MEM_CGROUP_ID_MAX USHRT_MAX
512
Li Zefan34c00c32013-09-23 16:56:01 +0800513static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
514{
Tejun Heo15a4c832014-05-04 15:09:14 -0400515 return memcg->css.id;
Li Zefan34c00c32013-09-23 16:56:01 +0800516}
517
518static inline struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
519{
520 struct cgroup_subsys_state *css;
521
Tejun Heo7d699dd2014-05-04 15:09:13 -0400522 css = css_from_id(id, &memory_cgrp_subsys);
Li Zefan34c00c32013-09-23 16:56:01 +0800523 return mem_cgroup_from_css(css);
524}
525
Glauber Costae1aab162011-12-11 21:47:03 +0000526/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700527#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000528
Glauber Costae1aab162011-12-11 21:47:03 +0000529void sock_update_memcg(struct sock *sk)
530{
Glauber Costa376be5f2012-01-20 04:57:14 +0000531 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000532 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700533 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000534
535 BUG_ON(!sk->sk_prot->proto_cgroup);
536
Glauber Costaf3f511e2012-01-05 20:16:39 +0000537 /* Socket cloning can throw us here with sk_cgrp already
538 * filled. It won't however, necessarily happen from
539 * process context. So the test for root memcg given
540 * the current task's memcg won't help us in this case.
541 *
542 * Respecting the original socket's memcg is a better
543 * decision in this case.
544 */
545 if (sk->sk_cgrp) {
546 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700547 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000548 return;
549 }
550
Glauber Costae1aab162011-12-11 21:47:03 +0000551 rcu_read_lock();
552 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700553 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Li Zefan5347e5a2013-07-08 16:00:30 -0700554 if (!mem_cgroup_is_root(memcg) &&
Tejun Heoec903c02014-05-13 12:11:01 -0400555 memcg_proto_active(cg_proto) &&
556 css_tryget_online(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700557 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000558 }
559 rcu_read_unlock();
560 }
561}
562EXPORT_SYMBOL(sock_update_memcg);
563
564void sock_release_memcg(struct sock *sk)
565{
Glauber Costa376be5f2012-01-20 04:57:14 +0000566 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000567 struct mem_cgroup *memcg;
568 WARN_ON(!sk->sk_cgrp->memcg);
569 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700570 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000571 }
572}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000573
574struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
575{
576 if (!memcg || mem_cgroup_is_root(memcg))
577 return NULL;
578
Eric W. Biederman2e685ca2013-10-19 16:26:19 -0700579 return &memcg->tcp_mem;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000580}
581EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000582
Glauber Costa3f134612012-05-29 15:07:11 -0700583static void disarm_sock_keys(struct mem_cgroup *memcg)
584{
Eric W. Biederman2e685ca2013-10-19 16:26:19 -0700585 if (!memcg_proto_activated(&memcg->tcp_mem))
Glauber Costa3f134612012-05-29 15:07:11 -0700586 return;
587 static_key_slow_dec(&memcg_socket_limit_enabled);
588}
589#else
590static void disarm_sock_keys(struct mem_cgroup *memcg)
591{
592}
593#endif
594
Glauber Costaa8964b92012-12-18 14:22:09 -0800595#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800596/*
597 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
Li Zefanb8627832013-09-23 16:56:47 +0800598 * The main reason for not using cgroup id for this:
599 * this works better in sparse environments, where we have a lot of memcgs,
600 * but only a few kmem-limited. Or also, if we have, for instance, 200
601 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
602 * 200 entry array for that.
Glauber Costa55007d82012-12-18 14:22:38 -0800603 *
604 * The current size of the caches array is stored in
605 * memcg_limited_groups_array_size. It will double each time we have to
606 * increase it.
607 */
608static DEFINE_IDA(kmem_limited_groups);
Glauber Costa749c5412012-12-18 14:23:01 -0800609int memcg_limited_groups_array_size;
610
Glauber Costa55007d82012-12-18 14:22:38 -0800611/*
612 * MIN_SIZE is different than 1, because we would like to avoid going through
613 * the alloc/free process all the time. In a small machine, 4 kmem-limited
614 * cgroups is a reasonable guess. In the future, it could be a parameter or
615 * tunable, but that is strictly not necessary.
616 *
Li Zefanb8627832013-09-23 16:56:47 +0800617 * MAX_SIZE should be as large as the number of cgrp_ids. Ideally, we could get
Glauber Costa55007d82012-12-18 14:22:38 -0800618 * this constant directly from cgroup, but it is understandable that this is
619 * better kept as an internal representation in cgroup.c. In any case, the
Li Zefanb8627832013-09-23 16:56:47 +0800620 * cgrp_id space is not getting any smaller, and we don't have to necessarily
Glauber Costa55007d82012-12-18 14:22:38 -0800621 * increase ours as well if it increases.
622 */
623#define MEMCG_CACHES_MIN_SIZE 4
Li Zefanb8627832013-09-23 16:56:47 +0800624#define MEMCG_CACHES_MAX_SIZE MEM_CGROUP_ID_MAX
Glauber Costa55007d82012-12-18 14:22:38 -0800625
Glauber Costad7f25f82012-12-18 14:22:40 -0800626/*
627 * A lot of the calls to the cache allocation functions are expected to be
628 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
629 * conditional to this static branch, we'll have to allow modules that does
630 * kmem_cache_alloc and the such to see this symbol as well
631 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800632struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800633EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800634
Vladimir Davydovf3bb3042014-10-09 15:28:45 -0700635static void memcg_free_cache_id(int id);
636
Glauber Costaa8964b92012-12-18 14:22:09 -0800637static void disarm_kmem_keys(struct mem_cgroup *memcg)
638{
Glauber Costa55007d82012-12-18 14:22:38 -0800639 if (memcg_kmem_is_active(memcg)) {
Glauber Costaa8964b92012-12-18 14:22:09 -0800640 static_key_slow_dec(&memcg_kmem_enabled_key);
Vladimir Davydovf3bb3042014-10-09 15:28:45 -0700641 memcg_free_cache_id(memcg->kmemcg_id);
Glauber Costa55007d82012-12-18 14:22:38 -0800642 }
Glauber Costabea207c2012-12-18 14:22:11 -0800643 /*
644 * This check can't live in kmem destruction function,
645 * since the charges will outlive the cgroup
646 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800647 WARN_ON(page_counter_read(&memcg->kmem));
Glauber Costaa8964b92012-12-18 14:22:09 -0800648}
649#else
650static void disarm_kmem_keys(struct mem_cgroup *memcg)
651{
652}
653#endif /* CONFIG_MEMCG_KMEM */
654
655static void disarm_static_keys(struct mem_cgroup *memcg)
656{
657 disarm_sock_keys(memcg);
658 disarm_kmem_keys(memcg);
659}
660
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700661static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800662
Balbir Singhf64c3f52009-09-23 15:56:37 -0700663static struct mem_cgroup_per_zone *
Jianyu Zhane2318752014-06-06 14:38:20 -0700664mem_cgroup_zone_zoneinfo(struct mem_cgroup *memcg, struct zone *zone)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700665{
Jianyu Zhane2318752014-06-06 14:38:20 -0700666 int nid = zone_to_nid(zone);
667 int zid = zone_idx(zone);
668
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700669 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700670}
671
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700672struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100673{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700674 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100675}
676
Balbir Singhf64c3f52009-09-23 15:56:37 -0700677static struct mem_cgroup_per_zone *
Jianyu Zhane2318752014-06-06 14:38:20 -0700678mem_cgroup_page_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700679{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700680 int nid = page_to_nid(page);
681 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700682
Jianyu Zhane2318752014-06-06 14:38:20 -0700683 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700684}
685
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700686static struct mem_cgroup_tree_per_zone *
687soft_limit_tree_node_zone(int nid, int zid)
688{
689 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
690}
691
692static struct mem_cgroup_tree_per_zone *
693soft_limit_tree_from_page(struct page *page)
694{
695 int nid = page_to_nid(page);
696 int zid = page_zonenum(page);
697
698 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
699}
700
Johannes Weinercf2c8122014-06-06 14:38:21 -0700701static void __mem_cgroup_insert_exceeded(struct mem_cgroup_per_zone *mz,
702 struct mem_cgroup_tree_per_zone *mctz,
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800703 unsigned long new_usage_in_excess)
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700704{
705 struct rb_node **p = &mctz->rb_root.rb_node;
706 struct rb_node *parent = NULL;
707 struct mem_cgroup_per_zone *mz_node;
708
709 if (mz->on_tree)
710 return;
711
712 mz->usage_in_excess = new_usage_in_excess;
713 if (!mz->usage_in_excess)
714 return;
715 while (*p) {
716 parent = *p;
717 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
718 tree_node);
719 if (mz->usage_in_excess < mz_node->usage_in_excess)
720 p = &(*p)->rb_left;
721 /*
722 * We can't avoid mem cgroups that are over their soft
723 * limit by the same amount
724 */
725 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
726 p = &(*p)->rb_right;
727 }
728 rb_link_node(&mz->tree_node, parent, p);
729 rb_insert_color(&mz->tree_node, &mctz->rb_root);
730 mz->on_tree = true;
731}
732
Johannes Weinercf2c8122014-06-06 14:38:21 -0700733static void __mem_cgroup_remove_exceeded(struct mem_cgroup_per_zone *mz,
734 struct mem_cgroup_tree_per_zone *mctz)
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700735{
736 if (!mz->on_tree)
737 return;
738 rb_erase(&mz->tree_node, &mctz->rb_root);
739 mz->on_tree = false;
740}
741
Johannes Weinercf2c8122014-06-06 14:38:21 -0700742static void mem_cgroup_remove_exceeded(struct mem_cgroup_per_zone *mz,
743 struct mem_cgroup_tree_per_zone *mctz)
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700744{
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700745 unsigned long flags;
746
747 spin_lock_irqsave(&mctz->lock, flags);
Johannes Weinercf2c8122014-06-06 14:38:21 -0700748 __mem_cgroup_remove_exceeded(mz, mctz);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700749 spin_unlock_irqrestore(&mctz->lock, flags);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700750}
751
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800752static unsigned long soft_limit_excess(struct mem_cgroup *memcg)
753{
754 unsigned long nr_pages = page_counter_read(&memcg->memory);
755 unsigned long soft_limit = ACCESS_ONCE(memcg->soft_limit);
756 unsigned long excess = 0;
757
758 if (nr_pages > soft_limit)
759 excess = nr_pages - soft_limit;
760
761 return excess;
762}
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700763
764static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
765{
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800766 unsigned long excess;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700767 struct mem_cgroup_per_zone *mz;
768 struct mem_cgroup_tree_per_zone *mctz;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700769
Jianyu Zhane2318752014-06-06 14:38:20 -0700770 mctz = soft_limit_tree_from_page(page);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700771 /*
772 * Necessary to update all ancestors when hierarchy is used.
773 * because their event counter is not touched.
774 */
775 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
Jianyu Zhane2318752014-06-06 14:38:20 -0700776 mz = mem_cgroup_page_zoneinfo(memcg, page);
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800777 excess = soft_limit_excess(memcg);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700778 /*
779 * We have to update the tree if mz is on RB-tree or
780 * mem is over its softlimit.
781 */
782 if (excess || mz->on_tree) {
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700783 unsigned long flags;
784
785 spin_lock_irqsave(&mctz->lock, flags);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700786 /* if on-tree, remove it */
787 if (mz->on_tree)
Johannes Weinercf2c8122014-06-06 14:38:21 -0700788 __mem_cgroup_remove_exceeded(mz, mctz);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700789 /*
790 * Insert again. mz->usage_in_excess will be updated.
791 * If excess is 0, no tree ops.
792 */
Johannes Weinercf2c8122014-06-06 14:38:21 -0700793 __mem_cgroup_insert_exceeded(mz, mctz, excess);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700794 spin_unlock_irqrestore(&mctz->lock, flags);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700795 }
796 }
797}
798
799static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
800{
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700801 struct mem_cgroup_tree_per_zone *mctz;
Jianyu Zhane2318752014-06-06 14:38:20 -0700802 struct mem_cgroup_per_zone *mz;
803 int nid, zid;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700804
Jianyu Zhane2318752014-06-06 14:38:20 -0700805 for_each_node(nid) {
806 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
807 mz = &memcg->nodeinfo[nid]->zoneinfo[zid];
808 mctz = soft_limit_tree_node_zone(nid, zid);
Johannes Weinercf2c8122014-06-06 14:38:21 -0700809 mem_cgroup_remove_exceeded(mz, mctz);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700810 }
811 }
812}
813
814static struct mem_cgroup_per_zone *
815__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
816{
817 struct rb_node *rightmost = NULL;
818 struct mem_cgroup_per_zone *mz;
819
820retry:
821 mz = NULL;
822 rightmost = rb_last(&mctz->rb_root);
823 if (!rightmost)
824 goto done; /* Nothing to reclaim from */
825
826 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
827 /*
828 * Remove the node now but someone else can add it back,
829 * we will to add it back at the end of reclaim to its correct
830 * position in the tree.
831 */
Johannes Weinercf2c8122014-06-06 14:38:21 -0700832 __mem_cgroup_remove_exceeded(mz, mctz);
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800833 if (!soft_limit_excess(mz->memcg) ||
Tejun Heoec903c02014-05-13 12:11:01 -0400834 !css_tryget_online(&mz->memcg->css))
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700835 goto retry;
836done:
837 return mz;
838}
839
840static struct mem_cgroup_per_zone *
841mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
842{
843 struct mem_cgroup_per_zone *mz;
844
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700845 spin_lock_irq(&mctz->lock);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700846 mz = __mem_cgroup_largest_soft_limit_node(mctz);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700847 spin_unlock_irq(&mctz->lock);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700848 return mz;
849}
850
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700851/*
852 * Implementation Note: reading percpu statistics for memcg.
853 *
854 * Both of vmstat[] and percpu_counter has threshold and do periodic
855 * synchronization to implement "quick" read. There are trade-off between
856 * reading cost and precision of value. Then, we may have a chance to implement
857 * a periodic synchronizion of counter in memcg's counter.
858 *
859 * But this _read() function is used for user interface now. The user accounts
860 * memory usage by memory cgroup and he _always_ requires exact value because
861 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
862 * have to visit all online cpus and make sum. So, for now, unnecessary
863 * synchronization is not implemented. (just implemented for cpu hotplug)
864 *
865 * If there are kernel internal actions which can make use of some not-exact
866 * value, and reading all cpu value can be performance bottleneck in some
867 * common workload, threashold and synchonization as vmstat[] should be
868 * implemented.
869 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700870static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700871 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800872{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700873 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800874 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800875
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700876 get_online_cpus();
877 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700878 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700879#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700880 spin_lock(&memcg->pcp_counter_lock);
881 val += memcg->nocpu_base.count[idx];
882 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700883#endif
884 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800885 return val;
886}
887
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700888static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700889 enum mem_cgroup_events_index idx)
890{
891 unsigned long val = 0;
892 int cpu;
893
David Rientjes9c567512013-10-16 13:46:43 -0700894 get_online_cpus();
Johannes Weinere9f89742011-03-23 16:42:37 -0700895 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700896 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700897#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700898 spin_lock(&memcg->pcp_counter_lock);
899 val += memcg->nocpu_base.events[idx];
900 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700901#endif
David Rientjes9c567512013-10-16 13:46:43 -0700902 put_online_cpus();
Johannes Weinere9f89742011-03-23 16:42:37 -0700903 return val;
904}
905
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700906static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700907 struct page *page,
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700908 int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800909{
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700910 /*
911 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
912 * counted as CACHE even if it's on ANON LRU.
913 */
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700914 if (PageAnon(page))
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700915 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700916 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800917 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700918 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700919 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700920
David Rientjesb070e652013-05-07 16:18:09 -0700921 if (PageTransHuge(page))
922 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
923 nr_pages);
924
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800925 /* pagein of a big page is an event. So, ignore page size */
926 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700927 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800928 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700929 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800930 nr_pages = -nr_pages; /* for event */
931 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800932
Johannes Weiner13114712012-05-29 15:07:07 -0700933 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800934}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800935
Jianyu Zhane2318752014-06-06 14:38:20 -0700936unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700937{
938 struct mem_cgroup_per_zone *mz;
939
940 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
941 return mz->lru_size[lru];
942}
943
Jianyu Zhane2318752014-06-06 14:38:20 -0700944static unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
945 int nid,
946 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700947{
Jianyu Zhane2318752014-06-06 14:38:20 -0700948 unsigned long nr = 0;
Ying Han889976d2011-05-26 16:25:33 -0700949 int zid;
950
Jianyu Zhane2318752014-06-06 14:38:20 -0700951 VM_BUG_ON((unsigned)nid >= nr_node_ids);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700952
Jianyu Zhane2318752014-06-06 14:38:20 -0700953 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
954 struct mem_cgroup_per_zone *mz;
955 enum lru_list lru;
956
957 for_each_lru(lru) {
958 if (!(BIT(lru) & lru_mask))
959 continue;
960 mz = &memcg->nodeinfo[nid]->zoneinfo[zid];
961 nr += mz->lru_size[lru];
962 }
963 }
964 return nr;
Ying Han889976d2011-05-26 16:25:33 -0700965}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700966
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700967static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700968 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800969{
Jianyu Zhane2318752014-06-06 14:38:20 -0700970 unsigned long nr = 0;
Ying Han889976d2011-05-26 16:25:33 -0700971 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800972
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800973 for_each_node_state(nid, N_MEMORY)
Jianyu Zhane2318752014-06-06 14:38:20 -0700974 nr += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
975 return nr;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800976}
977
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800978static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
979 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800980{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700981 unsigned long val, next;
982
Johannes Weiner13114712012-05-29 15:07:07 -0700983 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700984 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700985 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800986 if ((long)next - (long)val < 0) {
987 switch (target) {
988 case MEM_CGROUP_TARGET_THRESH:
989 next = val + THRESHOLDS_EVENTS_TARGET;
990 break;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700991 case MEM_CGROUP_TARGET_SOFTLIMIT:
992 next = val + SOFTLIMIT_EVENTS_TARGET;
993 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800994 case MEM_CGROUP_TARGET_NUMAINFO:
995 next = val + NUMAINFO_EVENTS_TARGET;
996 break;
997 default:
998 break;
999 }
1000 __this_cpu_write(memcg->stat->targets[target], next);
1001 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07001002 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001003 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08001004}
1005
1006/*
1007 * Check events in order.
1008 *
1009 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001010static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08001011{
1012 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001013 if (unlikely(mem_cgroup_event_ratelimit(memcg,
1014 MEM_CGROUP_TARGET_THRESH))) {
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001015 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -08001016 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001017
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001018 do_softlimit = mem_cgroup_event_ratelimit(memcg,
1019 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001020#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001021 do_numainfo = mem_cgroup_event_ratelimit(memcg,
1022 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001023#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001024 mem_cgroup_threshold(memcg);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001025 if (unlikely(do_softlimit))
1026 mem_cgroup_update_tree(memcg, page);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001027#if MAX_NUMNODES > 1
1028 if (unlikely(do_numainfo))
1029 atomic_inc(&memcg->numainfo_events);
1030#endif
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001031 }
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08001032}
1033
Balbir Singhcf475ad2008-04-29 01:00:16 -07001034struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001035{
Balbir Singh31a78f22008-09-28 23:09:31 +01001036 /*
1037 * mm_update_next_owner() may clear mm->owner to NULL
1038 * if it races with swapoff, page migration, etc.
1039 * So this can be called with p == NULL.
1040 */
1041 if (unlikely(!p))
1042 return NULL;
1043
Tejun Heo073219e2014-02-08 10:36:58 -05001044 return mem_cgroup_from_css(task_css(p, memory_cgrp_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001045}
1046
Johannes Weinerdf381972014-04-07 15:37:43 -07001047static struct mem_cgroup *get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001048{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001049 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001050
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001051 rcu_read_lock();
1052 do {
Michal Hocko6f6acb02014-05-22 11:54:19 -07001053 /*
1054 * Page cache insertions can happen withou an
1055 * actual mm context, e.g. during disk probing
1056 * on boot, loopback IO, acct() writes etc.
1057 */
1058 if (unlikely(!mm))
Johannes Weinerdf381972014-04-07 15:37:43 -07001059 memcg = root_mem_cgroup;
Michal Hocko6f6acb02014-05-22 11:54:19 -07001060 else {
1061 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1062 if (unlikely(!memcg))
1063 memcg = root_mem_cgroup;
1064 }
Tejun Heoec903c02014-05-13 12:11:01 -04001065 } while (!css_tryget_online(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001066 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001067 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001068}
1069
Michal Hocko16248d82013-04-29 15:07:19 -07001070/*
1071 * Returns a next (in a pre-order walk) alive memcg (with elevated css
1072 * ref. count) or NULL if the whole root's subtree has been visited.
1073 *
1074 * helper function to be used by mem_cgroup_iter
1075 */
1076static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
Andrew Morton694fbc02013-09-24 15:27:37 -07001077 struct mem_cgroup *last_visited)
Michal Hocko16248d82013-04-29 15:07:19 -07001078{
Tejun Heo492eb212013-08-08 20:11:25 -04001079 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -07001080
Tejun Heobd8815a2013-08-08 20:11:27 -04001081 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -07001082skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -04001083 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -07001084
1085 /*
1086 * Even if we found a group we have to make sure it is
1087 * alive. css && !memcg means that the groups should be
1088 * skipped and we should continue the tree walk.
1089 * last_visited css is safe to use because it is
1090 * protected by css_get and the tree walk is rcu safe.
Michal Hocko0eef6152014-01-23 15:53:37 -08001091 *
1092 * We do not take a reference on the root of the tree walk
1093 * because we might race with the root removal when it would
1094 * be the only node in the iterated hierarchy and mem_cgroup_iter
1095 * would end up in an endless loop because it expects that at
1096 * least one valid node will be returned. Root cannot disappear
1097 * because caller of the iterator should hold it already so
1098 * skipping css reference should be safe.
Michal Hocko16248d82013-04-29 15:07:19 -07001099 */
Tejun Heo492eb212013-08-08 20:11:25 -04001100 if (next_css) {
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -07001101 struct mem_cgroup *memcg = mem_cgroup_from_css(next_css);
1102
1103 if (next_css == &root->css)
1104 return memcg;
1105
1106 if (css_tryget_online(next_css)) {
1107 /*
1108 * Make sure the memcg is initialized:
1109 * mem_cgroup_css_online() orders the the
1110 * initialization against setting the flag.
1111 */
1112 if (smp_load_acquire(&memcg->initialized))
1113 return memcg;
1114 css_put(next_css);
1115 }
Michal Hocko0eef6152014-01-23 15:53:37 -08001116
1117 prev_css = next_css;
1118 goto skip_node;
Michal Hocko16248d82013-04-29 15:07:19 -07001119 }
1120
1121 return NULL;
1122}
1123
Johannes Weiner519ebea2013-07-03 15:04:51 -07001124static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
1125{
1126 /*
1127 * When a group in the hierarchy below root is destroyed, the
1128 * hierarchy iterator can no longer be trusted since it might
1129 * have pointed to the destroyed group. Invalidate it.
1130 */
1131 atomic_inc(&root->dead_count);
1132}
1133
1134static struct mem_cgroup *
1135mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
1136 struct mem_cgroup *root,
1137 int *sequence)
1138{
1139 struct mem_cgroup *position = NULL;
1140 /*
1141 * A cgroup destruction happens in two stages: offlining and
1142 * release. They are separated by a RCU grace period.
1143 *
1144 * If the iterator is valid, we may still race with an
1145 * offlining. The RCU lock ensures the object won't be
1146 * released, tryget will fail if we lost the race.
1147 */
1148 *sequence = atomic_read(&root->dead_count);
1149 if (iter->last_dead_count == *sequence) {
1150 smp_rmb();
1151 position = iter->last_visited;
Michal Hockoecc736f2014-01-23 15:53:35 -08001152
1153 /*
1154 * We cannot take a reference to root because we might race
1155 * with root removal and returning NULL would end up in
1156 * an endless loop on the iterator user level when root
1157 * would be returned all the time.
1158 */
1159 if (position && position != root &&
Tejun Heoec903c02014-05-13 12:11:01 -04001160 !css_tryget_online(&position->css))
Johannes Weiner519ebea2013-07-03 15:04:51 -07001161 position = NULL;
1162 }
1163 return position;
1164}
1165
1166static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
1167 struct mem_cgroup *last_visited,
1168 struct mem_cgroup *new_position,
Michal Hockoecc736f2014-01-23 15:53:35 -08001169 struct mem_cgroup *root,
Johannes Weiner519ebea2013-07-03 15:04:51 -07001170 int sequence)
1171{
Michal Hockoecc736f2014-01-23 15:53:35 -08001172 /* root reference counting symmetric to mem_cgroup_iter_load */
1173 if (last_visited && last_visited != root)
Johannes Weiner519ebea2013-07-03 15:04:51 -07001174 css_put(&last_visited->css);
1175 /*
1176 * We store the sequence count from the time @last_visited was
1177 * loaded successfully instead of rereading it here so that we
1178 * don't lose destruction events in between. We could have
1179 * raced with the destruction of @new_position after all.
1180 */
1181 iter->last_visited = new_position;
1182 smp_wmb();
1183 iter->last_dead_count = sequence;
1184}
1185
Johannes Weiner56600482012-01-12 17:17:59 -08001186/**
1187 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1188 * @root: hierarchy root
1189 * @prev: previously returned memcg, NULL on first invocation
1190 * @reclaim: cookie for shared reclaim walks, NULL for full walks
1191 *
1192 * Returns references to children of the hierarchy below @root, or
1193 * @root itself, or %NULL after a full round-trip.
1194 *
1195 * Caller must pass the return value in @prev on subsequent
1196 * invocations for reference counting, or use mem_cgroup_iter_break()
1197 * to cancel a hierarchy walk before the round-trip is complete.
1198 *
1199 * Reclaimers can specify a zone and a priority level in @reclaim to
1200 * divide up the memcgs in the hierarchy among all concurrent
1201 * reclaimers operating on the same zone and priority.
1202 */
Andrew Morton694fbc02013-09-24 15:27:37 -07001203struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -08001204 struct mem_cgroup *prev,
Andrew Morton694fbc02013-09-24 15:27:37 -07001205 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001206{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001207 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001208 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001209
Andrew Morton694fbc02013-09-24 15:27:37 -07001210 if (mem_cgroup_disabled())
1211 return NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001212
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001213 if (!root)
1214 root = root_mem_cgroup;
1215
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001216 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -07001217 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001218
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001219 if (!root->use_hierarchy && root != root_mem_cgroup) {
1220 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001221 goto out_css_put;
Andrew Morton694fbc02013-09-24 15:27:37 -07001222 return root;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001223 }
1224
Michal Hocko542f85f2013-04-29 15:07:15 -07001225 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001226 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001227 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001228 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001229
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001230 if (reclaim) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001231 struct mem_cgroup_per_zone *mz;
1232
Jianyu Zhane2318752014-06-06 14:38:20 -07001233 mz = mem_cgroup_zone_zoneinfo(root, reclaim->zone);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001234 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001235 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001236 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001237 goto out_unlock;
1238 }
Michal Hocko5f578162013-04-29 15:07:17 -07001239
Johannes Weiner519ebea2013-07-03 15:04:51 -07001240 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001241 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001242
Andrew Morton694fbc02013-09-24 15:27:37 -07001243 memcg = __mem_cgroup_iter_next(root, last_visited);
Michal Hocko542f85f2013-04-29 15:07:15 -07001244
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001245 if (reclaim) {
Michal Hockoecc736f2014-01-23 15:53:35 -08001246 mem_cgroup_iter_update(iter, last_visited, memcg, root,
1247 seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001248
Michal Hocko19f39402013-04-29 15:07:18 -07001249 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001250 iter->generation++;
1251 else if (!prev && memcg)
1252 reclaim->generation = iter->generation;
1253 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001254
Andrew Morton694fbc02013-09-24 15:27:37 -07001255 if (prev && !memcg)
Michal Hocko542f85f2013-04-29 15:07:15 -07001256 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001257 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001258out_unlock:
1259 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001260out_css_put:
1261 if (prev && prev != root)
1262 css_put(&prev->css);
1263
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001264 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001265}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001266
Johannes Weiner56600482012-01-12 17:17:59 -08001267/**
1268 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1269 * @root: hierarchy root
1270 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1271 */
1272void mem_cgroup_iter_break(struct mem_cgroup *root,
1273 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001274{
1275 if (!root)
1276 root = root_mem_cgroup;
1277 if (prev && prev != root)
1278 css_put(&prev->css);
1279}
1280
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001281/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001282 * Iteration constructs for visiting all cgroups (under a tree). If
1283 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1284 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001285 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001286#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001287 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001288 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001289 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001290
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001291#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001292 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001293 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001294 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001295
David Rientjes68ae5642012-12-12 13:51:57 -08001296void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001297{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001298 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001299
Ying Han456f9982011-05-26 16:25:38 -07001300 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001301 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1302 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001303 goto out;
1304
1305 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001306 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001307 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1308 break;
1309 case PGMAJFAULT:
1310 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001311 break;
1312 default:
1313 BUG();
1314 }
1315out:
1316 rcu_read_unlock();
1317}
David Rientjes68ae5642012-12-12 13:51:57 -08001318EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001319
Johannes Weiner925b7672012-01-12 17:18:15 -08001320/**
1321 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1322 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001323 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001324 *
1325 * Returns the lru list vector holding pages for the given @zone and
1326 * @mem. This can be the global zone lruvec, if the memory controller
1327 * is disabled.
1328 */
1329struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1330 struct mem_cgroup *memcg)
1331{
1332 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001333 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001334
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001335 if (mem_cgroup_disabled()) {
1336 lruvec = &zone->lruvec;
1337 goto out;
1338 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001339
Jianyu Zhane2318752014-06-06 14:38:20 -07001340 mz = mem_cgroup_zone_zoneinfo(memcg, zone);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001341 lruvec = &mz->lruvec;
1342out:
1343 /*
1344 * Since a node can be onlined after the mem_cgroup was created,
1345 * we have to be prepared to initialize lruvec->zone here;
1346 * and if offlined then reonlined, we need to reinitialize it.
1347 */
1348 if (unlikely(lruvec->zone != zone))
1349 lruvec->zone = zone;
1350 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001351}
1352
Johannes Weiner925b7672012-01-12 17:18:15 -08001353/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001354 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001355 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001356 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001357 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001358struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001359{
1360 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001361 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001362 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001363 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001364
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001365 if (mem_cgroup_disabled()) {
1366 lruvec = &zone->lruvec;
1367 goto out;
1368 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001369
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001370 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001371 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001372
1373 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001374 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001375 * an uncharged page off lru does nothing to secure
1376 * its former mem_cgroup from sudden removal.
1377 *
1378 * Our caller holds lru_lock, and PageCgroupUsed is updated
1379 * under page_cgroup lock: between them, they make all uses
1380 * of pc->mem_cgroup safe.
1381 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001382 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001383 pc->mem_cgroup = memcg = root_mem_cgroup;
1384
Jianyu Zhane2318752014-06-06 14:38:20 -07001385 mz = mem_cgroup_page_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001386 lruvec = &mz->lruvec;
1387out:
1388 /*
1389 * Since a node can be onlined after the mem_cgroup was created,
1390 * we have to be prepared to initialize lruvec->zone here;
1391 * and if offlined then reonlined, we need to reinitialize it.
1392 */
1393 if (unlikely(lruvec->zone != zone))
1394 lruvec->zone = zone;
1395 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001396}
1397
1398/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001399 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1400 * @lruvec: mem_cgroup per zone lru vector
1401 * @lru: index of lru list the page is sitting on
1402 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001403 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001404 * This function must be called when a page is added to or removed from an
1405 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001406 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001407void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1408 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001409{
1410 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001411 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001412
1413 if (mem_cgroup_disabled())
1414 return;
1415
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001416 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1417 lru_size = mz->lru_size + lru;
1418 *lru_size += nr_pages;
1419 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001420}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001421
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001422/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001423 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001424 * hierarchy subtree
1425 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001426bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1427 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001428{
Johannes Weiner91c637342012-05-29 15:06:24 -07001429 if (root_memcg == memcg)
1430 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001431 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001432 return false;
Li Zefanb47f77b2013-09-23 16:55:43 +08001433 return cgroup_is_descendant(memcg->css.cgroup, root_memcg->css.cgroup);
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001434}
1435
1436static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1437 struct mem_cgroup *memcg)
1438{
1439 bool ret;
1440
Johannes Weiner91c637342012-05-29 15:06:24 -07001441 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001442 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001443 rcu_read_unlock();
1444 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001445}
1446
David Rientjesffbdccf2013-07-03 15:01:23 -07001447bool task_in_mem_cgroup(struct task_struct *task,
1448 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001449{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001450 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001451 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001452 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001453
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001454 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001455 if (p) {
Johannes Weinerdf381972014-04-07 15:37:43 -07001456 curr = get_mem_cgroup_from_mm(p->mm);
David Rientjesde077d22012-01-12 17:18:52 -08001457 task_unlock(p);
1458 } else {
1459 /*
1460 * All threads may have already detached their mm's, but the oom
1461 * killer still needs to detect if they have already been oom
1462 * killed to prevent needlessly killing additional tasks.
1463 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001464 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001465 curr = mem_cgroup_from_task(task);
1466 if (curr)
1467 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001468 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001469 }
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001470 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001471 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001472 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001473 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1474 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001475 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001476 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001477 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001478 return ret;
1479}
1480
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001481int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001482{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001483 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001484 unsigned long inactive;
1485 unsigned long active;
1486 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001487
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001488 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1489 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001490
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001491 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1492 if (gb)
1493 inactive_ratio = int_sqrt(10 * gb);
1494 else
1495 inactive_ratio = 1;
1496
Johannes Weiner9b272972011-11-02 13:38:23 -07001497 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001498}
1499
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001500#define mem_cgroup_from_counter(counter, member) \
Balbir Singh6d61ef42009-01-07 18:08:06 -08001501 container_of(counter, struct mem_cgroup, member)
1502
Johannes Weiner19942822011-02-01 15:52:43 -08001503/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001504 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001505 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001506 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001507 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001508 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001509 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001510static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001511{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001512 unsigned long margin = 0;
1513 unsigned long count;
1514 unsigned long limit;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001515
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001516 count = page_counter_read(&memcg->memory);
1517 limit = ACCESS_ONCE(memcg->memory.limit);
1518 if (count < limit)
1519 margin = limit - count;
1520
1521 if (do_swap_account) {
1522 count = page_counter_read(&memcg->memsw);
1523 limit = ACCESS_ONCE(memcg->memsw.limit);
1524 if (count <= limit)
1525 margin = min(margin, limit - count);
1526 }
1527
1528 return margin;
Johannes Weiner19942822011-02-01 15:52:43 -08001529}
1530
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001531int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001532{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001533 /* root ? */
Linus Torvalds14208b02014-06-09 15:03:33 -07001534 if (mem_cgroup_disabled() || !memcg->css.parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001535 return vm_swappiness;
1536
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001537 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001538}
1539
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001540/*
1541 * memcg->moving_account is used for checking possibility that some thread is
1542 * calling move_account(). When a thread on CPU-A starts moving pages under
1543 * a memcg, other threads should check memcg->moving_account under
1544 * rcu_read_lock(), like this:
1545 *
1546 * CPU-A CPU-B
1547 * rcu_read_lock()
1548 * memcg->moving_account+1 if (memcg->mocing_account)
1549 * take heavy locks.
1550 * synchronize_rcu() update something.
1551 * rcu_read_unlock()
1552 * start move here.
1553 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001554
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001555static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001556{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001557 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001558 synchronize_rcu();
1559}
1560
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001561static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001562{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001563 /*
1564 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1565 * We check NULL in callee rather than caller.
1566 */
Johannes Weinerd7365e72014-10-29 14:50:48 -07001567 if (memcg)
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001568 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001569}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001570
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001571/*
Qiang Huangbdcbb652014-06-04 16:08:21 -07001572 * A routine for checking "mem" is under move_account() or not.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001573 *
Qiang Huangbdcbb652014-06-04 16:08:21 -07001574 * Checking a cgroup is mc.from or mc.to or under hierarchy of
1575 * moving cgroups. This is for waiting at high-memory pressure
1576 * caused by "move".
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001577 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001578static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001579{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001580 struct mem_cgroup *from;
1581 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001582 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001583 /*
1584 * Unlike task_move routines, we access mc.to, mc.from not under
1585 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1586 */
1587 spin_lock(&mc.lock);
1588 from = mc.from;
1589 to = mc.to;
1590 if (!from)
1591 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001592
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001593 ret = mem_cgroup_same_or_subtree(memcg, from)
1594 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001595unlock:
1596 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001597 return ret;
1598}
1599
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001600static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001601{
1602 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001603 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001604 DEFINE_WAIT(wait);
1605 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1606 /* moving charge context might have finished. */
1607 if (mc.moving_task)
1608 schedule();
1609 finish_wait(&mc.waitq, &wait);
1610 return true;
1611 }
1612 }
1613 return false;
1614}
1615
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001616/*
1617 * Take this lock when
1618 * - a code tries to modify page's memcg while it's USED.
1619 * - a code tries to modify page state accounting in a memcg.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001620 */
1621static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1622 unsigned long *flags)
1623{
1624 spin_lock_irqsave(&memcg->move_lock, *flags);
1625}
1626
1627static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1628 unsigned long *flags)
1629{
1630 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1631}
1632
Sha Zhengju58cf1882013-02-22 16:32:05 -08001633#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001634/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001635 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001636 * @memcg: The memory cgroup that went over limit
1637 * @p: Task that is going to be killed
1638 *
1639 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1640 * enabled
1641 */
1642void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1643{
Tejun Heoe61734c2014-02-12 09:29:50 -05001644 /* oom_info_lock ensures that parallel ooms do not interleave */
Michal Hocko08088cb2014-02-25 15:01:44 -08001645 static DEFINE_MUTEX(oom_info_lock);
Sha Zhengju58cf1882013-02-22 16:32:05 -08001646 struct mem_cgroup *iter;
1647 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001648
Sha Zhengju58cf1882013-02-22 16:32:05 -08001649 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001650 return;
1651
Michal Hocko08088cb2014-02-25 15:01:44 -08001652 mutex_lock(&oom_info_lock);
Balbir Singhe2224322009-04-02 16:57:39 -07001653 rcu_read_lock();
1654
Tejun Heoe61734c2014-02-12 09:29:50 -05001655 pr_info("Task in ");
1656 pr_cont_cgroup_path(task_cgroup(p, memory_cgrp_id));
1657 pr_info(" killed as a result of limit of ");
1658 pr_cont_cgroup_path(memcg->css.cgroup);
1659 pr_info("\n");
Balbir Singhe2224322009-04-02 16:57:39 -07001660
Balbir Singhe2224322009-04-02 16:57:39 -07001661 rcu_read_unlock();
1662
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001663 pr_info("memory: usage %llukB, limit %llukB, failcnt %lu\n",
1664 K((u64)page_counter_read(&memcg->memory)),
1665 K((u64)memcg->memory.limit), memcg->memory.failcnt);
1666 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %lu\n",
1667 K((u64)page_counter_read(&memcg->memsw)),
1668 K((u64)memcg->memsw.limit), memcg->memsw.failcnt);
1669 pr_info("kmem: usage %llukB, limit %llukB, failcnt %lu\n",
1670 K((u64)page_counter_read(&memcg->kmem)),
1671 K((u64)memcg->kmem.limit), memcg->kmem.failcnt);
Sha Zhengju58cf1882013-02-22 16:32:05 -08001672
1673 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heoe61734c2014-02-12 09:29:50 -05001674 pr_info("Memory cgroup stats for ");
1675 pr_cont_cgroup_path(iter->css.cgroup);
Sha Zhengju58cf1882013-02-22 16:32:05 -08001676 pr_cont(":");
1677
1678 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1679 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1680 continue;
1681 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1682 K(mem_cgroup_read_stat(iter, i)));
1683 }
1684
1685 for (i = 0; i < NR_LRU_LISTS; i++)
1686 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1687 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1688
1689 pr_cont("\n");
1690 }
Michal Hocko08088cb2014-02-25 15:01:44 -08001691 mutex_unlock(&oom_info_lock);
Balbir Singhe2224322009-04-02 16:57:39 -07001692}
1693
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001694/*
1695 * This function returns the number of memcg under hierarchy tree. Returns
1696 * 1(self count) if no children.
1697 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001698static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001699{
1700 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001701 struct mem_cgroup *iter;
1702
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001703 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001704 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001705 return num;
1706}
1707
Balbir Singh6d61ef42009-01-07 18:08:06 -08001708/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001709 * Return the memory (and swap, if configured) limit for a memcg.
1710 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001711static unsigned long mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001712{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001713 unsigned long limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001714
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001715 limit = memcg->memory.limit;
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001716 if (mem_cgroup_swappiness(memcg)) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001717 unsigned long memsw_limit;
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001718
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001719 memsw_limit = memcg->memsw.limit;
1720 limit = min(limit + total_swap_pages, memsw_limit);
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001721 }
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001722 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001723}
1724
David Rientjes19965462012-12-11 16:00:26 -08001725static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1726 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001727{
1728 struct mem_cgroup *iter;
1729 unsigned long chosen_points = 0;
1730 unsigned long totalpages;
1731 unsigned int points = 0;
1732 struct task_struct *chosen = NULL;
1733
David Rientjes876aafb2012-07-31 16:43:48 -07001734 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001735 * If current has a pending SIGKILL or is exiting, then automatically
1736 * select it. The goal is to allow it to allocate so that it may
1737 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001738 */
David Rientjes465adcf2013-04-29 15:08:45 -07001739 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001740 set_thread_flag(TIF_MEMDIE);
1741 return;
1742 }
1743
1744 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001745 totalpages = mem_cgroup_get_limit(memcg) ? : 1;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001746 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001747 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001748 struct task_struct *task;
1749
Tejun Heo72ec7022013-08-08 20:11:26 -04001750 css_task_iter_start(&iter->css, &it);
1751 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001752 switch (oom_scan_process_thread(task, totalpages, NULL,
1753 false)) {
1754 case OOM_SCAN_SELECT:
1755 if (chosen)
1756 put_task_struct(chosen);
1757 chosen = task;
1758 chosen_points = ULONG_MAX;
1759 get_task_struct(chosen);
1760 /* fall through */
1761 case OOM_SCAN_CONTINUE:
1762 continue;
1763 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001764 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001765 mem_cgroup_iter_break(memcg, iter);
1766 if (chosen)
1767 put_task_struct(chosen);
1768 return;
1769 case OOM_SCAN_OK:
1770 break;
1771 };
1772 points = oom_badness(task, memcg, NULL, totalpages);
David Rientjesd49ad932014-01-23 15:53:34 -08001773 if (!points || points < chosen_points)
1774 continue;
1775 /* Prefer thread group leaders for display purposes */
1776 if (points == chosen_points &&
1777 thread_group_leader(chosen))
1778 continue;
1779
1780 if (chosen)
1781 put_task_struct(chosen);
1782 chosen = task;
1783 chosen_points = points;
1784 get_task_struct(chosen);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001785 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001786 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001787 }
1788
1789 if (!chosen)
1790 return;
1791 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001792 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1793 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001794}
1795
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001796/**
1797 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001798 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001799 * @nid: the node ID to be checked.
1800 * @noswap : specify true here if the user wants flle only information.
1801 *
1802 * This function returns whether the specified memcg contains any
1803 * reclaimable pages on a node. Returns true if there are any reclaimable
1804 * pages in the node.
1805 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001806static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001807 int nid, bool noswap)
1808{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001809 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001810 return true;
1811 if (noswap || !total_swap_pages)
1812 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001813 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001814 return true;
1815 return false;
1816
1817}
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001818#if MAX_NUMNODES > 1
Ying Han889976d2011-05-26 16:25:33 -07001819
1820/*
1821 * Always updating the nodemask is not very good - even if we have an empty
1822 * list or the wrong list here, we can start from some node and traverse all
1823 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1824 *
1825 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001826static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001827{
1828 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001829 /*
1830 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1831 * pagein/pageout changes since the last update.
1832 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001833 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001834 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001835 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001836 return;
1837
Ying Han889976d2011-05-26 16:25:33 -07001838 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001839 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001840
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001841 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001842
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001843 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1844 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001845 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001846
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001847 atomic_set(&memcg->numainfo_events, 0);
1848 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001849}
1850
1851/*
1852 * Selecting a node where we start reclaim from. Because what we need is just
1853 * reducing usage counter, start from anywhere is O,K. Considering
1854 * memory reclaim from current node, there are pros. and cons.
1855 *
1856 * Freeing memory from current node means freeing memory from a node which
1857 * we'll use or we've used. So, it may make LRU bad. And if several threads
1858 * hit limits, it will see a contention on a node. But freeing from remote
1859 * node means more costs for memory reclaim because of memory latency.
1860 *
1861 * Now, we use round-robin. Better algorithm is welcomed.
1862 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001863int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001864{
1865 int node;
1866
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001867 mem_cgroup_may_update_nodemask(memcg);
1868 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001869
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001870 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001871 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001872 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001873 /*
1874 * We call this when we hit limit, not when pages are added to LRU.
1875 * No LRU may hold pages because all pages are UNEVICTABLE or
1876 * memcg is too small and all pages are not on LRU. In that case,
1877 * we use curret node.
1878 */
1879 if (unlikely(node == MAX_NUMNODES))
1880 node = numa_node_id();
1881
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001882 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001883 return node;
1884}
1885
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001886/*
1887 * Check all nodes whether it contains reclaimable pages or not.
1888 * For quick scan, we make use of scan_nodes. This will allow us to skip
1889 * unused nodes. But scan_nodes is lazily updated and may not cotain
1890 * enough new information. We need to do double check.
1891 */
1892static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
1893{
1894 int nid;
1895
1896 /*
1897 * quick check...making use of scan_node.
1898 * We can skip unused nodes.
1899 */
1900 if (!nodes_empty(memcg->scan_nodes)) {
1901 for (nid = first_node(memcg->scan_nodes);
1902 nid < MAX_NUMNODES;
1903 nid = next_node(nid, memcg->scan_nodes)) {
1904
1905 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
1906 return true;
1907 }
1908 }
1909 /*
1910 * Check rest of nodes.
1911 */
1912 for_each_node_state(nid, N_MEMORY) {
1913 if (node_isset(nid, memcg->scan_nodes))
1914 continue;
1915 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
1916 return true;
1917 }
1918 return false;
1919}
1920
Ying Han889976d2011-05-26 16:25:33 -07001921#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001922int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001923{
1924 return 0;
1925}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001926
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001927static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
1928{
1929 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
1930}
Ying Han889976d2011-05-26 16:25:33 -07001931#endif
1932
Andrew Morton0608f432013-09-24 15:27:41 -07001933static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1934 struct zone *zone,
1935 gfp_t gfp_mask,
1936 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001937{
Andrew Morton0608f432013-09-24 15:27:41 -07001938 struct mem_cgroup *victim = NULL;
1939 int total = 0;
1940 int loop = 0;
1941 unsigned long excess;
1942 unsigned long nr_scanned;
1943 struct mem_cgroup_reclaim_cookie reclaim = {
1944 .zone = zone,
1945 .priority = 0,
1946 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001947
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001948 excess = soft_limit_excess(root_memcg);
Balbir Singh6d61ef42009-01-07 18:08:06 -08001949
Andrew Morton0608f432013-09-24 15:27:41 -07001950 while (1) {
1951 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
1952 if (!victim) {
1953 loop++;
1954 if (loop >= 2) {
1955 /*
1956 * If we have not been able to reclaim
1957 * anything, it might because there are
1958 * no reclaimable pages under this hierarchy
1959 */
1960 if (!total)
1961 break;
1962 /*
1963 * We want to do more targeted reclaim.
1964 * excess >> 2 is not to excessive so as to
1965 * reclaim too much, nor too less that we keep
1966 * coming back to reclaim from this cgroup
1967 */
1968 if (total >= (excess >> 2) ||
1969 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
1970 break;
1971 }
1972 continue;
1973 }
1974 if (!mem_cgroup_reclaimable(victim, false))
1975 continue;
1976 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1977 zone, &nr_scanned);
1978 *total_scanned += nr_scanned;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001979 if (!soft_limit_excess(root_memcg))
Andrew Morton0608f432013-09-24 15:27:41 -07001980 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001981 }
Andrew Morton0608f432013-09-24 15:27:41 -07001982 mem_cgroup_iter_break(root_memcg, victim);
1983 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001984}
1985
Johannes Weiner0056f4e2013-10-31 16:34:14 -07001986#ifdef CONFIG_LOCKDEP
1987static struct lockdep_map memcg_oom_lock_dep_map = {
1988 .name = "memcg_oom_lock",
1989};
1990#endif
1991
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001992static DEFINE_SPINLOCK(memcg_oom_lock);
1993
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001994/*
1995 * Check OOM-Killer is already running under our hierarchy.
1996 * If someone is running, return false.
1997 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001998static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001999{
Michal Hocko79dfdac2011-07-26 16:08:23 -07002000 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002001
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002002 spin_lock(&memcg_oom_lock);
2003
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002004 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07002005 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07002006 /*
2007 * this subtree of our hierarchy is already locked
2008 * so we cannot give a lock.
2009 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07002010 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002011 mem_cgroup_iter_break(memcg, iter);
2012 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07002013 } else
2014 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07002015 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002016
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002017 if (failed) {
2018 /*
2019 * OK, we failed to lock the whole subtree so we have
2020 * to clean up what we set up to the failing subtree
2021 */
2022 for_each_mem_cgroup_tree(iter, memcg) {
2023 if (iter == failed) {
2024 mem_cgroup_iter_break(memcg, iter);
2025 break;
2026 }
2027 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07002028 }
Johannes Weiner0056f4e2013-10-31 16:34:14 -07002029 } else
2030 mutex_acquire(&memcg_oom_lock_dep_map, 0, 1, _RET_IP_);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002031
2032 spin_unlock(&memcg_oom_lock);
2033
2034 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002035}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002036
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002037static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002038{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07002039 struct mem_cgroup *iter;
2040
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002041 spin_lock(&memcg_oom_lock);
Johannes Weiner0056f4e2013-10-31 16:34:14 -07002042 mutex_release(&memcg_oom_lock_dep_map, 1, _RET_IP_);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002043 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002044 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002045 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07002046}
2047
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002048static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002049{
2050 struct mem_cgroup *iter;
2051
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002052 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002053 atomic_inc(&iter->under_oom);
2054}
2055
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002056static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002057{
2058 struct mem_cgroup *iter;
2059
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002060 /*
2061 * When a new child is created while the hierarchy is under oom,
2062 * mem_cgroup_oom_lock() may not be called. We have to use
2063 * atomic_add_unless() here.
2064 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002065 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002066 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002067}
2068
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002069static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
2070
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002071struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002072 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002073 wait_queue_t wait;
2074};
2075
2076static int memcg_oom_wake_function(wait_queue_t *wait,
2077 unsigned mode, int sync, void *arg)
2078{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002079 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
2080 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002081 struct oom_wait_info *oom_wait_info;
2082
2083 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002084 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002085
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002086 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002087 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002088 * Then we can use css_is_ancestor without taking care of RCU.
2089 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002090 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
2091 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002092 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002093 return autoremove_wake_function(wait, mode, sync, arg);
2094}
2095
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002096static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002097{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002098 atomic_inc(&memcg->oom_wakeups);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002099 /* for filtering, pass "memcg" as argument. */
2100 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002101}
2102
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002103static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002104{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002105 if (memcg && atomic_read(&memcg->under_oom))
2106 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002107}
2108
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002109static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002110{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002111 if (!current->memcg_oom.may_oom)
2112 return;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002113 /*
Johannes Weiner49426422013-10-16 13:46:59 -07002114 * We are in the middle of the charge context here, so we
2115 * don't want to block when potentially sitting on a callstack
2116 * that holds all kinds of filesystem and mm locks.
2117 *
2118 * Also, the caller may handle a failed allocation gracefully
2119 * (like optional page cache readahead) and so an OOM killer
2120 * invocation might not even be necessary.
2121 *
2122 * That's why we don't do anything here except remember the
2123 * OOM context and then deal with it at the end of the page
2124 * fault when the stack is unwound, the locks are released,
2125 * and when we know whether the fault was overall successful.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002126 */
Johannes Weiner49426422013-10-16 13:46:59 -07002127 css_get(&memcg->css);
2128 current->memcg_oom.memcg = memcg;
2129 current->memcg_oom.gfp_mask = mask;
2130 current->memcg_oom.order = order;
2131}
2132
2133/**
2134 * mem_cgroup_oom_synchronize - complete memcg OOM handling
2135 * @handle: actually kill/wait or just clean up the OOM state
2136 *
2137 * This has to be called at the end of a page fault if the memcg OOM
2138 * handler was enabled.
2139 *
2140 * Memcg supports userspace OOM handling where failed allocations must
2141 * sleep on a waitqueue until the userspace task resolves the
2142 * situation. Sleeping directly in the charge context with all kinds
2143 * of locks held is not a good idea, instead we remember an OOM state
2144 * in the task and mem_cgroup_oom_synchronize() has to be called at
2145 * the end of the page fault to complete the OOM handling.
2146 *
2147 * Returns %true if an ongoing memcg OOM situation was detected and
2148 * completed, %false otherwise.
2149 */
2150bool mem_cgroup_oom_synchronize(bool handle)
2151{
2152 struct mem_cgroup *memcg = current->memcg_oom.memcg;
2153 struct oom_wait_info owait;
2154 bool locked;
2155
2156 /* OOM is global, do not handle */
2157 if (!memcg)
2158 return false;
2159
2160 if (!handle)
2161 goto cleanup;
2162
2163 owait.memcg = memcg;
2164 owait.wait.flags = 0;
2165 owait.wait.func = memcg_oom_wake_function;
2166 owait.wait.private = current;
2167 INIT_LIST_HEAD(&owait.wait.task_list);
2168
2169 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002170 mem_cgroup_mark_under_oom(memcg);
2171
2172 locked = mem_cgroup_oom_trylock(memcg);
2173
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002174 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002175 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002176
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002177 if (locked && !memcg->oom_kill_disable) {
2178 mem_cgroup_unmark_under_oom(memcg);
Johannes Weiner49426422013-10-16 13:46:59 -07002179 finish_wait(&memcg_oom_waitq, &owait.wait);
2180 mem_cgroup_out_of_memory(memcg, current->memcg_oom.gfp_mask,
2181 current->memcg_oom.order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002182 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002183 schedule();
Johannes Weiner49426422013-10-16 13:46:59 -07002184 mem_cgroup_unmark_under_oom(memcg);
2185 finish_wait(&memcg_oom_waitq, &owait.wait);
2186 }
2187
2188 if (locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002189 mem_cgroup_oom_unlock(memcg);
2190 /*
2191 * There is no guarantee that an OOM-lock contender
2192 * sees the wakeups triggered by the OOM kill
2193 * uncharges. Wake any sleepers explicitely.
2194 */
2195 memcg_oom_recover(memcg);
2196 }
Johannes Weiner49426422013-10-16 13:46:59 -07002197cleanup:
2198 current->memcg_oom.memcg = NULL;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002199 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002200 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002201}
2202
Johannes Weinerd7365e72014-10-29 14:50:48 -07002203/**
2204 * mem_cgroup_begin_page_stat - begin a page state statistics transaction
2205 * @page: page that is going to change accounted state
2206 * @locked: &memcg->move_lock slowpath was taken
2207 * @flags: IRQ-state flags for &memcg->move_lock
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002208 *
Johannes Weinerd7365e72014-10-29 14:50:48 -07002209 * This function must mark the beginning of an accounted page state
2210 * change to prevent double accounting when the page is concurrently
2211 * being moved to another memcg:
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002212 *
Johannes Weinerd7365e72014-10-29 14:50:48 -07002213 * memcg = mem_cgroup_begin_page_stat(page, &locked, &flags);
2214 * if (TestClearPageState(page))
2215 * mem_cgroup_update_page_stat(memcg, state, -1);
2216 * mem_cgroup_end_page_stat(memcg, locked, flags);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002217 *
Johannes Weinerd7365e72014-10-29 14:50:48 -07002218 * The RCU lock is held throughout the transaction. The fast path can
2219 * get away without acquiring the memcg->move_lock (@locked is false)
2220 * because page moving starts with an RCU grace period.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002221 *
Johannes Weinerd7365e72014-10-29 14:50:48 -07002222 * The RCU lock also protects the memcg from being freed when the page
2223 * state that is going to change is the only thing preventing the page
2224 * from being uncharged. E.g. end-writeback clearing PageWriteback(),
2225 * which allows migration to go ahead and uncharge the page before the
2226 * account transaction might be complete.
Balbir Singhd69b0422009-06-17 16:26:34 -07002227 */
Johannes Weinerd7365e72014-10-29 14:50:48 -07002228struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page,
2229 bool *locked,
2230 unsigned long *flags)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002231{
2232 struct mem_cgroup *memcg;
2233 struct page_cgroup *pc;
2234
Johannes Weinerd7365e72014-10-29 14:50:48 -07002235 rcu_read_lock();
2236
2237 if (mem_cgroup_disabled())
2238 return NULL;
2239
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002240 pc = lookup_page_cgroup(page);
2241again:
2242 memcg = pc->mem_cgroup;
2243 if (unlikely(!memcg || !PageCgroupUsed(pc)))
Johannes Weinerd7365e72014-10-29 14:50:48 -07002244 return NULL;
2245
2246 *locked = false;
Qiang Huangbdcbb652014-06-04 16:08:21 -07002247 if (atomic_read(&memcg->moving_account) <= 0)
Johannes Weinerd7365e72014-10-29 14:50:48 -07002248 return memcg;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002249
2250 move_lock_mem_cgroup(memcg, flags);
2251 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2252 move_unlock_mem_cgroup(memcg, flags);
2253 goto again;
2254 }
2255 *locked = true;
Johannes Weinerd7365e72014-10-29 14:50:48 -07002256
2257 return memcg;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002258}
2259
Johannes Weinerd7365e72014-10-29 14:50:48 -07002260/**
2261 * mem_cgroup_end_page_stat - finish a page state statistics transaction
2262 * @memcg: the memcg that was accounted against
2263 * @locked: value received from mem_cgroup_begin_page_stat()
2264 * @flags: value received from mem_cgroup_begin_page_stat()
2265 */
2266void mem_cgroup_end_page_stat(struct mem_cgroup *memcg, bool locked,
2267 unsigned long flags)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002268{
Johannes Weinerd7365e72014-10-29 14:50:48 -07002269 if (memcg && locked)
2270 move_unlock_mem_cgroup(memcg, &flags);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002271
Johannes Weinerd7365e72014-10-29 14:50:48 -07002272 rcu_read_unlock();
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002273}
2274
Johannes Weinerd7365e72014-10-29 14:50:48 -07002275/**
2276 * mem_cgroup_update_page_stat - update page state statistics
2277 * @memcg: memcg to account against
2278 * @idx: page state item to account
2279 * @val: number of pages (positive or negative)
2280 *
2281 * See mem_cgroup_begin_page_stat() for locking requirements.
2282 */
2283void mem_cgroup_update_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -07002284 enum mem_cgroup_stat_index idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002285{
Sha Zhengju658b72c2013-09-12 15:13:52 -07002286 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002287
Johannes Weinerd7365e72014-10-29 14:50:48 -07002288 if (memcg)
2289 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002290}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002291
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002292/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002293 * size of first charge trial. "32" comes from vmscan.c's magic value.
2294 * TODO: maybe necessary to use big numbers in big irons.
2295 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002296#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002297struct memcg_stock_pcp {
2298 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002299 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002300 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002301 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002302#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002303};
2304static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002305static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002306
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002307/**
2308 * consume_stock: Try to consume stocked charge on this cpu.
2309 * @memcg: memcg to consume from.
2310 * @nr_pages: how many pages to charge.
2311 *
2312 * The charges will only happen if @memcg matches the current cpu's memcg
2313 * stock, and at least @nr_pages are available in that stock. Failure to
2314 * service an allocation will refill the stock.
2315 *
2316 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002317 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002318static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002319{
2320 struct memcg_stock_pcp *stock;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002321 bool ret = false;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002322
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002323 if (nr_pages > CHARGE_BATCH)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002324 return ret;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002325
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002326 stock = &get_cpu_var(memcg_stock);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002327 if (memcg == stock->cached && stock->nr_pages >= nr_pages) {
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002328 stock->nr_pages -= nr_pages;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002329 ret = true;
2330 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002331 put_cpu_var(memcg_stock);
2332 return ret;
2333}
2334
2335/*
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002336 * Returns stocks cached in percpu and reset cached information.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002337 */
2338static void drain_stock(struct memcg_stock_pcp *stock)
2339{
2340 struct mem_cgroup *old = stock->cached;
2341
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002342 if (stock->nr_pages) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002343 page_counter_uncharge(&old->memory, stock->nr_pages);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002344 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002345 page_counter_uncharge(&old->memsw, stock->nr_pages);
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002346 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002347 }
2348 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002349}
2350
2351/*
2352 * This must be called under preempt disabled or must be called by
2353 * a thread which is pinned to local cpu.
2354 */
2355static void drain_local_stock(struct work_struct *dummy)
2356{
Christoph Lameter7c8e0182014-06-04 16:07:56 -07002357 struct memcg_stock_pcp *stock = this_cpu_ptr(&memcg_stock);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002358 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002359 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002360}
2361
Michal Hockoe4777492013-02-22 16:35:40 -08002362static void __init memcg_stock_init(void)
2363{
2364 int cpu;
2365
2366 for_each_possible_cpu(cpu) {
2367 struct memcg_stock_pcp *stock =
2368 &per_cpu(memcg_stock, cpu);
2369 INIT_WORK(&stock->work, drain_local_stock);
2370 }
2371}
2372
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002373/*
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002374 * Cache charges(val) to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002375 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002376 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002377static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002378{
2379 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2380
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002381 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002382 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002383 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002384 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002385 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002386 put_cpu_var(memcg_stock);
2387}
2388
2389/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002390 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002391 * of the hierarchy under it. sync flag says whether we should block
2392 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002393 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002394static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002395{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002396 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002397
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002398 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002399 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002400 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002401 for_each_online_cpu(cpu) {
2402 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002403 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002404
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002405 memcg = stock->cached;
2406 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002407 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002408 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002409 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002410 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2411 if (cpu == curcpu)
2412 drain_local_stock(&stock->work);
2413 else
2414 schedule_work_on(cpu, &stock->work);
2415 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002416 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002417 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002418
2419 if (!sync)
2420 goto out;
2421
2422 for_each_online_cpu(cpu) {
2423 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002424 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002425 flush_work(&stock->work);
2426 }
2427out:
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002428 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002429}
2430
2431/*
2432 * Tries to drain stocked charges in other cpus. This function is asynchronous
2433 * and just put a work per cpu for draining localy on each cpu. Caller can
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002434 * expects some charges will be back later but cannot wait for it.
Michal Hockod38144b2011-07-26 16:08:28 -07002435 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002436static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002437{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002438 /*
2439 * If someone calls draining, avoid adding more kworker runs.
2440 */
2441 if (!mutex_trylock(&percpu_charge_mutex))
2442 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002443 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002444 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002445}
2446
2447/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002448static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002449{
2450 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002451 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002452 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002453 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002454}
2455
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002456/*
2457 * This function drains percpu counter value from DEAD cpu and
2458 * move it to local cpu. Note that this function can be preempted.
2459 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002460static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002461{
2462 int i;
2463
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002464 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002465 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002466 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002467
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002468 per_cpu(memcg->stat->count[i], cpu) = 0;
2469 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002470 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002471 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002472 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002473
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002474 per_cpu(memcg->stat->events[i], cpu) = 0;
2475 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002476 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002477 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002478}
2479
Paul Gortmaker0db06282013-06-19 14:53:51 -04002480static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002481 unsigned long action,
2482 void *hcpu)
2483{
2484 int cpu = (unsigned long)hcpu;
2485 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002486 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002487
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002488 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002489 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002490
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002491 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002492 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002493
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002494 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002495 mem_cgroup_drain_pcp_counter(iter, cpu);
2496
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002497 stock = &per_cpu(memcg_stock, cpu);
2498 drain_stock(stock);
2499 return NOTIFY_OK;
2500}
2501
Johannes Weiner00501b52014-08-08 14:19:20 -07002502static int try_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
2503 unsigned int nr_pages)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002504{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002505 unsigned int batch = max(CHARGE_BATCH, nr_pages);
Johannes Weiner9b130612014-08-06 16:05:51 -07002506 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002507 struct mem_cgroup *mem_over_limit;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002508 struct page_counter *counter;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002509 unsigned long nr_reclaimed;
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002510 bool may_swap = true;
2511 bool drained = false;
Johannes Weiner05b84302014-08-06 16:05:59 -07002512 int ret = 0;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002513
Johannes Weinerce00a962014-09-05 08:43:57 -04002514 if (mem_cgroup_is_root(memcg))
2515 goto done;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002516retry:
Michal Hockob6b6cc72014-04-07 15:37:44 -07002517 if (consume_stock(memcg, nr_pages))
2518 goto done;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002519
Johannes Weiner3fbe7242014-10-09 15:28:54 -07002520 if (!do_swap_account ||
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002521 !page_counter_try_charge(&memcg->memsw, batch, &counter)) {
2522 if (!page_counter_try_charge(&memcg->memory, batch, &counter))
Johannes Weiner6539cc02014-08-06 16:05:42 -07002523 goto done_restock;
Johannes Weiner3fbe7242014-10-09 15:28:54 -07002524 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002525 page_counter_uncharge(&memcg->memsw, batch);
2526 mem_over_limit = mem_cgroup_from_counter(counter, memory);
Johannes Weiner3fbe7242014-10-09 15:28:54 -07002527 } else {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002528 mem_over_limit = mem_cgroup_from_counter(counter, memsw);
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002529 may_swap = false;
Johannes Weiner3fbe7242014-10-09 15:28:54 -07002530 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002531
Johannes Weiner6539cc02014-08-06 16:05:42 -07002532 if (batch > nr_pages) {
2533 batch = nr_pages;
2534 goto retry;
2535 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002536
Johannes Weiner06b078f2014-08-06 16:05:44 -07002537 /*
2538 * Unlike in global OOM situations, memcg is not in a physical
2539 * memory shortage. Allow dying and OOM-killed tasks to
2540 * bypass the last charges so that they can exit quickly and
2541 * free their memory.
2542 */
2543 if (unlikely(test_thread_flag(TIF_MEMDIE) ||
2544 fatal_signal_pending(current) ||
2545 current->flags & PF_EXITING))
2546 goto bypass;
2547
2548 if (unlikely(task_in_memcg_oom(current)))
2549 goto nomem;
2550
Johannes Weiner6539cc02014-08-06 16:05:42 -07002551 if (!(gfp_mask & __GFP_WAIT))
2552 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002553
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002554 nr_reclaimed = try_to_free_mem_cgroup_pages(mem_over_limit, nr_pages,
2555 gfp_mask, may_swap);
Johannes Weiner6539cc02014-08-06 16:05:42 -07002556
Johannes Weiner61e02c72014-08-06 16:08:16 -07002557 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner6539cc02014-08-06 16:05:42 -07002558 goto retry;
Johannes Weiner28c34c22014-08-06 16:05:47 -07002559
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002560 if (!drained) {
2561 drain_all_stock_async(mem_over_limit);
2562 drained = true;
2563 goto retry;
2564 }
2565
Johannes Weiner28c34c22014-08-06 16:05:47 -07002566 if (gfp_mask & __GFP_NORETRY)
2567 goto nomem;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002568 /*
2569 * Even though the limit is exceeded at this point, reclaim
2570 * may have been able to free some pages. Retry the charge
2571 * before killing the task.
2572 *
2573 * Only for regular pages, though: huge pages are rather
2574 * unlikely to succeed so close to the limit, and we fall back
2575 * to regular pages anyway in case of failure.
2576 */
Johannes Weiner61e02c72014-08-06 16:08:16 -07002577 if (nr_reclaimed && nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER))
Johannes Weiner6539cc02014-08-06 16:05:42 -07002578 goto retry;
2579 /*
2580 * At task move, charge accounts can be doubly counted. So, it's
2581 * better to wait until the end of task_move if something is going on.
2582 */
2583 if (mem_cgroup_wait_acct_move(mem_over_limit))
2584 goto retry;
2585
Johannes Weiner9b130612014-08-06 16:05:51 -07002586 if (nr_retries--)
2587 goto retry;
2588
Johannes Weiner06b078f2014-08-06 16:05:44 -07002589 if (gfp_mask & __GFP_NOFAIL)
2590 goto bypass;
2591
Johannes Weiner6539cc02014-08-06 16:05:42 -07002592 if (fatal_signal_pending(current))
2593 goto bypass;
2594
Johannes Weiner61e02c72014-08-06 16:08:16 -07002595 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(nr_pages));
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002596nomem:
Johannes Weiner6d1fdc42014-04-07 15:37:45 -07002597 if (!(gfp_mask & __GFP_NOFAIL))
Johannes Weiner3168ecb2013-10-31 16:34:13 -07002598 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002599bypass:
Johannes Weinerce00a962014-09-05 08:43:57 -04002600 return -EINTR;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002601
2602done_restock:
2603 if (batch > nr_pages)
2604 refill_stock(memcg, batch - nr_pages);
2605done:
Johannes Weiner05b84302014-08-06 16:05:59 -07002606 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002607}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002608
Johannes Weiner00501b52014-08-08 14:19:20 -07002609static void cancel_charge(struct mem_cgroup *memcg, unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002610{
Johannes Weinerce00a962014-09-05 08:43:57 -04002611 if (mem_cgroup_is_root(memcg))
2612 return;
2613
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002614 page_counter_uncharge(&memcg->memory, nr_pages);
Johannes Weiner05b84302014-08-06 16:05:59 -07002615 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002616 page_counter_uncharge(&memcg->memsw, nr_pages);
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002617}
2618
2619/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002620 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoec903c02014-05-13 12:11:01 -04002621 * rcu_read_lock(). The caller is responsible for calling
2622 * css_tryget_online() if the mem_cgroup is used for charging. (dropping
2623 * refcnt from swap can be called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002624 */
2625static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2626{
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002627 /* ID 0 is unused ID */
2628 if (!id)
2629 return NULL;
Li Zefan34c00c32013-09-23 16:56:01 +08002630 return mem_cgroup_from_id(id);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002631}
2632
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002633/*
2634 * try_get_mem_cgroup_from_page - look up page's memcg association
2635 * @page: the page
2636 *
2637 * Look up, get a css reference, and return the memcg that owns @page.
2638 *
2639 * The page must be locked to prevent racing with swap-in and page
2640 * cache charges. If coming from an unlocked page table, the caller
2641 * must ensure the page is on the LRU or this can race with charging.
2642 */
Wu Fengguange42d9d52009-12-16 12:19:59 +01002643struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002644{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002645 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002646 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002647 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002648 swp_entry_t ent;
2649
Sasha Levin309381fea2014-01-23 15:52:54 -08002650 VM_BUG_ON_PAGE(!PageLocked(page), page);
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002651
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002652 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002653 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002654 memcg = pc->mem_cgroup;
Tejun Heoec903c02014-05-13 12:11:01 -04002655 if (memcg && !css_tryget_online(&memcg->css))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002656 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002657 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002658 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002659 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002660 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002661 memcg = mem_cgroup_lookup(id);
Tejun Heoec903c02014-05-13 12:11:01 -04002662 if (memcg && !css_tryget_online(&memcg->css))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002663 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002664 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002665 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002666 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002667}
2668
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002669static void lock_page_lru(struct page *page, int *isolated)
2670{
2671 struct zone *zone = page_zone(page);
2672
2673 spin_lock_irq(&zone->lru_lock);
2674 if (PageLRU(page)) {
2675 struct lruvec *lruvec;
2676
2677 lruvec = mem_cgroup_page_lruvec(page, zone);
2678 ClearPageLRU(page);
2679 del_page_from_lru_list(page, lruvec, page_lru(page));
2680 *isolated = 1;
2681 } else
2682 *isolated = 0;
2683}
2684
2685static void unlock_page_lru(struct page *page, int isolated)
2686{
2687 struct zone *zone = page_zone(page);
2688
2689 if (isolated) {
2690 struct lruvec *lruvec;
2691
2692 lruvec = mem_cgroup_page_lruvec(page, zone);
2693 VM_BUG_ON_PAGE(PageLRU(page), page);
2694 SetPageLRU(page);
2695 add_page_to_lru_list(page, lruvec, page_lru(page));
2696 }
2697 spin_unlock_irq(&zone->lru_lock);
2698}
2699
Johannes Weiner00501b52014-08-08 14:19:20 -07002700static void commit_charge(struct page *page, struct mem_cgroup *memcg,
Johannes Weiner6abb5a82014-08-08 14:19:33 -07002701 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002702{
Johannes Weinerce587e62012-04-24 20:22:33 +02002703 struct page_cgroup *pc = lookup_page_cgroup(page);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002704 int isolated;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002705
Sasha Levin309381fea2014-01-23 15:52:54 -08002706 VM_BUG_ON_PAGE(PageCgroupUsed(pc), page);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002707 /*
2708 * we don't need page_cgroup_lock about tail pages, becase they are not
2709 * accessed by any other context at this point.
2710 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002711
2712 /*
2713 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2714 * may already be on some other mem_cgroup's LRU. Take care of it.
2715 */
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002716 if (lrucare)
2717 lock_page_lru(page, &isolated);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002718
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002719 /*
2720 * Nobody should be changing or seriously looking at
2721 * pc->mem_cgroup and pc->flags at this point:
2722 *
2723 * - the page is uncharged
2724 *
2725 * - the page is off-LRU
2726 *
2727 * - an anonymous fault has exclusive page access, except for
2728 * a locked page table
2729 *
2730 * - a page cache insertion, a swapin fault, or a migration
2731 * have the page locked
2732 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002733 pc->mem_cgroup = memcg;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002734 pc->flags = PCG_USED | PCG_MEM | (do_swap_account ? PCG_MEMSW : 0);
Hugh Dickins3be91272008-02-07 00:14:19 -08002735
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002736 if (lrucare)
2737 unlock_page_lru(page, isolated);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002738}
2739
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002740#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydovbd673142014-06-04 16:07:40 -07002741/*
2742 * The memcg_slab_mutex is held whenever a per memcg kmem cache is created or
2743 * destroyed. It protects memcg_caches arrays and memcg_slab_caches lists.
2744 */
2745static DEFINE_MUTEX(memcg_slab_mutex);
2746
Vladimir Davydovd6441632014-01-23 15:53:09 -08002747static DEFINE_MUTEX(activate_kmem_mutex);
2748
Glauber Costa1f458cb2012-12-18 14:22:50 -08002749/*
2750 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2751 * in the memcg_cache_params struct.
2752 */
2753static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2754{
2755 struct kmem_cache *cachep;
2756
2757 VM_BUG_ON(p->is_root_cache);
2758 cachep = p->root_cache;
Qiang Huang7a67d7a2013-11-12 15:08:24 -08002759 return cache_from_memcg_idx(cachep, memcg_cache_id(p->memcg));
Glauber Costa1f458cb2012-12-18 14:22:50 -08002760}
2761
Glauber Costa749c5412012-12-18 14:23:01 -08002762#ifdef CONFIG_SLABINFO
Tejun Heo2da8ca82013-12-05 12:28:04 -05002763static int mem_cgroup_slabinfo_read(struct seq_file *m, void *v)
Glauber Costa749c5412012-12-18 14:23:01 -08002764{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002765 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Glauber Costa749c5412012-12-18 14:23:01 -08002766 struct memcg_cache_params *params;
2767
Vladimir Davydovcf2b8fb2014-10-09 15:28:59 -07002768 if (!memcg_kmem_is_active(memcg))
Glauber Costa749c5412012-12-18 14:23:01 -08002769 return -EIO;
2770
2771 print_slabinfo_header(m);
2772
Vladimir Davydovbd673142014-06-04 16:07:40 -07002773 mutex_lock(&memcg_slab_mutex);
Glauber Costa749c5412012-12-18 14:23:01 -08002774 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2775 cache_show(memcg_params_to_cache(params), m);
Vladimir Davydovbd673142014-06-04 16:07:40 -07002776 mutex_unlock(&memcg_slab_mutex);
Glauber Costa749c5412012-12-18 14:23:01 -08002777
2778 return 0;
2779}
2780#endif
2781
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002782static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp,
2783 unsigned long nr_pages)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002784{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002785 struct page_counter *counter;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002786 int ret = 0;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002787
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002788 ret = page_counter_try_charge(&memcg->kmem, nr_pages, &counter);
2789 if (ret < 0)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002790 return ret;
2791
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002792 ret = try_charge(memcg, gfp, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002793 if (ret == -EINTR) {
2794 /*
Johannes Weiner00501b52014-08-08 14:19:20 -07002795 * try_charge() chose to bypass to root due to OOM kill or
2796 * fatal signal. Since our only options are to either fail
2797 * the allocation or charge it to this cgroup, do it as a
2798 * temporary condition. But we can't fail. From a kmem/slab
2799 * perspective, the cache has already been selected, by
2800 * mem_cgroup_kmem_get_cache(), so it is too late to change
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002801 * our minds.
2802 *
2803 * This condition will only trigger if the task entered
Johannes Weiner00501b52014-08-08 14:19:20 -07002804 * memcg_charge_kmem in a sane state, but was OOM-killed
2805 * during try_charge() above. Tasks that were already dying
2806 * when the allocation triggers should have been already
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002807 * directed to the root cgroup in memcontrol.h
2808 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002809 page_counter_charge(&memcg->memory, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002810 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002811 page_counter_charge(&memcg->memsw, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002812 ret = 0;
2813 } else if (ret)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002814 page_counter_uncharge(&memcg->kmem, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002815
2816 return ret;
2817}
2818
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002819static void memcg_uncharge_kmem(struct mem_cgroup *memcg,
2820 unsigned long nr_pages)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002821{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002822 page_counter_uncharge(&memcg->memory, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002823 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002824 page_counter_uncharge(&memcg->memsw, nr_pages);
Glauber Costa7de37682012-12-18 14:22:07 -08002825
2826 /* Not down to 0 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002827 if (page_counter_uncharge(&memcg->kmem, nr_pages))
Glauber Costa7de37682012-12-18 14:22:07 -08002828 return;
2829
Li Zefan10d5ebf2013-07-08 16:00:33 -07002830 /*
2831 * Releases a reference taken in kmem_cgroup_css_offline in case
2832 * this last uncharge is racing with the offlining code or it is
2833 * outliving the memcg existence.
2834 *
2835 * The memory barrier imposed by test&clear is paired with the
2836 * explicit one in memcg_kmem_mark_dead().
2837 */
Glauber Costa7de37682012-12-18 14:22:07 -08002838 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002839 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002840}
2841
Glauber Costa2633d7a2012-12-18 14:22:34 -08002842/*
2843 * helper for acessing a memcg's index. It will be used as an index in the
2844 * child cache array in kmem_cache, and also to derive its name. This function
2845 * will return -1 when this is not a kmem-limited memcg.
2846 */
2847int memcg_cache_id(struct mem_cgroup *memcg)
2848{
2849 return memcg ? memcg->kmemcg_id : -1;
2850}
2851
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002852static int memcg_alloc_cache_id(void)
Glauber Costa55007d82012-12-18 14:22:38 -08002853{
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002854 int id, size;
2855 int err;
Glauber Costa55007d82012-12-18 14:22:38 -08002856
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002857 id = ida_simple_get(&kmem_limited_groups,
2858 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2859 if (id < 0)
2860 return id;
2861
2862 if (id < memcg_limited_groups_array_size)
2863 return id;
2864
2865 /*
2866 * There's no space for the new id in memcg_caches arrays,
2867 * so we have to grow them.
2868 */
2869
2870 size = 2 * (id + 1);
Glauber Costa55007d82012-12-18 14:22:38 -08002871 if (size < MEMCG_CACHES_MIN_SIZE)
2872 size = MEMCG_CACHES_MIN_SIZE;
2873 else if (size > MEMCG_CACHES_MAX_SIZE)
2874 size = MEMCG_CACHES_MAX_SIZE;
2875
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002876 mutex_lock(&memcg_slab_mutex);
2877 err = memcg_update_all_caches(size);
2878 mutex_unlock(&memcg_slab_mutex);
2879
2880 if (err) {
2881 ida_simple_remove(&kmem_limited_groups, id);
2882 return err;
2883 }
2884 return id;
2885}
2886
2887static void memcg_free_cache_id(int id)
2888{
2889 ida_simple_remove(&kmem_limited_groups, id);
Glauber Costa55007d82012-12-18 14:22:38 -08002890}
2891
2892/*
2893 * We should update the current array size iff all caches updates succeed. This
2894 * can only be done from the slab side. The slab mutex needs to be held when
2895 * calling this.
2896 */
2897void memcg_update_array_size(int num)
2898{
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002899 memcg_limited_groups_array_size = num;
Glauber Costa55007d82012-12-18 14:22:38 -08002900}
2901
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07002902static void memcg_register_cache(struct mem_cgroup *memcg,
2903 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08002904{
Vladimir Davydov93f39ee2014-06-04 16:08:24 -07002905 static char memcg_name_buf[NAME_MAX + 1]; /* protected by
2906 memcg_slab_mutex */
Vladimir Davydovbd673142014-06-04 16:07:40 -07002907 struct kmem_cache *cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08002908 int id;
2909
Vladimir Davydovbd673142014-06-04 16:07:40 -07002910 lockdep_assert_held(&memcg_slab_mutex);
2911
2912 id = memcg_cache_id(memcg);
Glauber Costad7f25f82012-12-18 14:22:40 -08002913
Vladimir Davydov2edefe12014-01-23 15:53:02 -08002914 /*
Vladimir Davydovbd673142014-06-04 16:07:40 -07002915 * Since per-memcg caches are created asynchronously on first
2916 * allocation (see memcg_kmem_get_cache()), several threads can try to
2917 * create the same cache, but only one of them may succeed.
Vladimir Davydov2edefe12014-01-23 15:53:02 -08002918 */
Vladimir Davydovbd673142014-06-04 16:07:40 -07002919 if (cache_from_memcg_idx(root_cache, id))
2920 return;
Vladimir Davydov2edefe12014-01-23 15:53:02 -08002921
Vladimir Davydov073ee1c2014-06-04 16:08:23 -07002922 cgroup_name(memcg->css.cgroup, memcg_name_buf, NAME_MAX + 1);
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07002923 cachep = memcg_create_kmem_cache(memcg, root_cache, memcg_name_buf);
Vladimir Davydovbd673142014-06-04 16:07:40 -07002924 /*
2925 * If we could not create a memcg cache, do not complain, because
2926 * that's not critical at all as we can always proceed with the root
2927 * cache.
2928 */
2929 if (!cachep)
2930 return;
2931
Vladimir Davydov33a690c2014-10-09 15:28:43 -07002932 css_get(&memcg->css);
Vladimir Davydovbd673142014-06-04 16:07:40 -07002933 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002934
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002935 /*
Vladimir Davydov959c8962014-01-23 15:52:59 -08002936 * Since readers won't lock (see cache_from_memcg_idx()), we need a
2937 * barrier here to ensure nobody will see the kmem_cache partially
2938 * initialized.
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002939 */
Vladimir Davydov959c8962014-01-23 15:52:59 -08002940 smp_wmb();
2941
Vladimir Davydovbd673142014-06-04 16:07:40 -07002942 BUG_ON(root_cache->memcg_params->memcg_caches[id]);
2943 root_cache->memcg_params->memcg_caches[id] = cachep;
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002944}
2945
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07002946static void memcg_unregister_cache(struct kmem_cache *cachep)
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002947{
Vladimir Davydovbd673142014-06-04 16:07:40 -07002948 struct kmem_cache *root_cache;
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002949 struct mem_cgroup *memcg;
2950 int id;
2951
Vladimir Davydovbd673142014-06-04 16:07:40 -07002952 lockdep_assert_held(&memcg_slab_mutex);
Glauber Costad7f25f82012-12-18 14:22:40 -08002953
Vladimir Davydovbd673142014-06-04 16:07:40 -07002954 BUG_ON(is_root_cache(cachep));
Vladimir Davydov2edefe12014-01-23 15:53:02 -08002955
Vladimir Davydovbd673142014-06-04 16:07:40 -07002956 root_cache = cachep->memcg_params->root_cache;
2957 memcg = cachep->memcg_params->memcg;
Vladimir Davydov96403da2014-01-23 15:53:01 -08002958 id = memcg_cache_id(memcg);
Glauber Costad7f25f82012-12-18 14:22:40 -08002959
Vladimir Davydovbd673142014-06-04 16:07:40 -07002960 BUG_ON(root_cache->memcg_params->memcg_caches[id] != cachep);
2961 root_cache->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08002962
Vladimir Davydovbd673142014-06-04 16:07:40 -07002963 list_del(&cachep->memcg_params->list);
2964
2965 kmem_cache_destroy(cachep);
Vladimir Davydov33a690c2014-10-09 15:28:43 -07002966
2967 /* drop the reference taken in memcg_register_cache */
2968 css_put(&memcg->css);
Glauber Costa2633d7a2012-12-18 14:22:34 -08002969}
2970
Glauber Costa0e9d92f2012-12-18 14:22:42 -08002971/*
2972 * During the creation a new cache, we need to disable our accounting mechanism
2973 * altogether. This is true even if we are not creating, but rather just
2974 * enqueing new caches to be created.
2975 *
2976 * This is because that process will trigger allocations; some visible, like
2977 * explicit kmallocs to auxiliary data structures, name strings and internal
2978 * cache structures; some well concealed, like INIT_WORK() that can allocate
2979 * objects during debug.
2980 *
2981 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
2982 * to it. This may not be a bounded recursion: since the first cache creation
2983 * failed to complete (waiting on the allocation), we'll just try to create the
2984 * cache again, failing at the same point.
2985 *
2986 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
2987 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
2988 * inside the following two functions.
2989 */
2990static inline void memcg_stop_kmem_account(void)
2991{
2992 VM_BUG_ON(!current->mm);
2993 current->memcg_kmem_skip_account++;
2994}
2995
2996static inline void memcg_resume_kmem_account(void)
2997{
2998 VM_BUG_ON(!current->mm);
2999 current->memcg_kmem_skip_account--;
3000}
3001
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003002int __memcg_cleanup_cache_params(struct kmem_cache *s)
Glauber Costa7cf27982012-12-18 14:22:55 -08003003{
3004 struct kmem_cache *c;
Vladimir Davydovb8529902014-04-07 15:39:28 -07003005 int i, failed = 0;
Glauber Costa7cf27982012-12-18 14:22:55 -08003006
Vladimir Davydovbd673142014-06-04 16:07:40 -07003007 mutex_lock(&memcg_slab_mutex);
Qiang Huang7a67d7a2013-11-12 15:08:24 -08003008 for_each_memcg_cache_index(i) {
3009 c = cache_from_memcg_idx(s, i);
Glauber Costa7cf27982012-12-18 14:22:55 -08003010 if (!c)
3011 continue;
3012
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003013 memcg_unregister_cache(c);
Vladimir Davydovb8529902014-04-07 15:39:28 -07003014
3015 if (cache_from_memcg_idx(s, i))
3016 failed++;
Glauber Costa7cf27982012-12-18 14:22:55 -08003017 }
Vladimir Davydovbd673142014-06-04 16:07:40 -07003018 mutex_unlock(&memcg_slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -07003019 return failed;
Glauber Costa7cf27982012-12-18 14:22:55 -08003020}
3021
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003022static void memcg_unregister_all_caches(struct mem_cgroup *memcg)
Glauber Costa1f458cb2012-12-18 14:22:50 -08003023{
3024 struct kmem_cache *cachep;
Vladimir Davydovbd673142014-06-04 16:07:40 -07003025 struct memcg_cache_params *params, *tmp;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003026
3027 if (!memcg_kmem_is_active(memcg))
3028 return;
3029
Vladimir Davydovbd673142014-06-04 16:07:40 -07003030 mutex_lock(&memcg_slab_mutex);
3031 list_for_each_entry_safe(params, tmp, &memcg->memcg_slab_caches, list) {
Glauber Costa1f458cb2012-12-18 14:22:50 -08003032 cachep = memcg_params_to_cache(params);
Vladimir Davydovbd673142014-06-04 16:07:40 -07003033 kmem_cache_shrink(cachep);
3034 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003035 memcg_unregister_cache(cachep);
Glauber Costa1f458cb2012-12-18 14:22:50 -08003036 }
Vladimir Davydovbd673142014-06-04 16:07:40 -07003037 mutex_unlock(&memcg_slab_mutex);
Glauber Costa1f458cb2012-12-18 14:22:50 -08003038}
3039
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003040struct memcg_register_cache_work {
Vladimir Davydov5722d092014-04-07 15:39:24 -07003041 struct mem_cgroup *memcg;
3042 struct kmem_cache *cachep;
3043 struct work_struct work;
3044};
3045
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003046static void memcg_register_cache_func(struct work_struct *w)
Glauber Costad7f25f82012-12-18 14:22:40 -08003047{
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003048 struct memcg_register_cache_work *cw =
3049 container_of(w, struct memcg_register_cache_work, work);
Vladimir Davydov5722d092014-04-07 15:39:24 -07003050 struct mem_cgroup *memcg = cw->memcg;
3051 struct kmem_cache *cachep = cw->cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003052
Vladimir Davydovbd673142014-06-04 16:07:40 -07003053 mutex_lock(&memcg_slab_mutex);
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003054 memcg_register_cache(memcg, cachep);
Vladimir Davydovbd673142014-06-04 16:07:40 -07003055 mutex_unlock(&memcg_slab_mutex);
3056
Vladimir Davydov5722d092014-04-07 15:39:24 -07003057 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003058 kfree(cw);
3059}
3060
3061/*
3062 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003063 */
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003064static void __memcg_schedule_register_cache(struct mem_cgroup *memcg,
3065 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003066{
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003067 struct memcg_register_cache_work *cw;
Glauber Costad7f25f82012-12-18 14:22:40 -08003068
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003069 cw = kmalloc(sizeof(*cw), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003070 if (cw == NULL) {
3071 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003072 return;
3073 }
3074
3075 cw->memcg = memcg;
3076 cw->cachep = cachep;
3077
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003078 INIT_WORK(&cw->work, memcg_register_cache_func);
Glauber Costad7f25f82012-12-18 14:22:40 -08003079 schedule_work(&cw->work);
3080}
3081
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003082static void memcg_schedule_register_cache(struct mem_cgroup *memcg,
3083 struct kmem_cache *cachep)
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003084{
3085 /*
3086 * We need to stop accounting when we kmalloc, because if the
3087 * corresponding kmalloc cache is not yet created, the first allocation
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003088 * in __memcg_schedule_register_cache will recurse.
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003089 *
3090 * However, it is better to enclose the whole function. Depending on
3091 * the debugging options enabled, INIT_WORK(), for instance, can
3092 * trigger an allocation. This too, will make us recurse. Because at
3093 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3094 * the safest choice is to do it like this, wrapping the whole function.
3095 */
3096 memcg_stop_kmem_account();
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003097 __memcg_schedule_register_cache(memcg, cachep);
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003098 memcg_resume_kmem_account();
3099}
Vladimir Davydovc67a8a62014-06-04 16:07:39 -07003100
3101int __memcg_charge_slab(struct kmem_cache *cachep, gfp_t gfp, int order)
3102{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003103 unsigned int nr_pages = 1 << order;
Vladimir Davydovc67a8a62014-06-04 16:07:39 -07003104 int res;
3105
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003106 res = memcg_charge_kmem(cachep->memcg_params->memcg, gfp, nr_pages);
Vladimir Davydovc67a8a62014-06-04 16:07:39 -07003107 if (!res)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003108 atomic_add(nr_pages, &cachep->memcg_params->nr_pages);
Vladimir Davydovc67a8a62014-06-04 16:07:39 -07003109 return res;
3110}
3111
3112void __memcg_uncharge_slab(struct kmem_cache *cachep, int order)
3113{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003114 unsigned int nr_pages = 1 << order;
3115
3116 memcg_uncharge_kmem(cachep->memcg_params->memcg, nr_pages);
3117 atomic_sub(nr_pages, &cachep->memcg_params->nr_pages);
Vladimir Davydovc67a8a62014-06-04 16:07:39 -07003118}
3119
Glauber Costad7f25f82012-12-18 14:22:40 -08003120/*
3121 * Return the kmem_cache we're supposed to use for a slab allocation.
3122 * We try to use the current memcg's version of the cache.
3123 *
3124 * If the cache does not exist yet, if we are the first user of it,
3125 * we either create it immediately, if possible, or create it asynchronously
3126 * in a workqueue.
3127 * In the latter case, we will let the current allocation go through with
3128 * the original cache.
3129 *
3130 * Can't be called in interrupt context or from kernel threads.
3131 * This function needs to be called with rcu_read_lock() held.
3132 */
3133struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3134 gfp_t gfp)
3135{
3136 struct mem_cgroup *memcg;
Vladimir Davydov959c8962014-01-23 15:52:59 -08003137 struct kmem_cache *memcg_cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003138
3139 VM_BUG_ON(!cachep->memcg_params);
3140 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3141
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003142 if (!current->mm || current->memcg_kmem_skip_account)
3143 return cachep;
3144
Glauber Costad7f25f82012-12-18 14:22:40 -08003145 rcu_read_lock();
3146 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003147
Vladimir Davydovcf2b8fb2014-10-09 15:28:59 -07003148 if (!memcg_kmem_is_active(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003149 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003150
Vladimir Davydov959c8962014-01-23 15:52:59 -08003151 memcg_cachep = cache_from_memcg_idx(cachep, memcg_cache_id(memcg));
3152 if (likely(memcg_cachep)) {
3153 cachep = memcg_cachep;
Li Zefanca0dde92013-04-29 15:08:57 -07003154 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003155 }
3156
Li Zefanca0dde92013-04-29 15:08:57 -07003157 /* The corresponding put will be done in the workqueue. */
Tejun Heoec903c02014-05-13 12:11:01 -04003158 if (!css_tryget_online(&memcg->css))
Li Zefanca0dde92013-04-29 15:08:57 -07003159 goto out;
3160 rcu_read_unlock();
3161
3162 /*
3163 * If we are in a safe context (can wait, and not in interrupt
3164 * context), we could be be predictable and return right away.
3165 * This would guarantee that the allocation being performed
3166 * already belongs in the new cache.
3167 *
3168 * However, there are some clashes that can arrive from locking.
3169 * For instance, because we acquire the slab_mutex while doing
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003170 * memcg_create_kmem_cache, this means no further allocation
3171 * could happen with the slab_mutex held. So it's better to
3172 * defer everything.
Li Zefanca0dde92013-04-29 15:08:57 -07003173 */
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003174 memcg_schedule_register_cache(memcg, cachep);
Li Zefanca0dde92013-04-29 15:08:57 -07003175 return cachep;
3176out:
3177 rcu_read_unlock();
3178 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003179}
Glauber Costad7f25f82012-12-18 14:22:40 -08003180
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003181/*
3182 * We need to verify if the allocation against current->mm->owner's memcg is
3183 * possible for the given order. But the page is not allocated yet, so we'll
3184 * need a further commit step to do the final arrangements.
3185 *
3186 * It is possible for the task to switch cgroups in this mean time, so at
3187 * commit time, we can't rely on task conversion any longer. We'll then use
3188 * the handle argument to return to the caller which cgroup we should commit
3189 * against. We could also return the memcg directly and avoid the pointer
3190 * passing, but a boolean return value gives better semantics considering
3191 * the compiled-out case as well.
3192 *
3193 * Returning true means the allocation is possible.
3194 */
3195bool
3196__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3197{
3198 struct mem_cgroup *memcg;
3199 int ret;
3200
3201 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003202
3203 /*
3204 * Disabling accounting is only relevant for some specific memcg
3205 * internal allocations. Therefore we would initially not have such
Vladimir Davydov52383432014-06-04 16:06:39 -07003206 * check here, since direct calls to the page allocator that are
3207 * accounted to kmemcg (alloc_kmem_pages and friends) only happen
3208 * outside memcg core. We are mostly concerned with cache allocations,
3209 * and by having this test at memcg_kmem_get_cache, we are already able
3210 * to relay the allocation to the root cache and bypass the memcg cache
3211 * altogether.
Glauber Costa6d42c232013-07-08 16:00:00 -07003212 *
3213 * There is one exception, though: the SLUB allocator does not create
3214 * large order caches, but rather service large kmallocs directly from
3215 * the page allocator. Therefore, the following sequence when backed by
3216 * the SLUB allocator:
3217 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003218 * memcg_stop_kmem_account();
3219 * kmalloc(<large_number>)
3220 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003221 *
3222 * would effectively ignore the fact that we should skip accounting,
3223 * since it will drive us directly to this function without passing
3224 * through the cache selector memcg_kmem_get_cache. Such large
3225 * allocations are extremely rare but can happen, for instance, for the
3226 * cache arrays. We bring this test here.
3227 */
3228 if (!current->mm || current->memcg_kmem_skip_account)
3229 return true;
3230
Johannes Weinerdf381972014-04-07 15:37:43 -07003231 memcg = get_mem_cgroup_from_mm(current->mm);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003232
Vladimir Davydovcf2b8fb2014-10-09 15:28:59 -07003233 if (!memcg_kmem_is_active(memcg)) {
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003234 css_put(&memcg->css);
3235 return true;
3236 }
3237
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003238 ret = memcg_charge_kmem(memcg, gfp, 1 << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003239 if (!ret)
3240 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003241
3242 css_put(&memcg->css);
3243 return (ret == 0);
3244}
3245
3246void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3247 int order)
3248{
3249 struct page_cgroup *pc;
3250
3251 VM_BUG_ON(mem_cgroup_is_root(memcg));
3252
3253 /* The page allocation failed. Revert */
3254 if (!page) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003255 memcg_uncharge_kmem(memcg, 1 << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003256 return;
3257 }
Johannes Weinera840cda2014-08-06 16:06:04 -07003258 /*
3259 * The page is freshly allocated and not visible to any
3260 * outside callers yet. Set up pc non-atomically.
3261 */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003262 pc = lookup_page_cgroup(page);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003263 pc->mem_cgroup = memcg;
Johannes Weinera840cda2014-08-06 16:06:04 -07003264 pc->flags = PCG_USED;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003265}
3266
3267void __memcg_kmem_uncharge_pages(struct page *page, int order)
3268{
3269 struct mem_cgroup *memcg = NULL;
3270 struct page_cgroup *pc;
3271
3272
3273 pc = lookup_page_cgroup(page);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003274 if (!PageCgroupUsed(pc))
3275 return;
3276
Johannes Weinera840cda2014-08-06 16:06:04 -07003277 memcg = pc->mem_cgroup;
3278 pc->flags = 0;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003279
3280 /*
3281 * We trust that only if there is a memcg associated with the page, it
3282 * is a valid allocation
3283 */
3284 if (!memcg)
3285 return;
3286
Sasha Levin309381fea2014-01-23 15:52:54 -08003287 VM_BUG_ON_PAGE(mem_cgroup_is_root(memcg), page);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003288 memcg_uncharge_kmem(memcg, 1 << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003289}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003290#else
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003291static inline void memcg_unregister_all_caches(struct mem_cgroup *memcg)
Glauber Costa1f458cb2012-12-18 14:22:50 -08003292{
3293}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003294#endif /* CONFIG_MEMCG_KMEM */
3295
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003296#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3297
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003298/*
3299 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003300 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3301 * charge/uncharge will be never happen and move_account() is done under
3302 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003303 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003304void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003305{
3306 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003307 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003308 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003309 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003310
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003311 if (mem_cgroup_disabled())
3312 return;
David Rientjesb070e652013-05-07 16:18:09 -07003313
3314 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003315 for (i = 1; i < HPAGE_PMD_NR; i++) {
3316 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003317 pc->mem_cgroup = memcg;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003318 pc->flags = head_pc->flags;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003319 }
David Rientjesb070e652013-05-07 16:18:09 -07003320 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3321 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003322}
Hugh Dickins12d27102012-01-12 17:19:52 -08003323#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003324
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003325/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003326 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003327 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003328 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003329 * @pc: page_cgroup of the page.
3330 * @from: mem_cgroup which the page is moved from.
3331 * @to: mem_cgroup which the page is moved to. @from != @to.
3332 *
3333 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003334 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003335 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003336 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003337 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3338 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003339 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003340static int mem_cgroup_move_account(struct page *page,
3341 unsigned int nr_pages,
3342 struct page_cgroup *pc,
3343 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003344 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003345{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003346 unsigned long flags;
3347 int ret;
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003348
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003349 VM_BUG_ON(from == to);
Sasha Levin309381fea2014-01-23 15:52:54 -08003350 VM_BUG_ON_PAGE(PageLRU(page), page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003351 /*
3352 * The page is isolated from LRU. So, collapse function
3353 * will not handle this page. But page splitting can happen.
3354 * Do this check under compound_page_lock(). The caller should
3355 * hold it.
3356 */
3357 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003358 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003359 goto out;
3360
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003361 /*
3362 * Prevent mem_cgroup_migrate() from looking at pc->mem_cgroup
3363 * of its source page while we change it: page migration takes
3364 * both pages off the LRU, but page cache replacement doesn't.
3365 */
3366 if (!trylock_page(page))
3367 goto out;
Johannes Weinerde3638d2011-03-23 16:42:28 -07003368
3369 ret = -EINVAL;
3370 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003371 goto out_unlock;
Johannes Weinerde3638d2011-03-23 16:42:28 -07003372
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003373 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003374
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003375 if (!PageAnon(page) && page_mapped(page)) {
Johannes Weiner59d1d252014-04-07 15:37:40 -07003376 __this_cpu_sub(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED],
3377 nr_pages);
3378 __this_cpu_add(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED],
3379 nr_pages);
3380 }
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003381
Johannes Weiner59d1d252014-04-07 15:37:40 -07003382 if (PageWriteback(page)) {
3383 __this_cpu_sub(from->stat->count[MEM_CGROUP_STAT_WRITEBACK],
3384 nr_pages);
3385 __this_cpu_add(to->stat->count[MEM_CGROUP_STAT_WRITEBACK],
3386 nr_pages);
3387 }
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003388
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003389 /*
3390 * It is safe to change pc->mem_cgroup here because the page
3391 * is referenced, charged, and isolated - we can't race with
3392 * uncharging, charging, migration, or LRU putback.
3393 */
Balbir Singhd69b0422009-06-17 16:26:34 -07003394
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003395 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003396 pc->mem_cgroup = to;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003397 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003398 ret = 0;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003399
3400 local_irq_disable();
3401 mem_cgroup_charge_statistics(to, page, nr_pages);
Johannes Weiner5564e882011-03-23 16:42:29 -07003402 memcg_check_events(to, page);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003403 mem_cgroup_charge_statistics(from, page, -nr_pages);
Johannes Weiner5564e882011-03-23 16:42:29 -07003404 memcg_check_events(from, page);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003405 local_irq_enable();
3406out_unlock:
3407 unlock_page(page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003408out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003409 return ret;
3410}
3411
Michal Hocko2ef37d32012-10-26 13:37:30 +02003412/**
3413 * mem_cgroup_move_parent - moves page to the parent group
3414 * @page: the page to move
3415 * @pc: page_cgroup of the page
3416 * @child: page's cgroup
3417 *
3418 * move charges to its parent or the root cgroup if the group has no
3419 * parent (aka use_hierarchy==0).
3420 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3421 * mem_cgroup_move_account fails) the failure is always temporary and
3422 * it signals a race with a page removal/uncharge or migration. In the
3423 * first case the page is on the way out and it will vanish from the LRU
3424 * on the next attempt and the call should be retried later.
3425 * Isolation from the LRU fails only if page has been isolated from
3426 * the LRU since we looked at it and that usually means either global
3427 * reclaim or migration going on. The page will either get back to the
3428 * LRU or vanish.
3429 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3430 * (!PageCgroupUsed) or moved to a different group. The page will
3431 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003432 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003433static int mem_cgroup_move_parent(struct page *page,
3434 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003435 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003436{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003437 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003438 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003439 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003440 int ret;
3441
Michal Hockod8423012012-10-26 13:37:29 +02003442 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003443
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003444 ret = -EBUSY;
3445 if (!get_page_unless_zero(page))
3446 goto out;
3447 if (isolate_lru_page(page))
3448 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003449
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003450 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003451
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003452 parent = parent_mem_cgroup(child);
3453 /*
3454 * If no parent, move charges to root cgroup.
3455 */
3456 if (!parent)
3457 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003458
Michal Hocko2ef37d32012-10-26 13:37:30 +02003459 if (nr_pages > 1) {
Sasha Levin309381fea2014-01-23 15:52:54 -08003460 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003461 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003462 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003463
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003464 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003465 pc, child, parent);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003466 if (!ret) {
3467 /* Take charge off the local counters */
3468 page_counter_cancel(&child->memory, nr_pages);
3469 if (do_swap_account)
3470 page_counter_cancel(&child->memsw, nr_pages);
3471 }
Jesper Juhl8dba4742011-01-25 15:07:24 -08003472
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003473 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003474 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003475 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003476put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003477 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003478out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003479 return ret;
3480}
3481
Andrew Mortonc255a452012-07-31 16:43:02 -07003482#ifdef CONFIG_MEMCG_SWAP
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003483static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
3484 bool charge)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003485{
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003486 int val = (charge) ? 1 : -1;
3487 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003488}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003489
3490/**
3491 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3492 * @entry: swap entry to be moved
3493 * @from: mem_cgroup which the entry is moved from
3494 * @to: mem_cgroup which the entry is moved to
3495 *
3496 * It succeeds only when the swap_cgroup's record for this entry is the same
3497 * as the mem_cgroup's id of @from.
3498 *
3499 * Returns 0 on success, -EINVAL on failure.
3500 *
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003501 * The caller must have charged to @to, IOW, called page_counter_charge() about
Daisuke Nishimura02491442010-03-10 15:22:17 -08003502 * both res and memsw, and called css_get().
3503 */
3504static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003505 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003506{
3507 unsigned short old_id, new_id;
3508
Li Zefan34c00c32013-09-23 16:56:01 +08003509 old_id = mem_cgroup_id(from);
3510 new_id = mem_cgroup_id(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003511
3512 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003513 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003514 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003515 /*
3516 * This function is only called from task migration context now.
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003517 * It postpones page_counter and refcount handling till the end
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003518 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07003519 * improvement. But we cannot postpone css_get(to) because if
3520 * the process that has been moved to @to does swap-in, the
3521 * refcount of @to might be decreased to 0.
3522 *
3523 * We are in attach() phase, so the cgroup is guaranteed to be
3524 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003525 */
Li Zefan40503772013-07-08 16:00:34 -07003526 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003527 return 0;
3528 }
3529 return -EINVAL;
3530}
3531#else
3532static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003533 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003534{
3535 return -EINVAL;
3536}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003537#endif
3538
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003539#ifdef CONFIG_DEBUG_VM
3540static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3541{
3542 struct page_cgroup *pc;
3543
3544 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003545 /*
3546 * Can be NULL while feeding pages into the page allocator for
3547 * the first time, i.e. during boot or memory hotplug;
3548 * or when mem_cgroup_disabled().
3549 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003550 if (likely(pc) && PageCgroupUsed(pc))
3551 return pc;
3552 return NULL;
3553}
3554
3555bool mem_cgroup_bad_page_check(struct page *page)
3556{
3557 if (mem_cgroup_disabled())
3558 return false;
3559
3560 return lookup_page_cgroup_used(page) != NULL;
3561}
3562
3563void mem_cgroup_print_bad_page(struct page *page)
3564{
3565 struct page_cgroup *pc;
3566
3567 pc = lookup_page_cgroup_used(page);
3568 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08003569 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
3570 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003571 }
3572}
3573#endif
3574
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003575static DEFINE_MUTEX(memcg_limit_mutex);
3576
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003577static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003578 unsigned long limit)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003579{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003580 unsigned long curusage;
3581 unsigned long oldusage;
3582 bool enlarge = false;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003583 int retry_count;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003584 int ret;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003585
3586 /*
3587 * For keeping hierarchical_reclaim simple, how long we should retry
3588 * is depends on callers. We set our retry-count to be function
3589 * of # of children which we should visit in this loop.
3590 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003591 retry_count = MEM_CGROUP_RECLAIM_RETRIES *
3592 mem_cgroup_count_children(memcg);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003593
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003594 oldusage = page_counter_read(&memcg->memory);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003595
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003596 do {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003597 if (signal_pending(current)) {
3598 ret = -EINTR;
3599 break;
3600 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003601
3602 mutex_lock(&memcg_limit_mutex);
3603 if (limit > memcg->memsw.limit) {
3604 mutex_unlock(&memcg_limit_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003605 ret = -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003606 break;
3607 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003608 if (limit > memcg->memory.limit)
3609 enlarge = true;
3610 ret = page_counter_limit(&memcg->memory, limit);
3611 mutex_unlock(&memcg_limit_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003612
3613 if (!ret)
3614 break;
3615
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003616 try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, true);
3617
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003618 curusage = page_counter_read(&memcg->memory);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003619 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003620 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003621 retry_count--;
3622 else
3623 oldusage = curusage;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003624 } while (retry_count);
3625
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003626 if (!ret && enlarge)
3627 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003628
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003629 return ret;
3630}
3631
Li Zefan338c8432009-06-17 16:27:15 -07003632static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003633 unsigned long limit)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003634{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003635 unsigned long curusage;
3636 unsigned long oldusage;
3637 bool enlarge = false;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003638 int retry_count;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003639 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003640
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003641 /* see mem_cgroup_resize_res_limit */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003642 retry_count = MEM_CGROUP_RECLAIM_RETRIES *
3643 mem_cgroup_count_children(memcg);
3644
3645 oldusage = page_counter_read(&memcg->memsw);
3646
3647 do {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003648 if (signal_pending(current)) {
3649 ret = -EINTR;
3650 break;
3651 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003652
3653 mutex_lock(&memcg_limit_mutex);
3654 if (limit < memcg->memory.limit) {
3655 mutex_unlock(&memcg_limit_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003656 ret = -EINVAL;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003657 break;
3658 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003659 if (limit > memcg->memsw.limit)
3660 enlarge = true;
3661 ret = page_counter_limit(&memcg->memsw, limit);
3662 mutex_unlock(&memcg_limit_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003663
3664 if (!ret)
3665 break;
3666
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003667 try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, false);
3668
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003669 curusage = page_counter_read(&memcg->memsw);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003670 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003671 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003672 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003673 else
3674 oldusage = curusage;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003675 } while (retry_count);
3676
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003677 if (!ret && enlarge)
3678 memcg_oom_recover(memcg);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003679
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003680 return ret;
3681}
3682
Andrew Morton0608f432013-09-24 15:27:41 -07003683unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
3684 gfp_t gfp_mask,
3685 unsigned long *total_scanned)
3686{
3687 unsigned long nr_reclaimed = 0;
3688 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3689 unsigned long reclaimed;
3690 int loop = 0;
3691 struct mem_cgroup_tree_per_zone *mctz;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003692 unsigned long excess;
Andrew Morton0608f432013-09-24 15:27:41 -07003693 unsigned long nr_scanned;
3694
3695 if (order > 0)
3696 return 0;
3697
3698 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
3699 /*
3700 * This loop can run a while, specially if mem_cgroup's continuously
3701 * keep exceeding their soft limit and putting the system under
3702 * pressure
3703 */
3704 do {
3705 if (next_mz)
3706 mz = next_mz;
3707 else
3708 mz = mem_cgroup_largest_soft_limit_node(mctz);
3709 if (!mz)
3710 break;
3711
3712 nr_scanned = 0;
3713 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
3714 gfp_mask, &nr_scanned);
3715 nr_reclaimed += reclaimed;
3716 *total_scanned += nr_scanned;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003717 spin_lock_irq(&mctz->lock);
Andrew Morton0608f432013-09-24 15:27:41 -07003718
3719 /*
3720 * If we failed to reclaim anything from this memory cgroup
3721 * it is time to move on to the next cgroup
3722 */
3723 next_mz = NULL;
3724 if (!reclaimed) {
3725 do {
3726 /*
3727 * Loop until we find yet another one.
3728 *
3729 * By the time we get the soft_limit lock
3730 * again, someone might have aded the
3731 * group back on the RB tree. Iterate to
3732 * make sure we get a different mem.
3733 * mem_cgroup_largest_soft_limit_node returns
3734 * NULL if no other cgroup is present on
3735 * the tree
3736 */
3737 next_mz =
3738 __mem_cgroup_largest_soft_limit_node(mctz);
3739 if (next_mz == mz)
3740 css_put(&next_mz->memcg->css);
3741 else /* next_mz == NULL or other memcg */
3742 break;
3743 } while (1);
3744 }
Johannes Weinercf2c8122014-06-06 14:38:21 -07003745 __mem_cgroup_remove_exceeded(mz, mctz);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003746 excess = soft_limit_excess(mz->memcg);
Andrew Morton0608f432013-09-24 15:27:41 -07003747 /*
3748 * One school of thought says that we should not add
3749 * back the node to the tree if reclaim returns 0.
3750 * But our reclaim could return 0, simply because due
3751 * to priority we are exposing a smaller subset of
3752 * memory to reclaim from. Consider this as a longer
3753 * term TODO.
3754 */
3755 /* If excess == 0, no tree ops */
Johannes Weinercf2c8122014-06-06 14:38:21 -07003756 __mem_cgroup_insert_exceeded(mz, mctz, excess);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003757 spin_unlock_irq(&mctz->lock);
Andrew Morton0608f432013-09-24 15:27:41 -07003758 css_put(&mz->memcg->css);
3759 loop++;
3760 /*
3761 * Could not reclaim anything and there are no more
3762 * mem cgroups to try or we seem to be looping without
3763 * reclaiming anything.
3764 */
3765 if (!nr_reclaimed &&
3766 (next_mz == NULL ||
3767 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3768 break;
3769 } while (!nr_reclaimed);
3770 if (next_mz)
3771 css_put(&next_mz->memcg->css);
3772 return nr_reclaimed;
3773}
3774
Michal Hocko2ef37d32012-10-26 13:37:30 +02003775/**
3776 * mem_cgroup_force_empty_list - clears LRU of a group
3777 * @memcg: group to clear
3778 * @node: NUMA node
3779 * @zid: zone id
3780 * @lru: lru to to clear
3781 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003782 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02003783 * reclaim the pages page themselves - pages are moved to the parent (or root)
3784 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003785 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02003786static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003787 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003788{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08003789 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02003790 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003791 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08003792 struct page *busy;
3793 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003794
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003795 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08003796 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
3797 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003798
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003799 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02003800 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08003801 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07003802 struct page *page;
3803
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003804 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003805 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003806 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003807 break;
3808 }
Johannes Weiner925b7672012-01-12 17:18:15 -08003809 page = list_entry(list->prev, struct page, lru);
3810 if (busy == page) {
3811 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003812 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003813 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003814 continue;
3815 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003816 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003817
Johannes Weiner925b7672012-01-12 17:18:15 -08003818 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07003819
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003820 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003821 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08003822 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003823 } else
3824 busy = NULL;
Hugh Dickins2a7a0e02014-06-04 16:11:04 -07003825 cond_resched();
Michal Hocko2ef37d32012-10-26 13:37:30 +02003826 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003827}
3828
3829/*
Michal Hockoc26251f2012-10-26 13:37:28 +02003830 * make mem_cgroup's charge to be 0 if there is no task by moving
3831 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003832 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02003833 *
3834 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003835 */
Michal Hockoab5196c2012-10-26 13:37:32 +02003836static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003837{
Michal Hockoc26251f2012-10-26 13:37:28 +02003838 int node, zid;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003839
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003840 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003841 /* This is for making all *used* pages to be on LRU. */
3842 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003843 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003844 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08003845 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02003846 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003847 enum lru_list lru;
3848 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02003849 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003850 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003851 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003852 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003853 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003854 mem_cgroup_end_move(memcg);
3855 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003856 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003857
Michal Hocko2ef37d32012-10-26 13:37:30 +02003858 /*
Glauber Costabea207c2012-12-18 14:22:11 -08003859 * Kernel memory may not necessarily be trackable to a specific
3860 * process. So they are not migrated, and therefore we can't
3861 * expect their value to drop to 0 here.
3862 * Having res filled up with kmem only is enough.
3863 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02003864 * This is a safety check because mem_cgroup_force_empty_list
3865 * could have raced with mem_cgroup_replace_page_cache callers
3866 * so the lru seemed empty but the page could have been added
3867 * right after the check. RES_USAGE should be safe as we always
3868 * charge before adding to the LRU.
3869 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003870 } while (page_counter_read(&memcg->memory) -
3871 page_counter_read(&memcg->kmem) > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02003872}
3873
Tejun Heoea280e72014-05-16 13:22:48 -04003874/*
3875 * Test whether @memcg has children, dead or alive. Note that this
3876 * function doesn't care whether @memcg has use_hierarchy enabled and
3877 * returns %true if there are child csses according to the cgroup
3878 * hierarchy. Testing use_hierarchy is the caller's responsiblity.
3879 */
Glauber Costab5f99b52013-02-22 16:34:53 -08003880static inline bool memcg_has_children(struct mem_cgroup *memcg)
3881{
Tejun Heoea280e72014-05-16 13:22:48 -04003882 bool ret;
3883
Johannes Weiner696ac172013-10-31 16:34:15 -07003884 /*
Tejun Heoea280e72014-05-16 13:22:48 -04003885 * The lock does not prevent addition or deletion of children, but
3886 * it prevents a new child from being initialized based on this
3887 * parent in css_online(), so it's enough to decide whether
3888 * hierarchically inherited attributes can still be changed or not.
Johannes Weiner696ac172013-10-31 16:34:15 -07003889 */
Tejun Heoea280e72014-05-16 13:22:48 -04003890 lockdep_assert_held(&memcg_create_mutex);
3891
3892 rcu_read_lock();
3893 ret = css_next_child(NULL, &memcg->css);
3894 rcu_read_unlock();
3895 return ret;
Glauber Costab5f99b52013-02-22 16:34:53 -08003896}
3897
3898/*
Michal Hockoc26251f2012-10-26 13:37:28 +02003899 * Reclaims as many pages from the given memcg as possible and moves
3900 * the rest to the parent.
3901 *
3902 * Caller is responsible for holding css reference for memcg.
3903 */
3904static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
3905{
3906 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Michal Hockoc26251f2012-10-26 13:37:28 +02003907
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003908 /* we call try-to-free pages for make this cgroup empty */
3909 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003910 /* try to free all pages in this cgroup */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003911 while (nr_retries && page_counter_read(&memcg->memory)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003912 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003913
Michal Hockoc26251f2012-10-26 13:37:28 +02003914 if (signal_pending(current))
3915 return -EINTR;
3916
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003917 progress = try_to_free_mem_cgroup_pages(memcg, 1,
3918 GFP_KERNEL, true);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003919 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003920 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003921 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003922 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003923 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003924
3925 }
Michal Hockoab5196c2012-10-26 13:37:32 +02003926
3927 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003928}
3929
Tejun Heo6770c642014-05-13 12:16:21 -04003930static ssize_t mem_cgroup_force_empty_write(struct kernfs_open_file *of,
3931 char *buf, size_t nbytes,
3932 loff_t off)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003933{
Tejun Heo6770c642014-05-13 12:16:21 -04003934 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Michal Hockoc26251f2012-10-26 13:37:28 +02003935
Michal Hockod8423012012-10-26 13:37:29 +02003936 if (mem_cgroup_is_root(memcg))
3937 return -EINVAL;
Tejun Heo6770c642014-05-13 12:16:21 -04003938 return mem_cgroup_force_empty(memcg) ?: nbytes;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003939}
3940
Tejun Heo182446d2013-08-08 20:11:24 -04003941static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
3942 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08003943{
Tejun Heo182446d2013-08-08 20:11:24 -04003944 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003945}
3946
Tejun Heo182446d2013-08-08 20:11:24 -04003947static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
3948 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08003949{
3950 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04003951 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04003952 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(memcg->css.parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003953
Glauber Costa09998212013-02-22 16:34:55 -08003954 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07003955
3956 if (memcg->use_hierarchy == val)
3957 goto out;
3958
Balbir Singh18f59ea2009-01-07 18:08:07 -08003959 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003960 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003961 * in the child subtrees. If it is unset, then the change can
3962 * occur, provided the current cgroup has no children.
3963 *
3964 * For the root cgroup, parent_mem is NULL, we allow value to be
3965 * set if there are no children.
3966 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003967 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003968 (val == 1 || val == 0)) {
Tejun Heoea280e72014-05-16 13:22:48 -04003969 if (!memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003970 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003971 else
3972 retval = -EBUSY;
3973 } else
3974 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07003975
3976out:
Glauber Costa09998212013-02-22 16:34:55 -08003977 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003978
3979 return retval;
3980}
3981
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003982static unsigned long tree_stat(struct mem_cgroup *memcg,
3983 enum mem_cgroup_stat_index idx)
Johannes Weinerce00a962014-09-05 08:43:57 -04003984{
3985 struct mem_cgroup *iter;
3986 long val = 0;
3987
3988 /* Per-cpu values can be negative, use a signed accumulator */
3989 for_each_mem_cgroup_tree(iter, memcg)
3990 val += mem_cgroup_read_stat(iter, idx);
3991
3992 if (val < 0) /* race ? */
3993 val = 0;
3994 return val;
3995}
3996
3997static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
3998{
3999 u64 val;
4000
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004001 if (mem_cgroup_is_root(memcg)) {
4002 val = tree_stat(memcg, MEM_CGROUP_STAT_CACHE);
4003 val += tree_stat(memcg, MEM_CGROUP_STAT_RSS);
4004 if (swap)
4005 val += tree_stat(memcg, MEM_CGROUP_STAT_SWAP);
4006 } else {
Johannes Weinerce00a962014-09-05 08:43:57 -04004007 if (!swap)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004008 val = page_counter_read(&memcg->memory);
Johannes Weinerce00a962014-09-05 08:43:57 -04004009 else
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004010 val = page_counter_read(&memcg->memsw);
Johannes Weinerce00a962014-09-05 08:43:57 -04004011 }
Johannes Weinerce00a962014-09-05 08:43:57 -04004012 return val << PAGE_SHIFT;
4013}
4014
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004015enum {
4016 RES_USAGE,
4017 RES_LIMIT,
4018 RES_MAX_USAGE,
4019 RES_FAILCNT,
4020 RES_SOFT_LIMIT,
4021};
Johannes Weinerce00a962014-09-05 08:43:57 -04004022
Tejun Heo791badb2013-12-05 12:28:02 -05004023static u64 mem_cgroup_read_u64(struct cgroup_subsys_state *css,
Johannes Weiner05b84302014-08-06 16:05:59 -07004024 struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004025{
Tejun Heo182446d2013-08-08 20:11:24 -04004026 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004027 struct page_counter *counter;
Tejun Heoaf36f902012-04-01 12:09:55 -07004028
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004029 switch (MEMFILE_TYPE(cft->private)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004030 case _MEM:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004031 counter = &memcg->memory;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004032 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004033 case _MEMSWAP:
4034 counter = &memcg->memsw;
4035 break;
4036 case _KMEM:
4037 counter = &memcg->kmem;
4038 break;
4039 default:
4040 BUG();
4041 }
4042
4043 switch (MEMFILE_ATTR(cft->private)) {
4044 case RES_USAGE:
4045 if (counter == &memcg->memory)
4046 return mem_cgroup_usage(memcg, false);
4047 if (counter == &memcg->memsw)
4048 return mem_cgroup_usage(memcg, true);
4049 return (u64)page_counter_read(counter) * PAGE_SIZE;
4050 case RES_LIMIT:
4051 return (u64)counter->limit * PAGE_SIZE;
4052 case RES_MAX_USAGE:
4053 return (u64)counter->watermark * PAGE_SIZE;
4054 case RES_FAILCNT:
4055 return counter->failcnt;
4056 case RES_SOFT_LIMIT:
4057 return (u64)memcg->soft_limit * PAGE_SIZE;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004058 default:
4059 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004060 }
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004061}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004062
Glauber Costa510fc4e2012-12-18 14:21:47 -08004063#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydovd6441632014-01-23 15:53:09 -08004064/* should be called with activate_kmem_mutex held */
4065static int __memcg_activate_kmem(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004066 unsigned long nr_pages)
Vladimir Davydovd6441632014-01-23 15:53:09 -08004067{
4068 int err = 0;
4069 int memcg_id;
4070
4071 if (memcg_kmem_is_active(memcg))
4072 return 0;
4073
4074 /*
4075 * We are going to allocate memory for data shared by all memory
4076 * cgroups so let's stop accounting here.
4077 */
4078 memcg_stop_kmem_account();
4079
Glauber Costa510fc4e2012-12-18 14:21:47 -08004080 /*
4081 * For simplicity, we won't allow this to be disabled. It also can't
4082 * be changed if the cgroup has children already, or if tasks had
4083 * already joined.
4084 *
4085 * If tasks join before we set the limit, a person looking at
4086 * kmem.usage_in_bytes will have no way to determine when it took
4087 * place, which makes the value quite meaningless.
4088 *
4089 * After it first became limited, changes in the value of the limit are
4090 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004091 */
Glauber Costa09998212013-02-22 16:34:55 -08004092 mutex_lock(&memcg_create_mutex);
Tejun Heoea280e72014-05-16 13:22:48 -04004093 if (cgroup_has_tasks(memcg->css.cgroup) ||
4094 (memcg->use_hierarchy && memcg_has_children(memcg)))
Vladimir Davydovd6441632014-01-23 15:53:09 -08004095 err = -EBUSY;
Glauber Costa09998212013-02-22 16:34:55 -08004096 mutex_unlock(&memcg_create_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004097 if (err)
4098 goto out;
4099
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07004100 memcg_id = memcg_alloc_cache_id();
Vladimir Davydovd6441632014-01-23 15:53:09 -08004101 if (memcg_id < 0) {
4102 err = memcg_id;
4103 goto out;
4104 }
4105
Vladimir Davydovd6441632014-01-23 15:53:09 -08004106 memcg->kmemcg_id = memcg_id;
4107 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004108
4109 /*
4110 * We couldn't have accounted to this cgroup, because it hasn't got the
4111 * active bit set yet, so this should succeed.
4112 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004113 err = page_counter_limit(&memcg->kmem, nr_pages);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004114 VM_BUG_ON(err);
4115
4116 static_key_slow_inc(&memcg_kmem_enabled_key);
4117 /*
4118 * Setting the active bit after enabling static branching will
4119 * guarantee no one starts accounting before all call sites are
4120 * patched.
4121 */
4122 memcg_kmem_set_active(memcg);
4123out:
4124 memcg_resume_kmem_account();
4125 return err;
Vladimir Davydovd6441632014-01-23 15:53:09 -08004126}
4127
4128static int memcg_activate_kmem(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004129 unsigned long nr_pages)
Vladimir Davydovd6441632014-01-23 15:53:09 -08004130{
4131 int ret;
4132
4133 mutex_lock(&activate_kmem_mutex);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004134 ret = __memcg_activate_kmem(memcg, nr_pages);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004135 mutex_unlock(&activate_kmem_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004136 return ret;
4137}
4138
Vladimir Davydovd6441632014-01-23 15:53:09 -08004139static int memcg_update_kmem_limit(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004140 unsigned long limit)
Vladimir Davydovd6441632014-01-23 15:53:09 -08004141{
4142 int ret;
4143
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004144 mutex_lock(&memcg_limit_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004145 if (!memcg_kmem_is_active(memcg))
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004146 ret = memcg_activate_kmem(memcg, limit);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004147 else
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004148 ret = page_counter_limit(&memcg->kmem, limit);
4149 mutex_unlock(&memcg_limit_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004150 return ret;
4151}
4152
Glauber Costa55007d82012-12-18 14:22:38 -08004153static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004154{
Glauber Costa55007d82012-12-18 14:22:38 -08004155 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004156 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004157
Glauber Costa510fc4e2012-12-18 14:21:47 -08004158 if (!parent)
Vladimir Davydovd6441632014-01-23 15:53:09 -08004159 return 0;
Glauber Costa55007d82012-12-18 14:22:38 -08004160
Vladimir Davydovd6441632014-01-23 15:53:09 -08004161 mutex_lock(&activate_kmem_mutex);
Glauber Costaa8964b92012-12-18 14:22:09 -08004162 /*
Vladimir Davydovd6441632014-01-23 15:53:09 -08004163 * If the parent cgroup is not kmem-active now, it cannot be activated
4164 * after this point, because it has at least one child already.
Glauber Costaa8964b92012-12-18 14:22:09 -08004165 */
Vladimir Davydovd6441632014-01-23 15:53:09 -08004166 if (memcg_kmem_is_active(parent))
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004167 ret = __memcg_activate_kmem(memcg, PAGE_COUNTER_MAX);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004168 mutex_unlock(&activate_kmem_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08004169 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004170}
Vladimir Davydovd6441632014-01-23 15:53:09 -08004171#else
4172static int memcg_update_kmem_limit(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004173 unsigned long limit)
Vladimir Davydovd6441632014-01-23 15:53:09 -08004174{
4175 return -EINVAL;
4176}
Hugh Dickins6d0439902013-02-22 16:35:50 -08004177#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08004178
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004179/*
4180 * The user of this function is...
4181 * RES_LIMIT.
4182 */
Tejun Heo451af502014-05-13 12:16:21 -04004183static ssize_t mem_cgroup_write(struct kernfs_open_file *of,
4184 char *buf, size_t nbytes, loff_t off)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004185{
Tejun Heo451af502014-05-13 12:16:21 -04004186 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004187 unsigned long nr_pages;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004188 int ret;
4189
Tejun Heo451af502014-05-13 12:16:21 -04004190 buf = strstrip(buf);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004191 ret = page_counter_memparse(buf, &nr_pages);
4192 if (ret)
4193 return ret;
Tejun Heoaf36f902012-04-01 12:09:55 -07004194
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004195 switch (MEMFILE_ATTR(of_cft(of)->private)) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004196 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07004197 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
4198 ret = -EINVAL;
4199 break;
4200 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004201 switch (MEMFILE_TYPE(of_cft(of)->private)) {
4202 case _MEM:
4203 ret = mem_cgroup_resize_limit(memcg, nr_pages);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004204 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004205 case _MEMSWAP:
4206 ret = mem_cgroup_resize_memsw_limit(memcg, nr_pages);
4207 break;
4208 case _KMEM:
4209 ret = memcg_update_kmem_limit(memcg, nr_pages);
4210 break;
4211 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004212 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07004213 case RES_SOFT_LIMIT:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004214 memcg->soft_limit = nr_pages;
4215 ret = 0;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004216 break;
4217 }
Tejun Heo451af502014-05-13 12:16:21 -04004218 return ret ?: nbytes;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004219}
4220
Tejun Heo6770c642014-05-13 12:16:21 -04004221static ssize_t mem_cgroup_reset(struct kernfs_open_file *of, char *buf,
4222 size_t nbytes, loff_t off)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004223{
Tejun Heo6770c642014-05-13 12:16:21 -04004224 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004225 struct page_counter *counter;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004226
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004227 switch (MEMFILE_TYPE(of_cft(of)->private)) {
4228 case _MEM:
4229 counter = &memcg->memory;
4230 break;
4231 case _MEMSWAP:
4232 counter = &memcg->memsw;
4233 break;
4234 case _KMEM:
4235 counter = &memcg->kmem;
4236 break;
4237 default:
4238 BUG();
4239 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004240
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004241 switch (MEMFILE_ATTR(of_cft(of)->private)) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004242 case RES_MAX_USAGE:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004243 page_counter_reset_watermark(counter);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004244 break;
4245 case RES_FAILCNT:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004246 counter->failcnt = 0;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004247 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004248 default:
4249 BUG();
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004250 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004251
Tejun Heo6770c642014-05-13 12:16:21 -04004252 return nbytes;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004253}
4254
Tejun Heo182446d2013-08-08 20:11:24 -04004255static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004256 struct cftype *cft)
4257{
Tejun Heo182446d2013-08-08 20:11:24 -04004258 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004259}
4260
Daisuke Nishimura02491442010-03-10 15:22:17 -08004261#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04004262static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004263 struct cftype *cft, u64 val)
4264{
Tejun Heo182446d2013-08-08 20:11:24 -04004265 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004266
4267 if (val >= (1 << NR_MOVE_TYPE))
4268 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004269
Glauber Costaee5e8472013-02-22 16:34:50 -08004270 /*
4271 * No kind of locking is needed in here, because ->can_attach() will
4272 * check this value once in the beginning of the process, and then carry
4273 * on with stale data. This means that changes to this value will only
4274 * affect task migrations starting after the change.
4275 */
4276 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004277 return 0;
4278}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004279#else
Tejun Heo182446d2013-08-08 20:11:24 -04004280static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08004281 struct cftype *cft, u64 val)
4282{
4283 return -ENOSYS;
4284}
4285#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004286
Ying Han406eb0c2011-05-26 16:25:37 -07004287#ifdef CONFIG_NUMA
Tejun Heo2da8ca82013-12-05 12:28:04 -05004288static int memcg_numa_stat_show(struct seq_file *m, void *v)
Ying Han406eb0c2011-05-26 16:25:37 -07004289{
Greg Thelen25485de2013-11-12 15:07:40 -08004290 struct numa_stat {
4291 const char *name;
4292 unsigned int lru_mask;
4293 };
4294
4295 static const struct numa_stat stats[] = {
4296 { "total", LRU_ALL },
4297 { "file", LRU_ALL_FILE },
4298 { "anon", LRU_ALL_ANON },
4299 { "unevictable", BIT(LRU_UNEVICTABLE) },
4300 };
4301 const struct numa_stat *stat;
Ying Han406eb0c2011-05-26 16:25:37 -07004302 int nid;
Greg Thelen25485de2013-11-12 15:07:40 -08004303 unsigned long nr;
Tejun Heo2da8ca82013-12-05 12:28:04 -05004304 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Ying Han406eb0c2011-05-26 16:25:37 -07004305
Greg Thelen25485de2013-11-12 15:07:40 -08004306 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
4307 nr = mem_cgroup_nr_lru_pages(memcg, stat->lru_mask);
4308 seq_printf(m, "%s=%lu", stat->name, nr);
4309 for_each_node_state(nid, N_MEMORY) {
4310 nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
4311 stat->lru_mask);
4312 seq_printf(m, " N%d=%lu", nid, nr);
4313 }
4314 seq_putc(m, '\n');
Ying Han406eb0c2011-05-26 16:25:37 -07004315 }
Ying Han406eb0c2011-05-26 16:25:37 -07004316
Ying Han071aee12013-11-12 15:07:41 -08004317 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
4318 struct mem_cgroup *iter;
Ying Han406eb0c2011-05-26 16:25:37 -07004319
Ying Han071aee12013-11-12 15:07:41 -08004320 nr = 0;
4321 for_each_mem_cgroup_tree(iter, memcg)
4322 nr += mem_cgroup_nr_lru_pages(iter, stat->lru_mask);
4323 seq_printf(m, "hierarchical_%s=%lu", stat->name, nr);
4324 for_each_node_state(nid, N_MEMORY) {
4325 nr = 0;
4326 for_each_mem_cgroup_tree(iter, memcg)
4327 nr += mem_cgroup_node_nr_lru_pages(
4328 iter, nid, stat->lru_mask);
4329 seq_printf(m, " N%d=%lu", nid, nr);
4330 }
4331 seq_putc(m, '\n');
Ying Han406eb0c2011-05-26 16:25:37 -07004332 }
Ying Han406eb0c2011-05-26 16:25:37 -07004333
Ying Han406eb0c2011-05-26 16:25:37 -07004334 return 0;
4335}
4336#endif /* CONFIG_NUMA */
4337
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004338static inline void mem_cgroup_lru_names_not_uptodate(void)
4339{
4340 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
4341}
4342
Tejun Heo2da8ca82013-12-05 12:28:04 -05004343static int memcg_stat_show(struct seq_file *m, void *v)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004344{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004345 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004346 unsigned long memory, memsw;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004347 struct mem_cgroup *mi;
4348 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004349
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004350 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004351 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004352 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004353 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
4354 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004355 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004356
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004357 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
4358 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
4359 mem_cgroup_read_events(memcg, i));
4360
4361 for (i = 0; i < NR_LRU_LISTS; i++)
4362 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
4363 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
4364
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004365 /* Hierarchical information */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004366 memory = memsw = PAGE_COUNTER_MAX;
4367 for (mi = memcg; mi; mi = parent_mem_cgroup(mi)) {
4368 memory = min(memory, mi->memory.limit);
4369 memsw = min(memsw, mi->memsw.limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004370 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004371 seq_printf(m, "hierarchical_memory_limit %llu\n",
4372 (u64)memory * PAGE_SIZE);
4373 if (do_swap_account)
4374 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4375 (u64)memsw * PAGE_SIZE);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004376
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004377 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
4378 long long val = 0;
4379
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004380 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004381 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004382 for_each_mem_cgroup_tree(mi, memcg)
4383 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
4384 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
4385 }
4386
4387 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
4388 unsigned long long val = 0;
4389
4390 for_each_mem_cgroup_tree(mi, memcg)
4391 val += mem_cgroup_read_events(mi, i);
4392 seq_printf(m, "total_%s %llu\n",
4393 mem_cgroup_events_names[i], val);
4394 }
4395
4396 for (i = 0; i < NR_LRU_LISTS; i++) {
4397 unsigned long long val = 0;
4398
4399 for_each_mem_cgroup_tree(mi, memcg)
4400 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
4401 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004402 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004403
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004404#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004405 {
4406 int nid, zid;
4407 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07004408 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004409 unsigned long recent_rotated[2] = {0, 0};
4410 unsigned long recent_scanned[2] = {0, 0};
4411
4412 for_each_online_node(nid)
4413 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Jianyu Zhane2318752014-06-06 14:38:20 -07004414 mz = &memcg->nodeinfo[nid]->zoneinfo[zid];
Hugh Dickins89abfab2012-05-29 15:06:53 -07004415 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004416
Hugh Dickins89abfab2012-05-29 15:06:53 -07004417 recent_rotated[0] += rstat->recent_rotated[0];
4418 recent_rotated[1] += rstat->recent_rotated[1];
4419 recent_scanned[0] += rstat->recent_scanned[0];
4420 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004421 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004422 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
4423 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
4424 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
4425 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004426 }
4427#endif
4428
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004429 return 0;
4430}
4431
Tejun Heo182446d2013-08-08 20:11:24 -04004432static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
4433 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004434{
Tejun Heo182446d2013-08-08 20:11:24 -04004435 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004436
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004437 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004438}
4439
Tejun Heo182446d2013-08-08 20:11:24 -04004440static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
4441 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004442{
Tejun Heo182446d2013-08-08 20:11:24 -04004443 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Li Zefan068b38c2009-01-15 13:51:26 -08004444
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07004445 if (val > 100)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004446 return -EINVAL;
4447
Linus Torvalds14208b02014-06-09 15:03:33 -07004448 if (css->parent)
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07004449 memcg->swappiness = val;
4450 else
4451 vm_swappiness = val;
Li Zefan068b38c2009-01-15 13:51:26 -08004452
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004453 return 0;
4454}
4455
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004456static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4457{
4458 struct mem_cgroup_threshold_ary *t;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004459 unsigned long usage;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004460 int i;
4461
4462 rcu_read_lock();
4463 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004464 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004465 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004466 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004467
4468 if (!t)
4469 goto unlock;
4470
Johannes Weinerce00a962014-09-05 08:43:57 -04004471 usage = mem_cgroup_usage(memcg, swap);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004472
4473 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004474 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004475 * If it's not true, a threshold was crossed after last
4476 * call of __mem_cgroup_threshold().
4477 */
Phil Carmody5407a562010-05-26 14:42:42 -07004478 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004479
4480 /*
4481 * Iterate backward over array of thresholds starting from
4482 * current_threshold and check if a threshold is crossed.
4483 * If none of thresholds below usage is crossed, we read
4484 * only one element of the array here.
4485 */
4486 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4487 eventfd_signal(t->entries[i].eventfd, 1);
4488
4489 /* i = current_threshold + 1 */
4490 i++;
4491
4492 /*
4493 * Iterate forward over array of thresholds starting from
4494 * current_threshold+1 and check if a threshold is crossed.
4495 * If none of thresholds above usage is crossed, we read
4496 * only one element of the array here.
4497 */
4498 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4499 eventfd_signal(t->entries[i].eventfd, 1);
4500
4501 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004502 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004503unlock:
4504 rcu_read_unlock();
4505}
4506
4507static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4508{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004509 while (memcg) {
4510 __mem_cgroup_threshold(memcg, false);
4511 if (do_swap_account)
4512 __mem_cgroup_threshold(memcg, true);
4513
4514 memcg = parent_mem_cgroup(memcg);
4515 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004516}
4517
4518static int compare_thresholds(const void *a, const void *b)
4519{
4520 const struct mem_cgroup_threshold *_a = a;
4521 const struct mem_cgroup_threshold *_b = b;
4522
Greg Thelen2bff24a2013-09-11 14:23:08 -07004523 if (_a->threshold > _b->threshold)
4524 return 1;
4525
4526 if (_a->threshold < _b->threshold)
4527 return -1;
4528
4529 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004530}
4531
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004532static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004533{
4534 struct mem_cgroup_eventfd_list *ev;
4535
Michal Hocko2bcf2e92014-07-30 16:08:33 -07004536 spin_lock(&memcg_oom_lock);
4537
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004538 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004539 eventfd_signal(ev->eventfd, 1);
Michal Hocko2bcf2e92014-07-30 16:08:33 -07004540
4541 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004542 return 0;
4543}
4544
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004545static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004546{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004547 struct mem_cgroup *iter;
4548
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004549 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004550 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004551}
4552
Tejun Heo59b6f872013-11-22 18:20:43 -05004553static int __mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004554 struct eventfd_ctx *eventfd, const char *args, enum res_type type)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004555{
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004556 struct mem_cgroup_thresholds *thresholds;
4557 struct mem_cgroup_threshold_ary *new;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004558 unsigned long threshold;
4559 unsigned long usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004560 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004561
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004562 ret = page_counter_memparse(args, &threshold);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004563 if (ret)
4564 return ret;
4565
4566 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004567
Johannes Weiner05b84302014-08-06 16:05:59 -07004568 if (type == _MEM) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004569 thresholds = &memcg->thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004570 usage = mem_cgroup_usage(memcg, false);
Johannes Weiner05b84302014-08-06 16:05:59 -07004571 } else if (type == _MEMSWAP) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004572 thresholds = &memcg->memsw_thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004573 usage = mem_cgroup_usage(memcg, true);
Johannes Weiner05b84302014-08-06 16:05:59 -07004574 } else
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004575 BUG();
4576
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004577 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004578 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004579 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4580
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004581 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004582
4583 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004584 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004585 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004586 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004587 ret = -ENOMEM;
4588 goto unlock;
4589 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004590 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004591
4592 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004593 if (thresholds->primary) {
4594 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004595 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004596 }
4597
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004598 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004599 new->entries[size - 1].eventfd = eventfd;
4600 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004601
4602 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004603 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004604 compare_thresholds, NULL);
4605
4606 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004607 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004608 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004609 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004610 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004611 * new->current_threshold will not be used until
4612 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004613 * it here.
4614 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004615 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004616 } else
4617 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004618 }
4619
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004620 /* Free old spare buffer and save old primary buffer as spare */
4621 kfree(thresholds->spare);
4622 thresholds->spare = thresholds->primary;
4623
4624 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004625
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004626 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004627 synchronize_rcu();
4628
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004629unlock:
4630 mutex_unlock(&memcg->thresholds_lock);
4631
4632 return ret;
4633}
4634
Tejun Heo59b6f872013-11-22 18:20:43 -05004635static int mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004636 struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004637{
Tejun Heo59b6f872013-11-22 18:20:43 -05004638 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEM);
Tejun Heo347c4a82013-11-22 18:20:43 -05004639}
4640
Tejun Heo59b6f872013-11-22 18:20:43 -05004641static int memsw_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004642 struct eventfd_ctx *eventfd, const char *args)
4643{
Tejun Heo59b6f872013-11-22 18:20:43 -05004644 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEMSWAP);
Tejun Heo347c4a82013-11-22 18:20:43 -05004645}
4646
Tejun Heo59b6f872013-11-22 18:20:43 -05004647static void __mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004648 struct eventfd_ctx *eventfd, enum res_type type)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004649{
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004650 struct mem_cgroup_thresholds *thresholds;
4651 struct mem_cgroup_threshold_ary *new;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004652 unsigned long usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004653 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004654
4655 mutex_lock(&memcg->thresholds_lock);
Johannes Weiner05b84302014-08-06 16:05:59 -07004656
4657 if (type == _MEM) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004658 thresholds = &memcg->thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004659 usage = mem_cgroup_usage(memcg, false);
Johannes Weiner05b84302014-08-06 16:05:59 -07004660 } else if (type == _MEMSWAP) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004661 thresholds = &memcg->memsw_thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004662 usage = mem_cgroup_usage(memcg, true);
Johannes Weiner05b84302014-08-06 16:05:59 -07004663 } else
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004664 BUG();
4665
Anton Vorontsov371528c2012-02-24 05:14:46 +04004666 if (!thresholds->primary)
4667 goto unlock;
4668
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004669 /* Check if a threshold crossed before removing */
4670 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4671
4672 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004673 size = 0;
4674 for (i = 0; i < thresholds->primary->size; i++) {
4675 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004676 size++;
4677 }
4678
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004679 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004680
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004681 /* Set thresholds array to NULL if we don't have thresholds */
4682 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004683 kfree(new);
4684 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004685 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004686 }
4687
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004688 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004689
4690 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004691 new->current_threshold = -1;
4692 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4693 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004694 continue;
4695
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004696 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004697 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004698 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004699 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004700 * until rcu_assign_pointer(), so it's safe to increment
4701 * it here.
4702 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004703 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004704 }
4705 j++;
4706 }
4707
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004708swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004709 /* Swap primary and spare array */
4710 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004711 /* If all events are unregistered, free the spare array */
4712 if (!new) {
4713 kfree(thresholds->spare);
4714 thresholds->spare = NULL;
4715 }
4716
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004717 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004718
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004719 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004720 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04004721unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004722 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004723}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004724
Tejun Heo59b6f872013-11-22 18:20:43 -05004725static void mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004726 struct eventfd_ctx *eventfd)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004727{
Tejun Heo59b6f872013-11-22 18:20:43 -05004728 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEM);
Tejun Heo347c4a82013-11-22 18:20:43 -05004729}
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004730
Tejun Heo59b6f872013-11-22 18:20:43 -05004731static void memsw_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004732 struct eventfd_ctx *eventfd)
4733{
Tejun Heo59b6f872013-11-22 18:20:43 -05004734 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEMSWAP);
Tejun Heo347c4a82013-11-22 18:20:43 -05004735}
4736
Tejun Heo59b6f872013-11-22 18:20:43 -05004737static int mem_cgroup_oom_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004738 struct eventfd_ctx *eventfd, const char *args)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004739{
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004740 struct mem_cgroup_eventfd_list *event;
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004741
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004742 event = kmalloc(sizeof(*event), GFP_KERNEL);
4743 if (!event)
4744 return -ENOMEM;
4745
Michal Hocko1af8efe2011-07-26 16:08:24 -07004746 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004747
4748 event->eventfd = eventfd;
4749 list_add(&event->list, &memcg->oom_notify);
4750
4751 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004752 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004753 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004754 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004755
4756 return 0;
4757}
4758
Tejun Heo59b6f872013-11-22 18:20:43 -05004759static void mem_cgroup_oom_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004760 struct eventfd_ctx *eventfd)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004761{
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004762 struct mem_cgroup_eventfd_list *ev, *tmp;
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004763
Michal Hocko1af8efe2011-07-26 16:08:24 -07004764 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004765
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004766 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004767 if (ev->eventfd == eventfd) {
4768 list_del(&ev->list);
4769 kfree(ev);
4770 }
4771 }
4772
Michal Hocko1af8efe2011-07-26 16:08:24 -07004773 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004774}
4775
Tejun Heo2da8ca82013-12-05 12:28:04 -05004776static int mem_cgroup_oom_control_read(struct seq_file *sf, void *v)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004777{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004778 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(sf));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004779
Tejun Heo791badb2013-12-05 12:28:02 -05004780 seq_printf(sf, "oom_kill_disable %d\n", memcg->oom_kill_disable);
4781 seq_printf(sf, "under_oom %d\n", (bool)atomic_read(&memcg->under_oom));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004782 return 0;
4783}
4784
Tejun Heo182446d2013-08-08 20:11:24 -04004785static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004786 struct cftype *cft, u64 val)
4787{
Tejun Heo182446d2013-08-08 20:11:24 -04004788 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004789
4790 /* cannot set to root cgroup and only 0 and 1 are allowed */
Linus Torvalds14208b02014-06-09 15:03:33 -07004791 if (!css->parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004792 return -EINVAL;
4793
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004794 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004795 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004796 memcg_oom_recover(memcg);
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07004797
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004798 return 0;
4799}
4800
Andrew Mortonc255a452012-07-31 16:43:02 -07004801#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03004802static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004803{
Glauber Costa55007d82012-12-18 14:22:38 -08004804 int ret;
4805
Glauber Costa2633d7a2012-12-18 14:22:34 -08004806 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08004807 ret = memcg_propagate_kmem(memcg);
4808 if (ret)
4809 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08004810
Glauber Costa1d62e432012-04-09 19:36:33 -03004811 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07004812}
Glauber Costae5671df2011-12-11 21:47:01 +00004813
Li Zefan10d5ebf2013-07-08 16:00:33 -07004814static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004815{
Glauber Costa1d62e432012-04-09 19:36:33 -03004816 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07004817}
4818
4819static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
4820{
4821 if (!memcg_kmem_is_active(memcg))
4822 return;
4823
4824 /*
4825 * kmem charges can outlive the cgroup. In the case of slab
4826 * pages, for instance, a page contain objects from various
4827 * processes. As we prevent from taking a reference for every
4828 * such allocation we have to be careful when doing uncharge
4829 * (see memcg_uncharge_kmem) and here during offlining.
4830 *
4831 * The idea is that that only the _last_ uncharge which sees
4832 * the dead memcg will drop the last reference. An additional
4833 * reference is taken here before the group is marked dead
4834 * which is then paired with css_put during uncharge resp. here.
4835 *
4836 * Although this might sound strange as this path is called from
Tejun Heoec903c02014-05-13 12:11:01 -04004837 * css_offline() when the referencemight have dropped down to 0 and
4838 * shouldn't be incremented anymore (css_tryget_online() would
4839 * fail) we do not have other options because of the kmem
4840 * allocations lifetime.
Li Zefan10d5ebf2013-07-08 16:00:33 -07004841 */
4842 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08004843
4844 memcg_kmem_mark_dead(memcg);
4845
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004846 if (page_counter_read(&memcg->kmem))
Glauber Costa7de37682012-12-18 14:22:07 -08004847 return;
4848
Glauber Costa7de37682012-12-18 14:22:07 -08004849 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07004850 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004851}
Glauber Costae5671df2011-12-11 21:47:01 +00004852#else
Glauber Costacbe128e32012-04-09 19:36:34 -03004853static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004854{
4855 return 0;
4856}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004857
Li Zefan10d5ebf2013-07-08 16:00:33 -07004858static void memcg_destroy_kmem(struct mem_cgroup *memcg)
4859{
4860}
4861
4862static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004863{
4864}
Glauber Costae5671df2011-12-11 21:47:01 +00004865#endif
4866
Tejun Heo79bd9812013-11-22 18:20:42 -05004867/*
Tejun Heo3bc942f2013-11-22 18:20:44 -05004868 * DO NOT USE IN NEW FILES.
4869 *
4870 * "cgroup.event_control" implementation.
4871 *
4872 * This is way over-engineered. It tries to support fully configurable
4873 * events for each user. Such level of flexibility is completely
4874 * unnecessary especially in the light of the planned unified hierarchy.
4875 *
4876 * Please deprecate this and replace with something simpler if at all
4877 * possible.
4878 */
4879
4880/*
Tejun Heo79bd9812013-11-22 18:20:42 -05004881 * Unregister event and free resources.
4882 *
4883 * Gets called from workqueue.
4884 */
Tejun Heo3bc942f2013-11-22 18:20:44 -05004885static void memcg_event_remove(struct work_struct *work)
Tejun Heo79bd9812013-11-22 18:20:42 -05004886{
Tejun Heo3bc942f2013-11-22 18:20:44 -05004887 struct mem_cgroup_event *event =
4888 container_of(work, struct mem_cgroup_event, remove);
Tejun Heo59b6f872013-11-22 18:20:43 -05004889 struct mem_cgroup *memcg = event->memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05004890
4891 remove_wait_queue(event->wqh, &event->wait);
4892
Tejun Heo59b6f872013-11-22 18:20:43 -05004893 event->unregister_event(memcg, event->eventfd);
Tejun Heo79bd9812013-11-22 18:20:42 -05004894
4895 /* Notify userspace the event is going away. */
4896 eventfd_signal(event->eventfd, 1);
4897
4898 eventfd_ctx_put(event->eventfd);
4899 kfree(event);
Tejun Heo59b6f872013-11-22 18:20:43 -05004900 css_put(&memcg->css);
Tejun Heo79bd9812013-11-22 18:20:42 -05004901}
4902
4903/*
4904 * Gets called on POLLHUP on eventfd when user closes it.
4905 *
4906 * Called with wqh->lock held and interrupts disabled.
4907 */
Tejun Heo3bc942f2013-11-22 18:20:44 -05004908static int memcg_event_wake(wait_queue_t *wait, unsigned mode,
4909 int sync, void *key)
Tejun Heo79bd9812013-11-22 18:20:42 -05004910{
Tejun Heo3bc942f2013-11-22 18:20:44 -05004911 struct mem_cgroup_event *event =
4912 container_of(wait, struct mem_cgroup_event, wait);
Tejun Heo59b6f872013-11-22 18:20:43 -05004913 struct mem_cgroup *memcg = event->memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05004914 unsigned long flags = (unsigned long)key;
4915
4916 if (flags & POLLHUP) {
4917 /*
4918 * If the event has been detached at cgroup removal, we
4919 * can simply return knowing the other side will cleanup
4920 * for us.
4921 *
4922 * We can't race against event freeing since the other
4923 * side will require wqh->lock via remove_wait_queue(),
4924 * which we hold.
4925 */
Tejun Heofba94802013-11-22 18:20:43 -05004926 spin_lock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05004927 if (!list_empty(&event->list)) {
4928 list_del_init(&event->list);
4929 /*
4930 * We are in atomic context, but cgroup_event_remove()
4931 * may sleep, so we have to call it in workqueue.
4932 */
4933 schedule_work(&event->remove);
4934 }
Tejun Heofba94802013-11-22 18:20:43 -05004935 spin_unlock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05004936 }
4937
4938 return 0;
4939}
4940
Tejun Heo3bc942f2013-11-22 18:20:44 -05004941static void memcg_event_ptable_queue_proc(struct file *file,
Tejun Heo79bd9812013-11-22 18:20:42 -05004942 wait_queue_head_t *wqh, poll_table *pt)
4943{
Tejun Heo3bc942f2013-11-22 18:20:44 -05004944 struct mem_cgroup_event *event =
4945 container_of(pt, struct mem_cgroup_event, pt);
Tejun Heo79bd9812013-11-22 18:20:42 -05004946
4947 event->wqh = wqh;
4948 add_wait_queue(wqh, &event->wait);
4949}
4950
4951/*
Tejun Heo3bc942f2013-11-22 18:20:44 -05004952 * DO NOT USE IN NEW FILES.
4953 *
Tejun Heo79bd9812013-11-22 18:20:42 -05004954 * Parse input and register new cgroup event handler.
4955 *
4956 * Input must be in format '<event_fd> <control_fd> <args>'.
4957 * Interpretation of args is defined by control file implementation.
4958 */
Tejun Heo451af502014-05-13 12:16:21 -04004959static ssize_t memcg_write_event_control(struct kernfs_open_file *of,
4960 char *buf, size_t nbytes, loff_t off)
Tejun Heo79bd9812013-11-22 18:20:42 -05004961{
Tejun Heo451af502014-05-13 12:16:21 -04004962 struct cgroup_subsys_state *css = of_css(of);
Tejun Heofba94802013-11-22 18:20:43 -05004963 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo3bc942f2013-11-22 18:20:44 -05004964 struct mem_cgroup_event *event;
Tejun Heo79bd9812013-11-22 18:20:42 -05004965 struct cgroup_subsys_state *cfile_css;
4966 unsigned int efd, cfd;
4967 struct fd efile;
4968 struct fd cfile;
Tejun Heofba94802013-11-22 18:20:43 -05004969 const char *name;
Tejun Heo79bd9812013-11-22 18:20:42 -05004970 char *endp;
4971 int ret;
4972
Tejun Heo451af502014-05-13 12:16:21 -04004973 buf = strstrip(buf);
4974
4975 efd = simple_strtoul(buf, &endp, 10);
Tejun Heo79bd9812013-11-22 18:20:42 -05004976 if (*endp != ' ')
4977 return -EINVAL;
Tejun Heo451af502014-05-13 12:16:21 -04004978 buf = endp + 1;
Tejun Heo79bd9812013-11-22 18:20:42 -05004979
Tejun Heo451af502014-05-13 12:16:21 -04004980 cfd = simple_strtoul(buf, &endp, 10);
Tejun Heo79bd9812013-11-22 18:20:42 -05004981 if ((*endp != ' ') && (*endp != '\0'))
4982 return -EINVAL;
Tejun Heo451af502014-05-13 12:16:21 -04004983 buf = endp + 1;
Tejun Heo79bd9812013-11-22 18:20:42 -05004984
4985 event = kzalloc(sizeof(*event), GFP_KERNEL);
4986 if (!event)
4987 return -ENOMEM;
4988
Tejun Heo59b6f872013-11-22 18:20:43 -05004989 event->memcg = memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05004990 INIT_LIST_HEAD(&event->list);
Tejun Heo3bc942f2013-11-22 18:20:44 -05004991 init_poll_funcptr(&event->pt, memcg_event_ptable_queue_proc);
4992 init_waitqueue_func_entry(&event->wait, memcg_event_wake);
4993 INIT_WORK(&event->remove, memcg_event_remove);
Tejun Heo79bd9812013-11-22 18:20:42 -05004994
4995 efile = fdget(efd);
4996 if (!efile.file) {
4997 ret = -EBADF;
4998 goto out_kfree;
4999 }
5000
5001 event->eventfd = eventfd_ctx_fileget(efile.file);
5002 if (IS_ERR(event->eventfd)) {
5003 ret = PTR_ERR(event->eventfd);
5004 goto out_put_efile;
5005 }
5006
5007 cfile = fdget(cfd);
5008 if (!cfile.file) {
5009 ret = -EBADF;
5010 goto out_put_eventfd;
5011 }
5012
5013 /* the process need read permission on control file */
5014 /* AV: shouldn't we check that it's been opened for read instead? */
5015 ret = inode_permission(file_inode(cfile.file), MAY_READ);
5016 if (ret < 0)
5017 goto out_put_cfile;
5018
Tejun Heo79bd9812013-11-22 18:20:42 -05005019 /*
Tejun Heofba94802013-11-22 18:20:43 -05005020 * Determine the event callbacks and set them in @event. This used
5021 * to be done via struct cftype but cgroup core no longer knows
5022 * about these events. The following is crude but the whole thing
5023 * is for compatibility anyway.
Tejun Heo3bc942f2013-11-22 18:20:44 -05005024 *
5025 * DO NOT ADD NEW FILES.
Tejun Heofba94802013-11-22 18:20:43 -05005026 */
5027 name = cfile.file->f_dentry->d_name.name;
5028
5029 if (!strcmp(name, "memory.usage_in_bytes")) {
5030 event->register_event = mem_cgroup_usage_register_event;
5031 event->unregister_event = mem_cgroup_usage_unregister_event;
5032 } else if (!strcmp(name, "memory.oom_control")) {
5033 event->register_event = mem_cgroup_oom_register_event;
5034 event->unregister_event = mem_cgroup_oom_unregister_event;
5035 } else if (!strcmp(name, "memory.pressure_level")) {
5036 event->register_event = vmpressure_register_event;
5037 event->unregister_event = vmpressure_unregister_event;
5038 } else if (!strcmp(name, "memory.memsw.usage_in_bytes")) {
Tejun Heo347c4a82013-11-22 18:20:43 -05005039 event->register_event = memsw_cgroup_usage_register_event;
5040 event->unregister_event = memsw_cgroup_usage_unregister_event;
Tejun Heofba94802013-11-22 18:20:43 -05005041 } else {
5042 ret = -EINVAL;
5043 goto out_put_cfile;
5044 }
5045
5046 /*
Tejun Heob5557c42013-11-22 18:20:42 -05005047 * Verify @cfile should belong to @css. Also, remaining events are
5048 * automatically removed on cgroup destruction but the removal is
5049 * asynchronous, so take an extra ref on @css.
Tejun Heo79bd9812013-11-22 18:20:42 -05005050 */
Tejun Heoec903c02014-05-13 12:11:01 -04005051 cfile_css = css_tryget_online_from_dir(cfile.file->f_dentry->d_parent,
5052 &memory_cgrp_subsys);
Tejun Heo79bd9812013-11-22 18:20:42 -05005053 ret = -EINVAL;
Tejun Heo5a17f542014-02-11 11:52:47 -05005054 if (IS_ERR(cfile_css))
Tejun Heo79bd9812013-11-22 18:20:42 -05005055 goto out_put_cfile;
Tejun Heo5a17f542014-02-11 11:52:47 -05005056 if (cfile_css != css) {
5057 css_put(cfile_css);
5058 goto out_put_cfile;
5059 }
Tejun Heo79bd9812013-11-22 18:20:42 -05005060
Tejun Heo451af502014-05-13 12:16:21 -04005061 ret = event->register_event(memcg, event->eventfd, buf);
Tejun Heo79bd9812013-11-22 18:20:42 -05005062 if (ret)
5063 goto out_put_css;
5064
5065 efile.file->f_op->poll(efile.file, &event->pt);
5066
Tejun Heofba94802013-11-22 18:20:43 -05005067 spin_lock(&memcg->event_list_lock);
5068 list_add(&event->list, &memcg->event_list);
5069 spin_unlock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05005070
5071 fdput(cfile);
5072 fdput(efile);
5073
Tejun Heo451af502014-05-13 12:16:21 -04005074 return nbytes;
Tejun Heo79bd9812013-11-22 18:20:42 -05005075
5076out_put_css:
Tejun Heob5557c42013-11-22 18:20:42 -05005077 css_put(css);
Tejun Heo79bd9812013-11-22 18:20:42 -05005078out_put_cfile:
5079 fdput(cfile);
5080out_put_eventfd:
5081 eventfd_ctx_put(event->eventfd);
5082out_put_efile:
5083 fdput(efile);
5084out_kfree:
5085 kfree(event);
5086
5087 return ret;
5088}
5089
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005090static struct cftype mem_cgroup_files[] = {
5091 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005092 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005093 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05005094 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005095 },
5096 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005097 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005098 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04005099 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005100 .read_u64 = mem_cgroup_read_u64,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005101 },
5102 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005103 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005104 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04005105 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05005106 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005107 },
5108 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005109 .name = "soft_limit_in_bytes",
5110 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04005111 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05005112 .read_u64 = mem_cgroup_read_u64,
Balbir Singh296c81d2009-09-23 15:56:36 -07005113 },
5114 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005115 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005116 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04005117 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005118 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005119 },
Balbir Singh8697d332008-02-07 00:13:59 -08005120 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005121 .name = "stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005122 .seq_show = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005123 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005124 {
5125 .name = "force_empty",
Tejun Heo6770c642014-05-13 12:16:21 -04005126 .write = mem_cgroup_force_empty_write,
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005127 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005128 {
5129 .name = "use_hierarchy",
5130 .write_u64 = mem_cgroup_hierarchy_write,
5131 .read_u64 = mem_cgroup_hierarchy_read,
5132 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005133 {
Tejun Heo3bc942f2013-11-22 18:20:44 -05005134 .name = "cgroup.event_control", /* XXX: for compat */
Tejun Heo451af502014-05-13 12:16:21 -04005135 .write = memcg_write_event_control,
Tejun Heo79bd9812013-11-22 18:20:42 -05005136 .flags = CFTYPE_NO_PREFIX,
5137 .mode = S_IWUGO,
5138 },
5139 {
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005140 .name = "swappiness",
5141 .read_u64 = mem_cgroup_swappiness_read,
5142 .write_u64 = mem_cgroup_swappiness_write,
5143 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005144 {
5145 .name = "move_charge_at_immigrate",
5146 .read_u64 = mem_cgroup_move_charge_read,
5147 .write_u64 = mem_cgroup_move_charge_write,
5148 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005149 {
5150 .name = "oom_control",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005151 .seq_show = mem_cgroup_oom_control_read,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005152 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005153 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5154 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005155 {
5156 .name = "pressure_level",
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005157 },
Ying Han406eb0c2011-05-26 16:25:37 -07005158#ifdef CONFIG_NUMA
5159 {
5160 .name = "numa_stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005161 .seq_show = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005162 },
5163#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005164#ifdef CONFIG_MEMCG_KMEM
5165 {
5166 .name = "kmem.limit_in_bytes",
5167 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04005168 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05005169 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08005170 },
5171 {
5172 .name = "kmem.usage_in_bytes",
5173 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05005174 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08005175 },
5176 {
5177 .name = "kmem.failcnt",
5178 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04005179 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005180 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08005181 },
5182 {
5183 .name = "kmem.max_usage_in_bytes",
5184 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04005185 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005186 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08005187 },
Glauber Costa749c5412012-12-18 14:23:01 -08005188#ifdef CONFIG_SLABINFO
5189 {
5190 .name = "kmem.slabinfo",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005191 .seq_show = mem_cgroup_slabinfo_read,
Glauber Costa749c5412012-12-18 14:23:01 -08005192 },
5193#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005194#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005195 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005196};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005197
Michal Hocko2d110852013-02-22 16:34:43 -08005198#ifdef CONFIG_MEMCG_SWAP
5199static struct cftype memsw_cgroup_files[] = {
5200 {
5201 .name = "memsw.usage_in_bytes",
5202 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05005203 .read_u64 = mem_cgroup_read_u64,
Michal Hocko2d110852013-02-22 16:34:43 -08005204 },
5205 {
5206 .name = "memsw.max_usage_in_bytes",
5207 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04005208 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005209 .read_u64 = mem_cgroup_read_u64,
Michal Hocko2d110852013-02-22 16:34:43 -08005210 },
5211 {
5212 .name = "memsw.limit_in_bytes",
5213 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04005214 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05005215 .read_u64 = mem_cgroup_read_u64,
Michal Hocko2d110852013-02-22 16:34:43 -08005216 },
5217 {
5218 .name = "memsw.failcnt",
5219 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04005220 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005221 .read_u64 = mem_cgroup_read_u64,
Michal Hocko2d110852013-02-22 16:34:43 -08005222 },
5223 { }, /* terminate */
5224};
5225#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005226static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005227{
5228 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005229 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005230 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005231 /*
5232 * This routine is called against possible nodes.
5233 * But it's BUG to call kmalloc() against offline node.
5234 *
5235 * TODO: this routine can waste much memory for nodes which will
5236 * never be onlined. It's better to use memory hotplug callback
5237 * function.
5238 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005239 if (!node_state(node, N_NORMAL_MEMORY))
5240 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005241 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005242 if (!pn)
5243 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005244
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005245 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5246 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005247 lruvec_init(&mz->lruvec);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07005248 mz->usage_in_excess = 0;
5249 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005250 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005251 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005252 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005253 return 0;
5254}
5255
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005256static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005257{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005258 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005259}
5260
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005261static struct mem_cgroup *mem_cgroup_alloc(void)
5262{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005263 struct mem_cgroup *memcg;
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005264 size_t size;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005265
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005266 size = sizeof(struct mem_cgroup);
5267 size += nr_node_ids * sizeof(struct mem_cgroup_per_node *);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005268
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005269 memcg = kzalloc(size, GFP_KERNEL);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005270 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005271 return NULL;
5272
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005273 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5274 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005275 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005276 spin_lock_init(&memcg->pcp_counter_lock);
5277 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005278
5279out_free:
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005280 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005281 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005282}
5283
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005284/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005285 * At destroying mem_cgroup, references from swap_cgroup can remain.
5286 * (scanning all at force_empty is too costly...)
5287 *
5288 * Instead of clearing all references at force_empty, we remember
5289 * the number of reference from swap_cgroup and free mem_cgroup when
5290 * it goes down to 0.
5291 *
5292 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005293 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005294
5295static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005296{
Glauber Costac8b2a362012-12-18 14:22:13 -08005297 int node;
Hugh Dickins59927fb2012-03-15 15:17:07 -07005298
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07005299 mem_cgroup_remove_from_trees(memcg);
Glauber Costac8b2a362012-12-18 14:22:13 -08005300
5301 for_each_node(node)
5302 free_mem_cgroup_per_zone_info(memcg, node);
5303
5304 free_percpu(memcg->stat);
5305
Glauber Costa3f134612012-05-29 15:07:11 -07005306 /*
5307 * We need to make sure that (at least for now), the jump label
5308 * destruction code runs outside of the cgroup lock. This is because
5309 * get_online_cpus(), which is called from the static_branch update,
5310 * can't be called inside the cgroup_lock. cpusets are the ones
5311 * enforcing this dependency, so if they ever change, we might as well.
5312 *
5313 * schedule_work() will guarantee this happens. Be careful if you need
5314 * to move this code around, and make sure it is outside
5315 * the cgroup_lock.
5316 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005317 disarm_static_keys(memcg);
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005318 kfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005319}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005320
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005321/*
5322 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5323 */
Glauber Costae1aab162011-12-11 21:47:03 +00005324struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005325{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005326 if (!memcg->memory.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005327 return NULL;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005328 return mem_cgroup_from_counter(memcg->memory.parent, memory);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005329}
Glauber Costae1aab162011-12-11 21:47:03 +00005330EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005331
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07005332static void __init mem_cgroup_soft_limit_tree_init(void)
5333{
5334 struct mem_cgroup_tree_per_node *rtpn;
5335 struct mem_cgroup_tree_per_zone *rtpz;
5336 int tmp, node, zone;
5337
5338 for_each_node(node) {
5339 tmp = node;
5340 if (!node_state(node, N_NORMAL_MEMORY))
5341 tmp = -1;
5342 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
5343 BUG_ON(!rtpn);
5344
5345 soft_limit_tree.rb_tree_per_node[node] = rtpn;
5346
5347 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5348 rtpz = &rtpn->rb_tree_per_zone[zone];
5349 rtpz->rb_root = RB_ROOT;
5350 spin_lock_init(&rtpz->lock);
5351 }
5352 }
5353}
5354
Li Zefan0eb253e2009-01-15 13:51:25 -08005355static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04005356mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005357{
Glauber Costad142e3e2013-02-22 16:34:52 -08005358 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005359 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005360 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005361
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005362 memcg = mem_cgroup_alloc();
5363 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005364 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005365
Bob Liu3ed28fa2012-01-12 17:19:04 -08005366 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005367 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005368 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005369
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005370 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04005371 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08005372 root_mem_cgroup = memcg;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005373 page_counter_init(&memcg->memory, NULL);
5374 page_counter_init(&memcg->memsw, NULL);
5375 page_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005376 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005377
Glauber Costad142e3e2013-02-22 16:34:52 -08005378 memcg->last_scanned_node = MAX_NUMNODES;
5379 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08005380 memcg->move_charge_at_immigrate = 0;
5381 mutex_init(&memcg->thresholds_lock);
5382 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005383 vmpressure_init(&memcg->vmpressure);
Tejun Heofba94802013-11-22 18:20:43 -05005384 INIT_LIST_HEAD(&memcg->event_list);
5385 spin_lock_init(&memcg->event_list_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08005386
5387 return &memcg->css;
5388
5389free_out:
5390 __mem_cgroup_free(memcg);
5391 return ERR_PTR(error);
5392}
5393
5394static int
Tejun Heoeb954192013-08-08 20:11:23 -04005395mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08005396{
Tejun Heoeb954192013-08-08 20:11:23 -04005397 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04005398 struct mem_cgroup *parent = mem_cgroup_from_css(css->parent);
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -07005399 int ret;
Glauber Costad142e3e2013-02-22 16:34:52 -08005400
Tejun Heo15a4c832014-05-04 15:09:14 -04005401 if (css->id > MEM_CGROUP_ID_MAX)
Li Zefan4219b2d2013-09-23 16:56:29 +08005402 return -ENOSPC;
5403
Tejun Heo63876982013-08-08 20:11:23 -04005404 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08005405 return 0;
5406
Glauber Costa09998212013-02-22 16:34:55 -08005407 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08005408
5409 memcg->use_hierarchy = parent->use_hierarchy;
5410 memcg->oom_kill_disable = parent->oom_kill_disable;
5411 memcg->swappiness = mem_cgroup_swappiness(parent);
5412
5413 if (parent->use_hierarchy) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005414 page_counter_init(&memcg->memory, &parent->memory);
5415 page_counter_init(&memcg->memsw, &parent->memsw);
5416 page_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08005417
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005418 /*
Li Zefan8d76a972013-07-08 16:00:36 -07005419 * No need to take a reference to the parent because cgroup
5420 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005421 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08005422 } else {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005423 page_counter_init(&memcg->memory, NULL);
5424 page_counter_init(&memcg->memsw, NULL);
5425 page_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07005426 /*
5427 * Deeper hierachy with use_hierarchy == false doesn't make
5428 * much sense so let cgroup subsystem know about this
5429 * unfortunate state in our controller.
5430 */
Glauber Costad142e3e2013-02-22 16:34:52 -08005431 if (parent != root_mem_cgroup)
Tejun Heo073219e2014-02-08 10:36:58 -05005432 memory_cgrp_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005433 }
Glauber Costa09998212013-02-22 16:34:55 -08005434 mutex_unlock(&memcg_create_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08005435
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -07005436 ret = memcg_init_kmem(memcg, &memory_cgrp_subsys);
5437 if (ret)
5438 return ret;
5439
5440 /*
5441 * Make sure the memcg is initialized: mem_cgroup_iter()
5442 * orders reading memcg->initialized against its callers
5443 * reading the memcg members.
5444 */
5445 smp_store_release(&memcg->initialized, 1);
5446
5447 return 0;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005448}
5449
Michal Hocko5f578162013-04-29 15:07:17 -07005450/*
5451 * Announce all parents that a group from their hierarchy is gone.
5452 */
5453static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
5454{
5455 struct mem_cgroup *parent = memcg;
5456
5457 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07005458 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07005459
5460 /*
5461 * if the root memcg is not hierarchical we have to check it
5462 * explicitely.
5463 */
5464 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07005465 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07005466}
5467
Tejun Heoeb954192013-08-08 20:11:23 -04005468static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005469{
Tejun Heoeb954192013-08-08 20:11:23 -04005470 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo3bc942f2013-11-22 18:20:44 -05005471 struct mem_cgroup_event *event, *tmp;
Filipe Brandenburger4fb1a862014-03-03 15:38:25 -08005472 struct cgroup_subsys_state *iter;
Tejun Heo79bd9812013-11-22 18:20:42 -05005473
5474 /*
5475 * Unregister events and notify userspace.
5476 * Notify userspace about cgroup removing only after rmdir of cgroup
5477 * directory to avoid race between userspace and kernelspace.
5478 */
Tejun Heofba94802013-11-22 18:20:43 -05005479 spin_lock(&memcg->event_list_lock);
5480 list_for_each_entry_safe(event, tmp, &memcg->event_list, list) {
Tejun Heo79bd9812013-11-22 18:20:42 -05005481 list_del_init(&event->list);
5482 schedule_work(&event->remove);
5483 }
Tejun Heofba94802013-11-22 18:20:43 -05005484 spin_unlock(&memcg->event_list_lock);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005485
Li Zefan10d5ebf2013-07-08 16:00:33 -07005486 kmem_cgroup_css_offline(memcg);
5487
Michal Hocko5f578162013-04-29 15:07:17 -07005488 mem_cgroup_invalidate_reclaim_iterators(memcg);
Filipe Brandenburger4fb1a862014-03-03 15:38:25 -08005489
5490 /*
5491 * This requires that offlining is serialized. Right now that is
5492 * guaranteed because css_killed_work_fn() holds the cgroup_mutex.
5493 */
5494 css_for_each_descendant_post(iter, css)
5495 mem_cgroup_reparent_charges(mem_cgroup_from_css(iter));
5496
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07005497 memcg_unregister_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07005498 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005499}
5500
Tejun Heoeb954192013-08-08 20:11:23 -04005501static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005502{
Tejun Heoeb954192013-08-08 20:11:23 -04005503 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weiner96f1c582013-12-12 17:12:34 -08005504 /*
5505 * XXX: css_offline() would be where we should reparent all
5506 * memory to prepare the cgroup for destruction. However,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005507 * memcg does not do css_tryget_online() and page_counter charging
Johannes Weiner96f1c582013-12-12 17:12:34 -08005508 * under the same RCU lock region, which means that charging
5509 * could race with offlining. Offlining only happens to
5510 * cgroups with no tasks in them but charges can show up
5511 * without any tasks from the swapin path when the target
5512 * memcg is looked up from the swapout record and not from the
5513 * current task as it usually is. A race like this can leak
5514 * charges and put pages with stale cgroup pointers into
5515 * circulation:
5516 *
5517 * #0 #1
5518 * lookup_swap_cgroup_id()
5519 * rcu_read_lock()
5520 * mem_cgroup_lookup()
Tejun Heoec903c02014-05-13 12:11:01 -04005521 * css_tryget_online()
Johannes Weiner96f1c582013-12-12 17:12:34 -08005522 * rcu_read_unlock()
Tejun Heoec903c02014-05-13 12:11:01 -04005523 * disable css_tryget_online()
Johannes Weiner96f1c582013-12-12 17:12:34 -08005524 * call_rcu()
5525 * offline_css()
5526 * reparent_charges()
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005527 * page_counter_try_charge()
Johannes Weiner96f1c582013-12-12 17:12:34 -08005528 * css_put()
5529 * css_free()
5530 * pc->mem_cgroup = dead memcg
5531 * add page to lru
5532 *
5533 * The bulk of the charges are still moved in offline_css() to
5534 * avoid pinning a lot of pages in case a long-term reference
5535 * like a swapout record is deferring the css_free() to long
5536 * after offlining. But this makes sure we catch any charges
5537 * made after offlining:
5538 */
5539 mem_cgroup_reparent_charges(memcg);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005540
Li Zefan10d5ebf2013-07-08 16:00:33 -07005541 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07005542 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005543}
5544
Tejun Heo1ced9532014-07-08 18:02:57 -04005545/**
5546 * mem_cgroup_css_reset - reset the states of a mem_cgroup
5547 * @css: the target css
5548 *
5549 * Reset the states of the mem_cgroup associated with @css. This is
5550 * invoked when the userland requests disabling on the default hierarchy
5551 * but the memcg is pinned through dependency. The memcg should stop
5552 * applying policies and should revert to the vanilla state as it may be
5553 * made visible again.
5554 *
5555 * The current implementation only resets the essential configurations.
5556 * This needs to be expanded to cover all the visible parts.
5557 */
5558static void mem_cgroup_css_reset(struct cgroup_subsys_state *css)
5559{
5560 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5561
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005562 mem_cgroup_resize_limit(memcg, PAGE_COUNTER_MAX);
5563 mem_cgroup_resize_memsw_limit(memcg, PAGE_COUNTER_MAX);
5564 memcg_update_kmem_limit(memcg, PAGE_COUNTER_MAX);
5565 memcg->soft_limit = 0;
Tejun Heo1ced9532014-07-08 18:02:57 -04005566}
5567
Daisuke Nishimura02491442010-03-10 15:22:17 -08005568#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005569/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005570static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005571{
Johannes Weiner05b84302014-08-06 16:05:59 -07005572 int ret;
Johannes Weiner9476db92014-08-06 16:05:55 -07005573
5574 /* Try a single bulk charge without reclaim first */
Johannes Weiner00501b52014-08-08 14:19:20 -07005575 ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_WAIT, count);
Johannes Weiner9476db92014-08-06 16:05:55 -07005576 if (!ret) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005577 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005578 return ret;
5579 }
Johannes Weiner692e7c42014-08-06 16:05:57 -07005580 if (ret == -EINTR) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005581 cancel_charge(root_mem_cgroup, count);
Johannes Weiner692e7c42014-08-06 16:05:57 -07005582 return ret;
5583 }
Johannes Weiner9476db92014-08-06 16:05:55 -07005584
5585 /* Try charges one by one with reclaim */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005586 while (count--) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005587 ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_NORETRY, 1);
Johannes Weiner9476db92014-08-06 16:05:55 -07005588 /*
5589 * In case of failure, any residual charges against
5590 * mc.to will be dropped by mem_cgroup_clear_mc()
Johannes Weiner692e7c42014-08-06 16:05:57 -07005591 * later on. However, cancel any charges that are
5592 * bypassed to root right away or they'll be lost.
Johannes Weiner9476db92014-08-06 16:05:55 -07005593 */
Johannes Weiner692e7c42014-08-06 16:05:57 -07005594 if (ret == -EINTR)
Johannes Weiner00501b52014-08-08 14:19:20 -07005595 cancel_charge(root_mem_cgroup, 1);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005596 if (ret)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005597 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005598 mc.precharge++;
Johannes Weiner9476db92014-08-06 16:05:55 -07005599 cond_resched();
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005600 }
Johannes Weiner9476db92014-08-06 16:05:55 -07005601 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005602}
5603
5604/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005605 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005606 * @vma: the vma the pte to be checked belongs
5607 * @addr: the address corresponding to the pte to be checked
5608 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005609 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005610 *
5611 * Returns
5612 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5613 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5614 * move charge. if @target is not NULL, the page is stored in target->page
5615 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005616 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5617 * target for charge migration. if @target is not NULL, the entry is stored
5618 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005619 *
5620 * Called with pte lock held.
5621 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005622union mc_target {
5623 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005624 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005625};
5626
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005627enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005628 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005629 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005630 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005631};
5632
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005633static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5634 unsigned long addr, pte_t ptent)
5635{
5636 struct page *page = vm_normal_page(vma, addr, ptent);
5637
5638 if (!page || !page_mapped(page))
5639 return NULL;
5640 if (PageAnon(page)) {
5641 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005642 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005643 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005644 } else if (!move_file())
5645 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005646 return NULL;
5647 if (!get_page_unless_zero(page))
5648 return NULL;
5649
5650 return page;
5651}
5652
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005653#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005654static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5655 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5656{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005657 struct page *page = NULL;
5658 swp_entry_t ent = pte_to_swp_entry(ptent);
5659
5660 if (!move_anon() || non_swap_entry(ent))
5661 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005662 /*
5663 * Because lookup_swap_cache() updates some statistics counter,
5664 * we call find_get_page() with swapper_space directly.
5665 */
Shaohua Li33806f02013-02-22 16:34:37 -08005666 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005667 if (do_swap_account)
5668 entry->val = ent.val;
5669
5670 return page;
5671}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005672#else
5673static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5674 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5675{
5676 return NULL;
5677}
5678#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005679
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005680static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5681 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5682{
5683 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005684 struct address_space *mapping;
5685 pgoff_t pgoff;
5686
5687 if (!vma->vm_file) /* anonymous vma */
5688 return NULL;
5689 if (!move_file())
5690 return NULL;
5691
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005692 mapping = vma->vm_file->f_mapping;
5693 if (pte_none(ptent))
5694 pgoff = linear_page_index(vma, addr);
5695 else /* pte_file(ptent) is true */
5696 pgoff = pte_to_pgoff(ptent);
5697
5698 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005699#ifdef CONFIG_SWAP
5700 /* shmem/tmpfs may report page out on swap: account for that too. */
Johannes Weiner139b6a62014-05-06 12:50:05 -07005701 if (shmem_mapping(mapping)) {
5702 page = find_get_entry(mapping, pgoff);
5703 if (radix_tree_exceptional_entry(page)) {
5704 swp_entry_t swp = radix_to_swp_entry(page);
5705 if (do_swap_account)
5706 *entry = swp;
5707 page = find_get_page(swap_address_space(swp), swp.val);
5708 }
5709 } else
5710 page = find_get_page(mapping, pgoff);
5711#else
5712 page = find_get_page(mapping, pgoff);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005713#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005714 return page;
5715}
5716
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005717static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005718 unsigned long addr, pte_t ptent, union mc_target *target)
5719{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005720 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005721 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005722 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005723 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005724
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005725 if (pte_present(ptent))
5726 page = mc_handle_present_pte(vma, addr, ptent);
5727 else if (is_swap_pte(ptent))
5728 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005729 else if (pte_none(ptent) || pte_file(ptent))
5730 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005731
5732 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005733 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005734 if (page) {
5735 pc = lookup_page_cgroup(page);
5736 /*
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005737 * Do only loose check w/o serialization.
5738 * mem_cgroup_move_account() checks the pc is valid or
5739 * not under LRU exclusion.
Daisuke Nishimura02491442010-03-10 15:22:17 -08005740 */
5741 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5742 ret = MC_TARGET_PAGE;
5743 if (target)
5744 target->page = page;
5745 }
5746 if (!ret || !target)
5747 put_page(page);
5748 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005749 /* There is a swap entry and a page doesn't exist or isn't charged */
5750 if (ent.val && !ret &&
Li Zefan34c00c32013-09-23 16:56:01 +08005751 mem_cgroup_id(mc.from) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005752 ret = MC_TARGET_SWAP;
5753 if (target)
5754 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005755 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005756 return ret;
5757}
5758
Naoya Horiguchi12724852012-03-21 16:34:28 -07005759#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5760/*
5761 * We don't consider swapping or file mapped pages because THP does not
5762 * support them for now.
5763 * Caller should make sure that pmd_trans_huge(pmd) is true.
5764 */
5765static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5766 unsigned long addr, pmd_t pmd, union mc_target *target)
5767{
5768 struct page *page = NULL;
5769 struct page_cgroup *pc;
5770 enum mc_target_type ret = MC_TARGET_NONE;
5771
5772 page = pmd_page(pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08005773 VM_BUG_ON_PAGE(!page || !PageHead(page), page);
Naoya Horiguchi12724852012-03-21 16:34:28 -07005774 if (!move_anon())
5775 return ret;
5776 pc = lookup_page_cgroup(page);
5777 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5778 ret = MC_TARGET_PAGE;
5779 if (target) {
5780 get_page(page);
5781 target->page = page;
5782 }
5783 }
5784 return ret;
5785}
5786#else
5787static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5788 unsigned long addr, pmd_t pmd, union mc_target *target)
5789{
5790 return MC_TARGET_NONE;
5791}
5792#endif
5793
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005794static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5795 unsigned long addr, unsigned long end,
5796 struct mm_walk *walk)
5797{
5798 struct vm_area_struct *vma = walk->private;
5799 pte_t *pte;
5800 spinlock_t *ptl;
5801
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08005802 if (pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005803 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5804 mc.precharge += HPAGE_PMD_NR;
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08005805 spin_unlock(ptl);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005806 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005807 }
Dave Hansen03319322011-03-22 16:32:56 -07005808
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005809 if (pmd_trans_unstable(pmd))
5810 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005811 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5812 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005813 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005814 mc.precharge++; /* increment precharge temporarily */
5815 pte_unmap_unlock(pte - 1, ptl);
5816 cond_resched();
5817
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005818 return 0;
5819}
5820
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005821static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5822{
5823 unsigned long precharge;
5824 struct vm_area_struct *vma;
5825
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005826 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005827 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5828 struct mm_walk mem_cgroup_count_precharge_walk = {
5829 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5830 .mm = mm,
5831 .private = vma,
5832 };
5833 if (is_vm_hugetlb_page(vma))
5834 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005835 walk_page_range(vma->vm_start, vma->vm_end,
5836 &mem_cgroup_count_precharge_walk);
5837 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005838 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005839
5840 precharge = mc.precharge;
5841 mc.precharge = 0;
5842
5843 return precharge;
5844}
5845
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005846static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5847{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005848 unsigned long precharge = mem_cgroup_count_precharge(mm);
5849
5850 VM_BUG_ON(mc.moving_task);
5851 mc.moving_task = current;
5852 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005853}
5854
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005855/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5856static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005857{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005858 struct mem_cgroup *from = mc.from;
5859 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07005860 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005861
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005862 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005863 if (mc.precharge) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005864 cancel_charge(mc.to, mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005865 mc.precharge = 0;
5866 }
5867 /*
5868 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5869 * we must uncharge here.
5870 */
5871 if (mc.moved_charge) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005872 cancel_charge(mc.from, mc.moved_charge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005873 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005874 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005875 /* we must fixup refcnts and charges */
5876 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005877 /* uncharge swap account from the old cgroup */
Johannes Weinerce00a962014-09-05 08:43:57 -04005878 if (!mem_cgroup_is_root(mc.from))
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005879 page_counter_uncharge(&mc.from->memsw, mc.moved_swap);
5880
5881 /*
5882 * we charged both to->memory and to->memsw, so we
5883 * should uncharge to->memory.
5884 */
5885 if (!mem_cgroup_is_root(mc.to))
5886 page_counter_uncharge(&mc.to->memory, mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07005887
5888 for (i = 0; i < mc.moved_swap; i++)
5889 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005890
Li Zefan40503772013-07-08 16:00:34 -07005891 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005892 mc.moved_swap = 0;
5893 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005894 memcg_oom_recover(from);
5895 memcg_oom_recover(to);
5896 wake_up_all(&mc.waitq);
5897}
5898
5899static void mem_cgroup_clear_mc(void)
5900{
5901 struct mem_cgroup *from = mc.from;
5902
5903 /*
5904 * we must clear moving_task before waking up waiters at the end of
5905 * task migration.
5906 */
5907 mc.moving_task = NULL;
5908 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005909 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005910 mc.from = NULL;
5911 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005912 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005913 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005914}
5915
Tejun Heoeb954192013-08-08 20:11:23 -04005916static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08005917 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005918{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005919 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005920 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04005921 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08005922 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005923
Glauber Costaee5e8472013-02-22 16:34:50 -08005924 /*
5925 * We are now commited to this value whatever it is. Changes in this
5926 * tunable will only affect upcoming migrations, not the current one.
5927 * So we need to save it, and keep it going.
5928 */
5929 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
5930 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005931 struct mm_struct *mm;
5932 struct mem_cgroup *from = mem_cgroup_from_task(p);
5933
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005934 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005935
5936 mm = get_task_mm(p);
5937 if (!mm)
5938 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005939 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005940 if (mm->owner == p) {
5941 VM_BUG_ON(mc.from);
5942 VM_BUG_ON(mc.to);
5943 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005944 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005945 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005946 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005947 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005948 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005949 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08005950 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005951 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005952 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005953
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005954 ret = mem_cgroup_precharge_mc(mm);
5955 if (ret)
5956 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005957 }
5958 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005959 }
5960 return ret;
5961}
5962
Tejun Heoeb954192013-08-08 20:11:23 -04005963static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08005964 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005965{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005966 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005967}
5968
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005969static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5970 unsigned long addr, unsigned long end,
5971 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005972{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005973 int ret = 0;
5974 struct vm_area_struct *vma = walk->private;
5975 pte_t *pte;
5976 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005977 enum mc_target_type target_type;
5978 union mc_target target;
5979 struct page *page;
5980 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005981
Naoya Horiguchi12724852012-03-21 16:34:28 -07005982 /*
5983 * We don't take compound_lock() here but no race with splitting thp
5984 * happens because:
5985 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
5986 * under splitting, which means there's no concurrent thp split,
5987 * - if another thread runs into split_huge_page() just after we
5988 * entered this if-block, the thread must wait for page table lock
5989 * to be unlocked in __split_huge_page_splitting(), where the main
5990 * part of thp split is not executed yet.
5991 */
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08005992 if (pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07005993 if (mc.precharge < HPAGE_PMD_NR) {
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08005994 spin_unlock(ptl);
Naoya Horiguchi12724852012-03-21 16:34:28 -07005995 return 0;
5996 }
5997 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5998 if (target_type == MC_TARGET_PAGE) {
5999 page = target.page;
6000 if (!isolate_lru_page(page)) {
6001 pc = lookup_page_cgroup(page);
6002 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006003 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006004 mc.precharge -= HPAGE_PMD_NR;
6005 mc.moved_charge += HPAGE_PMD_NR;
6006 }
6007 putback_lru_page(page);
6008 }
6009 put_page(page);
6010 }
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08006011 spin_unlock(ptl);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006012 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006013 }
6014
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006015 if (pmd_trans_unstable(pmd))
6016 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006017retry:
6018 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6019 for (; addr != end; addr += PAGE_SIZE) {
6020 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006021 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006022
6023 if (!mc.precharge)
6024 break;
6025
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006026 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006027 case MC_TARGET_PAGE:
6028 page = target.page;
6029 if (isolate_lru_page(page))
6030 goto put;
6031 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006032 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006033 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006034 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006035 /* we uncharge from mc.from later. */
6036 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006037 }
6038 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006039put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006040 put_page(page);
6041 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006042 case MC_TARGET_SWAP:
6043 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006044 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006045 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006046 /* we fixup refcnts and charges later. */
6047 mc.moved_swap++;
6048 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006049 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006050 default:
6051 break;
6052 }
6053 }
6054 pte_unmap_unlock(pte - 1, ptl);
6055 cond_resched();
6056
6057 if (addr != end) {
6058 /*
6059 * We have consumed all precharges we got in can_attach().
6060 * We try charge one by one, but don't do any additional
6061 * charges to mc.to if we have failed in charge once in attach()
6062 * phase.
6063 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006064 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006065 if (!ret)
6066 goto retry;
6067 }
6068
6069 return ret;
6070}
6071
6072static void mem_cgroup_move_charge(struct mm_struct *mm)
6073{
6074 struct vm_area_struct *vma;
6075
6076 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006077retry:
6078 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6079 /*
6080 * Someone who are holding the mmap_sem might be waiting in
6081 * waitq. So we cancel all extra charges, wake up all waiters,
6082 * and retry. Because we cancel precharges, we might not be able
6083 * to move enough charges, but moving charge is a best-effort
6084 * feature anyway, so it wouldn't be a big problem.
6085 */
6086 __mem_cgroup_clear_mc();
6087 cond_resched();
6088 goto retry;
6089 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006090 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6091 int ret;
6092 struct mm_walk mem_cgroup_move_charge_walk = {
6093 .pmd_entry = mem_cgroup_move_charge_pte_range,
6094 .mm = mm,
6095 .private = vma,
6096 };
6097 if (is_vm_hugetlb_page(vma))
6098 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006099 ret = walk_page_range(vma->vm_start, vma->vm_end,
6100 &mem_cgroup_move_charge_walk);
6101 if (ret)
6102 /*
6103 * means we have consumed all precharges and failed in
6104 * doing additional charge. Just abandon here.
6105 */
6106 break;
6107 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006108 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006109}
6110
Tejun Heoeb954192013-08-08 20:11:23 -04006111static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006112 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006113{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006114 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006115 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006116
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006117 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006118 if (mc.to)
6119 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006120 mmput(mm);
6121 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006122 if (mc.to)
6123 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006124}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006125#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006126static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006127 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006128{
6129 return 0;
6130}
Tejun Heoeb954192013-08-08 20:11:23 -04006131static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006132 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006133{
6134}
Tejun Heoeb954192013-08-08 20:11:23 -04006135static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006136 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006137{
6138}
6139#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006140
Tejun Heof00baae2013-04-15 13:41:15 -07006141/*
6142 * Cgroup retains root cgroups across [un]mount cycles making it necessary
Tejun Heoaa6ec292014-07-09 10:08:08 -04006143 * to verify whether we're attached to the default hierarchy on each mount
6144 * attempt.
Tejun Heof00baae2013-04-15 13:41:15 -07006145 */
Tejun Heoeb954192013-08-08 20:11:23 -04006146static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006147{
6148 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -04006149 * use_hierarchy is forced on the default hierarchy. cgroup core
Tejun Heof00baae2013-04-15 13:41:15 -07006150 * guarantees that @root doesn't have any children, so turning it
6151 * on for the root memcg is enough.
6152 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04006153 if (cgroup_on_dfl(root_css->cgroup))
Tejun Heoeb954192013-08-08 20:11:23 -04006154 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006155}
6156
Tejun Heo073219e2014-02-08 10:36:58 -05006157struct cgroup_subsys memory_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08006158 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006159 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006160 .css_offline = mem_cgroup_css_offline,
6161 .css_free = mem_cgroup_css_free,
Tejun Heo1ced9532014-07-08 18:02:57 -04006162 .css_reset = mem_cgroup_css_reset,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006163 .can_attach = mem_cgroup_can_attach,
6164 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006165 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006166 .bind = mem_cgroup_bind,
Tejun Heo55779642014-07-15 11:05:09 -04006167 .legacy_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006168 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006169};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006170
Andrew Mortonc255a452012-07-31 16:43:02 -07006171#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006172static int __init enable_swap_account(char *s)
6173{
Michal Hockoa2c89902011-05-24 17:12:50 -07006174 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006175 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006176 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006177 really_do_swap_account = 0;
6178 return 1;
6179}
Michal Hockoa2c89902011-05-24 17:12:50 -07006180__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006181
Michal Hocko2d110852013-02-22 16:34:43 -08006182static void __init memsw_file_init(void)
6183{
Tejun Heo2cf669a2014-07-15 11:05:09 -04006184 WARN_ON(cgroup_add_legacy_cftypes(&memory_cgrp_subsys,
6185 memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006186}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006187
6188static void __init enable_swap_cgroup(void)
6189{
6190 if (!mem_cgroup_disabled() && really_do_swap_account) {
6191 do_swap_account = 1;
6192 memsw_file_init();
6193 }
6194}
6195
Michal Hocko2d110852013-02-22 16:34:43 -08006196#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006197static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006198{
6199}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006200#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006201
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006202#ifdef CONFIG_MEMCG_SWAP
6203/**
6204 * mem_cgroup_swapout - transfer a memsw charge to swap
6205 * @page: page whose memsw charge to transfer
6206 * @entry: swap entry to move the charge to
6207 *
6208 * Transfer the memsw charge of @page to @entry.
6209 */
6210void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
6211{
6212 struct page_cgroup *pc;
6213 unsigned short oldid;
6214
6215 VM_BUG_ON_PAGE(PageLRU(page), page);
6216 VM_BUG_ON_PAGE(page_count(page), page);
6217
6218 if (!do_swap_account)
6219 return;
6220
6221 pc = lookup_page_cgroup(page);
6222
6223 /* Readahead page, never charged */
6224 if (!PageCgroupUsed(pc))
6225 return;
6226
6227 VM_BUG_ON_PAGE(!(pc->flags & PCG_MEMSW), page);
6228
6229 oldid = swap_cgroup_record(entry, mem_cgroup_id(pc->mem_cgroup));
6230 VM_BUG_ON_PAGE(oldid, page);
6231
6232 pc->flags &= ~PCG_MEMSW;
6233 css_get(&pc->mem_cgroup->css);
6234 mem_cgroup_swap_statistics(pc->mem_cgroup, true);
6235}
6236
6237/**
6238 * mem_cgroup_uncharge_swap - uncharge a swap entry
6239 * @entry: swap entry to uncharge
6240 *
6241 * Drop the memsw charge associated with @entry.
6242 */
6243void mem_cgroup_uncharge_swap(swp_entry_t entry)
6244{
6245 struct mem_cgroup *memcg;
6246 unsigned short id;
6247
6248 if (!do_swap_account)
6249 return;
6250
6251 id = swap_cgroup_record(entry, 0);
6252 rcu_read_lock();
6253 memcg = mem_cgroup_lookup(id);
6254 if (memcg) {
Johannes Weinerce00a962014-09-05 08:43:57 -04006255 if (!mem_cgroup_is_root(memcg))
Johannes Weiner3e32cb22014-12-10 15:42:31 -08006256 page_counter_uncharge(&memcg->memsw, 1);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006257 mem_cgroup_swap_statistics(memcg, false);
6258 css_put(&memcg->css);
6259 }
6260 rcu_read_unlock();
6261}
6262#endif
6263
Johannes Weiner00501b52014-08-08 14:19:20 -07006264/**
6265 * mem_cgroup_try_charge - try charging a page
6266 * @page: page to charge
6267 * @mm: mm context of the victim
6268 * @gfp_mask: reclaim mode
6269 * @memcgp: charged memcg return
6270 *
6271 * Try to charge @page to the memcg that @mm belongs to, reclaiming
6272 * pages according to @gfp_mask if necessary.
6273 *
6274 * Returns 0 on success, with *@memcgp pointing to the charged memcg.
6275 * Otherwise, an error code is returned.
6276 *
6277 * After page->mapping has been set up, the caller must finalize the
6278 * charge with mem_cgroup_commit_charge(). Or abort the transaction
6279 * with mem_cgroup_cancel_charge() in case page instantiation fails.
6280 */
6281int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
6282 gfp_t gfp_mask, struct mem_cgroup **memcgp)
6283{
6284 struct mem_cgroup *memcg = NULL;
6285 unsigned int nr_pages = 1;
6286 int ret = 0;
6287
6288 if (mem_cgroup_disabled())
6289 goto out;
6290
6291 if (PageSwapCache(page)) {
6292 struct page_cgroup *pc = lookup_page_cgroup(page);
6293 /*
6294 * Every swap fault against a single page tries to charge the
6295 * page, bail as early as possible. shmem_unuse() encounters
6296 * already charged pages, too. The USED bit is protected by
6297 * the page lock, which serializes swap cache removal, which
6298 * in turn serializes uncharging.
6299 */
6300 if (PageCgroupUsed(pc))
6301 goto out;
6302 }
6303
6304 if (PageTransHuge(page)) {
6305 nr_pages <<= compound_order(page);
6306 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
6307 }
6308
6309 if (do_swap_account && PageSwapCache(page))
6310 memcg = try_get_mem_cgroup_from_page(page);
6311 if (!memcg)
6312 memcg = get_mem_cgroup_from_mm(mm);
6313
6314 ret = try_charge(memcg, gfp_mask, nr_pages);
6315
6316 css_put(&memcg->css);
6317
6318 if (ret == -EINTR) {
6319 memcg = root_mem_cgroup;
6320 ret = 0;
6321 }
6322out:
6323 *memcgp = memcg;
6324 return ret;
6325}
6326
6327/**
6328 * mem_cgroup_commit_charge - commit a page charge
6329 * @page: page to charge
6330 * @memcg: memcg to charge the page to
6331 * @lrucare: page might be on LRU already
6332 *
6333 * Finalize a charge transaction started by mem_cgroup_try_charge(),
6334 * after page->mapping has been set up. This must happen atomically
6335 * as part of the page instantiation, i.e. under the page table lock
6336 * for anonymous pages, under the page lock for page and swap cache.
6337 *
6338 * In addition, the page must not be on the LRU during the commit, to
6339 * prevent racing with task migration. If it might be, use @lrucare.
6340 *
6341 * Use mem_cgroup_cancel_charge() to cancel the transaction instead.
6342 */
6343void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
6344 bool lrucare)
6345{
6346 unsigned int nr_pages = 1;
6347
6348 VM_BUG_ON_PAGE(!page->mapping, page);
6349 VM_BUG_ON_PAGE(PageLRU(page) && !lrucare, page);
6350
6351 if (mem_cgroup_disabled())
6352 return;
6353 /*
6354 * Swap faults will attempt to charge the same page multiple
6355 * times. But reuse_swap_page() might have removed the page
6356 * from swapcache already, so we can't check PageSwapCache().
6357 */
6358 if (!memcg)
6359 return;
6360
Johannes Weiner6abb5a82014-08-08 14:19:33 -07006361 commit_charge(page, memcg, lrucare);
6362
Johannes Weiner00501b52014-08-08 14:19:20 -07006363 if (PageTransHuge(page)) {
6364 nr_pages <<= compound_order(page);
6365 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
6366 }
6367
Johannes Weiner6abb5a82014-08-08 14:19:33 -07006368 local_irq_disable();
6369 mem_cgroup_charge_statistics(memcg, page, nr_pages);
6370 memcg_check_events(memcg, page);
6371 local_irq_enable();
Johannes Weiner00501b52014-08-08 14:19:20 -07006372
6373 if (do_swap_account && PageSwapCache(page)) {
6374 swp_entry_t entry = { .val = page_private(page) };
6375 /*
6376 * The swap entry might not get freed for a long time,
6377 * let's not wait for it. The page already received a
6378 * memory+swap charge, drop the swap entry duplicate.
6379 */
6380 mem_cgroup_uncharge_swap(entry);
6381 }
6382}
6383
6384/**
6385 * mem_cgroup_cancel_charge - cancel a page charge
6386 * @page: page to charge
6387 * @memcg: memcg to charge the page to
6388 *
6389 * Cancel a charge transaction started by mem_cgroup_try_charge().
6390 */
6391void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg)
6392{
6393 unsigned int nr_pages = 1;
6394
6395 if (mem_cgroup_disabled())
6396 return;
6397 /*
6398 * Swap faults will attempt to charge the same page multiple
6399 * times. But reuse_swap_page() might have removed the page
6400 * from swapcache already, so we can't check PageSwapCache().
6401 */
6402 if (!memcg)
6403 return;
6404
6405 if (PageTransHuge(page)) {
6406 nr_pages <<= compound_order(page);
6407 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
6408 }
6409
6410 cancel_charge(memcg, nr_pages);
6411}
6412
Johannes Weiner747db952014-08-08 14:19:24 -07006413static void uncharge_batch(struct mem_cgroup *memcg, unsigned long pgpgout,
6414 unsigned long nr_mem, unsigned long nr_memsw,
6415 unsigned long nr_anon, unsigned long nr_file,
6416 unsigned long nr_huge, struct page *dummy_page)
6417{
6418 unsigned long flags;
6419
Johannes Weinerce00a962014-09-05 08:43:57 -04006420 if (!mem_cgroup_is_root(memcg)) {
6421 if (nr_mem)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08006422 page_counter_uncharge(&memcg->memory, nr_mem);
Johannes Weinerce00a962014-09-05 08:43:57 -04006423 if (nr_memsw)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08006424 page_counter_uncharge(&memcg->memsw, nr_memsw);
Johannes Weinerce00a962014-09-05 08:43:57 -04006425 memcg_oom_recover(memcg);
6426 }
Johannes Weiner747db952014-08-08 14:19:24 -07006427
6428 local_irq_save(flags);
6429 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS], nr_anon);
6430 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_CACHE], nr_file);
6431 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE], nr_huge);
6432 __this_cpu_add(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT], pgpgout);
6433 __this_cpu_add(memcg->stat->nr_page_events, nr_anon + nr_file);
6434 memcg_check_events(memcg, dummy_page);
6435 local_irq_restore(flags);
6436}
6437
6438static void uncharge_list(struct list_head *page_list)
6439{
6440 struct mem_cgroup *memcg = NULL;
6441 unsigned long nr_memsw = 0;
6442 unsigned long nr_anon = 0;
6443 unsigned long nr_file = 0;
6444 unsigned long nr_huge = 0;
6445 unsigned long pgpgout = 0;
6446 unsigned long nr_mem = 0;
6447 struct list_head *next;
6448 struct page *page;
6449
6450 next = page_list->next;
6451 do {
6452 unsigned int nr_pages = 1;
6453 struct page_cgroup *pc;
6454
6455 page = list_entry(next, struct page, lru);
6456 next = page->lru.next;
6457
6458 VM_BUG_ON_PAGE(PageLRU(page), page);
6459 VM_BUG_ON_PAGE(page_count(page), page);
6460
6461 pc = lookup_page_cgroup(page);
6462 if (!PageCgroupUsed(pc))
6463 continue;
6464
6465 /*
6466 * Nobody should be changing or seriously looking at
6467 * pc->mem_cgroup and pc->flags at this point, we have
6468 * fully exclusive access to the page.
6469 */
6470
6471 if (memcg != pc->mem_cgroup) {
6472 if (memcg) {
6473 uncharge_batch(memcg, pgpgout, nr_mem, nr_memsw,
6474 nr_anon, nr_file, nr_huge, page);
6475 pgpgout = nr_mem = nr_memsw = 0;
6476 nr_anon = nr_file = nr_huge = 0;
6477 }
6478 memcg = pc->mem_cgroup;
6479 }
6480
6481 if (PageTransHuge(page)) {
6482 nr_pages <<= compound_order(page);
6483 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
6484 nr_huge += nr_pages;
6485 }
6486
6487 if (PageAnon(page))
6488 nr_anon += nr_pages;
6489 else
6490 nr_file += nr_pages;
6491
6492 if (pc->flags & PCG_MEM)
6493 nr_mem += nr_pages;
6494 if (pc->flags & PCG_MEMSW)
6495 nr_memsw += nr_pages;
6496 pc->flags = 0;
6497
6498 pgpgout++;
6499 } while (next != page_list);
6500
6501 if (memcg)
6502 uncharge_batch(memcg, pgpgout, nr_mem, nr_memsw,
6503 nr_anon, nr_file, nr_huge, page);
6504}
6505
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006506/**
6507 * mem_cgroup_uncharge - uncharge a page
6508 * @page: page to uncharge
6509 *
6510 * Uncharge a page previously charged with mem_cgroup_try_charge() and
6511 * mem_cgroup_commit_charge().
6512 */
6513void mem_cgroup_uncharge(struct page *page)
6514{
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006515 struct page_cgroup *pc;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006516
6517 if (mem_cgroup_disabled())
6518 return;
6519
Johannes Weiner747db952014-08-08 14:19:24 -07006520 /* Don't touch page->lru of any random page, pre-check: */
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006521 pc = lookup_page_cgroup(page);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006522 if (!PageCgroupUsed(pc))
6523 return;
6524
Johannes Weiner747db952014-08-08 14:19:24 -07006525 INIT_LIST_HEAD(&page->lru);
6526 uncharge_list(&page->lru);
6527}
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006528
Johannes Weiner747db952014-08-08 14:19:24 -07006529/**
6530 * mem_cgroup_uncharge_list - uncharge a list of page
6531 * @page_list: list of pages to uncharge
6532 *
6533 * Uncharge a list of pages previously charged with
6534 * mem_cgroup_try_charge() and mem_cgroup_commit_charge().
6535 */
6536void mem_cgroup_uncharge_list(struct list_head *page_list)
6537{
6538 if (mem_cgroup_disabled())
6539 return;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006540
Johannes Weiner747db952014-08-08 14:19:24 -07006541 if (!list_empty(page_list))
6542 uncharge_list(page_list);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006543}
6544
6545/**
6546 * mem_cgroup_migrate - migrate a charge to another page
6547 * @oldpage: currently charged page
6548 * @newpage: page to transfer the charge to
6549 * @lrucare: both pages might be on the LRU already
6550 *
6551 * Migrate the charge from @oldpage to @newpage.
6552 *
6553 * Both pages must be locked, @newpage->mapping must be set up.
6554 */
6555void mem_cgroup_migrate(struct page *oldpage, struct page *newpage,
6556 bool lrucare)
6557{
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006558 struct page_cgroup *pc;
6559 int isolated;
6560
6561 VM_BUG_ON_PAGE(!PageLocked(oldpage), oldpage);
6562 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
6563 VM_BUG_ON_PAGE(!lrucare && PageLRU(oldpage), oldpage);
6564 VM_BUG_ON_PAGE(!lrucare && PageLRU(newpage), newpage);
6565 VM_BUG_ON_PAGE(PageAnon(oldpage) != PageAnon(newpage), newpage);
Johannes Weiner6abb5a82014-08-08 14:19:33 -07006566 VM_BUG_ON_PAGE(PageTransHuge(oldpage) != PageTransHuge(newpage),
6567 newpage);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006568
6569 if (mem_cgroup_disabled())
6570 return;
6571
6572 /* Page cache replacement: new page already charged? */
6573 pc = lookup_page_cgroup(newpage);
6574 if (PageCgroupUsed(pc))
6575 return;
6576
6577 /* Re-entrant migration: old page already uncharged? */
6578 pc = lookup_page_cgroup(oldpage);
6579 if (!PageCgroupUsed(pc))
6580 return;
6581
6582 VM_BUG_ON_PAGE(!(pc->flags & PCG_MEM), oldpage);
6583 VM_BUG_ON_PAGE(do_swap_account && !(pc->flags & PCG_MEMSW), oldpage);
6584
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006585 if (lrucare)
6586 lock_page_lru(oldpage, &isolated);
6587
6588 pc->flags = 0;
6589
6590 if (lrucare)
6591 unlock_page_lru(oldpage, isolated);
6592
Johannes Weiner6abb5a82014-08-08 14:19:33 -07006593 commit_charge(newpage, pc->mem_cgroup, lrucare);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006594}
6595
Michal Hocko2d110852013-02-22 16:34:43 -08006596/*
Michal Hocko10813122013-02-22 16:35:41 -08006597 * subsys_initcall() for memory controller.
6598 *
6599 * Some parts like hotcpu_notifier() have to be initialized from this context
6600 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6601 * everything that doesn't depend on a specific mem_cgroup structure should
6602 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006603 */
6604static int __init mem_cgroup_init(void)
6605{
6606 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006607 enable_swap_cgroup();
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07006608 mem_cgroup_soft_limit_tree_init();
Michal Hockoe4777492013-02-22 16:35:40 -08006609 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006610 return 0;
6611}
6612subsys_initcall(mem_cgroup_init);