blob: d6ac0e33e150339cba37ecb3db98be3fecd3702a [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
28#include <linux/res_counter.h>
29#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 */
168 unsigned long long usage_in_excess;/* Set to the value by which */
169 /* 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;
201 u64 threshold;
202};
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;
287 /*
288 * the counter to account for memory usage
289 */
290 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700291
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700292 /* vmpressure notifications */
293 struct vmpressure vmpressure;
294
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -0700295 /* css_online() has been completed */
296 int initialized;
297
Li Zefan465939a2013-07-08 16:00:38 -0700298 /*
299 * the counter to account for mem+swap usage.
300 */
301 struct res_counter memsw;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700302
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800303 /*
Glauber Costa510fc4e2012-12-18 14:21:47 -0800304 * the counter to account for kernel memory usage.
305 */
306 struct res_counter kmem;
307 /*
Balbir Singh18f59ea2009-01-07 18:08:07 -0800308 * Should the accounting and control be hierarchical, per subtree?
309 */
310 bool use_hierarchy;
Glauber Costa510fc4e2012-12-18 14:21:47 -0800311 unsigned long kmem_account_flags; /* See KMEM_ACCOUNTED_*, below */
Michal Hocko79dfdac2011-07-26 16:08:23 -0700312
313 bool oom_lock;
314 atomic_t under_oom;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700315 atomic_t oom_wakeups;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700316
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700317 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700318 /* OOM-Killer disable */
319 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800320
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800321 /* protect arrays of thresholds */
322 struct mutex thresholds_lock;
323
324 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700325 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700326
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800327 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700328 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700329
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700330 /* For oom notifier event fd */
331 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700332
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800333 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800334 * Should we move charges of a task when a task is moved into this
335 * mem_cgroup ? And what type of charges should we move ?
336 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700337 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800338 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700339 * set > 0 if pages under this cgroup are moving to other cgroup.
340 */
341 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700342 /* taken only while moving_account > 0 */
343 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700344 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800345 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800346 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700347 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700348 /*
349 * used when a cpu is offlined or other synchronizations
350 * See mem_cgroup_read_stat().
351 */
352 struct mem_cgroup_stat_cpu nocpu_base;
353 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000354
Michal Hocko5f578162013-04-29 15:07:17 -0700355 atomic_t dead_count;
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700356#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Eric W. Biederman2e685ca2013-10-19 16:26:19 -0700357 struct cg_proto tcp_mem;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000358#endif
Glauber Costa2633d7a2012-12-18 14:22:34 -0800359#if defined(CONFIG_MEMCG_KMEM)
Vladimir Davydovbd673142014-06-04 16:07:40 -0700360 /* analogous to slab_common's slab_caches list, but per-memcg;
361 * protected by memcg_slab_mutex */
Glauber Costa2633d7a2012-12-18 14:22:34 -0800362 struct list_head memcg_slab_caches;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800363 /* Index in the kmem_cache->memcg_params->memcg_caches array */
364 int kmemcg_id;
365#endif
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800366
367 int last_scanned_node;
368#if MAX_NUMNODES > 1
369 nodemask_t scan_nodes;
370 atomic_t numainfo_events;
371 atomic_t numainfo_updating;
372#endif
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700373
Tejun Heofba94802013-11-22 18:20:43 -0500374 /* List of events which userspace want to receive */
375 struct list_head event_list;
376 spinlock_t event_list_lock;
377
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700378 struct mem_cgroup_per_node *nodeinfo[0];
379 /* WARNING: nodeinfo must be the last member here */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800380};
381
Glauber Costa510fc4e2012-12-18 14:21:47 -0800382/* internal only representation about the status of kmem accounting. */
383enum {
Vladimir Davydov6de64be2014-01-23 15:53:08 -0800384 KMEM_ACCOUNTED_ACTIVE, /* accounted by this cgroup itself */
Glauber Costa7de37682012-12-18 14:22:07 -0800385 KMEM_ACCOUNTED_DEAD, /* dead memcg with pending kmem charges */
Glauber Costa510fc4e2012-12-18 14:21:47 -0800386};
387
Glauber Costa510fc4e2012-12-18 14:21:47 -0800388#ifdef CONFIG_MEMCG_KMEM
389static inline void memcg_kmem_set_active(struct mem_cgroup *memcg)
390{
391 set_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
392}
Glauber Costa7de37682012-12-18 14:22:07 -0800393
394static bool memcg_kmem_is_active(struct mem_cgroup *memcg)
395{
396 return test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
397}
398
399static void memcg_kmem_mark_dead(struct mem_cgroup *memcg)
400{
Li Zefan10d5ebf2013-07-08 16:00:33 -0700401 /*
402 * Our caller must use css_get() first, because memcg_uncharge_kmem()
403 * will call css_put() if it sees the memcg is dead.
404 */
405 smp_wmb();
Glauber Costa7de37682012-12-18 14:22:07 -0800406 if (test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags))
407 set_bit(KMEM_ACCOUNTED_DEAD, &memcg->kmem_account_flags);
408}
409
410static bool memcg_kmem_test_and_clear_dead(struct mem_cgroup *memcg)
411{
412 return test_and_clear_bit(KMEM_ACCOUNTED_DEAD,
413 &memcg->kmem_account_flags);
414}
Glauber Costa510fc4e2012-12-18 14:21:47 -0800415#endif
416
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800417/* Stuffs for move charges at task migration. */
418/*
Glauber Costaee5e8472013-02-22 16:34:50 -0800419 * Types of charges to be moved. "move_charge_at_immitgrate" and
420 * "immigrate_flags" are treated as a left-shifted bitmap of these types.
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800421 */
422enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800423 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700424 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800425 NR_MOVE_TYPE,
426};
427
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800428/* "mc" and its members are protected by cgroup_mutex */
429static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800430 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800431 struct mem_cgroup *from;
432 struct mem_cgroup *to;
Glauber Costaee5e8472013-02-22 16:34:50 -0800433 unsigned long immigrate_flags;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800434 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800435 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800436 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800437 struct task_struct *moving_task; /* a task moving charges */
438 wait_queue_head_t waitq; /* a waitq for other context */
439} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700440 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800441 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
442};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800443
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700444static bool move_anon(void)
445{
Glauber Costaee5e8472013-02-22 16:34:50 -0800446 return test_bit(MOVE_CHARGE_TYPE_ANON, &mc.immigrate_flags);
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700447}
448
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700449static bool move_file(void)
450{
Glauber Costaee5e8472013-02-22 16:34:50 -0800451 return test_bit(MOVE_CHARGE_TYPE_FILE, &mc.immigrate_flags);
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700452}
453
Balbir Singh4e416952009-09-23 15:56:39 -0700454/*
455 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
456 * limit reclaim to prevent infinite loops, if they ever occur.
457 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700458#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700459#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700460
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800461enum charge_type {
462 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700463 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800464 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700465 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700466 NR_CHARGE_TYPE,
467};
468
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800469/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800470enum res_type {
471 _MEM,
472 _MEMSWAP,
473 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800474 _KMEM,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800475};
476
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700477#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
478#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800479#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700480/* Used for OOM nofiier */
481#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800482
Balbir Singh75822b42009-09-23 15:56:38 -0700483/*
Glauber Costa09998212013-02-22 16:34:55 -0800484 * The memcg_create_mutex will be held whenever a new cgroup is created.
485 * As a consequence, any change that needs to protect against new child cgroups
486 * appearing has to hold it as well.
487 */
488static DEFINE_MUTEX(memcg_create_mutex);
489
Wanpeng Lib2145142012-07-31 16:46:01 -0700490struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
491{
Tejun Heoa7c6d552013-08-08 20:11:23 -0400492 return s ? container_of(s, struct mem_cgroup, css) : NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -0700493}
494
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700495/* Some nice accessors for the vmpressure. */
496struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
497{
498 if (!memcg)
499 memcg = root_mem_cgroup;
500 return &memcg->vmpressure;
501}
502
503struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr)
504{
505 return &container_of(vmpr, struct mem_cgroup, vmpressure)->css;
506}
507
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700508static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
509{
510 return (memcg == root_mem_cgroup);
511}
512
Li Zefan4219b2d2013-09-23 16:56:29 +0800513/*
514 * We restrict the id in the range of [1, 65535], so it can fit into
515 * an unsigned short.
516 */
517#define MEM_CGROUP_ID_MAX USHRT_MAX
518
Li Zefan34c00c32013-09-23 16:56:01 +0800519static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
520{
Tejun Heo15a4c832014-05-04 15:09:14 -0400521 return memcg->css.id;
Li Zefan34c00c32013-09-23 16:56:01 +0800522}
523
524static inline struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
525{
526 struct cgroup_subsys_state *css;
527
Tejun Heo7d699dd2014-05-04 15:09:13 -0400528 css = css_from_id(id, &memory_cgrp_subsys);
Li Zefan34c00c32013-09-23 16:56:01 +0800529 return mem_cgroup_from_css(css);
530}
531
Glauber Costae1aab162011-12-11 21:47:03 +0000532/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700533#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000534
Glauber Costae1aab162011-12-11 21:47:03 +0000535void sock_update_memcg(struct sock *sk)
536{
Glauber Costa376be5f2012-01-20 04:57:14 +0000537 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000538 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700539 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000540
541 BUG_ON(!sk->sk_prot->proto_cgroup);
542
Glauber Costaf3f511e2012-01-05 20:16:39 +0000543 /* Socket cloning can throw us here with sk_cgrp already
544 * filled. It won't however, necessarily happen from
545 * process context. So the test for root memcg given
546 * the current task's memcg won't help us in this case.
547 *
548 * Respecting the original socket's memcg is a better
549 * decision in this case.
550 */
551 if (sk->sk_cgrp) {
552 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700553 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000554 return;
555 }
556
Glauber Costae1aab162011-12-11 21:47:03 +0000557 rcu_read_lock();
558 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700559 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Li Zefan5347e5a2013-07-08 16:00:30 -0700560 if (!mem_cgroup_is_root(memcg) &&
Tejun Heoec903c02014-05-13 12:11:01 -0400561 memcg_proto_active(cg_proto) &&
562 css_tryget_online(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700563 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000564 }
565 rcu_read_unlock();
566 }
567}
568EXPORT_SYMBOL(sock_update_memcg);
569
570void sock_release_memcg(struct sock *sk)
571{
Glauber Costa376be5f2012-01-20 04:57:14 +0000572 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000573 struct mem_cgroup *memcg;
574 WARN_ON(!sk->sk_cgrp->memcg);
575 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700576 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000577 }
578}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000579
580struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
581{
582 if (!memcg || mem_cgroup_is_root(memcg))
583 return NULL;
584
Eric W. Biederman2e685ca2013-10-19 16:26:19 -0700585 return &memcg->tcp_mem;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000586}
587EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000588
Glauber Costa3f134612012-05-29 15:07:11 -0700589static void disarm_sock_keys(struct mem_cgroup *memcg)
590{
Eric W. Biederman2e685ca2013-10-19 16:26:19 -0700591 if (!memcg_proto_activated(&memcg->tcp_mem))
Glauber Costa3f134612012-05-29 15:07:11 -0700592 return;
593 static_key_slow_dec(&memcg_socket_limit_enabled);
594}
595#else
596static void disarm_sock_keys(struct mem_cgroup *memcg)
597{
598}
599#endif
600
Glauber Costaa8964b92012-12-18 14:22:09 -0800601#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800602/*
603 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
Li Zefanb8627832013-09-23 16:56:47 +0800604 * The main reason for not using cgroup id for this:
605 * this works better in sparse environments, where we have a lot of memcgs,
606 * but only a few kmem-limited. Or also, if we have, for instance, 200
607 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
608 * 200 entry array for that.
Glauber Costa55007d82012-12-18 14:22:38 -0800609 *
610 * The current size of the caches array is stored in
611 * memcg_limited_groups_array_size. It will double each time we have to
612 * increase it.
613 */
614static DEFINE_IDA(kmem_limited_groups);
Glauber Costa749c5412012-12-18 14:23:01 -0800615int memcg_limited_groups_array_size;
616
Glauber Costa55007d82012-12-18 14:22:38 -0800617/*
618 * MIN_SIZE is different than 1, because we would like to avoid going through
619 * the alloc/free process all the time. In a small machine, 4 kmem-limited
620 * cgroups is a reasonable guess. In the future, it could be a parameter or
621 * tunable, but that is strictly not necessary.
622 *
Li Zefanb8627832013-09-23 16:56:47 +0800623 * MAX_SIZE should be as large as the number of cgrp_ids. Ideally, we could get
Glauber Costa55007d82012-12-18 14:22:38 -0800624 * this constant directly from cgroup, but it is understandable that this is
625 * better kept as an internal representation in cgroup.c. In any case, the
Li Zefanb8627832013-09-23 16:56:47 +0800626 * cgrp_id space is not getting any smaller, and we don't have to necessarily
Glauber Costa55007d82012-12-18 14:22:38 -0800627 * increase ours as well if it increases.
628 */
629#define MEMCG_CACHES_MIN_SIZE 4
Li Zefanb8627832013-09-23 16:56:47 +0800630#define MEMCG_CACHES_MAX_SIZE MEM_CGROUP_ID_MAX
Glauber Costa55007d82012-12-18 14:22:38 -0800631
Glauber Costad7f25f82012-12-18 14:22:40 -0800632/*
633 * A lot of the calls to the cache allocation functions are expected to be
634 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
635 * conditional to this static branch, we'll have to allow modules that does
636 * kmem_cache_alloc and the such to see this symbol as well
637 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800638struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800639EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800640
Vladimir Davydovf3bb3042014-10-09 15:28:45 -0700641static void memcg_free_cache_id(int id);
642
Glauber Costaa8964b92012-12-18 14:22:09 -0800643static void disarm_kmem_keys(struct mem_cgroup *memcg)
644{
Glauber Costa55007d82012-12-18 14:22:38 -0800645 if (memcg_kmem_is_active(memcg)) {
Glauber Costaa8964b92012-12-18 14:22:09 -0800646 static_key_slow_dec(&memcg_kmem_enabled_key);
Vladimir Davydovf3bb3042014-10-09 15:28:45 -0700647 memcg_free_cache_id(memcg->kmemcg_id);
Glauber Costa55007d82012-12-18 14:22:38 -0800648 }
Glauber Costabea207c2012-12-18 14:22:11 -0800649 /*
650 * This check can't live in kmem destruction function,
651 * since the charges will outlive the cgroup
652 */
653 WARN_ON(res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0);
Glauber Costaa8964b92012-12-18 14:22:09 -0800654}
655#else
656static void disarm_kmem_keys(struct mem_cgroup *memcg)
657{
658}
659#endif /* CONFIG_MEMCG_KMEM */
660
661static void disarm_static_keys(struct mem_cgroup *memcg)
662{
663 disarm_sock_keys(memcg);
664 disarm_kmem_keys(memcg);
665}
666
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700667static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800668
Balbir Singhf64c3f52009-09-23 15:56:37 -0700669static struct mem_cgroup_per_zone *
Jianyu Zhane2318752014-06-06 14:38:20 -0700670mem_cgroup_zone_zoneinfo(struct mem_cgroup *memcg, struct zone *zone)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700671{
Jianyu Zhane2318752014-06-06 14:38:20 -0700672 int nid = zone_to_nid(zone);
673 int zid = zone_idx(zone);
674
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700675 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700676}
677
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700678struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100679{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700680 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100681}
682
Balbir Singhf64c3f52009-09-23 15:56:37 -0700683static struct mem_cgroup_per_zone *
Jianyu Zhane2318752014-06-06 14:38:20 -0700684mem_cgroup_page_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700685{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700686 int nid = page_to_nid(page);
687 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700688
Jianyu Zhane2318752014-06-06 14:38:20 -0700689 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700690}
691
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700692static struct mem_cgroup_tree_per_zone *
693soft_limit_tree_node_zone(int nid, int zid)
694{
695 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
696}
697
698static struct mem_cgroup_tree_per_zone *
699soft_limit_tree_from_page(struct page *page)
700{
701 int nid = page_to_nid(page);
702 int zid = page_zonenum(page);
703
704 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
705}
706
Johannes Weinercf2c8122014-06-06 14:38:21 -0700707static void __mem_cgroup_insert_exceeded(struct mem_cgroup_per_zone *mz,
708 struct mem_cgroup_tree_per_zone *mctz,
709 unsigned long long new_usage_in_excess)
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700710{
711 struct rb_node **p = &mctz->rb_root.rb_node;
712 struct rb_node *parent = NULL;
713 struct mem_cgroup_per_zone *mz_node;
714
715 if (mz->on_tree)
716 return;
717
718 mz->usage_in_excess = new_usage_in_excess;
719 if (!mz->usage_in_excess)
720 return;
721 while (*p) {
722 parent = *p;
723 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
724 tree_node);
725 if (mz->usage_in_excess < mz_node->usage_in_excess)
726 p = &(*p)->rb_left;
727 /*
728 * We can't avoid mem cgroups that are over their soft
729 * limit by the same amount
730 */
731 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
732 p = &(*p)->rb_right;
733 }
734 rb_link_node(&mz->tree_node, parent, p);
735 rb_insert_color(&mz->tree_node, &mctz->rb_root);
736 mz->on_tree = true;
737}
738
Johannes Weinercf2c8122014-06-06 14:38:21 -0700739static void __mem_cgroup_remove_exceeded(struct mem_cgroup_per_zone *mz,
740 struct mem_cgroup_tree_per_zone *mctz)
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700741{
742 if (!mz->on_tree)
743 return;
744 rb_erase(&mz->tree_node, &mctz->rb_root);
745 mz->on_tree = false;
746}
747
Johannes Weinercf2c8122014-06-06 14:38:21 -0700748static void mem_cgroup_remove_exceeded(struct mem_cgroup_per_zone *mz,
749 struct mem_cgroup_tree_per_zone *mctz)
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700750{
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700751 unsigned long flags;
752
753 spin_lock_irqsave(&mctz->lock, flags);
Johannes Weinercf2c8122014-06-06 14:38:21 -0700754 __mem_cgroup_remove_exceeded(mz, mctz);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700755 spin_unlock_irqrestore(&mctz->lock, flags);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700756}
757
758
759static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
760{
761 unsigned long long excess;
762 struct mem_cgroup_per_zone *mz;
763 struct mem_cgroup_tree_per_zone *mctz;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700764
Jianyu Zhane2318752014-06-06 14:38:20 -0700765 mctz = soft_limit_tree_from_page(page);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700766 /*
767 * Necessary to update all ancestors when hierarchy is used.
768 * because their event counter is not touched.
769 */
770 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
Jianyu Zhane2318752014-06-06 14:38:20 -0700771 mz = mem_cgroup_page_zoneinfo(memcg, page);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700772 excess = res_counter_soft_limit_excess(&memcg->res);
773 /*
774 * We have to update the tree if mz is on RB-tree or
775 * mem is over its softlimit.
776 */
777 if (excess || mz->on_tree) {
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700778 unsigned long flags;
779
780 spin_lock_irqsave(&mctz->lock, flags);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700781 /* if on-tree, remove it */
782 if (mz->on_tree)
Johannes Weinercf2c8122014-06-06 14:38:21 -0700783 __mem_cgroup_remove_exceeded(mz, mctz);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700784 /*
785 * Insert again. mz->usage_in_excess will be updated.
786 * If excess is 0, no tree ops.
787 */
Johannes Weinercf2c8122014-06-06 14:38:21 -0700788 __mem_cgroup_insert_exceeded(mz, mctz, excess);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700789 spin_unlock_irqrestore(&mctz->lock, flags);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700790 }
791 }
792}
793
794static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
795{
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700796 struct mem_cgroup_tree_per_zone *mctz;
Jianyu Zhane2318752014-06-06 14:38:20 -0700797 struct mem_cgroup_per_zone *mz;
798 int nid, zid;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700799
Jianyu Zhane2318752014-06-06 14:38:20 -0700800 for_each_node(nid) {
801 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
802 mz = &memcg->nodeinfo[nid]->zoneinfo[zid];
803 mctz = soft_limit_tree_node_zone(nid, zid);
Johannes Weinercf2c8122014-06-06 14:38:21 -0700804 mem_cgroup_remove_exceeded(mz, mctz);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700805 }
806 }
807}
808
809static struct mem_cgroup_per_zone *
810__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
811{
812 struct rb_node *rightmost = NULL;
813 struct mem_cgroup_per_zone *mz;
814
815retry:
816 mz = NULL;
817 rightmost = rb_last(&mctz->rb_root);
818 if (!rightmost)
819 goto done; /* Nothing to reclaim from */
820
821 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
822 /*
823 * Remove the node now but someone else can add it back,
824 * we will to add it back at the end of reclaim to its correct
825 * position in the tree.
826 */
Johannes Weinercf2c8122014-06-06 14:38:21 -0700827 __mem_cgroup_remove_exceeded(mz, mctz);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700828 if (!res_counter_soft_limit_excess(&mz->memcg->res) ||
Tejun Heoec903c02014-05-13 12:11:01 -0400829 !css_tryget_online(&mz->memcg->css))
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700830 goto retry;
831done:
832 return mz;
833}
834
835static struct mem_cgroup_per_zone *
836mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
837{
838 struct mem_cgroup_per_zone *mz;
839
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700840 spin_lock_irq(&mctz->lock);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700841 mz = __mem_cgroup_largest_soft_limit_node(mctz);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700842 spin_unlock_irq(&mctz->lock);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700843 return mz;
844}
845
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700846/*
847 * Implementation Note: reading percpu statistics for memcg.
848 *
849 * Both of vmstat[] and percpu_counter has threshold and do periodic
850 * synchronization to implement "quick" read. There are trade-off between
851 * reading cost and precision of value. Then, we may have a chance to implement
852 * a periodic synchronizion of counter in memcg's counter.
853 *
854 * But this _read() function is used for user interface now. The user accounts
855 * memory usage by memory cgroup and he _always_ requires exact value because
856 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
857 * have to visit all online cpus and make sum. So, for now, unnecessary
858 * synchronization is not implemented. (just implemented for cpu hotplug)
859 *
860 * If there are kernel internal actions which can make use of some not-exact
861 * value, and reading all cpu value can be performance bottleneck in some
862 * common workload, threashold and synchonization as vmstat[] should be
863 * implemented.
864 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700865static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700866 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800867{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700868 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800869 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800870
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700871 get_online_cpus();
872 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700873 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700874#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700875 spin_lock(&memcg->pcp_counter_lock);
876 val += memcg->nocpu_base.count[idx];
877 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700878#endif
879 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800880 return val;
881}
882
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700883static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700884 enum mem_cgroup_events_index idx)
885{
886 unsigned long val = 0;
887 int cpu;
888
David Rientjes9c567512013-10-16 13:46:43 -0700889 get_online_cpus();
Johannes Weinere9f89742011-03-23 16:42:37 -0700890 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700891 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700892#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700893 spin_lock(&memcg->pcp_counter_lock);
894 val += memcg->nocpu_base.events[idx];
895 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700896#endif
David Rientjes9c567512013-10-16 13:46:43 -0700897 put_online_cpus();
Johannes Weinere9f89742011-03-23 16:42:37 -0700898 return val;
899}
900
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700901static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700902 struct page *page,
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700903 int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800904{
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700905 /*
906 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
907 * counted as CACHE even if it's on ANON LRU.
908 */
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700909 if (PageAnon(page))
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700910 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700911 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800912 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700913 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700914 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700915
David Rientjesb070e652013-05-07 16:18:09 -0700916 if (PageTransHuge(page))
917 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
918 nr_pages);
919
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800920 /* pagein of a big page is an event. So, ignore page size */
921 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700922 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800923 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700924 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800925 nr_pages = -nr_pages; /* for event */
926 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800927
Johannes Weiner13114712012-05-29 15:07:07 -0700928 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800929}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800930
Jianyu Zhane2318752014-06-06 14:38:20 -0700931unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700932{
933 struct mem_cgroup_per_zone *mz;
934
935 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
936 return mz->lru_size[lru];
937}
938
Jianyu Zhane2318752014-06-06 14:38:20 -0700939static unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
940 int nid,
941 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700942{
Jianyu Zhane2318752014-06-06 14:38:20 -0700943 unsigned long nr = 0;
Ying Han889976d2011-05-26 16:25:33 -0700944 int zid;
945
Jianyu Zhane2318752014-06-06 14:38:20 -0700946 VM_BUG_ON((unsigned)nid >= nr_node_ids);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700947
Jianyu Zhane2318752014-06-06 14:38:20 -0700948 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
949 struct mem_cgroup_per_zone *mz;
950 enum lru_list lru;
951
952 for_each_lru(lru) {
953 if (!(BIT(lru) & lru_mask))
954 continue;
955 mz = &memcg->nodeinfo[nid]->zoneinfo[zid];
956 nr += mz->lru_size[lru];
957 }
958 }
959 return nr;
Ying Han889976d2011-05-26 16:25:33 -0700960}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700961
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700962static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700963 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800964{
Jianyu Zhane2318752014-06-06 14:38:20 -0700965 unsigned long nr = 0;
Ying Han889976d2011-05-26 16:25:33 -0700966 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800967
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800968 for_each_node_state(nid, N_MEMORY)
Jianyu Zhane2318752014-06-06 14:38:20 -0700969 nr += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
970 return nr;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800971}
972
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800973static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
974 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800975{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700976 unsigned long val, next;
977
Johannes Weiner13114712012-05-29 15:07:07 -0700978 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700979 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700980 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800981 if ((long)next - (long)val < 0) {
982 switch (target) {
983 case MEM_CGROUP_TARGET_THRESH:
984 next = val + THRESHOLDS_EVENTS_TARGET;
985 break;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700986 case MEM_CGROUP_TARGET_SOFTLIMIT:
987 next = val + SOFTLIMIT_EVENTS_TARGET;
988 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800989 case MEM_CGROUP_TARGET_NUMAINFO:
990 next = val + NUMAINFO_EVENTS_TARGET;
991 break;
992 default:
993 break;
994 }
995 __this_cpu_write(memcg->stat->targets[target], next);
996 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700997 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800998 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800999}
1000
1001/*
1002 * Check events in order.
1003 *
1004 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001005static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08001006{
1007 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001008 if (unlikely(mem_cgroup_event_ratelimit(memcg,
1009 MEM_CGROUP_TARGET_THRESH))) {
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001010 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -08001011 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001012
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001013 do_softlimit = mem_cgroup_event_ratelimit(memcg,
1014 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001015#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001016 do_numainfo = mem_cgroup_event_ratelimit(memcg,
1017 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001018#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001019 mem_cgroup_threshold(memcg);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001020 if (unlikely(do_softlimit))
1021 mem_cgroup_update_tree(memcg, page);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001022#if MAX_NUMNODES > 1
1023 if (unlikely(do_numainfo))
1024 atomic_inc(&memcg->numainfo_events);
1025#endif
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001026 }
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08001027}
1028
Balbir Singhcf475ad2008-04-29 01:00:16 -07001029struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001030{
Balbir Singh31a78f22008-09-28 23:09:31 +01001031 /*
1032 * mm_update_next_owner() may clear mm->owner to NULL
1033 * if it races with swapoff, page migration, etc.
1034 * So this can be called with p == NULL.
1035 */
1036 if (unlikely(!p))
1037 return NULL;
1038
Tejun Heo073219e2014-02-08 10:36:58 -05001039 return mem_cgroup_from_css(task_css(p, memory_cgrp_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001040}
1041
Johannes Weinerdf381972014-04-07 15:37:43 -07001042static struct mem_cgroup *get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001043{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001044 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001045
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001046 rcu_read_lock();
1047 do {
Michal Hocko6f6acb02014-05-22 11:54:19 -07001048 /*
1049 * Page cache insertions can happen withou an
1050 * actual mm context, e.g. during disk probing
1051 * on boot, loopback IO, acct() writes etc.
1052 */
1053 if (unlikely(!mm))
Johannes Weinerdf381972014-04-07 15:37:43 -07001054 memcg = root_mem_cgroup;
Michal Hocko6f6acb02014-05-22 11:54:19 -07001055 else {
1056 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1057 if (unlikely(!memcg))
1058 memcg = root_mem_cgroup;
1059 }
Tejun Heoec903c02014-05-13 12:11:01 -04001060 } while (!css_tryget_online(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001061 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001062 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001063}
1064
Michal Hocko16248d82013-04-29 15:07:19 -07001065/*
1066 * Returns a next (in a pre-order walk) alive memcg (with elevated css
1067 * ref. count) or NULL if the whole root's subtree has been visited.
1068 *
1069 * helper function to be used by mem_cgroup_iter
1070 */
1071static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
Andrew Morton694fbc02013-09-24 15:27:37 -07001072 struct mem_cgroup *last_visited)
Michal Hocko16248d82013-04-29 15:07:19 -07001073{
Tejun Heo492eb212013-08-08 20:11:25 -04001074 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -07001075
Tejun Heobd8815a2013-08-08 20:11:27 -04001076 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -07001077skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -04001078 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -07001079
1080 /*
1081 * Even if we found a group we have to make sure it is
1082 * alive. css && !memcg means that the groups should be
1083 * skipped and we should continue the tree walk.
1084 * last_visited css is safe to use because it is
1085 * protected by css_get and the tree walk is rcu safe.
Michal Hocko0eef6152014-01-23 15:53:37 -08001086 *
1087 * We do not take a reference on the root of the tree walk
1088 * because we might race with the root removal when it would
1089 * be the only node in the iterated hierarchy and mem_cgroup_iter
1090 * would end up in an endless loop because it expects that at
1091 * least one valid node will be returned. Root cannot disappear
1092 * because caller of the iterator should hold it already so
1093 * skipping css reference should be safe.
Michal Hocko16248d82013-04-29 15:07:19 -07001094 */
Tejun Heo492eb212013-08-08 20:11:25 -04001095 if (next_css) {
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -07001096 struct mem_cgroup *memcg = mem_cgroup_from_css(next_css);
1097
1098 if (next_css == &root->css)
1099 return memcg;
1100
1101 if (css_tryget_online(next_css)) {
1102 /*
1103 * Make sure the memcg is initialized:
1104 * mem_cgroup_css_online() orders the the
1105 * initialization against setting the flag.
1106 */
1107 if (smp_load_acquire(&memcg->initialized))
1108 return memcg;
1109 css_put(next_css);
1110 }
Michal Hocko0eef6152014-01-23 15:53:37 -08001111
1112 prev_css = next_css;
1113 goto skip_node;
Michal Hocko16248d82013-04-29 15:07:19 -07001114 }
1115
1116 return NULL;
1117}
1118
Johannes Weiner519ebea2013-07-03 15:04:51 -07001119static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
1120{
1121 /*
1122 * When a group in the hierarchy below root is destroyed, the
1123 * hierarchy iterator can no longer be trusted since it might
1124 * have pointed to the destroyed group. Invalidate it.
1125 */
1126 atomic_inc(&root->dead_count);
1127}
1128
1129static struct mem_cgroup *
1130mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
1131 struct mem_cgroup *root,
1132 int *sequence)
1133{
1134 struct mem_cgroup *position = NULL;
1135 /*
1136 * A cgroup destruction happens in two stages: offlining and
1137 * release. They are separated by a RCU grace period.
1138 *
1139 * If the iterator is valid, we may still race with an
1140 * offlining. The RCU lock ensures the object won't be
1141 * released, tryget will fail if we lost the race.
1142 */
1143 *sequence = atomic_read(&root->dead_count);
1144 if (iter->last_dead_count == *sequence) {
1145 smp_rmb();
1146 position = iter->last_visited;
Michal Hockoecc736f2014-01-23 15:53:35 -08001147
1148 /*
1149 * We cannot take a reference to root because we might race
1150 * with root removal and returning NULL would end up in
1151 * an endless loop on the iterator user level when root
1152 * would be returned all the time.
1153 */
1154 if (position && position != root &&
Tejun Heoec903c02014-05-13 12:11:01 -04001155 !css_tryget_online(&position->css))
Johannes Weiner519ebea2013-07-03 15:04:51 -07001156 position = NULL;
1157 }
1158 return position;
1159}
1160
1161static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
1162 struct mem_cgroup *last_visited,
1163 struct mem_cgroup *new_position,
Michal Hockoecc736f2014-01-23 15:53:35 -08001164 struct mem_cgroup *root,
Johannes Weiner519ebea2013-07-03 15:04:51 -07001165 int sequence)
1166{
Michal Hockoecc736f2014-01-23 15:53:35 -08001167 /* root reference counting symmetric to mem_cgroup_iter_load */
1168 if (last_visited && last_visited != root)
Johannes Weiner519ebea2013-07-03 15:04:51 -07001169 css_put(&last_visited->css);
1170 /*
1171 * We store the sequence count from the time @last_visited was
1172 * loaded successfully instead of rereading it here so that we
1173 * don't lose destruction events in between. We could have
1174 * raced with the destruction of @new_position after all.
1175 */
1176 iter->last_visited = new_position;
1177 smp_wmb();
1178 iter->last_dead_count = sequence;
1179}
1180
Johannes Weiner56600482012-01-12 17:17:59 -08001181/**
1182 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1183 * @root: hierarchy root
1184 * @prev: previously returned memcg, NULL on first invocation
1185 * @reclaim: cookie for shared reclaim walks, NULL for full walks
1186 *
1187 * Returns references to children of the hierarchy below @root, or
1188 * @root itself, or %NULL after a full round-trip.
1189 *
1190 * Caller must pass the return value in @prev on subsequent
1191 * invocations for reference counting, or use mem_cgroup_iter_break()
1192 * to cancel a hierarchy walk before the round-trip is complete.
1193 *
1194 * Reclaimers can specify a zone and a priority level in @reclaim to
1195 * divide up the memcgs in the hierarchy among all concurrent
1196 * reclaimers operating on the same zone and priority.
1197 */
Andrew Morton694fbc02013-09-24 15:27:37 -07001198struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -08001199 struct mem_cgroup *prev,
Andrew Morton694fbc02013-09-24 15:27:37 -07001200 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001201{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001202 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001203 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001204
Andrew Morton694fbc02013-09-24 15:27:37 -07001205 if (mem_cgroup_disabled())
1206 return NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001207
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001208 if (!root)
1209 root = root_mem_cgroup;
1210
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001211 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -07001212 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001213
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001214 if (!root->use_hierarchy && root != root_mem_cgroup) {
1215 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001216 goto out_css_put;
Andrew Morton694fbc02013-09-24 15:27:37 -07001217 return root;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001218 }
1219
Michal Hocko542f85f2013-04-29 15:07:15 -07001220 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001221 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001222 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001223 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001224
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001225 if (reclaim) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001226 struct mem_cgroup_per_zone *mz;
1227
Jianyu Zhane2318752014-06-06 14:38:20 -07001228 mz = mem_cgroup_zone_zoneinfo(root, reclaim->zone);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001229 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001230 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001231 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001232 goto out_unlock;
1233 }
Michal Hocko5f578162013-04-29 15:07:17 -07001234
Johannes Weiner519ebea2013-07-03 15:04:51 -07001235 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001236 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001237
Andrew Morton694fbc02013-09-24 15:27:37 -07001238 memcg = __mem_cgroup_iter_next(root, last_visited);
Michal Hocko542f85f2013-04-29 15:07:15 -07001239
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001240 if (reclaim) {
Michal Hockoecc736f2014-01-23 15:53:35 -08001241 mem_cgroup_iter_update(iter, last_visited, memcg, root,
1242 seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001243
Michal Hocko19f39402013-04-29 15:07:18 -07001244 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001245 iter->generation++;
1246 else if (!prev && memcg)
1247 reclaim->generation = iter->generation;
1248 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001249
Andrew Morton694fbc02013-09-24 15:27:37 -07001250 if (prev && !memcg)
Michal Hocko542f85f2013-04-29 15:07:15 -07001251 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001252 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001253out_unlock:
1254 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001255out_css_put:
1256 if (prev && prev != root)
1257 css_put(&prev->css);
1258
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001259 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001260}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001261
Johannes Weiner56600482012-01-12 17:17:59 -08001262/**
1263 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1264 * @root: hierarchy root
1265 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1266 */
1267void mem_cgroup_iter_break(struct mem_cgroup *root,
1268 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001269{
1270 if (!root)
1271 root = root_mem_cgroup;
1272 if (prev && prev != root)
1273 css_put(&prev->css);
1274}
1275
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001276/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001277 * Iteration constructs for visiting all cgroups (under a tree). If
1278 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1279 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001280 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001281#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001282 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001283 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001284 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001285
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001286#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001287 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001288 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001289 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001290
David Rientjes68ae5642012-12-12 13:51:57 -08001291void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001292{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001293 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001294
Ying Han456f9982011-05-26 16:25:38 -07001295 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001296 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1297 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001298 goto out;
1299
1300 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001301 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001302 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1303 break;
1304 case PGMAJFAULT:
1305 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001306 break;
1307 default:
1308 BUG();
1309 }
1310out:
1311 rcu_read_unlock();
1312}
David Rientjes68ae5642012-12-12 13:51:57 -08001313EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001314
Johannes Weiner925b7672012-01-12 17:18:15 -08001315/**
1316 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1317 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001318 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001319 *
1320 * Returns the lru list vector holding pages for the given @zone and
1321 * @mem. This can be the global zone lruvec, if the memory controller
1322 * is disabled.
1323 */
1324struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1325 struct mem_cgroup *memcg)
1326{
1327 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001328 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001329
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001330 if (mem_cgroup_disabled()) {
1331 lruvec = &zone->lruvec;
1332 goto out;
1333 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001334
Jianyu Zhane2318752014-06-06 14:38:20 -07001335 mz = mem_cgroup_zone_zoneinfo(memcg, zone);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001336 lruvec = &mz->lruvec;
1337out:
1338 /*
1339 * Since a node can be onlined after the mem_cgroup was created,
1340 * we have to be prepared to initialize lruvec->zone here;
1341 * and if offlined then reonlined, we need to reinitialize it.
1342 */
1343 if (unlikely(lruvec->zone != zone))
1344 lruvec->zone = zone;
1345 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001346}
1347
Johannes Weiner925b7672012-01-12 17:18:15 -08001348/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001349 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001350 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001351 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001352 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001353struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001354{
1355 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001356 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001357 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001358 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001359
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001360 if (mem_cgroup_disabled()) {
1361 lruvec = &zone->lruvec;
1362 goto out;
1363 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001364
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001365 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001366 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001367
1368 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001369 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001370 * an uncharged page off lru does nothing to secure
1371 * its former mem_cgroup from sudden removal.
1372 *
1373 * Our caller holds lru_lock, and PageCgroupUsed is updated
1374 * under page_cgroup lock: between them, they make all uses
1375 * of pc->mem_cgroup safe.
1376 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001377 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001378 pc->mem_cgroup = memcg = root_mem_cgroup;
1379
Jianyu Zhane2318752014-06-06 14:38:20 -07001380 mz = mem_cgroup_page_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001381 lruvec = &mz->lruvec;
1382out:
1383 /*
1384 * Since a node can be onlined after the mem_cgroup was created,
1385 * we have to be prepared to initialize lruvec->zone here;
1386 * and if offlined then reonlined, we need to reinitialize it.
1387 */
1388 if (unlikely(lruvec->zone != zone))
1389 lruvec->zone = zone;
1390 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001391}
1392
1393/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001394 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1395 * @lruvec: mem_cgroup per zone lru vector
1396 * @lru: index of lru list the page is sitting on
1397 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001398 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001399 * This function must be called when a page is added to or removed from an
1400 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001401 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001402void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1403 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001404{
1405 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001406 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001407
1408 if (mem_cgroup_disabled())
1409 return;
1410
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001411 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1412 lru_size = mz->lru_size + lru;
1413 *lru_size += nr_pages;
1414 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001415}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001416
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001417/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001418 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001419 * hierarchy subtree
1420 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001421bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1422 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001423{
Johannes Weiner91c637342012-05-29 15:06:24 -07001424 if (root_memcg == memcg)
1425 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001426 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001427 return false;
Li Zefanb47f77b2013-09-23 16:55:43 +08001428 return cgroup_is_descendant(memcg->css.cgroup, root_memcg->css.cgroup);
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001429}
1430
1431static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1432 struct mem_cgroup *memcg)
1433{
1434 bool ret;
1435
Johannes Weiner91c637342012-05-29 15:06:24 -07001436 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001437 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001438 rcu_read_unlock();
1439 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001440}
1441
David Rientjesffbdccf2013-07-03 15:01:23 -07001442bool task_in_mem_cgroup(struct task_struct *task,
1443 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001444{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001445 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001446 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001447 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001448
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001449 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001450 if (p) {
Johannes Weinerdf381972014-04-07 15:37:43 -07001451 curr = get_mem_cgroup_from_mm(p->mm);
David Rientjesde077d22012-01-12 17:18:52 -08001452 task_unlock(p);
1453 } else {
1454 /*
1455 * All threads may have already detached their mm's, but the oom
1456 * killer still needs to detect if they have already been oom
1457 * killed to prevent needlessly killing additional tasks.
1458 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001459 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001460 curr = mem_cgroup_from_task(task);
1461 if (curr)
1462 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001463 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001464 }
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001465 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001466 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001467 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001468 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1469 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001470 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001471 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001472 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001473 return ret;
1474}
1475
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001476int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001477{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001478 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001479 unsigned long inactive;
1480 unsigned long active;
1481 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001482
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001483 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1484 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001485
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001486 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1487 if (gb)
1488 inactive_ratio = int_sqrt(10 * gb);
1489 else
1490 inactive_ratio = 1;
1491
Johannes Weiner9b272972011-11-02 13:38:23 -07001492 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001493}
1494
Balbir Singh6d61ef42009-01-07 18:08:06 -08001495#define mem_cgroup_from_res_counter(counter, member) \
1496 container_of(counter, struct mem_cgroup, member)
1497
Johannes Weiner19942822011-02-01 15:52:43 -08001498/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001499 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001500 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001501 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001502 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001503 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001504 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001505static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001506{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001507 unsigned long long margin;
1508
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001509 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001510 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001511 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001512 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001513}
1514
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001515int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001516{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001517 /* root ? */
Linus Torvalds14208b02014-06-09 15:03:33 -07001518 if (mem_cgroup_disabled() || !memcg->css.parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001519 return vm_swappiness;
1520
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001521 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001522}
1523
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001524/*
1525 * memcg->moving_account is used for checking possibility that some thread is
1526 * calling move_account(). When a thread on CPU-A starts moving pages under
1527 * a memcg, other threads should check memcg->moving_account under
1528 * rcu_read_lock(), like this:
1529 *
1530 * CPU-A CPU-B
1531 * rcu_read_lock()
1532 * memcg->moving_account+1 if (memcg->mocing_account)
1533 * take heavy locks.
1534 * synchronize_rcu() update something.
1535 * rcu_read_unlock()
1536 * start move here.
1537 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001538
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001539static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001540{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001541 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001542 synchronize_rcu();
1543}
1544
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001545static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001546{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001547 /*
1548 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1549 * We check NULL in callee rather than caller.
1550 */
Johannes Weinerd7365e72014-10-29 14:50:48 -07001551 if (memcg)
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001552 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001553}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001554
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001555/*
Qiang Huangbdcbb652014-06-04 16:08:21 -07001556 * A routine for checking "mem" is under move_account() or not.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001557 *
Qiang Huangbdcbb652014-06-04 16:08:21 -07001558 * Checking a cgroup is mc.from or mc.to or under hierarchy of
1559 * moving cgroups. This is for waiting at high-memory pressure
1560 * caused by "move".
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001561 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001562static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001563{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001564 struct mem_cgroup *from;
1565 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001566 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001567 /*
1568 * Unlike task_move routines, we access mc.to, mc.from not under
1569 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1570 */
1571 spin_lock(&mc.lock);
1572 from = mc.from;
1573 to = mc.to;
1574 if (!from)
1575 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001576
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001577 ret = mem_cgroup_same_or_subtree(memcg, from)
1578 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001579unlock:
1580 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001581 return ret;
1582}
1583
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001584static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001585{
1586 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001587 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001588 DEFINE_WAIT(wait);
1589 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1590 /* moving charge context might have finished. */
1591 if (mc.moving_task)
1592 schedule();
1593 finish_wait(&mc.waitq, &wait);
1594 return true;
1595 }
1596 }
1597 return false;
1598}
1599
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001600/*
1601 * Take this lock when
1602 * - a code tries to modify page's memcg while it's USED.
1603 * - a code tries to modify page state accounting in a memcg.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001604 */
1605static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1606 unsigned long *flags)
1607{
1608 spin_lock_irqsave(&memcg->move_lock, *flags);
1609}
1610
1611static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1612 unsigned long *flags)
1613{
1614 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1615}
1616
Sha Zhengju58cf1882013-02-22 16:32:05 -08001617#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001618/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001619 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001620 * @memcg: The memory cgroup that went over limit
1621 * @p: Task that is going to be killed
1622 *
1623 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1624 * enabled
1625 */
1626void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1627{
Tejun Heoe61734c2014-02-12 09:29:50 -05001628 /* oom_info_lock ensures that parallel ooms do not interleave */
Michal Hocko08088cb2014-02-25 15:01:44 -08001629 static DEFINE_MUTEX(oom_info_lock);
Sha Zhengju58cf1882013-02-22 16:32:05 -08001630 struct mem_cgroup *iter;
1631 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001632
Sha Zhengju58cf1882013-02-22 16:32:05 -08001633 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001634 return;
1635
Michal Hocko08088cb2014-02-25 15:01:44 -08001636 mutex_lock(&oom_info_lock);
Balbir Singhe2224322009-04-02 16:57:39 -07001637 rcu_read_lock();
1638
Tejun Heoe61734c2014-02-12 09:29:50 -05001639 pr_info("Task in ");
1640 pr_cont_cgroup_path(task_cgroup(p, memory_cgrp_id));
1641 pr_info(" killed as a result of limit of ");
1642 pr_cont_cgroup_path(memcg->css.cgroup);
1643 pr_info("\n");
Balbir Singhe2224322009-04-02 16:57:39 -07001644
Balbir Singhe2224322009-04-02 16:57:39 -07001645 rcu_read_unlock();
1646
Andrew Mortond0451972013-02-22 16:32:06 -08001647 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001648 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1649 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1650 res_counter_read_u64(&memcg->res, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001651 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001652 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1653 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1654 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001655 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
Glauber Costa510fc4e2012-12-18 14:21:47 -08001656 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1657 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1658 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Sha Zhengju58cf1882013-02-22 16:32:05 -08001659
1660 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heoe61734c2014-02-12 09:29:50 -05001661 pr_info("Memory cgroup stats for ");
1662 pr_cont_cgroup_path(iter->css.cgroup);
Sha Zhengju58cf1882013-02-22 16:32:05 -08001663 pr_cont(":");
1664
1665 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1666 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1667 continue;
1668 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1669 K(mem_cgroup_read_stat(iter, i)));
1670 }
1671
1672 for (i = 0; i < NR_LRU_LISTS; i++)
1673 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1674 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1675
1676 pr_cont("\n");
1677 }
Michal Hocko08088cb2014-02-25 15:01:44 -08001678 mutex_unlock(&oom_info_lock);
Balbir Singhe2224322009-04-02 16:57:39 -07001679}
1680
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001681/*
1682 * This function returns the number of memcg under hierarchy tree. Returns
1683 * 1(self count) if no children.
1684 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001685static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001686{
1687 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001688 struct mem_cgroup *iter;
1689
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001690 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001691 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001692 return num;
1693}
1694
Balbir Singh6d61ef42009-01-07 18:08:06 -08001695/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001696 * Return the memory (and swap, if configured) limit for a memcg.
1697 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001698static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001699{
1700 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001701
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001702 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001703
David Rientjesa63d83f2010-08-09 17:19:46 -07001704 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001705 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001706 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001707 if (mem_cgroup_swappiness(memcg)) {
1708 u64 memsw;
1709
1710 limit += total_swap_pages << PAGE_SHIFT;
1711 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1712
1713 /*
1714 * If memsw is finite and limits the amount of swap space
1715 * available to this memcg, return that limit.
1716 */
1717 limit = min(limit, memsw);
1718 }
1719
1720 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001721}
1722
David Rientjes19965462012-12-11 16:00:26 -08001723static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1724 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001725{
1726 struct mem_cgroup *iter;
1727 unsigned long chosen_points = 0;
1728 unsigned long totalpages;
1729 unsigned int points = 0;
1730 struct task_struct *chosen = NULL;
1731
David Rientjes876aafb2012-07-31 16:43:48 -07001732 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001733 * If current has a pending SIGKILL or is exiting, then automatically
1734 * select it. The goal is to allow it to allocate so that it may
1735 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001736 */
David Rientjes465adcf2013-04-29 15:08:45 -07001737 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001738 set_thread_flag(TIF_MEMDIE);
1739 return;
1740 }
1741
1742 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001743 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1744 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001745 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001746 struct task_struct *task;
1747
Tejun Heo72ec7022013-08-08 20:11:26 -04001748 css_task_iter_start(&iter->css, &it);
1749 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001750 switch (oom_scan_process_thread(task, totalpages, NULL,
1751 false)) {
1752 case OOM_SCAN_SELECT:
1753 if (chosen)
1754 put_task_struct(chosen);
1755 chosen = task;
1756 chosen_points = ULONG_MAX;
1757 get_task_struct(chosen);
1758 /* fall through */
1759 case OOM_SCAN_CONTINUE:
1760 continue;
1761 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001762 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001763 mem_cgroup_iter_break(memcg, iter);
1764 if (chosen)
1765 put_task_struct(chosen);
1766 return;
1767 case OOM_SCAN_OK:
1768 break;
1769 };
1770 points = oom_badness(task, memcg, NULL, totalpages);
David Rientjesd49ad932014-01-23 15:53:34 -08001771 if (!points || points < chosen_points)
1772 continue;
1773 /* Prefer thread group leaders for display purposes */
1774 if (points == chosen_points &&
1775 thread_group_leader(chosen))
1776 continue;
1777
1778 if (chosen)
1779 put_task_struct(chosen);
1780 chosen = task;
1781 chosen_points = points;
1782 get_task_struct(chosen);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001783 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001784 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001785 }
1786
1787 if (!chosen)
1788 return;
1789 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001790 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1791 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001792}
1793
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001794/**
1795 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001796 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001797 * @nid: the node ID to be checked.
1798 * @noswap : specify true here if the user wants flle only information.
1799 *
1800 * This function returns whether the specified memcg contains any
1801 * reclaimable pages on a node. Returns true if there are any reclaimable
1802 * pages in the node.
1803 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001804static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001805 int nid, bool noswap)
1806{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001807 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001808 return true;
1809 if (noswap || !total_swap_pages)
1810 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001811 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001812 return true;
1813 return false;
1814
1815}
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001816#if MAX_NUMNODES > 1
Ying Han889976d2011-05-26 16:25:33 -07001817
1818/*
1819 * Always updating the nodemask is not very good - even if we have an empty
1820 * list or the wrong list here, we can start from some node and traverse all
1821 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1822 *
1823 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001824static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001825{
1826 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001827 /*
1828 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1829 * pagein/pageout changes since the last update.
1830 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001831 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001832 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001833 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001834 return;
1835
Ying Han889976d2011-05-26 16:25:33 -07001836 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001837 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001838
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001839 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001840
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001841 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1842 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001843 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001844
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001845 atomic_set(&memcg->numainfo_events, 0);
1846 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001847}
1848
1849/*
1850 * Selecting a node where we start reclaim from. Because what we need is just
1851 * reducing usage counter, start from anywhere is O,K. Considering
1852 * memory reclaim from current node, there are pros. and cons.
1853 *
1854 * Freeing memory from current node means freeing memory from a node which
1855 * we'll use or we've used. So, it may make LRU bad. And if several threads
1856 * hit limits, it will see a contention on a node. But freeing from remote
1857 * node means more costs for memory reclaim because of memory latency.
1858 *
1859 * Now, we use round-robin. Better algorithm is welcomed.
1860 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001861int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001862{
1863 int node;
1864
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001865 mem_cgroup_may_update_nodemask(memcg);
1866 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001867
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001868 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001869 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001870 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001871 /*
1872 * We call this when we hit limit, not when pages are added to LRU.
1873 * No LRU may hold pages because all pages are UNEVICTABLE or
1874 * memcg is too small and all pages are not on LRU. In that case,
1875 * we use curret node.
1876 */
1877 if (unlikely(node == MAX_NUMNODES))
1878 node = numa_node_id();
1879
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001880 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001881 return node;
1882}
1883
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001884/*
1885 * Check all nodes whether it contains reclaimable pages or not.
1886 * For quick scan, we make use of scan_nodes. This will allow us to skip
1887 * unused nodes. But scan_nodes is lazily updated and may not cotain
1888 * enough new information. We need to do double check.
1889 */
1890static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
1891{
1892 int nid;
1893
1894 /*
1895 * quick check...making use of scan_node.
1896 * We can skip unused nodes.
1897 */
1898 if (!nodes_empty(memcg->scan_nodes)) {
1899 for (nid = first_node(memcg->scan_nodes);
1900 nid < MAX_NUMNODES;
1901 nid = next_node(nid, memcg->scan_nodes)) {
1902
1903 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
1904 return true;
1905 }
1906 }
1907 /*
1908 * Check rest of nodes.
1909 */
1910 for_each_node_state(nid, N_MEMORY) {
1911 if (node_isset(nid, memcg->scan_nodes))
1912 continue;
1913 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
1914 return true;
1915 }
1916 return false;
1917}
1918
Ying Han889976d2011-05-26 16:25:33 -07001919#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001920int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001921{
1922 return 0;
1923}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001924
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001925static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
1926{
1927 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
1928}
Ying Han889976d2011-05-26 16:25:33 -07001929#endif
1930
Andrew Morton0608f432013-09-24 15:27:41 -07001931static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1932 struct zone *zone,
1933 gfp_t gfp_mask,
1934 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001935{
Andrew Morton0608f432013-09-24 15:27:41 -07001936 struct mem_cgroup *victim = NULL;
1937 int total = 0;
1938 int loop = 0;
1939 unsigned long excess;
1940 unsigned long nr_scanned;
1941 struct mem_cgroup_reclaim_cookie reclaim = {
1942 .zone = zone,
1943 .priority = 0,
1944 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001945
Andrew Morton0608f432013-09-24 15:27:41 -07001946 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001947
Andrew Morton0608f432013-09-24 15:27:41 -07001948 while (1) {
1949 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
1950 if (!victim) {
1951 loop++;
1952 if (loop >= 2) {
1953 /*
1954 * If we have not been able to reclaim
1955 * anything, it might because there are
1956 * no reclaimable pages under this hierarchy
1957 */
1958 if (!total)
1959 break;
1960 /*
1961 * We want to do more targeted reclaim.
1962 * excess >> 2 is not to excessive so as to
1963 * reclaim too much, nor too less that we keep
1964 * coming back to reclaim from this cgroup
1965 */
1966 if (total >= (excess >> 2) ||
1967 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
1968 break;
1969 }
1970 continue;
1971 }
1972 if (!mem_cgroup_reclaimable(victim, false))
1973 continue;
1974 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1975 zone, &nr_scanned);
1976 *total_scanned += nr_scanned;
1977 if (!res_counter_soft_limit_excess(&root_memcg->res))
1978 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001979 }
Andrew Morton0608f432013-09-24 15:27:41 -07001980 mem_cgroup_iter_break(root_memcg, victim);
1981 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001982}
1983
Johannes Weiner0056f4e2013-10-31 16:34:14 -07001984#ifdef CONFIG_LOCKDEP
1985static struct lockdep_map memcg_oom_lock_dep_map = {
1986 .name = "memcg_oom_lock",
1987};
1988#endif
1989
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001990static DEFINE_SPINLOCK(memcg_oom_lock);
1991
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001992/*
1993 * Check OOM-Killer is already running under our hierarchy.
1994 * If someone is running, return false.
1995 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001996static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001997{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001998 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001999
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002000 spin_lock(&memcg_oom_lock);
2001
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002002 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07002003 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07002004 /*
2005 * this subtree of our hierarchy is already locked
2006 * so we cannot give a lock.
2007 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07002008 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002009 mem_cgroup_iter_break(memcg, iter);
2010 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07002011 } else
2012 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07002013 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002014
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002015 if (failed) {
2016 /*
2017 * OK, we failed to lock the whole subtree so we have
2018 * to clean up what we set up to the failing subtree
2019 */
2020 for_each_mem_cgroup_tree(iter, memcg) {
2021 if (iter == failed) {
2022 mem_cgroup_iter_break(memcg, iter);
2023 break;
2024 }
2025 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07002026 }
Johannes Weiner0056f4e2013-10-31 16:34:14 -07002027 } else
2028 mutex_acquire(&memcg_oom_lock_dep_map, 0, 1, _RET_IP_);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002029
2030 spin_unlock(&memcg_oom_lock);
2031
2032 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002033}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002034
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002035static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002036{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07002037 struct mem_cgroup *iter;
2038
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002039 spin_lock(&memcg_oom_lock);
Johannes Weiner0056f4e2013-10-31 16:34:14 -07002040 mutex_release(&memcg_oom_lock_dep_map, 1, _RET_IP_);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002041 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002042 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002043 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07002044}
2045
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002046static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002047{
2048 struct mem_cgroup *iter;
2049
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002050 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002051 atomic_inc(&iter->under_oom);
2052}
2053
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002054static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002055{
2056 struct mem_cgroup *iter;
2057
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002058 /*
2059 * When a new child is created while the hierarchy is under oom,
2060 * mem_cgroup_oom_lock() may not be called. We have to use
2061 * atomic_add_unless() here.
2062 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002063 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002064 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002065}
2066
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002067static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
2068
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002069struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002070 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002071 wait_queue_t wait;
2072};
2073
2074static int memcg_oom_wake_function(wait_queue_t *wait,
2075 unsigned mode, int sync, void *arg)
2076{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002077 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
2078 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002079 struct oom_wait_info *oom_wait_info;
2080
2081 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002082 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002083
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002084 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002085 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002086 * Then we can use css_is_ancestor without taking care of RCU.
2087 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002088 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
2089 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002090 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002091 return autoremove_wake_function(wait, mode, sync, arg);
2092}
2093
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002094static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002095{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002096 atomic_inc(&memcg->oom_wakeups);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002097 /* for filtering, pass "memcg" as argument. */
2098 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002099}
2100
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002101static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002102{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002103 if (memcg && atomic_read(&memcg->under_oom))
2104 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002105}
2106
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002107static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002108{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002109 if (!current->memcg_oom.may_oom)
2110 return;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002111 /*
Johannes Weiner49426422013-10-16 13:46:59 -07002112 * We are in the middle of the charge context here, so we
2113 * don't want to block when potentially sitting on a callstack
2114 * that holds all kinds of filesystem and mm locks.
2115 *
2116 * Also, the caller may handle a failed allocation gracefully
2117 * (like optional page cache readahead) and so an OOM killer
2118 * invocation might not even be necessary.
2119 *
2120 * That's why we don't do anything here except remember the
2121 * OOM context and then deal with it at the end of the page
2122 * fault when the stack is unwound, the locks are released,
2123 * and when we know whether the fault was overall successful.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002124 */
Johannes Weiner49426422013-10-16 13:46:59 -07002125 css_get(&memcg->css);
2126 current->memcg_oom.memcg = memcg;
2127 current->memcg_oom.gfp_mask = mask;
2128 current->memcg_oom.order = order;
2129}
2130
2131/**
2132 * mem_cgroup_oom_synchronize - complete memcg OOM handling
2133 * @handle: actually kill/wait or just clean up the OOM state
2134 *
2135 * This has to be called at the end of a page fault if the memcg OOM
2136 * handler was enabled.
2137 *
2138 * Memcg supports userspace OOM handling where failed allocations must
2139 * sleep on a waitqueue until the userspace task resolves the
2140 * situation. Sleeping directly in the charge context with all kinds
2141 * of locks held is not a good idea, instead we remember an OOM state
2142 * in the task and mem_cgroup_oom_synchronize() has to be called at
2143 * the end of the page fault to complete the OOM handling.
2144 *
2145 * Returns %true if an ongoing memcg OOM situation was detected and
2146 * completed, %false otherwise.
2147 */
2148bool mem_cgroup_oom_synchronize(bool handle)
2149{
2150 struct mem_cgroup *memcg = current->memcg_oom.memcg;
2151 struct oom_wait_info owait;
2152 bool locked;
2153
2154 /* OOM is global, do not handle */
2155 if (!memcg)
2156 return false;
2157
2158 if (!handle)
2159 goto cleanup;
2160
2161 owait.memcg = memcg;
2162 owait.wait.flags = 0;
2163 owait.wait.func = memcg_oom_wake_function;
2164 owait.wait.private = current;
2165 INIT_LIST_HEAD(&owait.wait.task_list);
2166
2167 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002168 mem_cgroup_mark_under_oom(memcg);
2169
2170 locked = mem_cgroup_oom_trylock(memcg);
2171
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002172 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002173 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002174
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002175 if (locked && !memcg->oom_kill_disable) {
2176 mem_cgroup_unmark_under_oom(memcg);
Johannes Weiner49426422013-10-16 13:46:59 -07002177 finish_wait(&memcg_oom_waitq, &owait.wait);
2178 mem_cgroup_out_of_memory(memcg, current->memcg_oom.gfp_mask,
2179 current->memcg_oom.order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002180 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002181 schedule();
Johannes Weiner49426422013-10-16 13:46:59 -07002182 mem_cgroup_unmark_under_oom(memcg);
2183 finish_wait(&memcg_oom_waitq, &owait.wait);
2184 }
2185
2186 if (locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002187 mem_cgroup_oom_unlock(memcg);
2188 /*
2189 * There is no guarantee that an OOM-lock contender
2190 * sees the wakeups triggered by the OOM kill
2191 * uncharges. Wake any sleepers explicitely.
2192 */
2193 memcg_oom_recover(memcg);
2194 }
Johannes Weiner49426422013-10-16 13:46:59 -07002195cleanup:
2196 current->memcg_oom.memcg = NULL;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002197 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002198 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002199}
2200
Johannes Weinerd7365e72014-10-29 14:50:48 -07002201/**
2202 * mem_cgroup_begin_page_stat - begin a page state statistics transaction
2203 * @page: page that is going to change accounted state
2204 * @locked: &memcg->move_lock slowpath was taken
2205 * @flags: IRQ-state flags for &memcg->move_lock
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002206 *
Johannes Weinerd7365e72014-10-29 14:50:48 -07002207 * This function must mark the beginning of an accounted page state
2208 * change to prevent double accounting when the page is concurrently
2209 * being moved to another memcg:
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002210 *
Johannes Weinerd7365e72014-10-29 14:50:48 -07002211 * memcg = mem_cgroup_begin_page_stat(page, &locked, &flags);
2212 * if (TestClearPageState(page))
2213 * mem_cgroup_update_page_stat(memcg, state, -1);
2214 * mem_cgroup_end_page_stat(memcg, locked, flags);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002215 *
Johannes Weinerd7365e72014-10-29 14:50:48 -07002216 * The RCU lock is held throughout the transaction. The fast path can
2217 * get away without acquiring the memcg->move_lock (@locked is false)
2218 * because page moving starts with an RCU grace period.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002219 *
Johannes Weinerd7365e72014-10-29 14:50:48 -07002220 * The RCU lock also protects the memcg from being freed when the page
2221 * state that is going to change is the only thing preventing the page
2222 * from being uncharged. E.g. end-writeback clearing PageWriteback(),
2223 * which allows migration to go ahead and uncharge the page before the
2224 * account transaction might be complete.
Balbir Singhd69b0422009-06-17 16:26:34 -07002225 */
Johannes Weinerd7365e72014-10-29 14:50:48 -07002226struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page,
2227 bool *locked,
2228 unsigned long *flags)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002229{
2230 struct mem_cgroup *memcg;
2231 struct page_cgroup *pc;
2232
Johannes Weinerd7365e72014-10-29 14:50:48 -07002233 rcu_read_lock();
2234
2235 if (mem_cgroup_disabled())
2236 return NULL;
2237
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002238 pc = lookup_page_cgroup(page);
2239again:
2240 memcg = pc->mem_cgroup;
2241 if (unlikely(!memcg || !PageCgroupUsed(pc)))
Johannes Weinerd7365e72014-10-29 14:50:48 -07002242 return NULL;
2243
2244 *locked = false;
Qiang Huangbdcbb652014-06-04 16:08:21 -07002245 if (atomic_read(&memcg->moving_account) <= 0)
Johannes Weinerd7365e72014-10-29 14:50:48 -07002246 return memcg;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002247
2248 move_lock_mem_cgroup(memcg, flags);
2249 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2250 move_unlock_mem_cgroup(memcg, flags);
2251 goto again;
2252 }
2253 *locked = true;
Johannes Weinerd7365e72014-10-29 14:50:48 -07002254
2255 return memcg;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002256}
2257
Johannes Weinerd7365e72014-10-29 14:50:48 -07002258/**
2259 * mem_cgroup_end_page_stat - finish a page state statistics transaction
2260 * @memcg: the memcg that was accounted against
2261 * @locked: value received from mem_cgroup_begin_page_stat()
2262 * @flags: value received from mem_cgroup_begin_page_stat()
2263 */
2264void mem_cgroup_end_page_stat(struct mem_cgroup *memcg, bool locked,
2265 unsigned long flags)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002266{
Johannes Weinerd7365e72014-10-29 14:50:48 -07002267 if (memcg && locked)
2268 move_unlock_mem_cgroup(memcg, &flags);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002269
Johannes Weinerd7365e72014-10-29 14:50:48 -07002270 rcu_read_unlock();
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002271}
2272
Johannes Weinerd7365e72014-10-29 14:50:48 -07002273/**
2274 * mem_cgroup_update_page_stat - update page state statistics
2275 * @memcg: memcg to account against
2276 * @idx: page state item to account
2277 * @val: number of pages (positive or negative)
2278 *
2279 * See mem_cgroup_begin_page_stat() for locking requirements.
2280 */
2281void mem_cgroup_update_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -07002282 enum mem_cgroup_stat_index idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002283{
Sha Zhengju658b72c2013-09-12 15:13:52 -07002284 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002285
Johannes Weinerd7365e72014-10-29 14:50:48 -07002286 if (memcg)
2287 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002288}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002289
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002290/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002291 * size of first charge trial. "32" comes from vmscan.c's magic value.
2292 * TODO: maybe necessary to use big numbers in big irons.
2293 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002294#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002295struct memcg_stock_pcp {
2296 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002297 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002298 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002299 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002300#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002301};
2302static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002303static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002304
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002305/**
2306 * consume_stock: Try to consume stocked charge on this cpu.
2307 * @memcg: memcg to consume from.
2308 * @nr_pages: how many pages to charge.
2309 *
2310 * The charges will only happen if @memcg matches the current cpu's memcg
2311 * stock, and at least @nr_pages are available in that stock. Failure to
2312 * service an allocation will refill the stock.
2313 *
2314 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002315 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002316static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002317{
2318 struct memcg_stock_pcp *stock;
2319 bool ret = true;
2320
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002321 if (nr_pages > CHARGE_BATCH)
2322 return false;
2323
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002324 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002325 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2326 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002327 else /* need to call res_counter_charge */
2328 ret = false;
2329 put_cpu_var(memcg_stock);
2330 return ret;
2331}
2332
2333/*
2334 * Returns stocks cached in percpu to res_counter and reset cached information.
2335 */
2336static void drain_stock(struct memcg_stock_pcp *stock)
2337{
2338 struct mem_cgroup *old = stock->cached;
2339
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002340 if (stock->nr_pages) {
2341 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2342
2343 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002344 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002345 res_counter_uncharge(&old->memsw, bytes);
2346 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/*
2374 * Cache charges(val) which is from res_counter, 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
2434 * expects some charges will be back to res_counter later but cannot wait for
2435 * it.
2436 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002437static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002438{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002439 /*
2440 * If someone calls draining, avoid adding more kworker runs.
2441 */
2442 if (!mutex_trylock(&percpu_charge_mutex))
2443 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002444 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002445 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002446}
2447
2448/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002449static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002450{
2451 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002452 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002453 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002454 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002455}
2456
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002457/*
2458 * This function drains percpu counter value from DEAD cpu and
2459 * move it to local cpu. Note that this function can be preempted.
2460 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002461static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002462{
2463 int i;
2464
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002465 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002466 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002467 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002468
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002469 per_cpu(memcg->stat->count[i], cpu) = 0;
2470 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002471 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002472 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002473 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002474
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002475 per_cpu(memcg->stat->events[i], cpu) = 0;
2476 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002477 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002478 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002479}
2480
Paul Gortmaker0db06282013-06-19 14:53:51 -04002481static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002482 unsigned long action,
2483 void *hcpu)
2484{
2485 int cpu = (unsigned long)hcpu;
2486 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002487 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002488
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002489 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002490 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002491
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002492 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002493 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002494
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002495 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002496 mem_cgroup_drain_pcp_counter(iter, cpu);
2497
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002498 stock = &per_cpu(memcg_stock, cpu);
2499 drain_stock(stock);
2500 return NOTIFY_OK;
2501}
2502
Johannes Weiner00501b52014-08-08 14:19:20 -07002503static int try_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
2504 unsigned int nr_pages)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002505{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002506 unsigned int batch = max(CHARGE_BATCH, nr_pages);
Johannes Weiner9b130612014-08-06 16:05:51 -07002507 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002508 struct mem_cgroup *mem_over_limit;
2509 struct res_counter *fail_res;
2510 unsigned long nr_reclaimed;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002511 unsigned long long size;
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002512 bool may_swap = true;
2513 bool drained = false;
Johannes Weiner05b84302014-08-06 16:05:59 -07002514 int ret = 0;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002515
Johannes Weinerce00a962014-09-05 08:43:57 -04002516 if (mem_cgroup_is_root(memcg))
2517 goto done;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002518retry:
Michal Hockob6b6cc72014-04-07 15:37:44 -07002519 if (consume_stock(memcg, nr_pages))
2520 goto done;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002521
Johannes Weiner6539cc02014-08-06 16:05:42 -07002522 size = batch * PAGE_SIZE;
Johannes Weiner3fbe7242014-10-09 15:28:54 -07002523 if (!do_swap_account ||
2524 !res_counter_charge(&memcg->memsw, size, &fail_res)) {
2525 if (!res_counter_charge(&memcg->res, size, &fail_res))
Johannes Weiner6539cc02014-08-06 16:05:42 -07002526 goto done_restock;
Johannes Weiner3fbe7242014-10-09 15:28:54 -07002527 if (do_swap_account)
2528 res_counter_uncharge(&memcg->memsw, size);
2529 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
2530 } else {
Johannes Weiner6539cc02014-08-06 16:05:42 -07002531 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002532 may_swap = false;
Johannes Weiner3fbe7242014-10-09 15:28:54 -07002533 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002534
Johannes Weiner6539cc02014-08-06 16:05:42 -07002535 if (batch > nr_pages) {
2536 batch = nr_pages;
2537 goto retry;
2538 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002539
Johannes Weiner06b078f2014-08-06 16:05:44 -07002540 /*
2541 * Unlike in global OOM situations, memcg is not in a physical
2542 * memory shortage. Allow dying and OOM-killed tasks to
2543 * bypass the last charges so that they can exit quickly and
2544 * free their memory.
2545 */
2546 if (unlikely(test_thread_flag(TIF_MEMDIE) ||
2547 fatal_signal_pending(current) ||
2548 current->flags & PF_EXITING))
2549 goto bypass;
2550
2551 if (unlikely(task_in_memcg_oom(current)))
2552 goto nomem;
2553
Johannes Weiner6539cc02014-08-06 16:05:42 -07002554 if (!(gfp_mask & __GFP_WAIT))
2555 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002556
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002557 nr_reclaimed = try_to_free_mem_cgroup_pages(mem_over_limit, nr_pages,
2558 gfp_mask, may_swap);
Johannes Weiner6539cc02014-08-06 16:05:42 -07002559
Johannes Weiner61e02c72014-08-06 16:08:16 -07002560 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner6539cc02014-08-06 16:05:42 -07002561 goto retry;
Johannes Weiner28c34c22014-08-06 16:05:47 -07002562
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002563 if (!drained) {
2564 drain_all_stock_async(mem_over_limit);
2565 drained = true;
2566 goto retry;
2567 }
2568
Johannes Weiner28c34c22014-08-06 16:05:47 -07002569 if (gfp_mask & __GFP_NORETRY)
2570 goto nomem;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002571 /*
2572 * Even though the limit is exceeded at this point, reclaim
2573 * may have been able to free some pages. Retry the charge
2574 * before killing the task.
2575 *
2576 * Only for regular pages, though: huge pages are rather
2577 * unlikely to succeed so close to the limit, and we fall back
2578 * to regular pages anyway in case of failure.
2579 */
Johannes Weiner61e02c72014-08-06 16:08:16 -07002580 if (nr_reclaimed && nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER))
Johannes Weiner6539cc02014-08-06 16:05:42 -07002581 goto retry;
2582 /*
2583 * At task move, charge accounts can be doubly counted. So, it's
2584 * better to wait until the end of task_move if something is going on.
2585 */
2586 if (mem_cgroup_wait_acct_move(mem_over_limit))
2587 goto retry;
2588
Johannes Weiner9b130612014-08-06 16:05:51 -07002589 if (nr_retries--)
2590 goto retry;
2591
Johannes Weiner06b078f2014-08-06 16:05:44 -07002592 if (gfp_mask & __GFP_NOFAIL)
2593 goto bypass;
2594
Johannes Weiner6539cc02014-08-06 16:05:42 -07002595 if (fatal_signal_pending(current))
2596 goto bypass;
2597
Johannes Weiner61e02c72014-08-06 16:08:16 -07002598 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(nr_pages));
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002599nomem:
Johannes Weiner6d1fdc42014-04-07 15:37:45 -07002600 if (!(gfp_mask & __GFP_NOFAIL))
Johannes Weiner3168ecb2013-10-31 16:34:13 -07002601 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002602bypass:
Johannes Weinerce00a962014-09-05 08:43:57 -04002603 return -EINTR;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002604
2605done_restock:
2606 if (batch > nr_pages)
2607 refill_stock(memcg, batch - nr_pages);
2608done:
Johannes Weiner05b84302014-08-06 16:05:59 -07002609 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002610}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002611
Johannes Weiner00501b52014-08-08 14:19:20 -07002612static void cancel_charge(struct mem_cgroup *memcg, unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002613{
Johannes Weiner05b84302014-08-06 16:05:59 -07002614 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002615
Johannes Weinerce00a962014-09-05 08:43:57 -04002616 if (mem_cgroup_is_root(memcg))
2617 return;
2618
Johannes Weiner05b84302014-08-06 16:05:59 -07002619 res_counter_uncharge(&memcg->res, bytes);
2620 if (do_swap_account)
2621 res_counter_uncharge(&memcg->memsw, bytes);
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002622}
2623
2624/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002625 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2626 * This is useful when moving usage to parent cgroup.
2627 */
2628static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2629 unsigned int nr_pages)
2630{
2631 unsigned long bytes = nr_pages * PAGE_SIZE;
2632
Johannes Weinerce00a962014-09-05 08:43:57 -04002633 if (mem_cgroup_is_root(memcg))
2634 return;
2635
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002636 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2637 if (do_swap_account)
2638 res_counter_uncharge_until(&memcg->memsw,
2639 memcg->memsw.parent, bytes);
2640}
2641
2642/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002643 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoec903c02014-05-13 12:11:01 -04002644 * rcu_read_lock(). The caller is responsible for calling
2645 * css_tryget_online() if the mem_cgroup is used for charging. (dropping
2646 * refcnt from swap can be called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002647 */
2648static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2649{
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002650 /* ID 0 is unused ID */
2651 if (!id)
2652 return NULL;
Li Zefan34c00c32013-09-23 16:56:01 +08002653 return mem_cgroup_from_id(id);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002654}
2655
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002656/*
2657 * try_get_mem_cgroup_from_page - look up page's memcg association
2658 * @page: the page
2659 *
2660 * Look up, get a css reference, and return the memcg that owns @page.
2661 *
2662 * The page must be locked to prevent racing with swap-in and page
2663 * cache charges. If coming from an unlocked page table, the caller
2664 * must ensure the page is on the LRU or this can race with charging.
2665 */
Wu Fengguange42d9d52009-12-16 12:19:59 +01002666struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002667{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002668 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002669 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002670 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002671 swp_entry_t ent;
2672
Sasha Levin309381fea2014-01-23 15:52:54 -08002673 VM_BUG_ON_PAGE(!PageLocked(page), page);
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002674
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002675 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002676 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002677 memcg = pc->mem_cgroup;
Tejun Heoec903c02014-05-13 12:11:01 -04002678 if (memcg && !css_tryget_online(&memcg->css))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002679 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002680 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002681 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002682 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002683 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002684 memcg = mem_cgroup_lookup(id);
Tejun Heoec903c02014-05-13 12:11:01 -04002685 if (memcg && !css_tryget_online(&memcg->css))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002686 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002687 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002688 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002689 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002690}
2691
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002692static void lock_page_lru(struct page *page, int *isolated)
2693{
2694 struct zone *zone = page_zone(page);
2695
2696 spin_lock_irq(&zone->lru_lock);
2697 if (PageLRU(page)) {
2698 struct lruvec *lruvec;
2699
2700 lruvec = mem_cgroup_page_lruvec(page, zone);
2701 ClearPageLRU(page);
2702 del_page_from_lru_list(page, lruvec, page_lru(page));
2703 *isolated = 1;
2704 } else
2705 *isolated = 0;
2706}
2707
2708static void unlock_page_lru(struct page *page, int isolated)
2709{
2710 struct zone *zone = page_zone(page);
2711
2712 if (isolated) {
2713 struct lruvec *lruvec;
2714
2715 lruvec = mem_cgroup_page_lruvec(page, zone);
2716 VM_BUG_ON_PAGE(PageLRU(page), page);
2717 SetPageLRU(page);
2718 add_page_to_lru_list(page, lruvec, page_lru(page));
2719 }
2720 spin_unlock_irq(&zone->lru_lock);
2721}
2722
Johannes Weiner00501b52014-08-08 14:19:20 -07002723static void commit_charge(struct page *page, struct mem_cgroup *memcg,
Johannes Weiner6abb5a82014-08-08 14:19:33 -07002724 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002725{
Johannes Weinerce587e62012-04-24 20:22:33 +02002726 struct page_cgroup *pc = lookup_page_cgroup(page);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002727 int isolated;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002728
Sasha Levin309381fea2014-01-23 15:52:54 -08002729 VM_BUG_ON_PAGE(PageCgroupUsed(pc), page);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002730 /*
2731 * we don't need page_cgroup_lock about tail pages, becase they are not
2732 * accessed by any other context at this point.
2733 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002734
2735 /*
2736 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2737 * may already be on some other mem_cgroup's LRU. Take care of it.
2738 */
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002739 if (lrucare)
2740 lock_page_lru(page, &isolated);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002741
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002742 /*
2743 * Nobody should be changing or seriously looking at
2744 * pc->mem_cgroup and pc->flags at this point:
2745 *
2746 * - the page is uncharged
2747 *
2748 * - the page is off-LRU
2749 *
2750 * - an anonymous fault has exclusive page access, except for
2751 * a locked page table
2752 *
2753 * - a page cache insertion, a swapin fault, or a migration
2754 * have the page locked
2755 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002756 pc->mem_cgroup = memcg;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002757 pc->flags = PCG_USED | PCG_MEM | (do_swap_account ? PCG_MEMSW : 0);
Hugh Dickins3be91272008-02-07 00:14:19 -08002758
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002759 if (lrucare)
2760 unlock_page_lru(page, isolated);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002761}
2762
Glauber Costa7cf27982012-12-18 14:22:55 -08002763static DEFINE_MUTEX(set_limit_mutex);
2764
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002765#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydovbd673142014-06-04 16:07:40 -07002766/*
2767 * The memcg_slab_mutex is held whenever a per memcg kmem cache is created or
2768 * destroyed. It protects memcg_caches arrays and memcg_slab_caches lists.
2769 */
2770static DEFINE_MUTEX(memcg_slab_mutex);
2771
Vladimir Davydovd6441632014-01-23 15:53:09 -08002772static DEFINE_MUTEX(activate_kmem_mutex);
2773
Glauber Costa1f458cb2012-12-18 14:22:50 -08002774/*
2775 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2776 * in the memcg_cache_params struct.
2777 */
2778static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2779{
2780 struct kmem_cache *cachep;
2781
2782 VM_BUG_ON(p->is_root_cache);
2783 cachep = p->root_cache;
Qiang Huang7a67d7a2013-11-12 15:08:24 -08002784 return cache_from_memcg_idx(cachep, memcg_cache_id(p->memcg));
Glauber Costa1f458cb2012-12-18 14:22:50 -08002785}
2786
Glauber Costa749c5412012-12-18 14:23:01 -08002787#ifdef CONFIG_SLABINFO
Tejun Heo2da8ca82013-12-05 12:28:04 -05002788static int mem_cgroup_slabinfo_read(struct seq_file *m, void *v)
Glauber Costa749c5412012-12-18 14:23:01 -08002789{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002790 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Glauber Costa749c5412012-12-18 14:23:01 -08002791 struct memcg_cache_params *params;
2792
Vladimir Davydovcf2b8fb2014-10-09 15:28:59 -07002793 if (!memcg_kmem_is_active(memcg))
Glauber Costa749c5412012-12-18 14:23:01 -08002794 return -EIO;
2795
2796 print_slabinfo_header(m);
2797
Vladimir Davydovbd673142014-06-04 16:07:40 -07002798 mutex_lock(&memcg_slab_mutex);
Glauber Costa749c5412012-12-18 14:23:01 -08002799 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2800 cache_show(memcg_params_to_cache(params), m);
Vladimir Davydovbd673142014-06-04 16:07:40 -07002801 mutex_unlock(&memcg_slab_mutex);
Glauber Costa749c5412012-12-18 14:23:01 -08002802
2803 return 0;
2804}
2805#endif
2806
Vladimir Davydovc67a8a62014-06-04 16:07:39 -07002807static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002808{
2809 struct res_counter *fail_res;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002810 int ret = 0;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002811
2812 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2813 if (ret)
2814 return ret;
2815
Johannes Weiner00501b52014-08-08 14:19:20 -07002816 ret = try_charge(memcg, gfp, size >> PAGE_SHIFT);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002817 if (ret == -EINTR) {
2818 /*
Johannes Weiner00501b52014-08-08 14:19:20 -07002819 * try_charge() chose to bypass to root due to OOM kill or
2820 * fatal signal. Since our only options are to either fail
2821 * the allocation or charge it to this cgroup, do it as a
2822 * temporary condition. But we can't fail. From a kmem/slab
2823 * perspective, the cache has already been selected, by
2824 * mem_cgroup_kmem_get_cache(), so it is too late to change
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002825 * our minds.
2826 *
2827 * This condition will only trigger if the task entered
Johannes Weiner00501b52014-08-08 14:19:20 -07002828 * memcg_charge_kmem in a sane state, but was OOM-killed
2829 * during try_charge() above. Tasks that were already dying
2830 * when the allocation triggers should have been already
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002831 * directed to the root cgroup in memcontrol.h
2832 */
2833 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2834 if (do_swap_account)
2835 res_counter_charge_nofail(&memcg->memsw, size,
2836 &fail_res);
2837 ret = 0;
2838 } else if (ret)
2839 res_counter_uncharge(&memcg->kmem, size);
2840
2841 return ret;
2842}
2843
Vladimir Davydovc67a8a62014-06-04 16:07:39 -07002844static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002845{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002846 res_counter_uncharge(&memcg->res, size);
2847 if (do_swap_account)
2848 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002849
2850 /* Not down to 0 */
2851 if (res_counter_uncharge(&memcg->kmem, size))
2852 return;
2853
Li Zefan10d5ebf2013-07-08 16:00:33 -07002854 /*
2855 * Releases a reference taken in kmem_cgroup_css_offline in case
2856 * this last uncharge is racing with the offlining code or it is
2857 * outliving the memcg existence.
2858 *
2859 * The memory barrier imposed by test&clear is paired with the
2860 * explicit one in memcg_kmem_mark_dead().
2861 */
Glauber Costa7de37682012-12-18 14:22:07 -08002862 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002863 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002864}
2865
Glauber Costa2633d7a2012-12-18 14:22:34 -08002866/*
2867 * helper for acessing a memcg's index. It will be used as an index in the
2868 * child cache array in kmem_cache, and also to derive its name. This function
2869 * will return -1 when this is not a kmem-limited memcg.
2870 */
2871int memcg_cache_id(struct mem_cgroup *memcg)
2872{
2873 return memcg ? memcg->kmemcg_id : -1;
2874}
2875
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002876static int memcg_alloc_cache_id(void)
Glauber Costa55007d82012-12-18 14:22:38 -08002877{
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002878 int id, size;
2879 int err;
Glauber Costa55007d82012-12-18 14:22:38 -08002880
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002881 id = ida_simple_get(&kmem_limited_groups,
2882 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2883 if (id < 0)
2884 return id;
2885
2886 if (id < memcg_limited_groups_array_size)
2887 return id;
2888
2889 /*
2890 * There's no space for the new id in memcg_caches arrays,
2891 * so we have to grow them.
2892 */
2893
2894 size = 2 * (id + 1);
Glauber Costa55007d82012-12-18 14:22:38 -08002895 if (size < MEMCG_CACHES_MIN_SIZE)
2896 size = MEMCG_CACHES_MIN_SIZE;
2897 else if (size > MEMCG_CACHES_MAX_SIZE)
2898 size = MEMCG_CACHES_MAX_SIZE;
2899
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002900 mutex_lock(&memcg_slab_mutex);
2901 err = memcg_update_all_caches(size);
2902 mutex_unlock(&memcg_slab_mutex);
2903
2904 if (err) {
2905 ida_simple_remove(&kmem_limited_groups, id);
2906 return err;
2907 }
2908 return id;
2909}
2910
2911static void memcg_free_cache_id(int id)
2912{
2913 ida_simple_remove(&kmem_limited_groups, id);
Glauber Costa55007d82012-12-18 14:22:38 -08002914}
2915
2916/*
2917 * We should update the current array size iff all caches updates succeed. This
2918 * can only be done from the slab side. The slab mutex needs to be held when
2919 * calling this.
2920 */
2921void memcg_update_array_size(int num)
2922{
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002923 memcg_limited_groups_array_size = num;
Glauber Costa55007d82012-12-18 14:22:38 -08002924}
2925
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07002926static void memcg_register_cache(struct mem_cgroup *memcg,
2927 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08002928{
Vladimir Davydov93f39ee2014-06-04 16:08:24 -07002929 static char memcg_name_buf[NAME_MAX + 1]; /* protected by
2930 memcg_slab_mutex */
Vladimir Davydovbd673142014-06-04 16:07:40 -07002931 struct kmem_cache *cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08002932 int id;
2933
Vladimir Davydovbd673142014-06-04 16:07:40 -07002934 lockdep_assert_held(&memcg_slab_mutex);
2935
2936 id = memcg_cache_id(memcg);
Glauber Costad7f25f82012-12-18 14:22:40 -08002937
Vladimir Davydov2edefe12014-01-23 15:53:02 -08002938 /*
Vladimir Davydovbd673142014-06-04 16:07:40 -07002939 * Since per-memcg caches are created asynchronously on first
2940 * allocation (see memcg_kmem_get_cache()), several threads can try to
2941 * create the same cache, but only one of them may succeed.
Vladimir Davydov2edefe12014-01-23 15:53:02 -08002942 */
Vladimir Davydovbd673142014-06-04 16:07:40 -07002943 if (cache_from_memcg_idx(root_cache, id))
2944 return;
Vladimir Davydov2edefe12014-01-23 15:53:02 -08002945
Vladimir Davydov073ee1c2014-06-04 16:08:23 -07002946 cgroup_name(memcg->css.cgroup, memcg_name_buf, NAME_MAX + 1);
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07002947 cachep = memcg_create_kmem_cache(memcg, root_cache, memcg_name_buf);
Vladimir Davydovbd673142014-06-04 16:07:40 -07002948 /*
2949 * If we could not create a memcg cache, do not complain, because
2950 * that's not critical at all as we can always proceed with the root
2951 * cache.
2952 */
2953 if (!cachep)
2954 return;
2955
Vladimir Davydov33a690c2014-10-09 15:28:43 -07002956 css_get(&memcg->css);
Vladimir Davydovbd673142014-06-04 16:07:40 -07002957 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002958
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002959 /*
Vladimir Davydov959c8962014-01-23 15:52:59 -08002960 * Since readers won't lock (see cache_from_memcg_idx()), we need a
2961 * barrier here to ensure nobody will see the kmem_cache partially
2962 * initialized.
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002963 */
Vladimir Davydov959c8962014-01-23 15:52:59 -08002964 smp_wmb();
2965
Vladimir Davydovbd673142014-06-04 16:07:40 -07002966 BUG_ON(root_cache->memcg_params->memcg_caches[id]);
2967 root_cache->memcg_params->memcg_caches[id] = cachep;
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002968}
2969
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07002970static void memcg_unregister_cache(struct kmem_cache *cachep)
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002971{
Vladimir Davydovbd673142014-06-04 16:07:40 -07002972 struct kmem_cache *root_cache;
Vladimir Davydov1aa13252014-01-23 15:52:58 -08002973 struct mem_cgroup *memcg;
2974 int id;
2975
Vladimir Davydovbd673142014-06-04 16:07:40 -07002976 lockdep_assert_held(&memcg_slab_mutex);
Glauber Costad7f25f82012-12-18 14:22:40 -08002977
Vladimir Davydovbd673142014-06-04 16:07:40 -07002978 BUG_ON(is_root_cache(cachep));
Vladimir Davydov2edefe12014-01-23 15:53:02 -08002979
Vladimir Davydovbd673142014-06-04 16:07:40 -07002980 root_cache = cachep->memcg_params->root_cache;
2981 memcg = cachep->memcg_params->memcg;
Vladimir Davydov96403da2014-01-23 15:53:01 -08002982 id = memcg_cache_id(memcg);
Glauber Costad7f25f82012-12-18 14:22:40 -08002983
Vladimir Davydovbd673142014-06-04 16:07:40 -07002984 BUG_ON(root_cache->memcg_params->memcg_caches[id] != cachep);
2985 root_cache->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08002986
Vladimir Davydovbd673142014-06-04 16:07:40 -07002987 list_del(&cachep->memcg_params->list);
2988
2989 kmem_cache_destroy(cachep);
Vladimir Davydov33a690c2014-10-09 15:28:43 -07002990
2991 /* drop the reference taken in memcg_register_cache */
2992 css_put(&memcg->css);
Glauber Costa2633d7a2012-12-18 14:22:34 -08002993}
2994
Glauber Costa0e9d92f2012-12-18 14:22:42 -08002995/*
2996 * During the creation a new cache, we need to disable our accounting mechanism
2997 * altogether. This is true even if we are not creating, but rather just
2998 * enqueing new caches to be created.
2999 *
3000 * This is because that process will trigger allocations; some visible, like
3001 * explicit kmallocs to auxiliary data structures, name strings and internal
3002 * cache structures; some well concealed, like INIT_WORK() that can allocate
3003 * objects during debug.
3004 *
3005 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3006 * to it. This may not be a bounded recursion: since the first cache creation
3007 * failed to complete (waiting on the allocation), we'll just try to create the
3008 * cache again, failing at the same point.
3009 *
3010 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3011 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3012 * inside the following two functions.
3013 */
3014static inline void memcg_stop_kmem_account(void)
3015{
3016 VM_BUG_ON(!current->mm);
3017 current->memcg_kmem_skip_account++;
3018}
3019
3020static inline void memcg_resume_kmem_account(void)
3021{
3022 VM_BUG_ON(!current->mm);
3023 current->memcg_kmem_skip_account--;
3024}
3025
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003026int __memcg_cleanup_cache_params(struct kmem_cache *s)
Glauber Costa7cf27982012-12-18 14:22:55 -08003027{
3028 struct kmem_cache *c;
Vladimir Davydovb8529902014-04-07 15:39:28 -07003029 int i, failed = 0;
Glauber Costa7cf27982012-12-18 14:22:55 -08003030
Vladimir Davydovbd673142014-06-04 16:07:40 -07003031 mutex_lock(&memcg_slab_mutex);
Qiang Huang7a67d7a2013-11-12 15:08:24 -08003032 for_each_memcg_cache_index(i) {
3033 c = cache_from_memcg_idx(s, i);
Glauber Costa7cf27982012-12-18 14:22:55 -08003034 if (!c)
3035 continue;
3036
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003037 memcg_unregister_cache(c);
Vladimir Davydovb8529902014-04-07 15:39:28 -07003038
3039 if (cache_from_memcg_idx(s, i))
3040 failed++;
Glauber Costa7cf27982012-12-18 14:22:55 -08003041 }
Vladimir Davydovbd673142014-06-04 16:07:40 -07003042 mutex_unlock(&memcg_slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -07003043 return failed;
Glauber Costa7cf27982012-12-18 14:22:55 -08003044}
3045
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003046static void memcg_unregister_all_caches(struct mem_cgroup *memcg)
Glauber Costa1f458cb2012-12-18 14:22:50 -08003047{
3048 struct kmem_cache *cachep;
Vladimir Davydovbd673142014-06-04 16:07:40 -07003049 struct memcg_cache_params *params, *tmp;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003050
3051 if (!memcg_kmem_is_active(memcg))
3052 return;
3053
Vladimir Davydovbd673142014-06-04 16:07:40 -07003054 mutex_lock(&memcg_slab_mutex);
3055 list_for_each_entry_safe(params, tmp, &memcg->memcg_slab_caches, list) {
Glauber Costa1f458cb2012-12-18 14:22:50 -08003056 cachep = memcg_params_to_cache(params);
Vladimir Davydovbd673142014-06-04 16:07:40 -07003057 kmem_cache_shrink(cachep);
3058 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003059 memcg_unregister_cache(cachep);
Glauber Costa1f458cb2012-12-18 14:22:50 -08003060 }
Vladimir Davydovbd673142014-06-04 16:07:40 -07003061 mutex_unlock(&memcg_slab_mutex);
Glauber Costa1f458cb2012-12-18 14:22:50 -08003062}
3063
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003064struct memcg_register_cache_work {
Vladimir Davydov5722d092014-04-07 15:39:24 -07003065 struct mem_cgroup *memcg;
3066 struct kmem_cache *cachep;
3067 struct work_struct work;
3068};
3069
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003070static void memcg_register_cache_func(struct work_struct *w)
Glauber Costad7f25f82012-12-18 14:22:40 -08003071{
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003072 struct memcg_register_cache_work *cw =
3073 container_of(w, struct memcg_register_cache_work, work);
Vladimir Davydov5722d092014-04-07 15:39:24 -07003074 struct mem_cgroup *memcg = cw->memcg;
3075 struct kmem_cache *cachep = cw->cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003076
Vladimir Davydovbd673142014-06-04 16:07:40 -07003077 mutex_lock(&memcg_slab_mutex);
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003078 memcg_register_cache(memcg, cachep);
Vladimir Davydovbd673142014-06-04 16:07:40 -07003079 mutex_unlock(&memcg_slab_mutex);
3080
Vladimir Davydov5722d092014-04-07 15:39:24 -07003081 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003082 kfree(cw);
3083}
3084
3085/*
3086 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003087 */
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003088static void __memcg_schedule_register_cache(struct mem_cgroup *memcg,
3089 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003090{
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003091 struct memcg_register_cache_work *cw;
Glauber Costad7f25f82012-12-18 14:22:40 -08003092
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003093 cw = kmalloc(sizeof(*cw), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003094 if (cw == NULL) {
3095 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003096 return;
3097 }
3098
3099 cw->memcg = memcg;
3100 cw->cachep = cachep;
3101
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003102 INIT_WORK(&cw->work, memcg_register_cache_func);
Glauber Costad7f25f82012-12-18 14:22:40 -08003103 schedule_work(&cw->work);
3104}
3105
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003106static void memcg_schedule_register_cache(struct mem_cgroup *memcg,
3107 struct kmem_cache *cachep)
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003108{
3109 /*
3110 * We need to stop accounting when we kmalloc, because if the
3111 * corresponding kmalloc cache is not yet created, the first allocation
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003112 * in __memcg_schedule_register_cache will recurse.
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003113 *
3114 * However, it is better to enclose the whole function. Depending on
3115 * the debugging options enabled, INIT_WORK(), for instance, can
3116 * trigger an allocation. This too, will make us recurse. Because at
3117 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3118 * the safest choice is to do it like this, wrapping the whole function.
3119 */
3120 memcg_stop_kmem_account();
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003121 __memcg_schedule_register_cache(memcg, cachep);
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003122 memcg_resume_kmem_account();
3123}
Vladimir Davydovc67a8a62014-06-04 16:07:39 -07003124
3125int __memcg_charge_slab(struct kmem_cache *cachep, gfp_t gfp, int order)
3126{
3127 int res;
3128
3129 res = memcg_charge_kmem(cachep->memcg_params->memcg, gfp,
3130 PAGE_SIZE << order);
3131 if (!res)
3132 atomic_add(1 << order, &cachep->memcg_params->nr_pages);
3133 return res;
3134}
3135
3136void __memcg_uncharge_slab(struct kmem_cache *cachep, int order)
3137{
3138 memcg_uncharge_kmem(cachep->memcg_params->memcg, PAGE_SIZE << order);
3139 atomic_sub(1 << order, &cachep->memcg_params->nr_pages);
3140}
3141
Glauber Costad7f25f82012-12-18 14:22:40 -08003142/*
3143 * Return the kmem_cache we're supposed to use for a slab allocation.
3144 * We try to use the current memcg's version of the cache.
3145 *
3146 * If the cache does not exist yet, if we are the first user of it,
3147 * we either create it immediately, if possible, or create it asynchronously
3148 * in a workqueue.
3149 * In the latter case, we will let the current allocation go through with
3150 * the original cache.
3151 *
3152 * Can't be called in interrupt context or from kernel threads.
3153 * This function needs to be called with rcu_read_lock() held.
3154 */
3155struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3156 gfp_t gfp)
3157{
3158 struct mem_cgroup *memcg;
Vladimir Davydov959c8962014-01-23 15:52:59 -08003159 struct kmem_cache *memcg_cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003160
3161 VM_BUG_ON(!cachep->memcg_params);
3162 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3163
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003164 if (!current->mm || current->memcg_kmem_skip_account)
3165 return cachep;
3166
Glauber Costad7f25f82012-12-18 14:22:40 -08003167 rcu_read_lock();
3168 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003169
Vladimir Davydovcf2b8fb2014-10-09 15:28:59 -07003170 if (!memcg_kmem_is_active(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003171 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003172
Vladimir Davydov959c8962014-01-23 15:52:59 -08003173 memcg_cachep = cache_from_memcg_idx(cachep, memcg_cache_id(memcg));
3174 if (likely(memcg_cachep)) {
3175 cachep = memcg_cachep;
Li Zefanca0dde92013-04-29 15:08:57 -07003176 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003177 }
3178
Li Zefanca0dde92013-04-29 15:08:57 -07003179 /* The corresponding put will be done in the workqueue. */
Tejun Heoec903c02014-05-13 12:11:01 -04003180 if (!css_tryget_online(&memcg->css))
Li Zefanca0dde92013-04-29 15:08:57 -07003181 goto out;
3182 rcu_read_unlock();
3183
3184 /*
3185 * If we are in a safe context (can wait, and not in interrupt
3186 * context), we could be be predictable and return right away.
3187 * This would guarantee that the allocation being performed
3188 * already belongs in the new cache.
3189 *
3190 * However, there are some clashes that can arrive from locking.
3191 * For instance, because we acquire the slab_mutex while doing
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003192 * memcg_create_kmem_cache, this means no further allocation
3193 * could happen with the slab_mutex held. So it's better to
3194 * defer everything.
Li Zefanca0dde92013-04-29 15:08:57 -07003195 */
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003196 memcg_schedule_register_cache(memcg, cachep);
Li Zefanca0dde92013-04-29 15:08:57 -07003197 return cachep;
3198out:
3199 rcu_read_unlock();
3200 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003201}
Glauber Costad7f25f82012-12-18 14:22:40 -08003202
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003203/*
3204 * We need to verify if the allocation against current->mm->owner's memcg is
3205 * possible for the given order. But the page is not allocated yet, so we'll
3206 * need a further commit step to do the final arrangements.
3207 *
3208 * It is possible for the task to switch cgroups in this mean time, so at
3209 * commit time, we can't rely on task conversion any longer. We'll then use
3210 * the handle argument to return to the caller which cgroup we should commit
3211 * against. We could also return the memcg directly and avoid the pointer
3212 * passing, but a boolean return value gives better semantics considering
3213 * the compiled-out case as well.
3214 *
3215 * Returning true means the allocation is possible.
3216 */
3217bool
3218__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3219{
3220 struct mem_cgroup *memcg;
3221 int ret;
3222
3223 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003224
3225 /*
3226 * Disabling accounting is only relevant for some specific memcg
3227 * internal allocations. Therefore we would initially not have such
Vladimir Davydov52383432014-06-04 16:06:39 -07003228 * check here, since direct calls to the page allocator that are
3229 * accounted to kmemcg (alloc_kmem_pages and friends) only happen
3230 * outside memcg core. We are mostly concerned with cache allocations,
3231 * and by having this test at memcg_kmem_get_cache, we are already able
3232 * to relay the allocation to the root cache and bypass the memcg cache
3233 * altogether.
Glauber Costa6d42c232013-07-08 16:00:00 -07003234 *
3235 * There is one exception, though: the SLUB allocator does not create
3236 * large order caches, but rather service large kmallocs directly from
3237 * the page allocator. Therefore, the following sequence when backed by
3238 * the SLUB allocator:
3239 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003240 * memcg_stop_kmem_account();
3241 * kmalloc(<large_number>)
3242 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003243 *
3244 * would effectively ignore the fact that we should skip accounting,
3245 * since it will drive us directly to this function without passing
3246 * through the cache selector memcg_kmem_get_cache. Such large
3247 * allocations are extremely rare but can happen, for instance, for the
3248 * cache arrays. We bring this test here.
3249 */
3250 if (!current->mm || current->memcg_kmem_skip_account)
3251 return true;
3252
Johannes Weinerdf381972014-04-07 15:37:43 -07003253 memcg = get_mem_cgroup_from_mm(current->mm);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003254
Vladimir Davydovcf2b8fb2014-10-09 15:28:59 -07003255 if (!memcg_kmem_is_active(memcg)) {
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003256 css_put(&memcg->css);
3257 return true;
3258 }
3259
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003260 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3261 if (!ret)
3262 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003263
3264 css_put(&memcg->css);
3265 return (ret == 0);
3266}
3267
3268void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3269 int order)
3270{
3271 struct page_cgroup *pc;
3272
3273 VM_BUG_ON(mem_cgroup_is_root(memcg));
3274
3275 /* The page allocation failed. Revert */
3276 if (!page) {
3277 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003278 return;
3279 }
Johannes Weinera840cda2014-08-06 16:06:04 -07003280 /*
3281 * The page is freshly allocated and not visible to any
3282 * outside callers yet. Set up pc non-atomically.
3283 */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003284 pc = lookup_page_cgroup(page);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003285 pc->mem_cgroup = memcg;
Johannes Weinera840cda2014-08-06 16:06:04 -07003286 pc->flags = PCG_USED;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003287}
3288
3289void __memcg_kmem_uncharge_pages(struct page *page, int order)
3290{
3291 struct mem_cgroup *memcg = NULL;
3292 struct page_cgroup *pc;
3293
3294
3295 pc = lookup_page_cgroup(page);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003296 if (!PageCgroupUsed(pc))
3297 return;
3298
Johannes Weinera840cda2014-08-06 16:06:04 -07003299 memcg = pc->mem_cgroup;
3300 pc->flags = 0;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003301
3302 /*
3303 * We trust that only if there is a memcg associated with the page, it
3304 * is a valid allocation
3305 */
3306 if (!memcg)
3307 return;
3308
Sasha Levin309381fea2014-01-23 15:52:54 -08003309 VM_BUG_ON_PAGE(mem_cgroup_is_root(memcg), page);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003310 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003311}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003312#else
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07003313static inline void memcg_unregister_all_caches(struct mem_cgroup *memcg)
Glauber Costa1f458cb2012-12-18 14:22:50 -08003314{
3315}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003316#endif /* CONFIG_MEMCG_KMEM */
3317
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003318#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3319
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003320/*
3321 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003322 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3323 * charge/uncharge will be never happen and move_account() is done under
3324 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003325 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003326void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003327{
3328 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003329 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003330 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003331 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003332
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003333 if (mem_cgroup_disabled())
3334 return;
David Rientjesb070e652013-05-07 16:18:09 -07003335
3336 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003337 for (i = 1; i < HPAGE_PMD_NR; i++) {
3338 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003339 pc->mem_cgroup = memcg;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003340 pc->flags = head_pc->flags;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003341 }
David Rientjesb070e652013-05-07 16:18:09 -07003342 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3343 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003344}
Hugh Dickins12d27102012-01-12 17:19:52 -08003345#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003346
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003347/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003348 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003349 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003350 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003351 * @pc: page_cgroup of the page.
3352 * @from: mem_cgroup which the page is moved from.
3353 * @to: mem_cgroup which the page is moved to. @from != @to.
3354 *
3355 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003356 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003357 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003358 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003359 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3360 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003361 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003362static int mem_cgroup_move_account(struct page *page,
3363 unsigned int nr_pages,
3364 struct page_cgroup *pc,
3365 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003366 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003367{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003368 unsigned long flags;
3369 int ret;
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003370
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003371 VM_BUG_ON(from == to);
Sasha Levin309381fea2014-01-23 15:52:54 -08003372 VM_BUG_ON_PAGE(PageLRU(page), page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003373 /*
3374 * The page is isolated from LRU. So, collapse function
3375 * will not handle this page. But page splitting can happen.
3376 * Do this check under compound_page_lock(). The caller should
3377 * hold it.
3378 */
3379 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003380 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003381 goto out;
3382
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003383 /*
3384 * Prevent mem_cgroup_migrate() from looking at pc->mem_cgroup
3385 * of its source page while we change it: page migration takes
3386 * both pages off the LRU, but page cache replacement doesn't.
3387 */
3388 if (!trylock_page(page))
3389 goto out;
Johannes Weinerde3638d2011-03-23 16:42:28 -07003390
3391 ret = -EINVAL;
3392 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003393 goto out_unlock;
Johannes Weinerde3638d2011-03-23 16:42:28 -07003394
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003395 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003396
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003397 if (!PageAnon(page) && page_mapped(page)) {
Johannes Weiner59d1d252014-04-07 15:37:40 -07003398 __this_cpu_sub(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED],
3399 nr_pages);
3400 __this_cpu_add(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED],
3401 nr_pages);
3402 }
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003403
Johannes Weiner59d1d252014-04-07 15:37:40 -07003404 if (PageWriteback(page)) {
3405 __this_cpu_sub(from->stat->count[MEM_CGROUP_STAT_WRITEBACK],
3406 nr_pages);
3407 __this_cpu_add(to->stat->count[MEM_CGROUP_STAT_WRITEBACK],
3408 nr_pages);
3409 }
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003410
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003411 /*
3412 * It is safe to change pc->mem_cgroup here because the page
3413 * is referenced, charged, and isolated - we can't race with
3414 * uncharging, charging, migration, or LRU putback.
3415 */
Balbir Singhd69b0422009-06-17 16:26:34 -07003416
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003417 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003418 pc->mem_cgroup = to;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003419 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003420 ret = 0;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003421
3422 local_irq_disable();
3423 mem_cgroup_charge_statistics(to, page, nr_pages);
Johannes Weiner5564e882011-03-23 16:42:29 -07003424 memcg_check_events(to, page);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003425 mem_cgroup_charge_statistics(from, page, -nr_pages);
Johannes Weiner5564e882011-03-23 16:42:29 -07003426 memcg_check_events(from, page);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003427 local_irq_enable();
3428out_unlock:
3429 unlock_page(page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003430out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003431 return ret;
3432}
3433
Michal Hocko2ef37d32012-10-26 13:37:30 +02003434/**
3435 * mem_cgroup_move_parent - moves page to the parent group
3436 * @page: the page to move
3437 * @pc: page_cgroup of the page
3438 * @child: page's cgroup
3439 *
3440 * move charges to its parent or the root cgroup if the group has no
3441 * parent (aka use_hierarchy==0).
3442 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3443 * mem_cgroup_move_account fails) the failure is always temporary and
3444 * it signals a race with a page removal/uncharge or migration. In the
3445 * first case the page is on the way out and it will vanish from the LRU
3446 * on the next attempt and the call should be retried later.
3447 * Isolation from the LRU fails only if page has been isolated from
3448 * the LRU since we looked at it and that usually means either global
3449 * reclaim or migration going on. The page will either get back to the
3450 * LRU or vanish.
3451 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3452 * (!PageCgroupUsed) or moved to a different group. The page will
3453 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003454 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003455static int mem_cgroup_move_parent(struct page *page,
3456 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003457 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003458{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003459 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003460 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003461 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003462 int ret;
3463
Michal Hockod8423012012-10-26 13:37:29 +02003464 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003465
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003466 ret = -EBUSY;
3467 if (!get_page_unless_zero(page))
3468 goto out;
3469 if (isolate_lru_page(page))
3470 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003471
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003472 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003473
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003474 parent = parent_mem_cgroup(child);
3475 /*
3476 * If no parent, move charges to root cgroup.
3477 */
3478 if (!parent)
3479 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003480
Michal Hocko2ef37d32012-10-26 13:37:30 +02003481 if (nr_pages > 1) {
Sasha Levin309381fea2014-01-23 15:52:54 -08003482 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003483 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003484 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003485
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003486 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003487 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003488 if (!ret)
3489 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003490
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003491 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003492 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003493 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003494put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003495 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003496out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003497 return ret;
3498}
3499
Andrew Mortonc255a452012-07-31 16:43:02 -07003500#ifdef CONFIG_MEMCG_SWAP
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003501static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
3502 bool charge)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003503{
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003504 int val = (charge) ? 1 : -1;
3505 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003506}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003507
3508/**
3509 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3510 * @entry: swap entry to be moved
3511 * @from: mem_cgroup which the entry is moved from
3512 * @to: mem_cgroup which the entry is moved to
3513 *
3514 * It succeeds only when the swap_cgroup's record for this entry is the same
3515 * as the mem_cgroup's id of @from.
3516 *
3517 * Returns 0 on success, -EINVAL on failure.
3518 *
3519 * The caller must have charged to @to, IOW, called res_counter_charge() about
3520 * both res and memsw, and called css_get().
3521 */
3522static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003523 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003524{
3525 unsigned short old_id, new_id;
3526
Li Zefan34c00c32013-09-23 16:56:01 +08003527 old_id = mem_cgroup_id(from);
3528 new_id = mem_cgroup_id(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003529
3530 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08003531 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003532 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003533 /*
3534 * This function is only called from task migration context now.
3535 * It postpones res_counter and refcount handling till the end
3536 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07003537 * improvement. But we cannot postpone css_get(to) because if
3538 * the process that has been moved to @to does swap-in, the
3539 * refcount of @to might be decreased to 0.
3540 *
3541 * We are in attach() phase, so the cgroup is guaranteed to be
3542 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08003543 */
Li Zefan40503772013-07-08 16:00:34 -07003544 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003545 return 0;
3546 }
3547 return -EINVAL;
3548}
3549#else
3550static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003551 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003552{
3553 return -EINVAL;
3554}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003555#endif
3556
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003557#ifdef CONFIG_DEBUG_VM
3558static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
3559{
3560 struct page_cgroup *pc;
3561
3562 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003563 /*
3564 * Can be NULL while feeding pages into the page allocator for
3565 * the first time, i.e. during boot or memory hotplug;
3566 * or when mem_cgroup_disabled().
3567 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003568 if (likely(pc) && PageCgroupUsed(pc))
3569 return pc;
3570 return NULL;
3571}
3572
3573bool mem_cgroup_bad_page_check(struct page *page)
3574{
3575 if (mem_cgroup_disabled())
3576 return false;
3577
3578 return lookup_page_cgroup_used(page) != NULL;
3579}
3580
3581void mem_cgroup_print_bad_page(struct page *page)
3582{
3583 struct page_cgroup *pc;
3584
3585 pc = lookup_page_cgroup_used(page);
3586 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08003587 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
3588 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003589 }
3590}
3591#endif
3592
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08003593static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003594 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003595{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003596 int retry_count;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003597 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003598 int children = mem_cgroup_count_children(memcg);
3599 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003600 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003601
3602 /*
3603 * For keeping hierarchical_reclaim simple, how long we should retry
3604 * is depends on callers. We set our retry-count to be function
3605 * of # of children which we should visit in this loop.
3606 */
3607 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
3608
3609 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003610
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003611 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003612 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003613 if (signal_pending(current)) {
3614 ret = -EINTR;
3615 break;
3616 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003617 /*
3618 * Rather than hide all in some function, I do this in
3619 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003620 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003621 */
3622 mutex_lock(&set_limit_mutex);
Johannes Weiner3fbe7242014-10-09 15:28:54 -07003623 if (res_counter_read_u64(&memcg->memsw, RES_LIMIT) < val) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003624 ret = -EINVAL;
3625 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003626 break;
3627 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003628
Johannes Weiner3fbe7242014-10-09 15:28:54 -07003629 if (res_counter_read_u64(&memcg->res, RES_LIMIT) < val)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003630 enlarge = 1;
3631
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003632 ret = res_counter_set_limit(&memcg->res, val);
3633 mutex_unlock(&set_limit_mutex);
3634
3635 if (!ret)
3636 break;
3637
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003638 try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, true);
3639
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003640 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
3641 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003642 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003643 retry_count--;
3644 else
3645 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003646 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003647 if (!ret && enlarge)
3648 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08003649
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003650 return ret;
3651}
3652
Li Zefan338c8432009-06-17 16:27:15 -07003653static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
3654 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003655{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003656 int retry_count;
Johannes Weiner3fbe7242014-10-09 15:28:54 -07003657 u64 oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003658 int children = mem_cgroup_count_children(memcg);
3659 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003660 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003661
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003662 /* see mem_cgroup_resize_res_limit */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003663 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003664 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003665 while (retry_count) {
3666 if (signal_pending(current)) {
3667 ret = -EINTR;
3668 break;
3669 }
3670 /*
3671 * Rather than hide all in some function, I do this in
3672 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07003673 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003674 */
3675 mutex_lock(&set_limit_mutex);
Johannes Weiner3fbe7242014-10-09 15:28:54 -07003676 if (res_counter_read_u64(&memcg->res, RES_LIMIT) > val) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003677 ret = -EINVAL;
3678 mutex_unlock(&set_limit_mutex);
3679 break;
3680 }
Johannes Weiner3fbe7242014-10-09 15:28:54 -07003681 if (res_counter_read_u64(&memcg->memsw, RES_LIMIT) < val)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003682 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003683 ret = res_counter_set_limit(&memcg->memsw, val);
3684 mutex_unlock(&set_limit_mutex);
3685
3686 if (!ret)
3687 break;
3688
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003689 try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, false);
3690
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003691 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003692 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003693 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003694 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003695 else
3696 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003697 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003698 if (!ret && enlarge)
3699 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003700 return ret;
3701}
3702
Andrew Morton0608f432013-09-24 15:27:41 -07003703unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
3704 gfp_t gfp_mask,
3705 unsigned long *total_scanned)
3706{
3707 unsigned long nr_reclaimed = 0;
3708 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
3709 unsigned long reclaimed;
3710 int loop = 0;
3711 struct mem_cgroup_tree_per_zone *mctz;
3712 unsigned long long excess;
3713 unsigned long nr_scanned;
3714
3715 if (order > 0)
3716 return 0;
3717
3718 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
3719 /*
3720 * This loop can run a while, specially if mem_cgroup's continuously
3721 * keep exceeding their soft limit and putting the system under
3722 * pressure
3723 */
3724 do {
3725 if (next_mz)
3726 mz = next_mz;
3727 else
3728 mz = mem_cgroup_largest_soft_limit_node(mctz);
3729 if (!mz)
3730 break;
3731
3732 nr_scanned = 0;
3733 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
3734 gfp_mask, &nr_scanned);
3735 nr_reclaimed += reclaimed;
3736 *total_scanned += nr_scanned;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003737 spin_lock_irq(&mctz->lock);
Andrew Morton0608f432013-09-24 15:27:41 -07003738
3739 /*
3740 * If we failed to reclaim anything from this memory cgroup
3741 * it is time to move on to the next cgroup
3742 */
3743 next_mz = NULL;
3744 if (!reclaimed) {
3745 do {
3746 /*
3747 * Loop until we find yet another one.
3748 *
3749 * By the time we get the soft_limit lock
3750 * again, someone might have aded the
3751 * group back on the RB tree. Iterate to
3752 * make sure we get a different mem.
3753 * mem_cgroup_largest_soft_limit_node returns
3754 * NULL if no other cgroup is present on
3755 * the tree
3756 */
3757 next_mz =
3758 __mem_cgroup_largest_soft_limit_node(mctz);
3759 if (next_mz == mz)
3760 css_put(&next_mz->memcg->css);
3761 else /* next_mz == NULL or other memcg */
3762 break;
3763 } while (1);
3764 }
Johannes Weinercf2c8122014-06-06 14:38:21 -07003765 __mem_cgroup_remove_exceeded(mz, mctz);
Andrew Morton0608f432013-09-24 15:27:41 -07003766 excess = res_counter_soft_limit_excess(&mz->memcg->res);
3767 /*
3768 * One school of thought says that we should not add
3769 * back the node to the tree if reclaim returns 0.
3770 * But our reclaim could return 0, simply because due
3771 * to priority we are exposing a smaller subset of
3772 * memory to reclaim from. Consider this as a longer
3773 * term TODO.
3774 */
3775 /* If excess == 0, no tree ops */
Johannes Weinercf2c8122014-06-06 14:38:21 -07003776 __mem_cgroup_insert_exceeded(mz, mctz, excess);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003777 spin_unlock_irq(&mctz->lock);
Andrew Morton0608f432013-09-24 15:27:41 -07003778 css_put(&mz->memcg->css);
3779 loop++;
3780 /*
3781 * Could not reclaim anything and there are no more
3782 * mem cgroups to try or we seem to be looping without
3783 * reclaiming anything.
3784 */
3785 if (!nr_reclaimed &&
3786 (next_mz == NULL ||
3787 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3788 break;
3789 } while (!nr_reclaimed);
3790 if (next_mz)
3791 css_put(&next_mz->memcg->css);
3792 return nr_reclaimed;
3793}
3794
Michal Hocko2ef37d32012-10-26 13:37:30 +02003795/**
3796 * mem_cgroup_force_empty_list - clears LRU of a group
3797 * @memcg: group to clear
3798 * @node: NUMA node
3799 * @zid: zone id
3800 * @lru: lru to to clear
3801 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003802 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02003803 * reclaim the pages page themselves - pages are moved to the parent (or root)
3804 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003805 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02003806static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003807 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003808{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08003809 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02003810 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003811 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08003812 struct page *busy;
3813 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08003814
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003815 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08003816 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
3817 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003818
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003819 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02003820 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08003821 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07003822 struct page *page;
3823
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003824 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003825 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003826 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003827 break;
3828 }
Johannes Weiner925b7672012-01-12 17:18:15 -08003829 page = list_entry(list->prev, struct page, lru);
3830 if (busy == page) {
3831 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08003832 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003833 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003834 continue;
3835 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003836 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003837
Johannes Weiner925b7672012-01-12 17:18:15 -08003838 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07003839
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07003840 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003841 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08003842 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003843 } else
3844 busy = NULL;
Hugh Dickins2a7a0e02014-06-04 16:11:04 -07003845 cond_resched();
Michal Hocko2ef37d32012-10-26 13:37:30 +02003846 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003847}
3848
3849/*
Michal Hockoc26251f2012-10-26 13:37:28 +02003850 * make mem_cgroup's charge to be 0 if there is no task by moving
3851 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003852 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02003853 *
3854 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003855 */
Michal Hockoab5196c2012-10-26 13:37:32 +02003856static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003857{
Michal Hockoc26251f2012-10-26 13:37:28 +02003858 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08003859 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08003860
Daisuke Nishimurafce66472010-01-15 17:01:30 -08003861 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003862 /* This is for making all *used* pages to be on LRU. */
3863 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003864 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003865 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08003866 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02003867 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003868 enum lru_list lru;
3869 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02003870 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07003871 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003872 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08003873 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003874 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003875 mem_cgroup_end_move(memcg);
3876 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003877 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003878
Michal Hocko2ef37d32012-10-26 13:37:30 +02003879 /*
Glauber Costabea207c2012-12-18 14:22:11 -08003880 * Kernel memory may not necessarily be trackable to a specific
3881 * process. So they are not migrated, and therefore we can't
3882 * expect their value to drop to 0 here.
3883 * Having res filled up with kmem only is enough.
3884 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02003885 * This is a safety check because mem_cgroup_force_empty_list
3886 * could have raced with mem_cgroup_replace_page_cache callers
3887 * so the lru seemed empty but the page could have been added
3888 * right after the check. RES_USAGE should be safe as we always
3889 * charge before adding to the LRU.
3890 */
Glauber Costabea207c2012-12-18 14:22:11 -08003891 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
3892 res_counter_read_u64(&memcg->kmem, RES_USAGE);
3893 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02003894}
3895
Tejun Heoea280e72014-05-16 13:22:48 -04003896/*
3897 * Test whether @memcg has children, dead or alive. Note that this
3898 * function doesn't care whether @memcg has use_hierarchy enabled and
3899 * returns %true if there are child csses according to the cgroup
3900 * hierarchy. Testing use_hierarchy is the caller's responsiblity.
3901 */
Glauber Costab5f99b52013-02-22 16:34:53 -08003902static inline bool memcg_has_children(struct mem_cgroup *memcg)
3903{
Tejun Heoea280e72014-05-16 13:22:48 -04003904 bool ret;
3905
Johannes Weiner696ac172013-10-31 16:34:15 -07003906 /*
Tejun Heoea280e72014-05-16 13:22:48 -04003907 * The lock does not prevent addition or deletion of children, but
3908 * it prevents a new child from being initialized based on this
3909 * parent in css_online(), so it's enough to decide whether
3910 * hierarchically inherited attributes can still be changed or not.
Johannes Weiner696ac172013-10-31 16:34:15 -07003911 */
Tejun Heoea280e72014-05-16 13:22:48 -04003912 lockdep_assert_held(&memcg_create_mutex);
3913
3914 rcu_read_lock();
3915 ret = css_next_child(NULL, &memcg->css);
3916 rcu_read_unlock();
3917 return ret;
Glauber Costab5f99b52013-02-22 16:34:53 -08003918}
3919
3920/*
Michal Hockoc26251f2012-10-26 13:37:28 +02003921 * Reclaims as many pages from the given memcg as possible and moves
3922 * the rest to the parent.
3923 *
3924 * Caller is responsible for holding css reference for memcg.
3925 */
3926static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
3927{
3928 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Michal Hockoc26251f2012-10-26 13:37:28 +02003929
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003930 /* we call try-to-free pages for make this cgroup empty */
3931 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003932 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07003933 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003934 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003935
Michal Hockoc26251f2012-10-26 13:37:28 +02003936 if (signal_pending(current))
3937 return -EINTR;
3938
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003939 progress = try_to_free_mem_cgroup_pages(memcg, 1,
3940 GFP_KERNEL, true);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003941 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003942 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003943 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02003944 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003945 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003946
3947 }
Michal Hockoab5196c2012-10-26 13:37:32 +02003948
3949 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003950}
3951
Tejun Heo6770c642014-05-13 12:16:21 -04003952static ssize_t mem_cgroup_force_empty_write(struct kernfs_open_file *of,
3953 char *buf, size_t nbytes,
3954 loff_t off)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003955{
Tejun Heo6770c642014-05-13 12:16:21 -04003956 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Michal Hockoc26251f2012-10-26 13:37:28 +02003957
Michal Hockod8423012012-10-26 13:37:29 +02003958 if (mem_cgroup_is_root(memcg))
3959 return -EINVAL;
Tejun Heo6770c642014-05-13 12:16:21 -04003960 return mem_cgroup_force_empty(memcg) ?: nbytes;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003961}
3962
Tejun Heo182446d2013-08-08 20:11:24 -04003963static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
3964 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08003965{
Tejun Heo182446d2013-08-08 20:11:24 -04003966 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003967}
3968
Tejun Heo182446d2013-08-08 20:11:24 -04003969static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
3970 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08003971{
3972 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04003973 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04003974 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(memcg->css.parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08003975
Glauber Costa09998212013-02-22 16:34:55 -08003976 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07003977
3978 if (memcg->use_hierarchy == val)
3979 goto out;
3980
Balbir Singh18f59ea2009-01-07 18:08:07 -08003981 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003982 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08003983 * in the child subtrees. If it is unset, then the change can
3984 * occur, provided the current cgroup has no children.
3985 *
3986 * For the root cgroup, parent_mem is NULL, we allow value to be
3987 * set if there are no children.
3988 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003989 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08003990 (val == 1 || val == 0)) {
Tejun Heoea280e72014-05-16 13:22:48 -04003991 if (!memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003992 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003993 else
3994 retval = -EBUSY;
3995 } else
3996 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07003997
3998out:
Glauber Costa09998212013-02-22 16:34:55 -08003999 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004000
4001 return retval;
4002}
4003
Johannes Weinerce00a962014-09-05 08:43:57 -04004004static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
4005 enum mem_cgroup_stat_index idx)
4006{
4007 struct mem_cgroup *iter;
4008 long val = 0;
4009
4010 /* Per-cpu values can be negative, use a signed accumulator */
4011 for_each_mem_cgroup_tree(iter, memcg)
4012 val += mem_cgroup_read_stat(iter, idx);
4013
4014 if (val < 0) /* race ? */
4015 val = 0;
4016 return val;
4017}
4018
4019static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
4020{
4021 u64 val;
4022
4023 if (!mem_cgroup_is_root(memcg)) {
4024 if (!swap)
4025 return res_counter_read_u64(&memcg->res, RES_USAGE);
4026 else
4027 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
4028 }
4029
4030 /*
4031 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4032 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4033 */
4034 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4035 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
4036
4037 if (swap)
4038 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
4039
4040 return val << PAGE_SHIFT;
4041}
4042
4043
Tejun Heo791badb2013-12-05 12:28:02 -05004044static u64 mem_cgroup_read_u64(struct cgroup_subsys_state *css,
Johannes Weiner05b84302014-08-06 16:05:59 -07004045 struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004046{
Tejun Heo182446d2013-08-08 20:11:24 -04004047 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weiner05b84302014-08-06 16:05:59 -07004048 enum res_type type = MEMFILE_TYPE(cft->private);
4049 int name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004050
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004051 switch (type) {
4052 case _MEM:
Johannes Weinerce00a962014-09-05 08:43:57 -04004053 if (name == RES_USAGE)
4054 return mem_cgroup_usage(memcg, false);
Johannes Weiner05b84302014-08-06 16:05:59 -07004055 return res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004056 case _MEMSWAP:
Johannes Weinerce00a962014-09-05 08:43:57 -04004057 if (name == RES_USAGE)
4058 return mem_cgroup_usage(memcg, true);
Johannes Weiner05b84302014-08-06 16:05:59 -07004059 return res_counter_read_u64(&memcg->memsw, name);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004060 case _KMEM:
Johannes Weiner05b84302014-08-06 16:05:59 -07004061 return res_counter_read_u64(&memcg->kmem, name);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004062 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004063 default:
4064 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004065 }
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004066}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004067
Glauber Costa510fc4e2012-12-18 14:21:47 -08004068#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydovd6441632014-01-23 15:53:09 -08004069/* should be called with activate_kmem_mutex held */
4070static int __memcg_activate_kmem(struct mem_cgroup *memcg,
4071 unsigned long long limit)
4072{
4073 int err = 0;
4074 int memcg_id;
4075
4076 if (memcg_kmem_is_active(memcg))
4077 return 0;
4078
4079 /*
4080 * We are going to allocate memory for data shared by all memory
4081 * cgroups so let's stop accounting here.
4082 */
4083 memcg_stop_kmem_account();
4084
Glauber Costa510fc4e2012-12-18 14:21:47 -08004085 /*
4086 * For simplicity, we won't allow this to be disabled. It also can't
4087 * be changed if the cgroup has children already, or if tasks had
4088 * already joined.
4089 *
4090 * If tasks join before we set the limit, a person looking at
4091 * kmem.usage_in_bytes will have no way to determine when it took
4092 * place, which makes the value quite meaningless.
4093 *
4094 * After it first became limited, changes in the value of the limit are
4095 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004096 */
Glauber Costa09998212013-02-22 16:34:55 -08004097 mutex_lock(&memcg_create_mutex);
Tejun Heoea280e72014-05-16 13:22:48 -04004098 if (cgroup_has_tasks(memcg->css.cgroup) ||
4099 (memcg->use_hierarchy && memcg_has_children(memcg)))
Vladimir Davydovd6441632014-01-23 15:53:09 -08004100 err = -EBUSY;
Glauber Costa09998212013-02-22 16:34:55 -08004101 mutex_unlock(&memcg_create_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004102 if (err)
4103 goto out;
4104
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07004105 memcg_id = memcg_alloc_cache_id();
Vladimir Davydovd6441632014-01-23 15:53:09 -08004106 if (memcg_id < 0) {
4107 err = memcg_id;
4108 goto out;
4109 }
4110
Vladimir Davydovd6441632014-01-23 15:53:09 -08004111 memcg->kmemcg_id = memcg_id;
4112 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004113
4114 /*
4115 * We couldn't have accounted to this cgroup, because it hasn't got the
4116 * active bit set yet, so this should succeed.
4117 */
4118 err = res_counter_set_limit(&memcg->kmem, limit);
4119 VM_BUG_ON(err);
4120
4121 static_key_slow_inc(&memcg_kmem_enabled_key);
4122 /*
4123 * Setting the active bit after enabling static branching will
4124 * guarantee no one starts accounting before all call sites are
4125 * patched.
4126 */
4127 memcg_kmem_set_active(memcg);
4128out:
4129 memcg_resume_kmem_account();
4130 return err;
Vladimir Davydovd6441632014-01-23 15:53:09 -08004131}
4132
4133static int memcg_activate_kmem(struct mem_cgroup *memcg,
4134 unsigned long long limit)
4135{
4136 int ret;
4137
4138 mutex_lock(&activate_kmem_mutex);
4139 ret = __memcg_activate_kmem(memcg, limit);
4140 mutex_unlock(&activate_kmem_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004141 return ret;
4142}
4143
Vladimir Davydovd6441632014-01-23 15:53:09 -08004144static int memcg_update_kmem_limit(struct mem_cgroup *memcg,
4145 unsigned long long val)
4146{
4147 int ret;
4148
4149 if (!memcg_kmem_is_active(memcg))
4150 ret = memcg_activate_kmem(memcg, val);
4151 else
4152 ret = res_counter_set_limit(&memcg->kmem, val);
4153 return ret;
4154}
4155
Glauber Costa55007d82012-12-18 14:22:38 -08004156static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004157{
Glauber Costa55007d82012-12-18 14:22:38 -08004158 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004159 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004160
Glauber Costa510fc4e2012-12-18 14:21:47 -08004161 if (!parent)
Vladimir Davydovd6441632014-01-23 15:53:09 -08004162 return 0;
Glauber Costa55007d82012-12-18 14:22:38 -08004163
Vladimir Davydovd6441632014-01-23 15:53:09 -08004164 mutex_lock(&activate_kmem_mutex);
Glauber Costaa8964b92012-12-18 14:22:09 -08004165 /*
Vladimir Davydovd6441632014-01-23 15:53:09 -08004166 * If the parent cgroup is not kmem-active now, it cannot be activated
4167 * after this point, because it has at least one child already.
Glauber Costaa8964b92012-12-18 14:22:09 -08004168 */
Vladimir Davydovd6441632014-01-23 15:53:09 -08004169 if (memcg_kmem_is_active(parent))
4170 ret = __memcg_activate_kmem(memcg, RES_COUNTER_MAX);
4171 mutex_unlock(&activate_kmem_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08004172 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004173}
Vladimir Davydovd6441632014-01-23 15:53:09 -08004174#else
4175static int memcg_update_kmem_limit(struct mem_cgroup *memcg,
4176 unsigned long long val)
4177{
4178 return -EINVAL;
4179}
Hugh Dickins6d0439902013-02-22 16:35:50 -08004180#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08004181
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004182/*
4183 * The user of this function is...
4184 * RES_LIMIT.
4185 */
Tejun Heo451af502014-05-13 12:16:21 -04004186static ssize_t mem_cgroup_write(struct kernfs_open_file *of,
4187 char *buf, size_t nbytes, loff_t off)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004188{
Tejun Heo451af502014-05-13 12:16:21 -04004189 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Glauber Costa86ae53e2012-12-18 14:21:45 -08004190 enum res_type type;
4191 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004192 unsigned long long val;
4193 int ret;
4194
Tejun Heo451af502014-05-13 12:16:21 -04004195 buf = strstrip(buf);
4196 type = MEMFILE_TYPE(of_cft(of)->private);
4197 name = MEMFILE_ATTR(of_cft(of)->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004198
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004199 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004200 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07004201 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
4202 ret = -EINVAL;
4203 break;
4204 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004205 /* This function does all necessary parse...reuse it */
Tejun Heo451af502014-05-13 12:16:21 -04004206 ret = res_counter_memparse_write_strategy(buf, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004207 if (ret)
4208 break;
4209 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004210 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004211 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004212 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004213 else if (type == _KMEM)
Vladimir Davydovd6441632014-01-23 15:53:09 -08004214 ret = memcg_update_kmem_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004215 else
4216 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004217 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07004218 case RES_SOFT_LIMIT:
Tejun Heo451af502014-05-13 12:16:21 -04004219 ret = res_counter_memparse_write_strategy(buf, &val);
Balbir Singh296c81d2009-09-23 15:56:36 -07004220 if (ret)
4221 break;
4222 /*
4223 * For memsw, soft limits are hard to implement in terms
4224 * of semantics, for now, we support soft limits for
4225 * control without swap
4226 */
4227 if (type == _MEM)
4228 ret = res_counter_set_soft_limit(&memcg->res, val);
4229 else
4230 ret = -EINVAL;
4231 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004232 default:
4233 ret = -EINVAL; /* should be BUG() ? */
4234 break;
4235 }
Tejun Heo451af502014-05-13 12:16:21 -04004236 return ret ?: nbytes;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004237}
4238
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004239static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
4240 unsigned long long *mem_limit, unsigned long long *memsw_limit)
4241{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004242 unsigned long long min_limit, min_memsw_limit, tmp;
4243
4244 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4245 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004246 if (!memcg->use_hierarchy)
4247 goto out;
4248
Tejun Heo5c9d5352014-05-16 13:22:48 -04004249 while (memcg->css.parent) {
4250 memcg = mem_cgroup_from_css(memcg->css.parent);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004251 if (!memcg->use_hierarchy)
4252 break;
4253 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4254 min_limit = min(min_limit, tmp);
4255 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4256 min_memsw_limit = min(min_memsw_limit, tmp);
4257 }
4258out:
4259 *mem_limit = min_limit;
4260 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004261}
4262
Tejun Heo6770c642014-05-13 12:16:21 -04004263static ssize_t mem_cgroup_reset(struct kernfs_open_file *of, char *buf,
4264 size_t nbytes, loff_t off)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004265{
Tejun Heo6770c642014-05-13 12:16:21 -04004266 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Glauber Costa86ae53e2012-12-18 14:21:45 -08004267 int name;
4268 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004269
Tejun Heo6770c642014-05-13 12:16:21 -04004270 type = MEMFILE_TYPE(of_cft(of)->private);
4271 name = MEMFILE_ATTR(of_cft(of)->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004272
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004273 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004274 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004275 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004276 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004277 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004278 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004279 else if (type == _KMEM)
4280 res_counter_reset_max(&memcg->kmem);
4281 else
4282 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004283 break;
4284 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004285 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004286 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004287 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004288 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004289 else if (type == _KMEM)
4290 res_counter_reset_failcnt(&memcg->kmem);
4291 else
4292 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004293 break;
4294 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004295
Tejun Heo6770c642014-05-13 12:16:21 -04004296 return nbytes;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004297}
4298
Tejun Heo182446d2013-08-08 20:11:24 -04004299static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004300 struct cftype *cft)
4301{
Tejun Heo182446d2013-08-08 20:11:24 -04004302 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004303}
4304
Daisuke Nishimura02491442010-03-10 15:22:17 -08004305#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04004306static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004307 struct cftype *cft, u64 val)
4308{
Tejun Heo182446d2013-08-08 20:11:24 -04004309 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004310
4311 if (val >= (1 << NR_MOVE_TYPE))
4312 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004313
Glauber Costaee5e8472013-02-22 16:34:50 -08004314 /*
4315 * No kind of locking is needed in here, because ->can_attach() will
4316 * check this value once in the beginning of the process, and then carry
4317 * on with stale data. This means that changes to this value will only
4318 * affect task migrations starting after the change.
4319 */
4320 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004321 return 0;
4322}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004323#else
Tejun Heo182446d2013-08-08 20:11:24 -04004324static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08004325 struct cftype *cft, u64 val)
4326{
4327 return -ENOSYS;
4328}
4329#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004330
Ying Han406eb0c2011-05-26 16:25:37 -07004331#ifdef CONFIG_NUMA
Tejun Heo2da8ca82013-12-05 12:28:04 -05004332static int memcg_numa_stat_show(struct seq_file *m, void *v)
Ying Han406eb0c2011-05-26 16:25:37 -07004333{
Greg Thelen25485de2013-11-12 15:07:40 -08004334 struct numa_stat {
4335 const char *name;
4336 unsigned int lru_mask;
4337 };
4338
4339 static const struct numa_stat stats[] = {
4340 { "total", LRU_ALL },
4341 { "file", LRU_ALL_FILE },
4342 { "anon", LRU_ALL_ANON },
4343 { "unevictable", BIT(LRU_UNEVICTABLE) },
4344 };
4345 const struct numa_stat *stat;
Ying Han406eb0c2011-05-26 16:25:37 -07004346 int nid;
Greg Thelen25485de2013-11-12 15:07:40 -08004347 unsigned long nr;
Tejun Heo2da8ca82013-12-05 12:28:04 -05004348 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Ying Han406eb0c2011-05-26 16:25:37 -07004349
Greg Thelen25485de2013-11-12 15:07:40 -08004350 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
4351 nr = mem_cgroup_nr_lru_pages(memcg, stat->lru_mask);
4352 seq_printf(m, "%s=%lu", stat->name, nr);
4353 for_each_node_state(nid, N_MEMORY) {
4354 nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
4355 stat->lru_mask);
4356 seq_printf(m, " N%d=%lu", nid, nr);
4357 }
4358 seq_putc(m, '\n');
Ying Han406eb0c2011-05-26 16:25:37 -07004359 }
Ying Han406eb0c2011-05-26 16:25:37 -07004360
Ying Han071aee12013-11-12 15:07:41 -08004361 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
4362 struct mem_cgroup *iter;
Ying Han406eb0c2011-05-26 16:25:37 -07004363
Ying Han071aee12013-11-12 15:07:41 -08004364 nr = 0;
4365 for_each_mem_cgroup_tree(iter, memcg)
4366 nr += mem_cgroup_nr_lru_pages(iter, stat->lru_mask);
4367 seq_printf(m, "hierarchical_%s=%lu", stat->name, nr);
4368 for_each_node_state(nid, N_MEMORY) {
4369 nr = 0;
4370 for_each_mem_cgroup_tree(iter, memcg)
4371 nr += mem_cgroup_node_nr_lru_pages(
4372 iter, nid, stat->lru_mask);
4373 seq_printf(m, " N%d=%lu", nid, nr);
4374 }
4375 seq_putc(m, '\n');
Ying Han406eb0c2011-05-26 16:25:37 -07004376 }
Ying Han406eb0c2011-05-26 16:25:37 -07004377
Ying Han406eb0c2011-05-26 16:25:37 -07004378 return 0;
4379}
4380#endif /* CONFIG_NUMA */
4381
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004382static inline void mem_cgroup_lru_names_not_uptodate(void)
4383{
4384 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
4385}
4386
Tejun Heo2da8ca82013-12-05 12:28:04 -05004387static int memcg_stat_show(struct seq_file *m, void *v)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004388{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004389 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004390 struct mem_cgroup *mi;
4391 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004392
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004393 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004394 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004395 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004396 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
4397 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004398 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004399
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004400 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
4401 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
4402 mem_cgroup_read_events(memcg, i));
4403
4404 for (i = 0; i < NR_LRU_LISTS; i++)
4405 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
4406 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
4407
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004408 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004409 {
4410 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004411 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004412 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004413 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004414 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4415 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004416 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004417
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004418 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
4419 long long val = 0;
4420
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004421 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004422 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004423 for_each_mem_cgroup_tree(mi, memcg)
4424 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
4425 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
4426 }
4427
4428 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
4429 unsigned long long val = 0;
4430
4431 for_each_mem_cgroup_tree(mi, memcg)
4432 val += mem_cgroup_read_events(mi, i);
4433 seq_printf(m, "total_%s %llu\n",
4434 mem_cgroup_events_names[i], val);
4435 }
4436
4437 for (i = 0; i < NR_LRU_LISTS; i++) {
4438 unsigned long long val = 0;
4439
4440 for_each_mem_cgroup_tree(mi, memcg)
4441 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
4442 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004443 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004444
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004445#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004446 {
4447 int nid, zid;
4448 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07004449 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004450 unsigned long recent_rotated[2] = {0, 0};
4451 unsigned long recent_scanned[2] = {0, 0};
4452
4453 for_each_online_node(nid)
4454 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Jianyu Zhane2318752014-06-06 14:38:20 -07004455 mz = &memcg->nodeinfo[nid]->zoneinfo[zid];
Hugh Dickins89abfab2012-05-29 15:06:53 -07004456 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004457
Hugh Dickins89abfab2012-05-29 15:06:53 -07004458 recent_rotated[0] += rstat->recent_rotated[0];
4459 recent_rotated[1] += rstat->recent_rotated[1];
4460 recent_scanned[0] += rstat->recent_scanned[0];
4461 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004462 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07004463 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
4464 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
4465 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
4466 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004467 }
4468#endif
4469
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004470 return 0;
4471}
4472
Tejun Heo182446d2013-08-08 20:11:24 -04004473static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
4474 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004475{
Tejun Heo182446d2013-08-08 20:11:24 -04004476 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004477
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004478 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004479}
4480
Tejun Heo182446d2013-08-08 20:11:24 -04004481static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
4482 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004483{
Tejun Heo182446d2013-08-08 20:11:24 -04004484 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Li Zefan068b38c2009-01-15 13:51:26 -08004485
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07004486 if (val > 100)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004487 return -EINVAL;
4488
Linus Torvalds14208b02014-06-09 15:03:33 -07004489 if (css->parent)
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07004490 memcg->swappiness = val;
4491 else
4492 vm_swappiness = val;
Li Zefan068b38c2009-01-15 13:51:26 -08004493
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004494 return 0;
4495}
4496
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004497static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4498{
4499 struct mem_cgroup_threshold_ary *t;
4500 u64 usage;
4501 int i;
4502
4503 rcu_read_lock();
4504 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004505 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004506 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004507 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004508
4509 if (!t)
4510 goto unlock;
4511
Johannes Weinerce00a962014-09-05 08:43:57 -04004512 usage = mem_cgroup_usage(memcg, swap);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004513
4514 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004515 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004516 * If it's not true, a threshold was crossed after last
4517 * call of __mem_cgroup_threshold().
4518 */
Phil Carmody5407a562010-05-26 14:42:42 -07004519 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004520
4521 /*
4522 * Iterate backward over array of thresholds starting from
4523 * current_threshold and check if a threshold is crossed.
4524 * If none of thresholds below usage is crossed, we read
4525 * only one element of the array here.
4526 */
4527 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4528 eventfd_signal(t->entries[i].eventfd, 1);
4529
4530 /* i = current_threshold + 1 */
4531 i++;
4532
4533 /*
4534 * Iterate forward over array of thresholds starting from
4535 * current_threshold+1 and check if a threshold is crossed.
4536 * If none of thresholds above usage is crossed, we read
4537 * only one element of the array here.
4538 */
4539 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4540 eventfd_signal(t->entries[i].eventfd, 1);
4541
4542 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004543 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004544unlock:
4545 rcu_read_unlock();
4546}
4547
4548static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4549{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004550 while (memcg) {
4551 __mem_cgroup_threshold(memcg, false);
4552 if (do_swap_account)
4553 __mem_cgroup_threshold(memcg, true);
4554
4555 memcg = parent_mem_cgroup(memcg);
4556 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004557}
4558
4559static int compare_thresholds(const void *a, const void *b)
4560{
4561 const struct mem_cgroup_threshold *_a = a;
4562 const struct mem_cgroup_threshold *_b = b;
4563
Greg Thelen2bff24a2013-09-11 14:23:08 -07004564 if (_a->threshold > _b->threshold)
4565 return 1;
4566
4567 if (_a->threshold < _b->threshold)
4568 return -1;
4569
4570 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004571}
4572
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004573static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004574{
4575 struct mem_cgroup_eventfd_list *ev;
4576
Michal Hocko2bcf2e92014-07-30 16:08:33 -07004577 spin_lock(&memcg_oom_lock);
4578
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004579 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004580 eventfd_signal(ev->eventfd, 1);
Michal Hocko2bcf2e92014-07-30 16:08:33 -07004581
4582 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004583 return 0;
4584}
4585
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004586static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004587{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004588 struct mem_cgroup *iter;
4589
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004590 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004591 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004592}
4593
Tejun Heo59b6f872013-11-22 18:20:43 -05004594static int __mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004595 struct eventfd_ctx *eventfd, const char *args, enum res_type type)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004596{
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004597 struct mem_cgroup_thresholds *thresholds;
4598 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004599 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004600 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004601
4602 ret = res_counter_memparse_write_strategy(args, &threshold);
4603 if (ret)
4604 return ret;
4605
4606 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004607
Johannes Weiner05b84302014-08-06 16:05:59 -07004608 if (type == _MEM) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004609 thresholds = &memcg->thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004610 usage = mem_cgroup_usage(memcg, false);
Johannes Weiner05b84302014-08-06 16:05:59 -07004611 } else if (type == _MEMSWAP) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004612 thresholds = &memcg->memsw_thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004613 usage = mem_cgroup_usage(memcg, true);
Johannes Weiner05b84302014-08-06 16:05:59 -07004614 } else
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004615 BUG();
4616
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004617 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004618 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004619 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4620
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004621 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004622
4623 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004624 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004625 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004626 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004627 ret = -ENOMEM;
4628 goto unlock;
4629 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004630 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004631
4632 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004633 if (thresholds->primary) {
4634 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004635 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004636 }
4637
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004638 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004639 new->entries[size - 1].eventfd = eventfd;
4640 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004641
4642 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004643 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004644 compare_thresholds, NULL);
4645
4646 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004647 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004648 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004649 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004650 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004651 * new->current_threshold will not be used until
4652 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004653 * it here.
4654 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004655 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004656 } else
4657 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004658 }
4659
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004660 /* Free old spare buffer and save old primary buffer as spare */
4661 kfree(thresholds->spare);
4662 thresholds->spare = thresholds->primary;
4663
4664 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004665
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004666 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004667 synchronize_rcu();
4668
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004669unlock:
4670 mutex_unlock(&memcg->thresholds_lock);
4671
4672 return ret;
4673}
4674
Tejun Heo59b6f872013-11-22 18:20:43 -05004675static int mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004676 struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004677{
Tejun Heo59b6f872013-11-22 18:20:43 -05004678 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEM);
Tejun Heo347c4a82013-11-22 18:20:43 -05004679}
4680
Tejun Heo59b6f872013-11-22 18:20:43 -05004681static int memsw_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004682 struct eventfd_ctx *eventfd, const char *args)
4683{
Tejun Heo59b6f872013-11-22 18:20:43 -05004684 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEMSWAP);
Tejun Heo347c4a82013-11-22 18:20:43 -05004685}
4686
Tejun Heo59b6f872013-11-22 18:20:43 -05004687static void __mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004688 struct eventfd_ctx *eventfd, enum res_type type)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004689{
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004690 struct mem_cgroup_thresholds *thresholds;
4691 struct mem_cgroup_threshold_ary *new;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004692 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004693 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004694
4695 mutex_lock(&memcg->thresholds_lock);
Johannes Weiner05b84302014-08-06 16:05:59 -07004696
4697 if (type == _MEM) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004698 thresholds = &memcg->thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004699 usage = mem_cgroup_usage(memcg, false);
Johannes Weiner05b84302014-08-06 16:05:59 -07004700 } else if (type == _MEMSWAP) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004701 thresholds = &memcg->memsw_thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004702 usage = mem_cgroup_usage(memcg, true);
Johannes Weiner05b84302014-08-06 16:05:59 -07004703 } else
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004704 BUG();
4705
Anton Vorontsov371528c2012-02-24 05:14:46 +04004706 if (!thresholds->primary)
4707 goto unlock;
4708
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004709 /* Check if a threshold crossed before removing */
4710 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4711
4712 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004713 size = 0;
4714 for (i = 0; i < thresholds->primary->size; i++) {
4715 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004716 size++;
4717 }
4718
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004719 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004720
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004721 /* Set thresholds array to NULL if we don't have thresholds */
4722 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004723 kfree(new);
4724 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004725 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004726 }
4727
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004728 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004729
4730 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004731 new->current_threshold = -1;
4732 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4733 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004734 continue;
4735
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004736 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004737 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004738 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004739 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004740 * until rcu_assign_pointer(), so it's safe to increment
4741 * it here.
4742 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004743 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004744 }
4745 j++;
4746 }
4747
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004748swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004749 /* Swap primary and spare array */
4750 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004751 /* If all events are unregistered, free the spare array */
4752 if (!new) {
4753 kfree(thresholds->spare);
4754 thresholds->spare = NULL;
4755 }
4756
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004757 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004758
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004759 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004760 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04004761unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004762 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004763}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004764
Tejun Heo59b6f872013-11-22 18:20:43 -05004765static void mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004766 struct eventfd_ctx *eventfd)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004767{
Tejun Heo59b6f872013-11-22 18:20:43 -05004768 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEM);
Tejun Heo347c4a82013-11-22 18:20:43 -05004769}
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004770
Tejun Heo59b6f872013-11-22 18:20:43 -05004771static void memsw_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004772 struct eventfd_ctx *eventfd)
4773{
Tejun Heo59b6f872013-11-22 18:20:43 -05004774 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEMSWAP);
Tejun Heo347c4a82013-11-22 18:20:43 -05004775}
4776
Tejun Heo59b6f872013-11-22 18:20:43 -05004777static int mem_cgroup_oom_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004778 struct eventfd_ctx *eventfd, const char *args)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004779{
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004780 struct mem_cgroup_eventfd_list *event;
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004781
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004782 event = kmalloc(sizeof(*event), GFP_KERNEL);
4783 if (!event)
4784 return -ENOMEM;
4785
Michal Hocko1af8efe2011-07-26 16:08:24 -07004786 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004787
4788 event->eventfd = eventfd;
4789 list_add(&event->list, &memcg->oom_notify);
4790
4791 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07004792 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004793 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004794 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004795
4796 return 0;
4797}
4798
Tejun Heo59b6f872013-11-22 18:20:43 -05004799static void mem_cgroup_oom_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004800 struct eventfd_ctx *eventfd)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004801{
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004802 struct mem_cgroup_eventfd_list *ev, *tmp;
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004803
Michal Hocko1af8efe2011-07-26 16:08:24 -07004804 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004805
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004806 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004807 if (ev->eventfd == eventfd) {
4808 list_del(&ev->list);
4809 kfree(ev);
4810 }
4811 }
4812
Michal Hocko1af8efe2011-07-26 16:08:24 -07004813 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004814}
4815
Tejun Heo2da8ca82013-12-05 12:28:04 -05004816static int mem_cgroup_oom_control_read(struct seq_file *sf, void *v)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004817{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004818 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(sf));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004819
Tejun Heo791badb2013-12-05 12:28:02 -05004820 seq_printf(sf, "oom_kill_disable %d\n", memcg->oom_kill_disable);
4821 seq_printf(sf, "under_oom %d\n", (bool)atomic_read(&memcg->under_oom));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004822 return 0;
4823}
4824
Tejun Heo182446d2013-08-08 20:11:24 -04004825static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004826 struct cftype *cft, u64 val)
4827{
Tejun Heo182446d2013-08-08 20:11:24 -04004828 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004829
4830 /* cannot set to root cgroup and only 0 and 1 are allowed */
Linus Torvalds14208b02014-06-09 15:03:33 -07004831 if (!css->parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004832 return -EINVAL;
4833
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004834 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004835 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004836 memcg_oom_recover(memcg);
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07004837
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004838 return 0;
4839}
4840
Andrew Mortonc255a452012-07-31 16:43:02 -07004841#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03004842static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004843{
Glauber Costa55007d82012-12-18 14:22:38 -08004844 int ret;
4845
Glauber Costa2633d7a2012-12-18 14:22:34 -08004846 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08004847 ret = memcg_propagate_kmem(memcg);
4848 if (ret)
4849 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08004850
Glauber Costa1d62e432012-04-09 19:36:33 -03004851 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07004852}
Glauber Costae5671df2011-12-11 21:47:01 +00004853
Li Zefan10d5ebf2013-07-08 16:00:33 -07004854static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004855{
Glauber Costa1d62e432012-04-09 19:36:33 -03004856 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07004857}
4858
4859static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
4860{
4861 if (!memcg_kmem_is_active(memcg))
4862 return;
4863
4864 /*
4865 * kmem charges can outlive the cgroup. In the case of slab
4866 * pages, for instance, a page contain objects from various
4867 * processes. As we prevent from taking a reference for every
4868 * such allocation we have to be careful when doing uncharge
4869 * (see memcg_uncharge_kmem) and here during offlining.
4870 *
4871 * The idea is that that only the _last_ uncharge which sees
4872 * the dead memcg will drop the last reference. An additional
4873 * reference is taken here before the group is marked dead
4874 * which is then paired with css_put during uncharge resp. here.
4875 *
4876 * Although this might sound strange as this path is called from
Tejun Heoec903c02014-05-13 12:11:01 -04004877 * css_offline() when the referencemight have dropped down to 0 and
4878 * shouldn't be incremented anymore (css_tryget_online() would
4879 * fail) we do not have other options because of the kmem
4880 * allocations lifetime.
Li Zefan10d5ebf2013-07-08 16:00:33 -07004881 */
4882 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08004883
4884 memcg_kmem_mark_dead(memcg);
4885
4886 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
4887 return;
4888
Glauber Costa7de37682012-12-18 14:22:07 -08004889 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07004890 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004891}
Glauber Costae5671df2011-12-11 21:47:01 +00004892#else
Glauber Costacbe128e32012-04-09 19:36:34 -03004893static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00004894{
4895 return 0;
4896}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004897
Li Zefan10d5ebf2013-07-08 16:00:33 -07004898static void memcg_destroy_kmem(struct mem_cgroup *memcg)
4899{
4900}
4901
4902static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00004903{
4904}
Glauber Costae5671df2011-12-11 21:47:01 +00004905#endif
4906
Tejun Heo79bd9812013-11-22 18:20:42 -05004907/*
Tejun Heo3bc942f2013-11-22 18:20:44 -05004908 * DO NOT USE IN NEW FILES.
4909 *
4910 * "cgroup.event_control" implementation.
4911 *
4912 * This is way over-engineered. It tries to support fully configurable
4913 * events for each user. Such level of flexibility is completely
4914 * unnecessary especially in the light of the planned unified hierarchy.
4915 *
4916 * Please deprecate this and replace with something simpler if at all
4917 * possible.
4918 */
4919
4920/*
Tejun Heo79bd9812013-11-22 18:20:42 -05004921 * Unregister event and free resources.
4922 *
4923 * Gets called from workqueue.
4924 */
Tejun Heo3bc942f2013-11-22 18:20:44 -05004925static void memcg_event_remove(struct work_struct *work)
Tejun Heo79bd9812013-11-22 18:20:42 -05004926{
Tejun Heo3bc942f2013-11-22 18:20:44 -05004927 struct mem_cgroup_event *event =
4928 container_of(work, struct mem_cgroup_event, remove);
Tejun Heo59b6f872013-11-22 18:20:43 -05004929 struct mem_cgroup *memcg = event->memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05004930
4931 remove_wait_queue(event->wqh, &event->wait);
4932
Tejun Heo59b6f872013-11-22 18:20:43 -05004933 event->unregister_event(memcg, event->eventfd);
Tejun Heo79bd9812013-11-22 18:20:42 -05004934
4935 /* Notify userspace the event is going away. */
4936 eventfd_signal(event->eventfd, 1);
4937
4938 eventfd_ctx_put(event->eventfd);
4939 kfree(event);
Tejun Heo59b6f872013-11-22 18:20:43 -05004940 css_put(&memcg->css);
Tejun Heo79bd9812013-11-22 18:20:42 -05004941}
4942
4943/*
4944 * Gets called on POLLHUP on eventfd when user closes it.
4945 *
4946 * Called with wqh->lock held and interrupts disabled.
4947 */
Tejun Heo3bc942f2013-11-22 18:20:44 -05004948static int memcg_event_wake(wait_queue_t *wait, unsigned mode,
4949 int sync, void *key)
Tejun Heo79bd9812013-11-22 18:20:42 -05004950{
Tejun Heo3bc942f2013-11-22 18:20:44 -05004951 struct mem_cgroup_event *event =
4952 container_of(wait, struct mem_cgroup_event, wait);
Tejun Heo59b6f872013-11-22 18:20:43 -05004953 struct mem_cgroup *memcg = event->memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05004954 unsigned long flags = (unsigned long)key;
4955
4956 if (flags & POLLHUP) {
4957 /*
4958 * If the event has been detached at cgroup removal, we
4959 * can simply return knowing the other side will cleanup
4960 * for us.
4961 *
4962 * We can't race against event freeing since the other
4963 * side will require wqh->lock via remove_wait_queue(),
4964 * which we hold.
4965 */
Tejun Heofba94802013-11-22 18:20:43 -05004966 spin_lock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05004967 if (!list_empty(&event->list)) {
4968 list_del_init(&event->list);
4969 /*
4970 * We are in atomic context, but cgroup_event_remove()
4971 * may sleep, so we have to call it in workqueue.
4972 */
4973 schedule_work(&event->remove);
4974 }
Tejun Heofba94802013-11-22 18:20:43 -05004975 spin_unlock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05004976 }
4977
4978 return 0;
4979}
4980
Tejun Heo3bc942f2013-11-22 18:20:44 -05004981static void memcg_event_ptable_queue_proc(struct file *file,
Tejun Heo79bd9812013-11-22 18:20:42 -05004982 wait_queue_head_t *wqh, poll_table *pt)
4983{
Tejun Heo3bc942f2013-11-22 18:20:44 -05004984 struct mem_cgroup_event *event =
4985 container_of(pt, struct mem_cgroup_event, pt);
Tejun Heo79bd9812013-11-22 18:20:42 -05004986
4987 event->wqh = wqh;
4988 add_wait_queue(wqh, &event->wait);
4989}
4990
4991/*
Tejun Heo3bc942f2013-11-22 18:20:44 -05004992 * DO NOT USE IN NEW FILES.
4993 *
Tejun Heo79bd9812013-11-22 18:20:42 -05004994 * Parse input and register new cgroup event handler.
4995 *
4996 * Input must be in format '<event_fd> <control_fd> <args>'.
4997 * Interpretation of args is defined by control file implementation.
4998 */
Tejun Heo451af502014-05-13 12:16:21 -04004999static ssize_t memcg_write_event_control(struct kernfs_open_file *of,
5000 char *buf, size_t nbytes, loff_t off)
Tejun Heo79bd9812013-11-22 18:20:42 -05005001{
Tejun Heo451af502014-05-13 12:16:21 -04005002 struct cgroup_subsys_state *css = of_css(of);
Tejun Heofba94802013-11-22 18:20:43 -05005003 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo3bc942f2013-11-22 18:20:44 -05005004 struct mem_cgroup_event *event;
Tejun Heo79bd9812013-11-22 18:20:42 -05005005 struct cgroup_subsys_state *cfile_css;
5006 unsigned int efd, cfd;
5007 struct fd efile;
5008 struct fd cfile;
Tejun Heofba94802013-11-22 18:20:43 -05005009 const char *name;
Tejun Heo79bd9812013-11-22 18:20:42 -05005010 char *endp;
5011 int ret;
5012
Tejun Heo451af502014-05-13 12:16:21 -04005013 buf = strstrip(buf);
5014
5015 efd = simple_strtoul(buf, &endp, 10);
Tejun Heo79bd9812013-11-22 18:20:42 -05005016 if (*endp != ' ')
5017 return -EINVAL;
Tejun Heo451af502014-05-13 12:16:21 -04005018 buf = endp + 1;
Tejun Heo79bd9812013-11-22 18:20:42 -05005019
Tejun Heo451af502014-05-13 12:16:21 -04005020 cfd = simple_strtoul(buf, &endp, 10);
Tejun Heo79bd9812013-11-22 18:20:42 -05005021 if ((*endp != ' ') && (*endp != '\0'))
5022 return -EINVAL;
Tejun Heo451af502014-05-13 12:16:21 -04005023 buf = endp + 1;
Tejun Heo79bd9812013-11-22 18:20:42 -05005024
5025 event = kzalloc(sizeof(*event), GFP_KERNEL);
5026 if (!event)
5027 return -ENOMEM;
5028
Tejun Heo59b6f872013-11-22 18:20:43 -05005029 event->memcg = memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05005030 INIT_LIST_HEAD(&event->list);
Tejun Heo3bc942f2013-11-22 18:20:44 -05005031 init_poll_funcptr(&event->pt, memcg_event_ptable_queue_proc);
5032 init_waitqueue_func_entry(&event->wait, memcg_event_wake);
5033 INIT_WORK(&event->remove, memcg_event_remove);
Tejun Heo79bd9812013-11-22 18:20:42 -05005034
5035 efile = fdget(efd);
5036 if (!efile.file) {
5037 ret = -EBADF;
5038 goto out_kfree;
5039 }
5040
5041 event->eventfd = eventfd_ctx_fileget(efile.file);
5042 if (IS_ERR(event->eventfd)) {
5043 ret = PTR_ERR(event->eventfd);
5044 goto out_put_efile;
5045 }
5046
5047 cfile = fdget(cfd);
5048 if (!cfile.file) {
5049 ret = -EBADF;
5050 goto out_put_eventfd;
5051 }
5052
5053 /* the process need read permission on control file */
5054 /* AV: shouldn't we check that it's been opened for read instead? */
5055 ret = inode_permission(file_inode(cfile.file), MAY_READ);
5056 if (ret < 0)
5057 goto out_put_cfile;
5058
Tejun Heo79bd9812013-11-22 18:20:42 -05005059 /*
Tejun Heofba94802013-11-22 18:20:43 -05005060 * Determine the event callbacks and set them in @event. This used
5061 * to be done via struct cftype but cgroup core no longer knows
5062 * about these events. The following is crude but the whole thing
5063 * is for compatibility anyway.
Tejun Heo3bc942f2013-11-22 18:20:44 -05005064 *
5065 * DO NOT ADD NEW FILES.
Tejun Heofba94802013-11-22 18:20:43 -05005066 */
5067 name = cfile.file->f_dentry->d_name.name;
5068
5069 if (!strcmp(name, "memory.usage_in_bytes")) {
5070 event->register_event = mem_cgroup_usage_register_event;
5071 event->unregister_event = mem_cgroup_usage_unregister_event;
5072 } else if (!strcmp(name, "memory.oom_control")) {
5073 event->register_event = mem_cgroup_oom_register_event;
5074 event->unregister_event = mem_cgroup_oom_unregister_event;
5075 } else if (!strcmp(name, "memory.pressure_level")) {
5076 event->register_event = vmpressure_register_event;
5077 event->unregister_event = vmpressure_unregister_event;
5078 } else if (!strcmp(name, "memory.memsw.usage_in_bytes")) {
Tejun Heo347c4a82013-11-22 18:20:43 -05005079 event->register_event = memsw_cgroup_usage_register_event;
5080 event->unregister_event = memsw_cgroup_usage_unregister_event;
Tejun Heofba94802013-11-22 18:20:43 -05005081 } else {
5082 ret = -EINVAL;
5083 goto out_put_cfile;
5084 }
5085
5086 /*
Tejun Heob5557c42013-11-22 18:20:42 -05005087 * Verify @cfile should belong to @css. Also, remaining events are
5088 * automatically removed on cgroup destruction but the removal is
5089 * asynchronous, so take an extra ref on @css.
Tejun Heo79bd9812013-11-22 18:20:42 -05005090 */
Tejun Heoec903c02014-05-13 12:11:01 -04005091 cfile_css = css_tryget_online_from_dir(cfile.file->f_dentry->d_parent,
5092 &memory_cgrp_subsys);
Tejun Heo79bd9812013-11-22 18:20:42 -05005093 ret = -EINVAL;
Tejun Heo5a17f542014-02-11 11:52:47 -05005094 if (IS_ERR(cfile_css))
Tejun Heo79bd9812013-11-22 18:20:42 -05005095 goto out_put_cfile;
Tejun Heo5a17f542014-02-11 11:52:47 -05005096 if (cfile_css != css) {
5097 css_put(cfile_css);
5098 goto out_put_cfile;
5099 }
Tejun Heo79bd9812013-11-22 18:20:42 -05005100
Tejun Heo451af502014-05-13 12:16:21 -04005101 ret = event->register_event(memcg, event->eventfd, buf);
Tejun Heo79bd9812013-11-22 18:20:42 -05005102 if (ret)
5103 goto out_put_css;
5104
5105 efile.file->f_op->poll(efile.file, &event->pt);
5106
Tejun Heofba94802013-11-22 18:20:43 -05005107 spin_lock(&memcg->event_list_lock);
5108 list_add(&event->list, &memcg->event_list);
5109 spin_unlock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05005110
5111 fdput(cfile);
5112 fdput(efile);
5113
Tejun Heo451af502014-05-13 12:16:21 -04005114 return nbytes;
Tejun Heo79bd9812013-11-22 18:20:42 -05005115
5116out_put_css:
Tejun Heob5557c42013-11-22 18:20:42 -05005117 css_put(css);
Tejun Heo79bd9812013-11-22 18:20:42 -05005118out_put_cfile:
5119 fdput(cfile);
5120out_put_eventfd:
5121 eventfd_ctx_put(event->eventfd);
5122out_put_efile:
5123 fdput(efile);
5124out_kfree:
5125 kfree(event);
5126
5127 return ret;
5128}
5129
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005130static struct cftype mem_cgroup_files[] = {
5131 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005132 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005133 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05005134 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005135 },
5136 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005137 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005138 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04005139 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005140 .read_u64 = mem_cgroup_read_u64,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005141 },
5142 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005143 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005144 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04005145 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05005146 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005147 },
5148 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005149 .name = "soft_limit_in_bytes",
5150 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04005151 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05005152 .read_u64 = mem_cgroup_read_u64,
Balbir Singh296c81d2009-09-23 15:56:36 -07005153 },
5154 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005155 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005156 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04005157 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005158 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005159 },
Balbir Singh8697d332008-02-07 00:13:59 -08005160 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005161 .name = "stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005162 .seq_show = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005163 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005164 {
5165 .name = "force_empty",
Tejun Heo6770c642014-05-13 12:16:21 -04005166 .write = mem_cgroup_force_empty_write,
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005167 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005168 {
5169 .name = "use_hierarchy",
5170 .write_u64 = mem_cgroup_hierarchy_write,
5171 .read_u64 = mem_cgroup_hierarchy_read,
5172 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005173 {
Tejun Heo3bc942f2013-11-22 18:20:44 -05005174 .name = "cgroup.event_control", /* XXX: for compat */
Tejun Heo451af502014-05-13 12:16:21 -04005175 .write = memcg_write_event_control,
Tejun Heo79bd9812013-11-22 18:20:42 -05005176 .flags = CFTYPE_NO_PREFIX,
5177 .mode = S_IWUGO,
5178 },
5179 {
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005180 .name = "swappiness",
5181 .read_u64 = mem_cgroup_swappiness_read,
5182 .write_u64 = mem_cgroup_swappiness_write,
5183 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005184 {
5185 .name = "move_charge_at_immigrate",
5186 .read_u64 = mem_cgroup_move_charge_read,
5187 .write_u64 = mem_cgroup_move_charge_write,
5188 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005189 {
5190 .name = "oom_control",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005191 .seq_show = mem_cgroup_oom_control_read,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005192 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005193 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5194 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005195 {
5196 .name = "pressure_level",
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005197 },
Ying Han406eb0c2011-05-26 16:25:37 -07005198#ifdef CONFIG_NUMA
5199 {
5200 .name = "numa_stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005201 .seq_show = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005202 },
5203#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005204#ifdef CONFIG_MEMCG_KMEM
5205 {
5206 .name = "kmem.limit_in_bytes",
5207 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04005208 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05005209 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08005210 },
5211 {
5212 .name = "kmem.usage_in_bytes",
5213 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05005214 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08005215 },
5216 {
5217 .name = "kmem.failcnt",
5218 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04005219 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005220 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08005221 },
5222 {
5223 .name = "kmem.max_usage_in_bytes",
5224 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04005225 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005226 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08005227 },
Glauber Costa749c5412012-12-18 14:23:01 -08005228#ifdef CONFIG_SLABINFO
5229 {
5230 .name = "kmem.slabinfo",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005231 .seq_show = mem_cgroup_slabinfo_read,
Glauber Costa749c5412012-12-18 14:23:01 -08005232 },
5233#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005234#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005235 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005236};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005237
Michal Hocko2d110852013-02-22 16:34:43 -08005238#ifdef CONFIG_MEMCG_SWAP
5239static struct cftype memsw_cgroup_files[] = {
5240 {
5241 .name = "memsw.usage_in_bytes",
5242 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05005243 .read_u64 = mem_cgroup_read_u64,
Michal Hocko2d110852013-02-22 16:34:43 -08005244 },
5245 {
5246 .name = "memsw.max_usage_in_bytes",
5247 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04005248 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005249 .read_u64 = mem_cgroup_read_u64,
Michal Hocko2d110852013-02-22 16:34:43 -08005250 },
5251 {
5252 .name = "memsw.limit_in_bytes",
5253 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04005254 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05005255 .read_u64 = mem_cgroup_read_u64,
Michal Hocko2d110852013-02-22 16:34:43 -08005256 },
5257 {
5258 .name = "memsw.failcnt",
5259 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04005260 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05005261 .read_u64 = mem_cgroup_read_u64,
Michal Hocko2d110852013-02-22 16:34:43 -08005262 },
5263 { }, /* terminate */
5264};
5265#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005266static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005267{
5268 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005269 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005270 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005271 /*
5272 * This routine is called against possible nodes.
5273 * But it's BUG to call kmalloc() against offline node.
5274 *
5275 * TODO: this routine can waste much memory for nodes which will
5276 * never be onlined. It's better to use memory hotplug callback
5277 * function.
5278 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005279 if (!node_state(node, N_NORMAL_MEMORY))
5280 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005281 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005282 if (!pn)
5283 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005284
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005285 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5286 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005287 lruvec_init(&mz->lruvec);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07005288 mz->usage_in_excess = 0;
5289 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005290 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005291 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005292 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005293 return 0;
5294}
5295
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005296static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005297{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005298 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005299}
5300
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005301static struct mem_cgroup *mem_cgroup_alloc(void)
5302{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005303 struct mem_cgroup *memcg;
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005304 size_t size;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005305
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005306 size = sizeof(struct mem_cgroup);
5307 size += nr_node_ids * sizeof(struct mem_cgroup_per_node *);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005308
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005309 memcg = kzalloc(size, GFP_KERNEL);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005310 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005311 return NULL;
5312
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005313 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5314 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005315 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005316 spin_lock_init(&memcg->pcp_counter_lock);
5317 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005318
5319out_free:
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005320 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005321 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005322}
5323
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005324/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005325 * At destroying mem_cgroup, references from swap_cgroup can remain.
5326 * (scanning all at force_empty is too costly...)
5327 *
5328 * Instead of clearing all references at force_empty, we remember
5329 * the number of reference from swap_cgroup and free mem_cgroup when
5330 * it goes down to 0.
5331 *
5332 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005333 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005334
5335static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005336{
Glauber Costac8b2a362012-12-18 14:22:13 -08005337 int node;
Hugh Dickins59927fb2012-03-15 15:17:07 -07005338
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07005339 mem_cgroup_remove_from_trees(memcg);
Glauber Costac8b2a362012-12-18 14:22:13 -08005340
5341 for_each_node(node)
5342 free_mem_cgroup_per_zone_info(memcg, node);
5343
5344 free_percpu(memcg->stat);
5345
Glauber Costa3f134612012-05-29 15:07:11 -07005346 /*
5347 * We need to make sure that (at least for now), the jump label
5348 * destruction code runs outside of the cgroup lock. This is because
5349 * get_online_cpus(), which is called from the static_branch update,
5350 * can't be called inside the cgroup_lock. cpusets are the ones
5351 * enforcing this dependency, so if they ever change, we might as well.
5352 *
5353 * schedule_work() will guarantee this happens. Be careful if you need
5354 * to move this code around, and make sure it is outside
5355 * the cgroup_lock.
5356 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005357 disarm_static_keys(memcg);
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08005358 kfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005359}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005360
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005361/*
5362 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5363 */
Glauber Costae1aab162011-12-11 21:47:03 +00005364struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005365{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005366 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005367 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005368 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005369}
Glauber Costae1aab162011-12-11 21:47:03 +00005370EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005371
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07005372static void __init mem_cgroup_soft_limit_tree_init(void)
5373{
5374 struct mem_cgroup_tree_per_node *rtpn;
5375 struct mem_cgroup_tree_per_zone *rtpz;
5376 int tmp, node, zone;
5377
5378 for_each_node(node) {
5379 tmp = node;
5380 if (!node_state(node, N_NORMAL_MEMORY))
5381 tmp = -1;
5382 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
5383 BUG_ON(!rtpn);
5384
5385 soft_limit_tree.rb_tree_per_node[node] = rtpn;
5386
5387 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5388 rtpz = &rtpn->rb_tree_per_zone[zone];
5389 rtpz->rb_root = RB_ROOT;
5390 spin_lock_init(&rtpz->lock);
5391 }
5392 }
5393}
5394
Li Zefan0eb253e2009-01-15 13:51:25 -08005395static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04005396mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005397{
Glauber Costad142e3e2013-02-22 16:34:52 -08005398 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005399 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005400 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005401
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005402 memcg = mem_cgroup_alloc();
5403 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005404 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005405
Bob Liu3ed28fa2012-01-12 17:19:04 -08005406 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005407 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005408 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005409
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005410 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04005411 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08005412 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08005413 res_counter_init(&memcg->res, NULL);
5414 res_counter_init(&memcg->memsw, NULL);
5415 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005416 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005417
Glauber Costad142e3e2013-02-22 16:34:52 -08005418 memcg->last_scanned_node = MAX_NUMNODES;
5419 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08005420 memcg->move_charge_at_immigrate = 0;
5421 mutex_init(&memcg->thresholds_lock);
5422 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005423 vmpressure_init(&memcg->vmpressure);
Tejun Heofba94802013-11-22 18:20:43 -05005424 INIT_LIST_HEAD(&memcg->event_list);
5425 spin_lock_init(&memcg->event_list_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08005426
5427 return &memcg->css;
5428
5429free_out:
5430 __mem_cgroup_free(memcg);
5431 return ERR_PTR(error);
5432}
5433
5434static int
Tejun Heoeb954192013-08-08 20:11:23 -04005435mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08005436{
Tejun Heoeb954192013-08-08 20:11:23 -04005437 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04005438 struct mem_cgroup *parent = mem_cgroup_from_css(css->parent);
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -07005439 int ret;
Glauber Costad142e3e2013-02-22 16:34:52 -08005440
Tejun Heo15a4c832014-05-04 15:09:14 -04005441 if (css->id > MEM_CGROUP_ID_MAX)
Li Zefan4219b2d2013-09-23 16:56:29 +08005442 return -ENOSPC;
5443
Tejun Heo63876982013-08-08 20:11:23 -04005444 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08005445 return 0;
5446
Glauber Costa09998212013-02-22 16:34:55 -08005447 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08005448
5449 memcg->use_hierarchy = parent->use_hierarchy;
5450 memcg->oom_kill_disable = parent->oom_kill_disable;
5451 memcg->swappiness = mem_cgroup_swappiness(parent);
5452
5453 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005454 res_counter_init(&memcg->res, &parent->res);
5455 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005456 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08005457
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005458 /*
Li Zefan8d76a972013-07-08 16:00:36 -07005459 * No need to take a reference to the parent because cgroup
5460 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005461 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08005462 } else {
Johannes Weinerce00a962014-09-05 08:43:57 -04005463 res_counter_init(&memcg->res, NULL);
5464 res_counter_init(&memcg->memsw, NULL);
5465 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07005466 /*
5467 * Deeper hierachy with use_hierarchy == false doesn't make
5468 * much sense so let cgroup subsystem know about this
5469 * unfortunate state in our controller.
5470 */
Glauber Costad142e3e2013-02-22 16:34:52 -08005471 if (parent != root_mem_cgroup)
Tejun Heo073219e2014-02-08 10:36:58 -05005472 memory_cgrp_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005473 }
Glauber Costa09998212013-02-22 16:34:55 -08005474 mutex_unlock(&memcg_create_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08005475
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -07005476 ret = memcg_init_kmem(memcg, &memory_cgrp_subsys);
5477 if (ret)
5478 return ret;
5479
5480 /*
5481 * Make sure the memcg is initialized: mem_cgroup_iter()
5482 * orders reading memcg->initialized against its callers
5483 * reading the memcg members.
5484 */
5485 smp_store_release(&memcg->initialized, 1);
5486
5487 return 0;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005488}
5489
Michal Hocko5f578162013-04-29 15:07:17 -07005490/*
5491 * Announce all parents that a group from their hierarchy is gone.
5492 */
5493static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
5494{
5495 struct mem_cgroup *parent = memcg;
5496
5497 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07005498 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07005499
5500 /*
5501 * if the root memcg is not hierarchical we have to check it
5502 * explicitely.
5503 */
5504 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07005505 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07005506}
5507
Tejun Heoeb954192013-08-08 20:11:23 -04005508static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005509{
Tejun Heoeb954192013-08-08 20:11:23 -04005510 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo3bc942f2013-11-22 18:20:44 -05005511 struct mem_cgroup_event *event, *tmp;
Filipe Brandenburger4fb1a862014-03-03 15:38:25 -08005512 struct cgroup_subsys_state *iter;
Tejun Heo79bd9812013-11-22 18:20:42 -05005513
5514 /*
5515 * Unregister events and notify userspace.
5516 * Notify userspace about cgroup removing only after rmdir of cgroup
5517 * directory to avoid race between userspace and kernelspace.
5518 */
Tejun Heofba94802013-11-22 18:20:43 -05005519 spin_lock(&memcg->event_list_lock);
5520 list_for_each_entry_safe(event, tmp, &memcg->event_list, list) {
Tejun Heo79bd9812013-11-22 18:20:42 -05005521 list_del_init(&event->list);
5522 schedule_work(&event->remove);
5523 }
Tejun Heofba94802013-11-22 18:20:43 -05005524 spin_unlock(&memcg->event_list_lock);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005525
Li Zefan10d5ebf2013-07-08 16:00:33 -07005526 kmem_cgroup_css_offline(memcg);
5527
Michal Hocko5f578162013-04-29 15:07:17 -07005528 mem_cgroup_invalidate_reclaim_iterators(memcg);
Filipe Brandenburger4fb1a862014-03-03 15:38:25 -08005529
5530 /*
5531 * This requires that offlining is serialized. Right now that is
5532 * guaranteed because css_killed_work_fn() holds the cgroup_mutex.
5533 */
5534 css_for_each_descendant_post(iter, css)
5535 mem_cgroup_reparent_charges(mem_cgroup_from_css(iter));
5536
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07005537 memcg_unregister_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07005538 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005539}
5540
Tejun Heoeb954192013-08-08 20:11:23 -04005541static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005542{
Tejun Heoeb954192013-08-08 20:11:23 -04005543 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weiner96f1c582013-12-12 17:12:34 -08005544 /*
5545 * XXX: css_offline() would be where we should reparent all
5546 * memory to prepare the cgroup for destruction. However,
Tejun Heoec903c02014-05-13 12:11:01 -04005547 * memcg does not do css_tryget_online() and res_counter charging
Johannes Weiner96f1c582013-12-12 17:12:34 -08005548 * under the same RCU lock region, which means that charging
5549 * could race with offlining. Offlining only happens to
5550 * cgroups with no tasks in them but charges can show up
5551 * without any tasks from the swapin path when the target
5552 * memcg is looked up from the swapout record and not from the
5553 * current task as it usually is. A race like this can leak
5554 * charges and put pages with stale cgroup pointers into
5555 * circulation:
5556 *
5557 * #0 #1
5558 * lookup_swap_cgroup_id()
5559 * rcu_read_lock()
5560 * mem_cgroup_lookup()
Tejun Heoec903c02014-05-13 12:11:01 -04005561 * css_tryget_online()
Johannes Weiner96f1c582013-12-12 17:12:34 -08005562 * rcu_read_unlock()
Tejun Heoec903c02014-05-13 12:11:01 -04005563 * disable css_tryget_online()
Johannes Weiner96f1c582013-12-12 17:12:34 -08005564 * call_rcu()
5565 * offline_css()
5566 * reparent_charges()
5567 * res_counter_charge()
5568 * css_put()
5569 * css_free()
5570 * pc->mem_cgroup = dead memcg
5571 * add page to lru
5572 *
5573 * The bulk of the charges are still moved in offline_css() to
5574 * avoid pinning a lot of pages in case a long-term reference
5575 * like a swapout record is deferring the css_free() to long
5576 * after offlining. But this makes sure we catch any charges
5577 * made after offlining:
5578 */
5579 mem_cgroup_reparent_charges(memcg);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005580
Li Zefan10d5ebf2013-07-08 16:00:33 -07005581 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07005582 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005583}
5584
Tejun Heo1ced9532014-07-08 18:02:57 -04005585/**
5586 * mem_cgroup_css_reset - reset the states of a mem_cgroup
5587 * @css: the target css
5588 *
5589 * Reset the states of the mem_cgroup associated with @css. This is
5590 * invoked when the userland requests disabling on the default hierarchy
5591 * but the memcg is pinned through dependency. The memcg should stop
5592 * applying policies and should revert to the vanilla state as it may be
5593 * made visible again.
5594 *
5595 * The current implementation only resets the essential configurations.
5596 * This needs to be expanded to cover all the visible parts.
5597 */
5598static void mem_cgroup_css_reset(struct cgroup_subsys_state *css)
5599{
5600 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5601
5602 mem_cgroup_resize_limit(memcg, ULLONG_MAX);
5603 mem_cgroup_resize_memsw_limit(memcg, ULLONG_MAX);
5604 memcg_update_kmem_limit(memcg, ULLONG_MAX);
5605 res_counter_set_soft_limit(&memcg->res, ULLONG_MAX);
5606}
5607
Daisuke Nishimura02491442010-03-10 15:22:17 -08005608#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005609/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005610static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005611{
Johannes Weiner05b84302014-08-06 16:05:59 -07005612 int ret;
Johannes Weiner9476db92014-08-06 16:05:55 -07005613
5614 /* Try a single bulk charge without reclaim first */
Johannes Weiner00501b52014-08-08 14:19:20 -07005615 ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_WAIT, count);
Johannes Weiner9476db92014-08-06 16:05:55 -07005616 if (!ret) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005617 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005618 return ret;
5619 }
Johannes Weiner692e7c42014-08-06 16:05:57 -07005620 if (ret == -EINTR) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005621 cancel_charge(root_mem_cgroup, count);
Johannes Weiner692e7c42014-08-06 16:05:57 -07005622 return ret;
5623 }
Johannes Weiner9476db92014-08-06 16:05:55 -07005624
5625 /* Try charges one by one with reclaim */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005626 while (count--) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005627 ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_NORETRY, 1);
Johannes Weiner9476db92014-08-06 16:05:55 -07005628 /*
5629 * In case of failure, any residual charges against
5630 * mc.to will be dropped by mem_cgroup_clear_mc()
Johannes Weiner692e7c42014-08-06 16:05:57 -07005631 * later on. However, cancel any charges that are
5632 * bypassed to root right away or they'll be lost.
Johannes Weiner9476db92014-08-06 16:05:55 -07005633 */
Johannes Weiner692e7c42014-08-06 16:05:57 -07005634 if (ret == -EINTR)
Johannes Weiner00501b52014-08-08 14:19:20 -07005635 cancel_charge(root_mem_cgroup, 1);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005636 if (ret)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005637 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005638 mc.precharge++;
Johannes Weiner9476db92014-08-06 16:05:55 -07005639 cond_resched();
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005640 }
Johannes Weiner9476db92014-08-06 16:05:55 -07005641 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005642}
5643
5644/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005645 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005646 * @vma: the vma the pte to be checked belongs
5647 * @addr: the address corresponding to the pte to be checked
5648 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005649 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005650 *
5651 * Returns
5652 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5653 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5654 * move charge. if @target is not NULL, the page is stored in target->page
5655 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08005656 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5657 * target for charge migration. if @target is not NULL, the entry is stored
5658 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005659 *
5660 * Called with pte lock held.
5661 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005662union mc_target {
5663 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005664 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005665};
5666
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005667enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005668 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005669 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005670 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005671};
5672
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005673static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5674 unsigned long addr, pte_t ptent)
5675{
5676 struct page *page = vm_normal_page(vma, addr, ptent);
5677
5678 if (!page || !page_mapped(page))
5679 return NULL;
5680 if (PageAnon(page)) {
5681 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005682 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005683 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005684 } else if (!move_file())
5685 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005686 return NULL;
5687 if (!get_page_unless_zero(page))
5688 return NULL;
5689
5690 return page;
5691}
5692
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005693#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005694static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5695 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5696{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005697 struct page *page = NULL;
5698 swp_entry_t ent = pte_to_swp_entry(ptent);
5699
5700 if (!move_anon() || non_swap_entry(ent))
5701 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005702 /*
5703 * Because lookup_swap_cache() updates some statistics counter,
5704 * we call find_get_page() with swapper_space directly.
5705 */
Shaohua Li33806f02013-02-22 16:34:37 -08005706 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005707 if (do_swap_account)
5708 entry->val = ent.val;
5709
5710 return page;
5711}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005712#else
5713static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5714 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5715{
5716 return NULL;
5717}
5718#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005719
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005720static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5721 unsigned long addr, pte_t ptent, swp_entry_t *entry)
5722{
5723 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005724 struct address_space *mapping;
5725 pgoff_t pgoff;
5726
5727 if (!vma->vm_file) /* anonymous vma */
5728 return NULL;
5729 if (!move_file())
5730 return NULL;
5731
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005732 mapping = vma->vm_file->f_mapping;
5733 if (pte_none(ptent))
5734 pgoff = linear_page_index(vma, addr);
5735 else /* pte_file(ptent) is true */
5736 pgoff = pte_to_pgoff(ptent);
5737
5738 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005739#ifdef CONFIG_SWAP
5740 /* shmem/tmpfs may report page out on swap: account for that too. */
Johannes Weiner139b6a62014-05-06 12:50:05 -07005741 if (shmem_mapping(mapping)) {
5742 page = find_get_entry(mapping, pgoff);
5743 if (radix_tree_exceptional_entry(page)) {
5744 swp_entry_t swp = radix_to_swp_entry(page);
5745 if (do_swap_account)
5746 *entry = swp;
5747 page = find_get_page(swap_address_space(swp), swp.val);
5748 }
5749 } else
5750 page = find_get_page(mapping, pgoff);
5751#else
5752 page = find_get_page(mapping, pgoff);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005753#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005754 return page;
5755}
5756
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005757static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005758 unsigned long addr, pte_t ptent, union mc_target *target)
5759{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005760 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005761 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005762 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005763 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005764
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005765 if (pte_present(ptent))
5766 page = mc_handle_present_pte(vma, addr, ptent);
5767 else if (is_swap_pte(ptent))
5768 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005769 else if (pte_none(ptent) || pte_file(ptent))
5770 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005771
5772 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005773 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005774 if (page) {
5775 pc = lookup_page_cgroup(page);
5776 /*
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005777 * Do only loose check w/o serialization.
5778 * mem_cgroup_move_account() checks the pc is valid or
5779 * not under LRU exclusion.
Daisuke Nishimura02491442010-03-10 15:22:17 -08005780 */
5781 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5782 ret = MC_TARGET_PAGE;
5783 if (target)
5784 target->page = page;
5785 }
5786 if (!ret || !target)
5787 put_page(page);
5788 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005789 /* There is a swap entry and a page doesn't exist or isn't charged */
5790 if (ent.val && !ret &&
Li Zefan34c00c32013-09-23 16:56:01 +08005791 mem_cgroup_id(mc.from) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005792 ret = MC_TARGET_SWAP;
5793 if (target)
5794 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005795 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005796 return ret;
5797}
5798
Naoya Horiguchi12724852012-03-21 16:34:28 -07005799#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5800/*
5801 * We don't consider swapping or file mapped pages because THP does not
5802 * support them for now.
5803 * Caller should make sure that pmd_trans_huge(pmd) is true.
5804 */
5805static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5806 unsigned long addr, pmd_t pmd, union mc_target *target)
5807{
5808 struct page *page = NULL;
5809 struct page_cgroup *pc;
5810 enum mc_target_type ret = MC_TARGET_NONE;
5811
5812 page = pmd_page(pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08005813 VM_BUG_ON_PAGE(!page || !PageHead(page), page);
Naoya Horiguchi12724852012-03-21 16:34:28 -07005814 if (!move_anon())
5815 return ret;
5816 pc = lookup_page_cgroup(page);
5817 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
5818 ret = MC_TARGET_PAGE;
5819 if (target) {
5820 get_page(page);
5821 target->page = page;
5822 }
5823 }
5824 return ret;
5825}
5826#else
5827static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5828 unsigned long addr, pmd_t pmd, union mc_target *target)
5829{
5830 return MC_TARGET_NONE;
5831}
5832#endif
5833
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005834static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5835 unsigned long addr, unsigned long end,
5836 struct mm_walk *walk)
5837{
5838 struct vm_area_struct *vma = walk->private;
5839 pte_t *pte;
5840 spinlock_t *ptl;
5841
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08005842 if (pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005843 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5844 mc.precharge += HPAGE_PMD_NR;
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08005845 spin_unlock(ptl);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005846 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005847 }
Dave Hansen03319322011-03-22 16:32:56 -07005848
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005849 if (pmd_trans_unstable(pmd))
5850 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005851 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5852 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005853 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005854 mc.precharge++; /* increment precharge temporarily */
5855 pte_unmap_unlock(pte - 1, ptl);
5856 cond_resched();
5857
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005858 return 0;
5859}
5860
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005861static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5862{
5863 unsigned long precharge;
5864 struct vm_area_struct *vma;
5865
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005866 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005867 for (vma = mm->mmap; vma; vma = vma->vm_next) {
5868 struct mm_walk mem_cgroup_count_precharge_walk = {
5869 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5870 .mm = mm,
5871 .private = vma,
5872 };
5873 if (is_vm_hugetlb_page(vma))
5874 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005875 walk_page_range(vma->vm_start, vma->vm_end,
5876 &mem_cgroup_count_precharge_walk);
5877 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005878 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005879
5880 precharge = mc.precharge;
5881 mc.precharge = 0;
5882
5883 return precharge;
5884}
5885
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005886static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5887{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005888 unsigned long precharge = mem_cgroup_count_precharge(mm);
5889
5890 VM_BUG_ON(mc.moving_task);
5891 mc.moving_task = current;
5892 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005893}
5894
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005895/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5896static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005897{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005898 struct mem_cgroup *from = mc.from;
5899 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07005900 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005901
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005902 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005903 if (mc.precharge) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005904 cancel_charge(mc.to, mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005905 mc.precharge = 0;
5906 }
5907 /*
5908 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5909 * we must uncharge here.
5910 */
5911 if (mc.moved_charge) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005912 cancel_charge(mc.from, mc.moved_charge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005913 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005914 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005915 /* we must fixup refcnts and charges */
5916 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005917 /* uncharge swap account from the old cgroup */
Johannes Weinerce00a962014-09-05 08:43:57 -04005918 if (!mem_cgroup_is_root(mc.from))
5919 res_counter_uncharge(&mc.from->memsw,
5920 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07005921
5922 for (i = 0; i < mc.moved_swap; i++)
5923 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005924
Johannes Weiner05b84302014-08-06 16:05:59 -07005925 /*
5926 * we charged both to->res and to->memsw, so we should
5927 * uncharge to->res.
5928 */
Johannes Weinerce00a962014-09-05 08:43:57 -04005929 if (!mem_cgroup_is_root(mc.to))
5930 res_counter_uncharge(&mc.to->res,
5931 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07005932 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005933 mc.moved_swap = 0;
5934 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005935 memcg_oom_recover(from);
5936 memcg_oom_recover(to);
5937 wake_up_all(&mc.waitq);
5938}
5939
5940static void mem_cgroup_clear_mc(void)
5941{
5942 struct mem_cgroup *from = mc.from;
5943
5944 /*
5945 * we must clear moving_task before waking up waiters at the end of
5946 * task migration.
5947 */
5948 mc.moving_task = NULL;
5949 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005950 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005951 mc.from = NULL;
5952 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005953 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005954 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005955}
5956
Tejun Heoeb954192013-08-08 20:11:23 -04005957static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08005958 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005959{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005960 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005961 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04005962 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08005963 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005964
Glauber Costaee5e8472013-02-22 16:34:50 -08005965 /*
5966 * We are now commited to this value whatever it is. Changes in this
5967 * tunable will only affect upcoming migrations, not the current one.
5968 * So we need to save it, and keep it going.
5969 */
5970 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
5971 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005972 struct mm_struct *mm;
5973 struct mem_cgroup *from = mem_cgroup_from_task(p);
5974
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005975 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005976
5977 mm = get_task_mm(p);
5978 if (!mm)
5979 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005980 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005981 if (mm->owner == p) {
5982 VM_BUG_ON(mc.from);
5983 VM_BUG_ON(mc.to);
5984 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005985 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005986 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07005987 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005988 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005989 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005990 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08005991 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005992 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005993 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005994
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005995 ret = mem_cgroup_precharge_mc(mm);
5996 if (ret)
5997 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005998 }
5999 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006000 }
6001 return ret;
6002}
6003
Tejun Heoeb954192013-08-08 20:11:23 -04006004static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006005 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006006{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006007 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006008}
6009
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006010static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6011 unsigned long addr, unsigned long end,
6012 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006013{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006014 int ret = 0;
6015 struct vm_area_struct *vma = walk->private;
6016 pte_t *pte;
6017 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006018 enum mc_target_type target_type;
6019 union mc_target target;
6020 struct page *page;
6021 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006022
Naoya Horiguchi12724852012-03-21 16:34:28 -07006023 /*
6024 * We don't take compound_lock() here but no race with splitting thp
6025 * happens because:
6026 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6027 * under splitting, which means there's no concurrent thp split,
6028 * - if another thread runs into split_huge_page() just after we
6029 * entered this if-block, the thread must wait for page table lock
6030 * to be unlocked in __split_huge_page_splitting(), where the main
6031 * part of thp split is not executed yet.
6032 */
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08006033 if (pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006034 if (mc.precharge < HPAGE_PMD_NR) {
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08006035 spin_unlock(ptl);
Naoya Horiguchi12724852012-03-21 16:34:28 -07006036 return 0;
6037 }
6038 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6039 if (target_type == MC_TARGET_PAGE) {
6040 page = target.page;
6041 if (!isolate_lru_page(page)) {
6042 pc = lookup_page_cgroup(page);
6043 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006044 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006045 mc.precharge -= HPAGE_PMD_NR;
6046 mc.moved_charge += HPAGE_PMD_NR;
6047 }
6048 putback_lru_page(page);
6049 }
6050 put_page(page);
6051 }
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08006052 spin_unlock(ptl);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006053 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006054 }
6055
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006056 if (pmd_trans_unstable(pmd))
6057 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006058retry:
6059 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6060 for (; addr != end; addr += PAGE_SIZE) {
6061 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006062 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006063
6064 if (!mc.precharge)
6065 break;
6066
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006067 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006068 case MC_TARGET_PAGE:
6069 page = target.page;
6070 if (isolate_lru_page(page))
6071 goto put;
6072 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006073 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006074 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006075 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006076 /* we uncharge from mc.from later. */
6077 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006078 }
6079 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006080put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006081 put_page(page);
6082 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006083 case MC_TARGET_SWAP:
6084 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006085 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006086 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006087 /* we fixup refcnts and charges later. */
6088 mc.moved_swap++;
6089 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006090 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006091 default:
6092 break;
6093 }
6094 }
6095 pte_unmap_unlock(pte - 1, ptl);
6096 cond_resched();
6097
6098 if (addr != end) {
6099 /*
6100 * We have consumed all precharges we got in can_attach().
6101 * We try charge one by one, but don't do any additional
6102 * charges to mc.to if we have failed in charge once in attach()
6103 * phase.
6104 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006105 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006106 if (!ret)
6107 goto retry;
6108 }
6109
6110 return ret;
6111}
6112
6113static void mem_cgroup_move_charge(struct mm_struct *mm)
6114{
6115 struct vm_area_struct *vma;
6116
6117 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006118retry:
6119 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6120 /*
6121 * Someone who are holding the mmap_sem might be waiting in
6122 * waitq. So we cancel all extra charges, wake up all waiters,
6123 * and retry. Because we cancel precharges, we might not be able
6124 * to move enough charges, but moving charge is a best-effort
6125 * feature anyway, so it wouldn't be a big problem.
6126 */
6127 __mem_cgroup_clear_mc();
6128 cond_resched();
6129 goto retry;
6130 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006131 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6132 int ret;
6133 struct mm_walk mem_cgroup_move_charge_walk = {
6134 .pmd_entry = mem_cgroup_move_charge_pte_range,
6135 .mm = mm,
6136 .private = vma,
6137 };
6138 if (is_vm_hugetlb_page(vma))
6139 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006140 ret = walk_page_range(vma->vm_start, vma->vm_end,
6141 &mem_cgroup_move_charge_walk);
6142 if (ret)
6143 /*
6144 * means we have consumed all precharges and failed in
6145 * doing additional charge. Just abandon here.
6146 */
6147 break;
6148 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006149 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006150}
6151
Tejun Heoeb954192013-08-08 20:11:23 -04006152static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006153 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006154{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006155 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006156 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006157
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006158 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006159 if (mc.to)
6160 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006161 mmput(mm);
6162 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006163 if (mc.to)
6164 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006165}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006166#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006167static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006168 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006169{
6170 return 0;
6171}
Tejun Heoeb954192013-08-08 20:11:23 -04006172static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006173 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006174{
6175}
Tejun Heoeb954192013-08-08 20:11:23 -04006176static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006177 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006178{
6179}
6180#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006181
Tejun Heof00baae2013-04-15 13:41:15 -07006182/*
6183 * Cgroup retains root cgroups across [un]mount cycles making it necessary
Tejun Heoaa6ec292014-07-09 10:08:08 -04006184 * to verify whether we're attached to the default hierarchy on each mount
6185 * attempt.
Tejun Heof00baae2013-04-15 13:41:15 -07006186 */
Tejun Heoeb954192013-08-08 20:11:23 -04006187static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006188{
6189 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -04006190 * use_hierarchy is forced on the default hierarchy. cgroup core
Tejun Heof00baae2013-04-15 13:41:15 -07006191 * guarantees that @root doesn't have any children, so turning it
6192 * on for the root memcg is enough.
6193 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04006194 if (cgroup_on_dfl(root_css->cgroup))
Tejun Heoeb954192013-08-08 20:11:23 -04006195 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006196}
6197
Tejun Heo073219e2014-02-08 10:36:58 -05006198struct cgroup_subsys memory_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08006199 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006200 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006201 .css_offline = mem_cgroup_css_offline,
6202 .css_free = mem_cgroup_css_free,
Tejun Heo1ced9532014-07-08 18:02:57 -04006203 .css_reset = mem_cgroup_css_reset,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006204 .can_attach = mem_cgroup_can_attach,
6205 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006206 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006207 .bind = mem_cgroup_bind,
Tejun Heo55779642014-07-15 11:05:09 -04006208 .legacy_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006209 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006210};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006211
Andrew Mortonc255a452012-07-31 16:43:02 -07006212#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006213static int __init enable_swap_account(char *s)
6214{
Michal Hockoa2c89902011-05-24 17:12:50 -07006215 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006216 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006217 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006218 really_do_swap_account = 0;
6219 return 1;
6220}
Michal Hockoa2c89902011-05-24 17:12:50 -07006221__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006222
Michal Hocko2d110852013-02-22 16:34:43 -08006223static void __init memsw_file_init(void)
6224{
Tejun Heo2cf669a2014-07-15 11:05:09 -04006225 WARN_ON(cgroup_add_legacy_cftypes(&memory_cgrp_subsys,
6226 memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006227}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006228
6229static void __init enable_swap_cgroup(void)
6230{
6231 if (!mem_cgroup_disabled() && really_do_swap_account) {
6232 do_swap_account = 1;
6233 memsw_file_init();
6234 }
6235}
6236
Michal Hocko2d110852013-02-22 16:34:43 -08006237#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006238static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006239{
6240}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006241#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006242
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006243#ifdef CONFIG_MEMCG_SWAP
6244/**
6245 * mem_cgroup_swapout - transfer a memsw charge to swap
6246 * @page: page whose memsw charge to transfer
6247 * @entry: swap entry to move the charge to
6248 *
6249 * Transfer the memsw charge of @page to @entry.
6250 */
6251void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
6252{
6253 struct page_cgroup *pc;
6254 unsigned short oldid;
6255
6256 VM_BUG_ON_PAGE(PageLRU(page), page);
6257 VM_BUG_ON_PAGE(page_count(page), page);
6258
6259 if (!do_swap_account)
6260 return;
6261
6262 pc = lookup_page_cgroup(page);
6263
6264 /* Readahead page, never charged */
6265 if (!PageCgroupUsed(pc))
6266 return;
6267
6268 VM_BUG_ON_PAGE(!(pc->flags & PCG_MEMSW), page);
6269
6270 oldid = swap_cgroup_record(entry, mem_cgroup_id(pc->mem_cgroup));
6271 VM_BUG_ON_PAGE(oldid, page);
6272
6273 pc->flags &= ~PCG_MEMSW;
6274 css_get(&pc->mem_cgroup->css);
6275 mem_cgroup_swap_statistics(pc->mem_cgroup, true);
6276}
6277
6278/**
6279 * mem_cgroup_uncharge_swap - uncharge a swap entry
6280 * @entry: swap entry to uncharge
6281 *
6282 * Drop the memsw charge associated with @entry.
6283 */
6284void mem_cgroup_uncharge_swap(swp_entry_t entry)
6285{
6286 struct mem_cgroup *memcg;
6287 unsigned short id;
6288
6289 if (!do_swap_account)
6290 return;
6291
6292 id = swap_cgroup_record(entry, 0);
6293 rcu_read_lock();
6294 memcg = mem_cgroup_lookup(id);
6295 if (memcg) {
Johannes Weinerce00a962014-09-05 08:43:57 -04006296 if (!mem_cgroup_is_root(memcg))
6297 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006298 mem_cgroup_swap_statistics(memcg, false);
6299 css_put(&memcg->css);
6300 }
6301 rcu_read_unlock();
6302}
6303#endif
6304
Johannes Weiner00501b52014-08-08 14:19:20 -07006305/**
6306 * mem_cgroup_try_charge - try charging a page
6307 * @page: page to charge
6308 * @mm: mm context of the victim
6309 * @gfp_mask: reclaim mode
6310 * @memcgp: charged memcg return
6311 *
6312 * Try to charge @page to the memcg that @mm belongs to, reclaiming
6313 * pages according to @gfp_mask if necessary.
6314 *
6315 * Returns 0 on success, with *@memcgp pointing to the charged memcg.
6316 * Otherwise, an error code is returned.
6317 *
6318 * After page->mapping has been set up, the caller must finalize the
6319 * charge with mem_cgroup_commit_charge(). Or abort the transaction
6320 * with mem_cgroup_cancel_charge() in case page instantiation fails.
6321 */
6322int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
6323 gfp_t gfp_mask, struct mem_cgroup **memcgp)
6324{
6325 struct mem_cgroup *memcg = NULL;
6326 unsigned int nr_pages = 1;
6327 int ret = 0;
6328
6329 if (mem_cgroup_disabled())
6330 goto out;
6331
6332 if (PageSwapCache(page)) {
6333 struct page_cgroup *pc = lookup_page_cgroup(page);
6334 /*
6335 * Every swap fault against a single page tries to charge the
6336 * page, bail as early as possible. shmem_unuse() encounters
6337 * already charged pages, too. The USED bit is protected by
6338 * the page lock, which serializes swap cache removal, which
6339 * in turn serializes uncharging.
6340 */
6341 if (PageCgroupUsed(pc))
6342 goto out;
6343 }
6344
6345 if (PageTransHuge(page)) {
6346 nr_pages <<= compound_order(page);
6347 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
6348 }
6349
6350 if (do_swap_account && PageSwapCache(page))
6351 memcg = try_get_mem_cgroup_from_page(page);
6352 if (!memcg)
6353 memcg = get_mem_cgroup_from_mm(mm);
6354
6355 ret = try_charge(memcg, gfp_mask, nr_pages);
6356
6357 css_put(&memcg->css);
6358
6359 if (ret == -EINTR) {
6360 memcg = root_mem_cgroup;
6361 ret = 0;
6362 }
6363out:
6364 *memcgp = memcg;
6365 return ret;
6366}
6367
6368/**
6369 * mem_cgroup_commit_charge - commit a page charge
6370 * @page: page to charge
6371 * @memcg: memcg to charge the page to
6372 * @lrucare: page might be on LRU already
6373 *
6374 * Finalize a charge transaction started by mem_cgroup_try_charge(),
6375 * after page->mapping has been set up. This must happen atomically
6376 * as part of the page instantiation, i.e. under the page table lock
6377 * for anonymous pages, under the page lock for page and swap cache.
6378 *
6379 * In addition, the page must not be on the LRU during the commit, to
6380 * prevent racing with task migration. If it might be, use @lrucare.
6381 *
6382 * Use mem_cgroup_cancel_charge() to cancel the transaction instead.
6383 */
6384void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
6385 bool lrucare)
6386{
6387 unsigned int nr_pages = 1;
6388
6389 VM_BUG_ON_PAGE(!page->mapping, page);
6390 VM_BUG_ON_PAGE(PageLRU(page) && !lrucare, page);
6391
6392 if (mem_cgroup_disabled())
6393 return;
6394 /*
6395 * Swap faults will attempt to charge the same page multiple
6396 * times. But reuse_swap_page() might have removed the page
6397 * from swapcache already, so we can't check PageSwapCache().
6398 */
6399 if (!memcg)
6400 return;
6401
Johannes Weiner6abb5a82014-08-08 14:19:33 -07006402 commit_charge(page, memcg, lrucare);
6403
Johannes Weiner00501b52014-08-08 14:19:20 -07006404 if (PageTransHuge(page)) {
6405 nr_pages <<= compound_order(page);
6406 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
6407 }
6408
Johannes Weiner6abb5a82014-08-08 14:19:33 -07006409 local_irq_disable();
6410 mem_cgroup_charge_statistics(memcg, page, nr_pages);
6411 memcg_check_events(memcg, page);
6412 local_irq_enable();
Johannes Weiner00501b52014-08-08 14:19:20 -07006413
6414 if (do_swap_account && PageSwapCache(page)) {
6415 swp_entry_t entry = { .val = page_private(page) };
6416 /*
6417 * The swap entry might not get freed for a long time,
6418 * let's not wait for it. The page already received a
6419 * memory+swap charge, drop the swap entry duplicate.
6420 */
6421 mem_cgroup_uncharge_swap(entry);
6422 }
6423}
6424
6425/**
6426 * mem_cgroup_cancel_charge - cancel a page charge
6427 * @page: page to charge
6428 * @memcg: memcg to charge the page to
6429 *
6430 * Cancel a charge transaction started by mem_cgroup_try_charge().
6431 */
6432void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg)
6433{
6434 unsigned int nr_pages = 1;
6435
6436 if (mem_cgroup_disabled())
6437 return;
6438 /*
6439 * Swap faults will attempt to charge the same page multiple
6440 * times. But reuse_swap_page() might have removed the page
6441 * from swapcache already, so we can't check PageSwapCache().
6442 */
6443 if (!memcg)
6444 return;
6445
6446 if (PageTransHuge(page)) {
6447 nr_pages <<= compound_order(page);
6448 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
6449 }
6450
6451 cancel_charge(memcg, nr_pages);
6452}
6453
Johannes Weiner747db952014-08-08 14:19:24 -07006454static void uncharge_batch(struct mem_cgroup *memcg, unsigned long pgpgout,
6455 unsigned long nr_mem, unsigned long nr_memsw,
6456 unsigned long nr_anon, unsigned long nr_file,
6457 unsigned long nr_huge, struct page *dummy_page)
6458{
6459 unsigned long flags;
6460
Johannes Weinerce00a962014-09-05 08:43:57 -04006461 if (!mem_cgroup_is_root(memcg)) {
6462 if (nr_mem)
6463 res_counter_uncharge(&memcg->res,
6464 nr_mem * PAGE_SIZE);
6465 if (nr_memsw)
6466 res_counter_uncharge(&memcg->memsw,
6467 nr_memsw * PAGE_SIZE);
6468 memcg_oom_recover(memcg);
6469 }
Johannes Weiner747db952014-08-08 14:19:24 -07006470
6471 local_irq_save(flags);
6472 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS], nr_anon);
6473 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_CACHE], nr_file);
6474 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE], nr_huge);
6475 __this_cpu_add(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT], pgpgout);
6476 __this_cpu_add(memcg->stat->nr_page_events, nr_anon + nr_file);
6477 memcg_check_events(memcg, dummy_page);
6478 local_irq_restore(flags);
6479}
6480
6481static void uncharge_list(struct list_head *page_list)
6482{
6483 struct mem_cgroup *memcg = NULL;
6484 unsigned long nr_memsw = 0;
6485 unsigned long nr_anon = 0;
6486 unsigned long nr_file = 0;
6487 unsigned long nr_huge = 0;
6488 unsigned long pgpgout = 0;
6489 unsigned long nr_mem = 0;
6490 struct list_head *next;
6491 struct page *page;
6492
6493 next = page_list->next;
6494 do {
6495 unsigned int nr_pages = 1;
6496 struct page_cgroup *pc;
6497
6498 page = list_entry(next, struct page, lru);
6499 next = page->lru.next;
6500
6501 VM_BUG_ON_PAGE(PageLRU(page), page);
6502 VM_BUG_ON_PAGE(page_count(page), page);
6503
6504 pc = lookup_page_cgroup(page);
6505 if (!PageCgroupUsed(pc))
6506 continue;
6507
6508 /*
6509 * Nobody should be changing or seriously looking at
6510 * pc->mem_cgroup and pc->flags at this point, we have
6511 * fully exclusive access to the page.
6512 */
6513
6514 if (memcg != pc->mem_cgroup) {
6515 if (memcg) {
6516 uncharge_batch(memcg, pgpgout, nr_mem, nr_memsw,
6517 nr_anon, nr_file, nr_huge, page);
6518 pgpgout = nr_mem = nr_memsw = 0;
6519 nr_anon = nr_file = nr_huge = 0;
6520 }
6521 memcg = pc->mem_cgroup;
6522 }
6523
6524 if (PageTransHuge(page)) {
6525 nr_pages <<= compound_order(page);
6526 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
6527 nr_huge += nr_pages;
6528 }
6529
6530 if (PageAnon(page))
6531 nr_anon += nr_pages;
6532 else
6533 nr_file += nr_pages;
6534
6535 if (pc->flags & PCG_MEM)
6536 nr_mem += nr_pages;
6537 if (pc->flags & PCG_MEMSW)
6538 nr_memsw += nr_pages;
6539 pc->flags = 0;
6540
6541 pgpgout++;
6542 } while (next != page_list);
6543
6544 if (memcg)
6545 uncharge_batch(memcg, pgpgout, nr_mem, nr_memsw,
6546 nr_anon, nr_file, nr_huge, page);
6547}
6548
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006549/**
6550 * mem_cgroup_uncharge - uncharge a page
6551 * @page: page to uncharge
6552 *
6553 * Uncharge a page previously charged with mem_cgroup_try_charge() and
6554 * mem_cgroup_commit_charge().
6555 */
6556void mem_cgroup_uncharge(struct page *page)
6557{
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006558 struct page_cgroup *pc;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006559
6560 if (mem_cgroup_disabled())
6561 return;
6562
Johannes Weiner747db952014-08-08 14:19:24 -07006563 /* Don't touch page->lru of any random page, pre-check: */
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006564 pc = lookup_page_cgroup(page);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006565 if (!PageCgroupUsed(pc))
6566 return;
6567
Johannes Weiner747db952014-08-08 14:19:24 -07006568 INIT_LIST_HEAD(&page->lru);
6569 uncharge_list(&page->lru);
6570}
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006571
Johannes Weiner747db952014-08-08 14:19:24 -07006572/**
6573 * mem_cgroup_uncharge_list - uncharge a list of page
6574 * @page_list: list of pages to uncharge
6575 *
6576 * Uncharge a list of pages previously charged with
6577 * mem_cgroup_try_charge() and mem_cgroup_commit_charge().
6578 */
6579void mem_cgroup_uncharge_list(struct list_head *page_list)
6580{
6581 if (mem_cgroup_disabled())
6582 return;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006583
Johannes Weiner747db952014-08-08 14:19:24 -07006584 if (!list_empty(page_list))
6585 uncharge_list(page_list);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006586}
6587
6588/**
6589 * mem_cgroup_migrate - migrate a charge to another page
6590 * @oldpage: currently charged page
6591 * @newpage: page to transfer the charge to
6592 * @lrucare: both pages might be on the LRU already
6593 *
6594 * Migrate the charge from @oldpage to @newpage.
6595 *
6596 * Both pages must be locked, @newpage->mapping must be set up.
6597 */
6598void mem_cgroup_migrate(struct page *oldpage, struct page *newpage,
6599 bool lrucare)
6600{
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006601 struct page_cgroup *pc;
6602 int isolated;
6603
6604 VM_BUG_ON_PAGE(!PageLocked(oldpage), oldpage);
6605 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
6606 VM_BUG_ON_PAGE(!lrucare && PageLRU(oldpage), oldpage);
6607 VM_BUG_ON_PAGE(!lrucare && PageLRU(newpage), newpage);
6608 VM_BUG_ON_PAGE(PageAnon(oldpage) != PageAnon(newpage), newpage);
Johannes Weiner6abb5a82014-08-08 14:19:33 -07006609 VM_BUG_ON_PAGE(PageTransHuge(oldpage) != PageTransHuge(newpage),
6610 newpage);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006611
6612 if (mem_cgroup_disabled())
6613 return;
6614
6615 /* Page cache replacement: new page already charged? */
6616 pc = lookup_page_cgroup(newpage);
6617 if (PageCgroupUsed(pc))
6618 return;
6619
6620 /* Re-entrant migration: old page already uncharged? */
6621 pc = lookup_page_cgroup(oldpage);
6622 if (!PageCgroupUsed(pc))
6623 return;
6624
6625 VM_BUG_ON_PAGE(!(pc->flags & PCG_MEM), oldpage);
6626 VM_BUG_ON_PAGE(do_swap_account && !(pc->flags & PCG_MEMSW), oldpage);
6627
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006628 if (lrucare)
6629 lock_page_lru(oldpage, &isolated);
6630
6631 pc->flags = 0;
6632
6633 if (lrucare)
6634 unlock_page_lru(oldpage, isolated);
6635
Johannes Weiner6abb5a82014-08-08 14:19:33 -07006636 commit_charge(newpage, pc->mem_cgroup, lrucare);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006637}
6638
Michal Hocko2d110852013-02-22 16:34:43 -08006639/*
Michal Hocko10813122013-02-22 16:35:41 -08006640 * subsys_initcall() for memory controller.
6641 *
6642 * Some parts like hotcpu_notifier() have to be initialized from this context
6643 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6644 * everything that doesn't depend on a specific mem_cgroup structure should
6645 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006646 */
6647static int __init mem_cgroup_init(void)
6648{
6649 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006650 enable_swap_cgroup();
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07006651 mem_cgroup_soft_limit_tree_init();
Michal Hockoe4777492013-02-22 16:35:40 -08006652 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006653 return 0;
6654}
6655subsys_initcall(mem_cgroup_init);