blob: 6ddaeba34e097a7553d33b8add26e26a27d3c81a [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 *
Johannes Weiner1575e682015-04-14 15:44:51 -070017 * Native page reclaim
18 * Charge lifetime sanitation
19 * Lockless page tracking & accounting
20 * Unified hierarchy configuration model
21 * Copyright (C) 2015 Red Hat, Inc., Johannes Weiner
22 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -080023 * This program is free software; you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation; either version 2 of the License, or
26 * (at your option) any later version.
27 *
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
32 */
33
Johannes Weiner3e32cb22014-12-10 15:42:31 -080034#include <linux/page_counter.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080035#include <linux/memcontrol.h>
36#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080037#include <linux/mm.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080038#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080039#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080040#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080041#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080042#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080043#include <linux/bit_spinlock.h>
44#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070045#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040046#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080047#include <linux/mutex.h>
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -070048#include <linux/rbtree.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070049#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080050#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080051#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080052#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080053#include <linux/eventfd.h>
Tejun Heo79bd9812013-11-22 18:20:42 -050054#include <linux/poll.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080055#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080056#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080057#include <linux/seq_file.h>
Anton Vorontsov70ddf632013-04-29 15:08:31 -070058#include <linux/vmpressure.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070059#include <linux/mm_inline.h>
Johannes Weiner5d1ea482014-12-10 15:44:55 -080060#include <linux/swap_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080061#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070062#include <linux/oom.h>
Johannes Weiner0056f4e2013-10-31 16:34:14 -070063#include <linux/lockdep.h>
Tejun Heo79bd9812013-11-22 18:20:42 -050064#include <linux/file.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080065#include "internal.h"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000066#include <net/sock.h>
Michal Hocko4bd2c1e2012-10-08 16:33:10 -070067#include <net/ip.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +000068#include <net/tcp_memcontrol.h>
Qiang Huangf35c3a82013-11-12 15:08:22 -080069#include "slab.h"
Balbir Singh8cdea7c2008-02-07 00:13:50 -080070
Balbir Singh8697d332008-02-07 00:13:59 -080071#include <asm/uaccess.h>
72
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070073#include <trace/events/vmscan.h>
74
Tejun Heo073219e2014-02-08 10:36:58 -050075struct cgroup_subsys memory_cgrp_subsys __read_mostly;
76EXPORT_SYMBOL(memory_cgrp_subsys);
David Rientjes68ae5642012-12-12 13:51:57 -080077
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070078#define MEM_CGROUP_RECLAIM_RETRIES 5
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -070079static struct mem_cgroup *root_mem_cgroup __read_mostly;
Tejun Heo56161632015-05-22 17:13:20 -040080struct cgroup_subsys_state *mem_cgroup_root_css __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080081
Johannes Weiner21afa382015-02-11 15:26:36 -080082/* Whether the swap controller is active */
Andrew Mortonc255a452012-07-31 16:43:02 -070083#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080084int do_swap_account __read_mostly;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080085#else
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -070086#define do_swap_account 0
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080087#endif
88
Johannes Weineraf7c4b02012-05-29 15:07:08 -070089static const char * const mem_cgroup_stat_names[] = {
90 "cache",
91 "rss",
David Rientjesb070e652013-05-07 16:18:09 -070092 "rss_huge",
Johannes Weineraf7c4b02012-05-29 15:07:08 -070093 "mapped_file",
Greg Thelenc4843a72015-05-22 17:13:16 -040094 "dirty",
Sha Zhengju3ea67d02013-09-12 15:13:53 -070095 "writeback",
Johannes Weineraf7c4b02012-05-29 15:07:08 -070096 "swap",
97};
98
Johannes Weineraf7c4b02012-05-29 15:07:08 -070099static const char * const mem_cgroup_events_names[] = {
100 "pgpgin",
101 "pgpgout",
102 "pgfault",
103 "pgmajfault",
104};
105
Sha Zhengju58cf1882013-02-22 16:32:05 -0800106static const char * const mem_cgroup_lru_names[] = {
107 "inactive_anon",
108 "active_anon",
109 "inactive_file",
110 "active_file",
111 "unevictable",
112};
113
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700114#define THRESHOLDS_EVENTS_TARGET 128
115#define SOFTLIMIT_EVENTS_TARGET 1024
116#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700117
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700118/*
119 * Cgroups above their limits are maintained in a RB-Tree, independent of
120 * their hierarchy representation
121 */
122
123struct mem_cgroup_tree_per_zone {
124 struct rb_root rb_root;
125 spinlock_t lock;
126};
127
128struct mem_cgroup_tree_per_node {
129 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
130};
131
132struct mem_cgroup_tree {
133 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
134};
135
136static struct mem_cgroup_tree soft_limit_tree __read_mostly;
137
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700138/* for OOM */
139struct mem_cgroup_eventfd_list {
140 struct list_head list;
141 struct eventfd_ctx *eventfd;
142};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800143
Tejun Heo79bd9812013-11-22 18:20:42 -0500144/*
145 * cgroup_event represents events which userspace want to receive.
146 */
Tejun Heo3bc942f2013-11-22 18:20:44 -0500147struct mem_cgroup_event {
Tejun Heo79bd9812013-11-22 18:20:42 -0500148 /*
Tejun Heo59b6f872013-11-22 18:20:43 -0500149 * memcg which the event belongs to.
Tejun Heo79bd9812013-11-22 18:20:42 -0500150 */
Tejun Heo59b6f872013-11-22 18:20:43 -0500151 struct mem_cgroup *memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -0500152 /*
Tejun Heo79bd9812013-11-22 18:20:42 -0500153 * eventfd to signal userspace about the event.
154 */
155 struct eventfd_ctx *eventfd;
156 /*
157 * Each of these stored in a list by the cgroup.
158 */
159 struct list_head list;
160 /*
Tejun Heofba94802013-11-22 18:20:43 -0500161 * register_event() callback will be used to add new userspace
162 * waiter for changes related to this event. Use eventfd_signal()
163 * on eventfd to send notification to userspace.
164 */
Tejun Heo59b6f872013-11-22 18:20:43 -0500165 int (*register_event)(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -0500166 struct eventfd_ctx *eventfd, const char *args);
Tejun Heofba94802013-11-22 18:20:43 -0500167 /*
168 * unregister_event() callback will be called when userspace closes
169 * the eventfd or on cgroup removing. This callback must be set,
170 * if you want provide notification functionality.
171 */
Tejun Heo59b6f872013-11-22 18:20:43 -0500172 void (*unregister_event)(struct mem_cgroup *memcg,
Tejun Heofba94802013-11-22 18:20:43 -0500173 struct eventfd_ctx *eventfd);
174 /*
Tejun Heo79bd9812013-11-22 18:20:42 -0500175 * All fields below needed to unregister event when
176 * userspace closes eventfd.
177 */
178 poll_table pt;
179 wait_queue_head_t *wqh;
180 wait_queue_t wait;
181 struct work_struct remove;
182};
183
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700184static void mem_cgroup_threshold(struct mem_cgroup *memcg);
185static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800186
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800187/* Stuffs for move charges at task migration. */
188/*
Johannes Weiner1dfab5a2015-02-11 15:26:09 -0800189 * Types of charges to be moved.
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800190 */
Johannes Weiner1dfab5a2015-02-11 15:26:09 -0800191#define MOVE_ANON 0x1U
192#define MOVE_FILE 0x2U
193#define MOVE_MASK (MOVE_ANON | MOVE_FILE)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800194
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800195/* "mc" and its members are protected by cgroup_mutex */
196static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800197 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800198 struct mem_cgroup *from;
199 struct mem_cgroup *to;
Johannes Weiner1dfab5a2015-02-11 15:26:09 -0800200 unsigned long flags;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800201 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800202 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800203 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800204 struct task_struct *moving_task; /* a task moving charges */
205 wait_queue_head_t waitq; /* a waitq for other context */
206} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700207 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800208 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
209};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800210
Balbir Singh4e416952009-09-23 15:56:39 -0700211/*
212 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
213 * limit reclaim to prevent infinite loops, if they ever occur.
214 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700215#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700216#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700217
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800218enum charge_type {
219 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700220 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800221 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700222 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700223 NR_CHARGE_TYPE,
224};
225
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800226/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800227enum res_type {
228 _MEM,
229 _MEMSWAP,
230 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800231 _KMEM,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800232};
233
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700234#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
235#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800236#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700237/* Used for OOM nofiier */
238#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800239
Balbir Singh75822b42009-09-23 15:56:38 -0700240/*
Glauber Costa09998212013-02-22 16:34:55 -0800241 * The memcg_create_mutex will be held whenever a new cgroup is created.
242 * As a consequence, any change that needs to protect against new child cgroups
243 * appearing has to hold it as well.
244 */
245static DEFINE_MUTEX(memcg_create_mutex);
246
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700247/* Some nice accessors for the vmpressure. */
248struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
249{
250 if (!memcg)
251 memcg = root_mem_cgroup;
252 return &memcg->vmpressure;
253}
254
255struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr)
256{
257 return &container_of(vmpr, struct mem_cgroup, vmpressure)->css;
258}
259
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700260static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
261{
262 return (memcg == root_mem_cgroup);
263}
264
Li Zefan4219b2d2013-09-23 16:56:29 +0800265/*
266 * We restrict the id in the range of [1, 65535], so it can fit into
267 * an unsigned short.
268 */
269#define MEM_CGROUP_ID_MAX USHRT_MAX
270
Li Zefan34c00c32013-09-23 16:56:01 +0800271static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
272{
Tejun Heo15a4c832014-05-04 15:09:14 -0400273 return memcg->css.id;
Li Zefan34c00c32013-09-23 16:56:01 +0800274}
275
Vladimir Davydovadbe4272015-04-15 16:13:00 -0700276/*
277 * A helper function to get mem_cgroup from ID. must be called under
278 * rcu_read_lock(). The caller is responsible for calling
279 * css_tryget_online() if the mem_cgroup is used for charging. (dropping
280 * refcnt from swap can be called against removed memcg.)
281 */
Li Zefan34c00c32013-09-23 16:56:01 +0800282static inline struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
283{
284 struct cgroup_subsys_state *css;
285
Tejun Heo7d699dd2014-05-04 15:09:13 -0400286 css = css_from_id(id, &memory_cgrp_subsys);
Li Zefan34c00c32013-09-23 16:56:01 +0800287 return mem_cgroup_from_css(css);
288}
289
Glauber Costae1aab162011-12-11 21:47:03 +0000290/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700291#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000292
Glauber Costae1aab162011-12-11 21:47:03 +0000293void sock_update_memcg(struct sock *sk)
294{
Glauber Costa376be5f2012-01-20 04:57:14 +0000295 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000296 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700297 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000298
299 BUG_ON(!sk->sk_prot->proto_cgroup);
300
Glauber Costaf3f511e2012-01-05 20:16:39 +0000301 /* Socket cloning can throw us here with sk_cgrp already
302 * filled. It won't however, necessarily happen from
303 * process context. So the test for root memcg given
304 * the current task's memcg won't help us in this case.
305 *
306 * Respecting the original socket's memcg is a better
307 * decision in this case.
308 */
309 if (sk->sk_cgrp) {
310 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700311 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000312 return;
313 }
314
Glauber Costae1aab162011-12-11 21:47:03 +0000315 rcu_read_lock();
316 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700317 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Michal Hockoe752eb62015-09-08 15:01:16 -0700318 if (cg_proto && test_bit(MEMCG_SOCK_ACTIVE, &cg_proto->flags) &&
Tejun Heoec903c02014-05-13 12:11:01 -0400319 css_tryget_online(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700320 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000321 }
322 rcu_read_unlock();
323 }
324}
325EXPORT_SYMBOL(sock_update_memcg);
326
327void sock_release_memcg(struct sock *sk)
328{
Glauber Costa376be5f2012-01-20 04:57:14 +0000329 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000330 struct mem_cgroup *memcg;
331 WARN_ON(!sk->sk_cgrp->memcg);
332 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700333 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000334 }
335}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000336
337struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
338{
339 if (!memcg || mem_cgroup_is_root(memcg))
340 return NULL;
341
Eric W. Biederman2e685ca2013-10-19 16:26:19 -0700342 return &memcg->tcp_mem;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000343}
344EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000345
Glauber Costa3f134612012-05-29 15:07:11 -0700346#endif
347
Glauber Costaa8964b92012-12-18 14:22:09 -0800348#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800349/*
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800350 * This will be the memcg's index in each cache's ->memcg_params.memcg_caches.
Li Zefanb8627832013-09-23 16:56:47 +0800351 * The main reason for not using cgroup id for this:
352 * this works better in sparse environments, where we have a lot of memcgs,
353 * but only a few kmem-limited. Or also, if we have, for instance, 200
354 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
355 * 200 entry array for that.
Glauber Costa55007d82012-12-18 14:22:38 -0800356 *
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800357 * The current size of the caches array is stored in memcg_nr_cache_ids. It
358 * will double each time we have to increase it.
Glauber Costa55007d82012-12-18 14:22:38 -0800359 */
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800360static DEFINE_IDA(memcg_cache_ida);
361int memcg_nr_cache_ids;
Glauber Costa749c5412012-12-18 14:23:01 -0800362
Vladimir Davydov05257a12015-02-12 14:59:01 -0800363/* Protects memcg_nr_cache_ids */
364static DECLARE_RWSEM(memcg_cache_ids_sem);
365
366void memcg_get_cache_ids(void)
367{
368 down_read(&memcg_cache_ids_sem);
369}
370
371void memcg_put_cache_ids(void)
372{
373 up_read(&memcg_cache_ids_sem);
374}
375
Glauber Costa55007d82012-12-18 14:22:38 -0800376/*
377 * MIN_SIZE is different than 1, because we would like to avoid going through
378 * the alloc/free process all the time. In a small machine, 4 kmem-limited
379 * cgroups is a reasonable guess. In the future, it could be a parameter or
380 * tunable, but that is strictly not necessary.
381 *
Li Zefanb8627832013-09-23 16:56:47 +0800382 * MAX_SIZE should be as large as the number of cgrp_ids. Ideally, we could get
Glauber Costa55007d82012-12-18 14:22:38 -0800383 * this constant directly from cgroup, but it is understandable that this is
384 * better kept as an internal representation in cgroup.c. In any case, the
Li Zefanb8627832013-09-23 16:56:47 +0800385 * cgrp_id space is not getting any smaller, and we don't have to necessarily
Glauber Costa55007d82012-12-18 14:22:38 -0800386 * increase ours as well if it increases.
387 */
388#define MEMCG_CACHES_MIN_SIZE 4
Li Zefanb8627832013-09-23 16:56:47 +0800389#define MEMCG_CACHES_MAX_SIZE MEM_CGROUP_ID_MAX
Glauber Costa55007d82012-12-18 14:22:38 -0800390
Glauber Costad7f25f82012-12-18 14:22:40 -0800391/*
392 * A lot of the calls to the cache allocation functions are expected to be
393 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
394 * conditional to this static branch, we'll have to allow modules that does
395 * kmem_cache_alloc and the such to see this symbol as well
396 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800397struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800398EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800399
Glauber Costaa8964b92012-12-18 14:22:09 -0800400#endif /* CONFIG_MEMCG_KMEM */
401
Balbir Singhf64c3f52009-09-23 15:56:37 -0700402static struct mem_cgroup_per_zone *
Jianyu Zhane2318752014-06-06 14:38:20 -0700403mem_cgroup_zone_zoneinfo(struct mem_cgroup *memcg, struct zone *zone)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700404{
Jianyu Zhane2318752014-06-06 14:38:20 -0700405 int nid = zone_to_nid(zone);
406 int zid = zone_idx(zone);
407
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700408 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700409}
410
Tejun Heoad7fa852015-05-27 20:00:02 -0400411/**
412 * mem_cgroup_css_from_page - css of the memcg associated with a page
413 * @page: page of interest
414 *
415 * If memcg is bound to the default hierarchy, css of the memcg associated
416 * with @page is returned. The returned css remains associated with @page
417 * until it is released.
418 *
419 * If memcg is bound to a traditional hierarchy, the css of root_mem_cgroup
420 * is returned.
421 *
422 * XXX: The above description of behavior on the default hierarchy isn't
423 * strictly true yet as replace_page_cache_page() can modify the
424 * association before @page is released even on the default hierarchy;
425 * however, the current and planned usages don't mix the the two functions
426 * and replace_page_cache_page() will soon be updated to make the invariant
427 * actually true.
428 */
429struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page)
430{
431 struct mem_cgroup *memcg;
432
433 rcu_read_lock();
434
435 memcg = page->mem_cgroup;
436
437 if (!memcg || !cgroup_on_dfl(memcg->css.cgroup))
438 memcg = root_mem_cgroup;
439
440 rcu_read_unlock();
441 return &memcg->css;
442}
443
Vladimir Davydov2fc04522015-09-09 15:35:28 -0700444/**
445 * page_cgroup_ino - return inode number of the memcg a page is charged to
446 * @page: the page
447 *
448 * Look up the closest online ancestor of the memory cgroup @page is charged to
449 * and return its inode number or 0 if @page is not charged to any cgroup. It
450 * is safe to call this function without holding a reference to @page.
451 *
452 * Note, this function is inherently racy, because there is nothing to prevent
453 * the cgroup inode from getting torn down and potentially reallocated a moment
454 * after page_cgroup_ino() returns, so it only should be used by callers that
455 * do not care (such as procfs interfaces).
456 */
457ino_t page_cgroup_ino(struct page *page)
458{
459 struct mem_cgroup *memcg;
460 unsigned long ino = 0;
461
462 rcu_read_lock();
463 memcg = READ_ONCE(page->mem_cgroup);
464 while (memcg && !(memcg->css.flags & CSS_ONLINE))
465 memcg = parent_mem_cgroup(memcg);
466 if (memcg)
467 ino = cgroup_ino(memcg->css.cgroup);
468 rcu_read_unlock();
469 return ino;
470}
471
Balbir Singhf64c3f52009-09-23 15:56:37 -0700472static struct mem_cgroup_per_zone *
Jianyu Zhane2318752014-06-06 14:38:20 -0700473mem_cgroup_page_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700474{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700475 int nid = page_to_nid(page);
476 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700477
Jianyu Zhane2318752014-06-06 14:38:20 -0700478 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700479}
480
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700481static struct mem_cgroup_tree_per_zone *
482soft_limit_tree_node_zone(int nid, int zid)
483{
484 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
485}
486
487static struct mem_cgroup_tree_per_zone *
488soft_limit_tree_from_page(struct page *page)
489{
490 int nid = page_to_nid(page);
491 int zid = page_zonenum(page);
492
493 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
494}
495
Johannes Weinercf2c8122014-06-06 14:38:21 -0700496static void __mem_cgroup_insert_exceeded(struct mem_cgroup_per_zone *mz,
497 struct mem_cgroup_tree_per_zone *mctz,
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800498 unsigned long new_usage_in_excess)
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700499{
500 struct rb_node **p = &mctz->rb_root.rb_node;
501 struct rb_node *parent = NULL;
502 struct mem_cgroup_per_zone *mz_node;
503
504 if (mz->on_tree)
505 return;
506
507 mz->usage_in_excess = new_usage_in_excess;
508 if (!mz->usage_in_excess)
509 return;
510 while (*p) {
511 parent = *p;
512 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
513 tree_node);
514 if (mz->usage_in_excess < mz_node->usage_in_excess)
515 p = &(*p)->rb_left;
516 /*
517 * We can't avoid mem cgroups that are over their soft
518 * limit by the same amount
519 */
520 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
521 p = &(*p)->rb_right;
522 }
523 rb_link_node(&mz->tree_node, parent, p);
524 rb_insert_color(&mz->tree_node, &mctz->rb_root);
525 mz->on_tree = true;
526}
527
Johannes Weinercf2c8122014-06-06 14:38:21 -0700528static void __mem_cgroup_remove_exceeded(struct mem_cgroup_per_zone *mz,
529 struct mem_cgroup_tree_per_zone *mctz)
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700530{
531 if (!mz->on_tree)
532 return;
533 rb_erase(&mz->tree_node, &mctz->rb_root);
534 mz->on_tree = false;
535}
536
Johannes Weinercf2c8122014-06-06 14:38:21 -0700537static void mem_cgroup_remove_exceeded(struct mem_cgroup_per_zone *mz,
538 struct mem_cgroup_tree_per_zone *mctz)
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700539{
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700540 unsigned long flags;
541
542 spin_lock_irqsave(&mctz->lock, flags);
Johannes Weinercf2c8122014-06-06 14:38:21 -0700543 __mem_cgroup_remove_exceeded(mz, mctz);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700544 spin_unlock_irqrestore(&mctz->lock, flags);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700545}
546
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800547static unsigned long soft_limit_excess(struct mem_cgroup *memcg)
548{
549 unsigned long nr_pages = page_counter_read(&memcg->memory);
Jason Low4db0c3c2015-04-15 16:14:08 -0700550 unsigned long soft_limit = READ_ONCE(memcg->soft_limit);
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800551 unsigned long excess = 0;
552
553 if (nr_pages > soft_limit)
554 excess = nr_pages - soft_limit;
555
556 return excess;
557}
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700558
559static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
560{
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800561 unsigned long excess;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700562 struct mem_cgroup_per_zone *mz;
563 struct mem_cgroup_tree_per_zone *mctz;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700564
Jianyu Zhane2318752014-06-06 14:38:20 -0700565 mctz = soft_limit_tree_from_page(page);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700566 /*
567 * Necessary to update all ancestors when hierarchy is used.
568 * because their event counter is not touched.
569 */
570 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
Jianyu Zhane2318752014-06-06 14:38:20 -0700571 mz = mem_cgroup_page_zoneinfo(memcg, page);
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800572 excess = soft_limit_excess(memcg);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700573 /*
574 * We have to update the tree if mz is on RB-tree or
575 * mem is over its softlimit.
576 */
577 if (excess || mz->on_tree) {
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700578 unsigned long flags;
579
580 spin_lock_irqsave(&mctz->lock, flags);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700581 /* if on-tree, remove it */
582 if (mz->on_tree)
Johannes Weinercf2c8122014-06-06 14:38:21 -0700583 __mem_cgroup_remove_exceeded(mz, mctz);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700584 /*
585 * Insert again. mz->usage_in_excess will be updated.
586 * If excess is 0, no tree ops.
587 */
Johannes Weinercf2c8122014-06-06 14:38:21 -0700588 __mem_cgroup_insert_exceeded(mz, mctz, excess);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700589 spin_unlock_irqrestore(&mctz->lock, flags);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700590 }
591 }
592}
593
594static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
595{
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700596 struct mem_cgroup_tree_per_zone *mctz;
Jianyu Zhane2318752014-06-06 14:38:20 -0700597 struct mem_cgroup_per_zone *mz;
598 int nid, zid;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700599
Jianyu Zhane2318752014-06-06 14:38:20 -0700600 for_each_node(nid) {
601 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
602 mz = &memcg->nodeinfo[nid]->zoneinfo[zid];
603 mctz = soft_limit_tree_node_zone(nid, zid);
Johannes Weinercf2c8122014-06-06 14:38:21 -0700604 mem_cgroup_remove_exceeded(mz, mctz);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700605 }
606 }
607}
608
609static struct mem_cgroup_per_zone *
610__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
611{
612 struct rb_node *rightmost = NULL;
613 struct mem_cgroup_per_zone *mz;
614
615retry:
616 mz = NULL;
617 rightmost = rb_last(&mctz->rb_root);
618 if (!rightmost)
619 goto done; /* Nothing to reclaim from */
620
621 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
622 /*
623 * Remove the node now but someone else can add it back,
624 * we will to add it back at the end of reclaim to its correct
625 * position in the tree.
626 */
Johannes Weinercf2c8122014-06-06 14:38:21 -0700627 __mem_cgroup_remove_exceeded(mz, mctz);
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800628 if (!soft_limit_excess(mz->memcg) ||
Tejun Heoec903c02014-05-13 12:11:01 -0400629 !css_tryget_online(&mz->memcg->css))
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700630 goto retry;
631done:
632 return mz;
633}
634
635static struct mem_cgroup_per_zone *
636mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
637{
638 struct mem_cgroup_per_zone *mz;
639
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700640 spin_lock_irq(&mctz->lock);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700641 mz = __mem_cgroup_largest_soft_limit_node(mctz);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700642 spin_unlock_irq(&mctz->lock);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700643 return mz;
644}
645
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700646/*
647 * Implementation Note: reading percpu statistics for memcg.
648 *
649 * Both of vmstat[] and percpu_counter has threshold and do periodic
650 * synchronization to implement "quick" read. There are trade-off between
651 * reading cost and precision of value. Then, we may have a chance to implement
652 * a periodic synchronizion of counter in memcg's counter.
653 *
654 * But this _read() function is used for user interface now. The user accounts
655 * memory usage by memory cgroup and he _always_ requires exact value because
656 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
657 * have to visit all online cpus and make sum. So, for now, unnecessary
658 * synchronization is not implemented. (just implemented for cpu hotplug)
659 *
660 * If there are kernel internal actions which can make use of some not-exact
661 * value, and reading all cpu value can be performance bottleneck in some
662 * common workload, threashold and synchonization as vmstat[] should be
663 * implemented.
664 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700665static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700666 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800667{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700668 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800669 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800670
Tejun Heo733a5722015-05-22 18:23:18 -0400671 for_each_possible_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700672 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800673 return val;
674}
675
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700676static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700677 enum mem_cgroup_events_index idx)
678{
679 unsigned long val = 0;
680 int cpu;
681
Tejun Heo733a5722015-05-22 18:23:18 -0400682 for_each_possible_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700683 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700684 return val;
685}
686
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700687static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700688 struct page *page,
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700689 int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800690{
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700691 /*
692 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
693 * counted as CACHE even if it's on ANON LRU.
694 */
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700695 if (PageAnon(page))
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700696 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700697 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800698 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700699 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700700 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700701
David Rientjesb070e652013-05-07 16:18:09 -0700702 if (PageTransHuge(page))
703 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
704 nr_pages);
705
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800706 /* pagein of a big page is an event. So, ignore page size */
707 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700708 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800709 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700710 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800711 nr_pages = -nr_pages; /* for event */
712 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800713
Johannes Weiner13114712012-05-29 15:07:07 -0700714 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800715}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800716
Jianyu Zhane2318752014-06-06 14:38:20 -0700717static unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
718 int nid,
719 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700720{
Jianyu Zhane2318752014-06-06 14:38:20 -0700721 unsigned long nr = 0;
Ying Han889976d2011-05-26 16:25:33 -0700722 int zid;
723
Jianyu Zhane2318752014-06-06 14:38:20 -0700724 VM_BUG_ON((unsigned)nid >= nr_node_ids);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700725
Jianyu Zhane2318752014-06-06 14:38:20 -0700726 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
727 struct mem_cgroup_per_zone *mz;
728 enum lru_list lru;
729
730 for_each_lru(lru) {
731 if (!(BIT(lru) & lru_mask))
732 continue;
733 mz = &memcg->nodeinfo[nid]->zoneinfo[zid];
734 nr += mz->lru_size[lru];
735 }
736 }
737 return nr;
Ying Han889976d2011-05-26 16:25:33 -0700738}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700739
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700740static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700741 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800742{
Jianyu Zhane2318752014-06-06 14:38:20 -0700743 unsigned long nr = 0;
Ying Han889976d2011-05-26 16:25:33 -0700744 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800745
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800746 for_each_node_state(nid, N_MEMORY)
Jianyu Zhane2318752014-06-06 14:38:20 -0700747 nr += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
748 return nr;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800749}
750
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800751static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
752 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800753{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700754 unsigned long val, next;
755
Johannes Weiner13114712012-05-29 15:07:07 -0700756 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700757 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700758 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800759 if ((long)next - (long)val < 0) {
760 switch (target) {
761 case MEM_CGROUP_TARGET_THRESH:
762 next = val + THRESHOLDS_EVENTS_TARGET;
763 break;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700764 case MEM_CGROUP_TARGET_SOFTLIMIT:
765 next = val + SOFTLIMIT_EVENTS_TARGET;
766 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800767 case MEM_CGROUP_TARGET_NUMAINFO:
768 next = val + NUMAINFO_EVENTS_TARGET;
769 break;
770 default:
771 break;
772 }
773 __this_cpu_write(memcg->stat->targets[target], next);
774 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700775 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800776 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800777}
778
779/*
780 * Check events in order.
781 *
782 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700783static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800784{
785 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800786 if (unlikely(mem_cgroup_event_ratelimit(memcg,
787 MEM_CGROUP_TARGET_THRESH))) {
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700788 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800789 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800790
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700791 do_softlimit = mem_cgroup_event_ratelimit(memcg,
792 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700793#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800794 do_numainfo = mem_cgroup_event_ratelimit(memcg,
795 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700796#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800797 mem_cgroup_threshold(memcg);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700798 if (unlikely(do_softlimit))
799 mem_cgroup_update_tree(memcg, page);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800800#if MAX_NUMNODES > 1
801 if (unlikely(do_numainfo))
802 atomic_inc(&memcg->numainfo_events);
803#endif
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700804 }
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800805}
806
Balbir Singhcf475ad2008-04-29 01:00:16 -0700807struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800808{
Balbir Singh31a78f22008-09-28 23:09:31 +0100809 /*
810 * mm_update_next_owner() may clear mm->owner to NULL
811 * if it races with swapoff, page migration, etc.
812 * So this can be called with p == NULL.
813 */
814 if (unlikely(!p))
815 return NULL;
816
Tejun Heo073219e2014-02-08 10:36:58 -0500817 return mem_cgroup_from_css(task_css(p, memory_cgrp_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800818}
Michal Hocko33398cf2015-09-08 15:01:02 -0700819EXPORT_SYMBOL(mem_cgroup_from_task);
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800820
Johannes Weinerdf381972014-04-07 15:37:43 -0700821static struct mem_cgroup *get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800822{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700823 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700824
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800825 rcu_read_lock();
826 do {
Michal Hocko6f6acb02014-05-22 11:54:19 -0700827 /*
828 * Page cache insertions can happen withou an
829 * actual mm context, e.g. during disk probing
830 * on boot, loopback IO, acct() writes etc.
831 */
832 if (unlikely(!mm))
Johannes Weinerdf381972014-04-07 15:37:43 -0700833 memcg = root_mem_cgroup;
Michal Hocko6f6acb02014-05-22 11:54:19 -0700834 else {
835 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
836 if (unlikely(!memcg))
837 memcg = root_mem_cgroup;
838 }
Tejun Heoec903c02014-05-13 12:11:01 -0400839 } while (!css_tryget_online(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800840 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700841 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800842}
843
Johannes Weiner56600482012-01-12 17:17:59 -0800844/**
845 * mem_cgroup_iter - iterate over memory cgroup hierarchy
846 * @root: hierarchy root
847 * @prev: previously returned memcg, NULL on first invocation
848 * @reclaim: cookie for shared reclaim walks, NULL for full walks
849 *
850 * Returns references to children of the hierarchy below @root, or
851 * @root itself, or %NULL after a full round-trip.
852 *
853 * Caller must pass the return value in @prev on subsequent
854 * invocations for reference counting, or use mem_cgroup_iter_break()
855 * to cancel a hierarchy walk before the round-trip is complete.
856 *
857 * Reclaimers can specify a zone and a priority level in @reclaim to
858 * divide up the memcgs in the hierarchy among all concurrent
859 * reclaimers operating on the same zone and priority.
860 */
Andrew Morton694fbc02013-09-24 15:27:37 -0700861struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -0800862 struct mem_cgroup *prev,
Andrew Morton694fbc02013-09-24 15:27:37 -0700863 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700864{
Michal Hocko33398cf2015-09-08 15:01:02 -0700865 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800866 struct cgroup_subsys_state *css = NULL;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800867 struct mem_cgroup *memcg = NULL;
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800868 struct mem_cgroup *pos = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700869
Andrew Morton694fbc02013-09-24 15:27:37 -0700870 if (mem_cgroup_disabled())
871 return NULL;
Johannes Weiner56600482012-01-12 17:17:59 -0800872
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700873 if (!root)
874 root = root_mem_cgroup;
875
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800876 if (prev && !reclaim)
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800877 pos = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800878
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800879 if (!root->use_hierarchy && root != root_mem_cgroup) {
880 if (prev)
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800881 goto out;
Andrew Morton694fbc02013-09-24 15:27:37 -0700882 return root;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800883 }
884
Michal Hocko542f85f2013-04-29 15:07:15 -0700885 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800886
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800887 if (reclaim) {
888 struct mem_cgroup_per_zone *mz;
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800889
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800890 mz = mem_cgroup_zone_zoneinfo(root, reclaim->zone);
891 iter = &mz->iter[reclaim->priority];
Michal Hocko5f578162013-04-29 15:07:17 -0700892
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800893 if (prev && reclaim->generation != iter->generation)
Michal Hocko542f85f2013-04-29 15:07:15 -0700894 goto out_unlock;
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800895
896 do {
Jason Low4db0c3c2015-04-15 16:14:08 -0700897 pos = READ_ONCE(iter->position);
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800898 /*
899 * A racing update may change the position and
900 * put the last reference, hence css_tryget(),
901 * or retry to see the updated position.
902 */
903 } while (pos && !css_tryget(&pos->css));
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800904 }
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800905
906 if (pos)
907 css = &pos->css;
908
909 for (;;) {
910 css = css_next_descendant_pre(css, &root->css);
911 if (!css) {
912 /*
913 * Reclaimers share the hierarchy walk, and a
914 * new one might jump in right at the end of
915 * the hierarchy - make sure they see at least
916 * one group and restart from the beginning.
917 */
918 if (!prev)
919 continue;
920 break;
921 }
922
923 /*
924 * Verify the css and acquire a reference. The root
925 * is provided by the caller, so we know it's alive
926 * and kicking, and don't take an extra reference.
927 */
928 memcg = mem_cgroup_from_css(css);
929
930 if (css == &root->css)
931 break;
932
Johannes Weinerb2052562014-12-10 15:42:48 -0800933 if (css_tryget(css)) {
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800934 /*
935 * Make sure the memcg is initialized:
936 * mem_cgroup_css_online() orders the the
937 * initialization against setting the flag.
938 */
939 if (smp_load_acquire(&memcg->initialized))
940 break;
941
942 css_put(css);
943 }
944
945 memcg = NULL;
946 }
947
948 if (reclaim) {
949 if (cmpxchg(&iter->position, pos, memcg) == pos) {
950 if (memcg)
951 css_get(&memcg->css);
952 if (pos)
953 css_put(&pos->css);
954 }
955
956 /*
957 * pairs with css_tryget when dereferencing iter->position
958 * above.
959 */
960 if (pos)
961 css_put(&pos->css);
962
963 if (!memcg)
964 iter->generation++;
965 else if (!prev)
966 reclaim->generation = iter->generation;
967 }
968
Michal Hocko542f85f2013-04-29 15:07:15 -0700969out_unlock:
970 rcu_read_unlock();
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800971out:
Michal Hockoc40046f2013-04-29 15:07:14 -0700972 if (prev && prev != root)
973 css_put(&prev->css);
974
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800975 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700976}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800977
Johannes Weiner56600482012-01-12 17:17:59 -0800978/**
979 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
980 * @root: hierarchy root
981 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
982 */
983void mem_cgroup_iter_break(struct mem_cgroup *root,
984 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800985{
986 if (!root)
987 root = root_mem_cgroup;
988 if (prev && prev != root)
989 css_put(&prev->css);
990}
991
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700992/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800993 * Iteration constructs for visiting all cgroups (under a tree). If
994 * loops are exited prematurely (break), mem_cgroup_iter_break() must
995 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700996 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800997#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800998 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800999 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001000 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001001
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001002#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001003 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001004 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001005 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001006
Johannes Weiner925b7672012-01-12 17:18:15 -08001007/**
1008 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1009 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001010 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001011 *
1012 * Returns the lru list vector holding pages for the given @zone and
1013 * @mem. This can be the global zone lruvec, if the memory controller
1014 * is disabled.
1015 */
1016struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1017 struct mem_cgroup *memcg)
1018{
1019 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001020 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001021
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001022 if (mem_cgroup_disabled()) {
1023 lruvec = &zone->lruvec;
1024 goto out;
1025 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001026
Jianyu Zhane2318752014-06-06 14:38:20 -07001027 mz = mem_cgroup_zone_zoneinfo(memcg, zone);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001028 lruvec = &mz->lruvec;
1029out:
1030 /*
1031 * Since a node can be onlined after the mem_cgroup was created,
1032 * we have to be prepared to initialize lruvec->zone here;
1033 * and if offlined then reonlined, we need to reinitialize it.
1034 */
1035 if (unlikely(lruvec->zone != zone))
1036 lruvec->zone = zone;
1037 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001038}
1039
Johannes Weiner925b7672012-01-12 17:18:15 -08001040/**
Johannes Weinerdfe0e772014-12-10 15:43:43 -08001041 * mem_cgroup_page_lruvec - return lruvec for isolating/putting an LRU page
Johannes Weiner925b7672012-01-12 17:18:15 -08001042 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001043 * @zone: zone of the page
Johannes Weinerdfe0e772014-12-10 15:43:43 -08001044 *
1045 * This function is only safe when following the LRU page isolation
1046 * and putback protocol: the LRU lock must be held, and the page must
1047 * either be PageLRU() or the caller must have isolated/allocated it.
Minchan Kim3f58a822011-03-22 16:32:53 -07001048 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001049struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001050{
1051 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001052 struct mem_cgroup *memcg;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001053 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001054
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001055 if (mem_cgroup_disabled()) {
1056 lruvec = &zone->lruvec;
1057 goto out;
1058 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001059
Johannes Weiner1306a852014-12-10 15:44:52 -08001060 memcg = page->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001061 /*
Johannes Weinerdfe0e772014-12-10 15:43:43 -08001062 * Swapcache readahead pages are added to the LRU - and
Johannes Weiner29833312014-12-10 15:44:02 -08001063 * possibly migrated - before they are charged.
Hugh Dickins75121022012-03-05 14:59:18 -08001064 */
Johannes Weiner29833312014-12-10 15:44:02 -08001065 if (!memcg)
1066 memcg = root_mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001067
Jianyu Zhane2318752014-06-06 14:38:20 -07001068 mz = mem_cgroup_page_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001069 lruvec = &mz->lruvec;
1070out:
1071 /*
1072 * Since a node can be onlined after the mem_cgroup was created,
1073 * we have to be prepared to initialize lruvec->zone here;
1074 * and if offlined then reonlined, we need to reinitialize it.
1075 */
1076 if (unlikely(lruvec->zone != zone))
1077 lruvec->zone = zone;
1078 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001079}
1080
1081/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001082 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1083 * @lruvec: mem_cgroup per zone lru vector
1084 * @lru: index of lru list the page is sitting on
1085 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001086 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001087 * This function must be called when a page is added to or removed from an
1088 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001089 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001090void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1091 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001092{
1093 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001094 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001095
1096 if (mem_cgroup_disabled())
1097 return;
1098
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001099 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1100 lru_size = mz->lru_size + lru;
1101 *lru_size += nr_pages;
1102 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001103}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001104
Johannes Weiner2314b422014-12-10 15:44:33 -08001105bool task_in_mem_cgroup(struct task_struct *task, struct mem_cgroup *memcg)
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001106{
Johannes Weiner2314b422014-12-10 15:44:33 -08001107 struct mem_cgroup *task_memcg;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001108 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001109 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001110
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001111 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001112 if (p) {
Johannes Weiner2314b422014-12-10 15:44:33 -08001113 task_memcg = get_mem_cgroup_from_mm(p->mm);
David Rientjesde077d22012-01-12 17:18:52 -08001114 task_unlock(p);
1115 } else {
1116 /*
1117 * All threads may have already detached their mm's, but the oom
1118 * killer still needs to detect if they have already been oom
1119 * killed to prevent needlessly killing additional tasks.
1120 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001121 rcu_read_lock();
Johannes Weiner2314b422014-12-10 15:44:33 -08001122 task_memcg = mem_cgroup_from_task(task);
1123 css_get(&task_memcg->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001124 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001125 }
Johannes Weiner2314b422014-12-10 15:44:33 -08001126 ret = mem_cgroup_is_descendant(task_memcg, memcg);
1127 css_put(&task_memcg->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001128 return ret;
1129}
1130
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001131#define mem_cgroup_from_counter(counter, member) \
Balbir Singh6d61ef42009-01-07 18:08:06 -08001132 container_of(counter, struct mem_cgroup, member)
1133
Johannes Weiner19942822011-02-01 15:52:43 -08001134/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001135 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001136 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001137 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001138 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001139 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001140 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001141static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001142{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001143 unsigned long margin = 0;
1144 unsigned long count;
1145 unsigned long limit;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001146
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001147 count = page_counter_read(&memcg->memory);
Jason Low4db0c3c2015-04-15 16:14:08 -07001148 limit = READ_ONCE(memcg->memory.limit);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001149 if (count < limit)
1150 margin = limit - count;
1151
1152 if (do_swap_account) {
1153 count = page_counter_read(&memcg->memsw);
Jason Low4db0c3c2015-04-15 16:14:08 -07001154 limit = READ_ONCE(memcg->memsw.limit);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001155 if (count <= limit)
1156 margin = min(margin, limit - count);
1157 }
1158
1159 return margin;
Johannes Weiner19942822011-02-01 15:52:43 -08001160}
1161
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001162/*
Qiang Huangbdcbb652014-06-04 16:08:21 -07001163 * A routine for checking "mem" is under move_account() or not.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001164 *
Qiang Huangbdcbb652014-06-04 16:08:21 -07001165 * Checking a cgroup is mc.from or mc.to or under hierarchy of
1166 * moving cgroups. This is for waiting at high-memory pressure
1167 * caused by "move".
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001168 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001169static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001170{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001171 struct mem_cgroup *from;
1172 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001173 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001174 /*
1175 * Unlike task_move routines, we access mc.to, mc.from not under
1176 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1177 */
1178 spin_lock(&mc.lock);
1179 from = mc.from;
1180 to = mc.to;
1181 if (!from)
1182 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001183
Johannes Weiner2314b422014-12-10 15:44:33 -08001184 ret = mem_cgroup_is_descendant(from, memcg) ||
1185 mem_cgroup_is_descendant(to, memcg);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001186unlock:
1187 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001188 return ret;
1189}
1190
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001191static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001192{
1193 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001194 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001195 DEFINE_WAIT(wait);
1196 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1197 /* moving charge context might have finished. */
1198 if (mc.moving_task)
1199 schedule();
1200 finish_wait(&mc.waitq, &wait);
1201 return true;
1202 }
1203 }
1204 return false;
1205}
1206
Sha Zhengju58cf1882013-02-22 16:32:05 -08001207#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001208/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001209 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001210 * @memcg: The memory cgroup that went over limit
1211 * @p: Task that is going to be killed
1212 *
1213 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1214 * enabled
1215 */
1216void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1217{
Tejun Heoe61734c2014-02-12 09:29:50 -05001218 /* oom_info_lock ensures that parallel ooms do not interleave */
Michal Hocko08088cb2014-02-25 15:01:44 -08001219 static DEFINE_MUTEX(oom_info_lock);
Sha Zhengju58cf1882013-02-22 16:32:05 -08001220 struct mem_cgroup *iter;
1221 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001222
Michal Hocko08088cb2014-02-25 15:01:44 -08001223 mutex_lock(&oom_info_lock);
Balbir Singhe2224322009-04-02 16:57:39 -07001224 rcu_read_lock();
1225
Balasubramani Vivekanandan2415b9f2015-04-14 15:48:18 -07001226 if (p) {
1227 pr_info("Task in ");
1228 pr_cont_cgroup_path(task_cgroup(p, memory_cgrp_id));
1229 pr_cont(" killed as a result of limit of ");
1230 } else {
1231 pr_info("Memory limit reached of cgroup ");
1232 }
1233
Tejun Heoe61734c2014-02-12 09:29:50 -05001234 pr_cont_cgroup_path(memcg->css.cgroup);
Greg Thelen0346dad2015-01-26 12:58:38 -08001235 pr_cont("\n");
Balbir Singhe2224322009-04-02 16:57:39 -07001236
Balbir Singhe2224322009-04-02 16:57:39 -07001237 rcu_read_unlock();
1238
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001239 pr_info("memory: usage %llukB, limit %llukB, failcnt %lu\n",
1240 K((u64)page_counter_read(&memcg->memory)),
1241 K((u64)memcg->memory.limit), memcg->memory.failcnt);
1242 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %lu\n",
1243 K((u64)page_counter_read(&memcg->memsw)),
1244 K((u64)memcg->memsw.limit), memcg->memsw.failcnt);
1245 pr_info("kmem: usage %llukB, limit %llukB, failcnt %lu\n",
1246 K((u64)page_counter_read(&memcg->kmem)),
1247 K((u64)memcg->kmem.limit), memcg->kmem.failcnt);
Sha Zhengju58cf1882013-02-22 16:32:05 -08001248
1249 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heoe61734c2014-02-12 09:29:50 -05001250 pr_info("Memory cgroup stats for ");
1251 pr_cont_cgroup_path(iter->css.cgroup);
Sha Zhengju58cf1882013-02-22 16:32:05 -08001252 pr_cont(":");
1253
1254 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1255 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1256 continue;
1257 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1258 K(mem_cgroup_read_stat(iter, i)));
1259 }
1260
1261 for (i = 0; i < NR_LRU_LISTS; i++)
1262 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1263 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1264
1265 pr_cont("\n");
1266 }
Michal Hocko08088cb2014-02-25 15:01:44 -08001267 mutex_unlock(&oom_info_lock);
Balbir Singhe2224322009-04-02 16:57:39 -07001268}
1269
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001270/*
1271 * This function returns the number of memcg under hierarchy tree. Returns
1272 * 1(self count) if no children.
1273 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001274static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001275{
1276 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001277 struct mem_cgroup *iter;
1278
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001279 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001280 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001281 return num;
1282}
1283
Balbir Singh6d61ef42009-01-07 18:08:06 -08001284/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001285 * Return the memory (and swap, if configured) limit for a memcg.
1286 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001287static unsigned long mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001288{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001289 unsigned long limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001290
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001291 limit = memcg->memory.limit;
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001292 if (mem_cgroup_swappiness(memcg)) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001293 unsigned long memsw_limit;
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001294
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001295 memsw_limit = memcg->memsw.limit;
1296 limit = min(limit + total_swap_pages, memsw_limit);
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001297 }
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001298 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001299}
1300
David Rientjes19965462012-12-11 16:00:26 -08001301static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1302 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001303{
David Rientjes6e0fc462015-09-08 15:00:36 -07001304 struct oom_control oc = {
1305 .zonelist = NULL,
1306 .nodemask = NULL,
1307 .gfp_mask = gfp_mask,
1308 .order = order,
David Rientjes6e0fc462015-09-08 15:00:36 -07001309 };
David Rientjes9cbb78b2012-07-31 16:43:44 -07001310 struct mem_cgroup *iter;
1311 unsigned long chosen_points = 0;
1312 unsigned long totalpages;
1313 unsigned int points = 0;
1314 struct task_struct *chosen = NULL;
1315
Johannes Weinerdc564012015-06-24 16:57:19 -07001316 mutex_lock(&oom_lock);
1317
David Rientjes876aafb2012-07-31 16:43:48 -07001318 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001319 * If current has a pending SIGKILL or is exiting, then automatically
1320 * select it. The goal is to allow it to allocate so that it may
1321 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001322 */
Oleg Nesterovd003f372014-12-12 16:56:24 -08001323 if (fatal_signal_pending(current) || task_will_free_mem(current)) {
Johannes Weiner16e95192015-06-24 16:57:07 -07001324 mark_oom_victim(current);
Johannes Weinerdc564012015-06-24 16:57:19 -07001325 goto unlock;
David Rientjes876aafb2012-07-31 16:43:48 -07001326 }
1327
David Rientjes6e0fc462015-09-08 15:00:36 -07001328 check_panic_on_oom(&oc, CONSTRAINT_MEMCG, memcg);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001329 totalpages = mem_cgroup_get_limit(memcg) ? : 1;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001330 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001331 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001332 struct task_struct *task;
1333
Tejun Heo72ec7022013-08-08 20:11:26 -04001334 css_task_iter_start(&iter->css, &it);
1335 while ((task = css_task_iter_next(&it))) {
David Rientjes6e0fc462015-09-08 15:00:36 -07001336 switch (oom_scan_process_thread(&oc, task, totalpages)) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001337 case OOM_SCAN_SELECT:
1338 if (chosen)
1339 put_task_struct(chosen);
1340 chosen = task;
1341 chosen_points = ULONG_MAX;
1342 get_task_struct(chosen);
1343 /* fall through */
1344 case OOM_SCAN_CONTINUE:
1345 continue;
1346 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001347 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001348 mem_cgroup_iter_break(memcg, iter);
1349 if (chosen)
1350 put_task_struct(chosen);
Johannes Weinerdc564012015-06-24 16:57:19 -07001351 goto unlock;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001352 case OOM_SCAN_OK:
1353 break;
1354 };
1355 points = oom_badness(task, memcg, NULL, totalpages);
David Rientjesd49ad932014-01-23 15:53:34 -08001356 if (!points || points < chosen_points)
1357 continue;
1358 /* Prefer thread group leaders for display purposes */
1359 if (points == chosen_points &&
1360 thread_group_leader(chosen))
1361 continue;
1362
1363 if (chosen)
1364 put_task_struct(chosen);
1365 chosen = task;
1366 chosen_points = points;
1367 get_task_struct(chosen);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001368 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001369 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001370 }
1371
Johannes Weinerdc564012015-06-24 16:57:19 -07001372 if (chosen) {
1373 points = chosen_points * 1000 / totalpages;
David Rientjes6e0fc462015-09-08 15:00:36 -07001374 oom_kill_process(&oc, chosen, points, totalpages, memcg,
1375 "Memory cgroup out of memory");
Johannes Weinerdc564012015-06-24 16:57:19 -07001376 }
1377unlock:
1378 mutex_unlock(&oom_lock);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001379}
1380
Michele Curtiae6e71d2014-12-12 16:56:35 -08001381#if MAX_NUMNODES > 1
1382
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001383/**
1384 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001385 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001386 * @nid: the node ID to be checked.
1387 * @noswap : specify true here if the user wants flle only information.
1388 *
1389 * This function returns whether the specified memcg contains any
1390 * reclaimable pages on a node. Returns true if there are any reclaimable
1391 * pages in the node.
1392 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001393static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001394 int nid, bool noswap)
1395{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001396 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001397 return true;
1398 if (noswap || !total_swap_pages)
1399 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001400 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001401 return true;
1402 return false;
1403
1404}
Ying Han889976d2011-05-26 16:25:33 -07001405
1406/*
1407 * Always updating the nodemask is not very good - even if we have an empty
1408 * list or the wrong list here, we can start from some node and traverse all
1409 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1410 *
1411 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001412static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001413{
1414 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001415 /*
1416 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1417 * pagein/pageout changes since the last update.
1418 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001419 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001420 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001421 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001422 return;
1423
Ying Han889976d2011-05-26 16:25:33 -07001424 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001425 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001426
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001427 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001428
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001429 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1430 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001431 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001432
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001433 atomic_set(&memcg->numainfo_events, 0);
1434 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001435}
1436
1437/*
1438 * Selecting a node where we start reclaim from. Because what we need is just
1439 * reducing usage counter, start from anywhere is O,K. Considering
1440 * memory reclaim from current node, there are pros. and cons.
1441 *
1442 * Freeing memory from current node means freeing memory from a node which
1443 * we'll use or we've used. So, it may make LRU bad. And if several threads
1444 * hit limits, it will see a contention on a node. But freeing from remote
1445 * node means more costs for memory reclaim because of memory latency.
1446 *
1447 * Now, we use round-robin. Better algorithm is welcomed.
1448 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001449int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001450{
1451 int node;
1452
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001453 mem_cgroup_may_update_nodemask(memcg);
1454 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001455
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001456 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001457 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001458 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001459 /*
1460 * We call this when we hit limit, not when pages are added to LRU.
1461 * No LRU may hold pages because all pages are UNEVICTABLE or
1462 * memcg is too small and all pages are not on LRU. In that case,
1463 * we use curret node.
1464 */
1465 if (unlikely(node == MAX_NUMNODES))
1466 node = numa_node_id();
1467
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001468 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001469 return node;
1470}
Ying Han889976d2011-05-26 16:25:33 -07001471#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001472int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001473{
1474 return 0;
1475}
1476#endif
1477
Andrew Morton0608f432013-09-24 15:27:41 -07001478static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1479 struct zone *zone,
1480 gfp_t gfp_mask,
1481 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001482{
Andrew Morton0608f432013-09-24 15:27:41 -07001483 struct mem_cgroup *victim = NULL;
1484 int total = 0;
1485 int loop = 0;
1486 unsigned long excess;
1487 unsigned long nr_scanned;
1488 struct mem_cgroup_reclaim_cookie reclaim = {
1489 .zone = zone,
1490 .priority = 0,
1491 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001492
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001493 excess = soft_limit_excess(root_memcg);
Balbir Singh6d61ef42009-01-07 18:08:06 -08001494
Andrew Morton0608f432013-09-24 15:27:41 -07001495 while (1) {
1496 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
1497 if (!victim) {
1498 loop++;
1499 if (loop >= 2) {
1500 /*
1501 * If we have not been able to reclaim
1502 * anything, it might because there are
1503 * no reclaimable pages under this hierarchy
1504 */
1505 if (!total)
1506 break;
1507 /*
1508 * We want to do more targeted reclaim.
1509 * excess >> 2 is not to excessive so as to
1510 * reclaim too much, nor too less that we keep
1511 * coming back to reclaim from this cgroup
1512 */
1513 if (total >= (excess >> 2) ||
1514 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
1515 break;
1516 }
1517 continue;
1518 }
Andrew Morton0608f432013-09-24 15:27:41 -07001519 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
1520 zone, &nr_scanned);
1521 *total_scanned += nr_scanned;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001522 if (!soft_limit_excess(root_memcg))
Andrew Morton0608f432013-09-24 15:27:41 -07001523 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001524 }
Andrew Morton0608f432013-09-24 15:27:41 -07001525 mem_cgroup_iter_break(root_memcg, victim);
1526 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001527}
1528
Johannes Weiner0056f4e2013-10-31 16:34:14 -07001529#ifdef CONFIG_LOCKDEP
1530static struct lockdep_map memcg_oom_lock_dep_map = {
1531 .name = "memcg_oom_lock",
1532};
1533#endif
1534
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001535static DEFINE_SPINLOCK(memcg_oom_lock);
1536
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001537/*
1538 * Check OOM-Killer is already running under our hierarchy.
1539 * If someone is running, return false.
1540 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001541static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001542{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001543 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001544
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001545 spin_lock(&memcg_oom_lock);
1546
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001547 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001548 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001549 /*
1550 * this subtree of our hierarchy is already locked
1551 * so we cannot give a lock.
1552 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001553 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001554 mem_cgroup_iter_break(memcg, iter);
1555 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001556 } else
1557 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001558 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001559
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001560 if (failed) {
1561 /*
1562 * OK, we failed to lock the whole subtree so we have
1563 * to clean up what we set up to the failing subtree
1564 */
1565 for_each_mem_cgroup_tree(iter, memcg) {
1566 if (iter == failed) {
1567 mem_cgroup_iter_break(memcg, iter);
1568 break;
1569 }
1570 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001571 }
Johannes Weiner0056f4e2013-10-31 16:34:14 -07001572 } else
1573 mutex_acquire(&memcg_oom_lock_dep_map, 0, 1, _RET_IP_);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001574
1575 spin_unlock(&memcg_oom_lock);
1576
1577 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001578}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001579
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001580static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001581{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001582 struct mem_cgroup *iter;
1583
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001584 spin_lock(&memcg_oom_lock);
Johannes Weiner0056f4e2013-10-31 16:34:14 -07001585 mutex_release(&memcg_oom_lock_dep_map, 1, _RET_IP_);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001586 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001587 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001588 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001589}
1590
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001591static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001592{
1593 struct mem_cgroup *iter;
1594
Tejun Heoc2b42d32015-06-24 16:58:23 -07001595 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001596 for_each_mem_cgroup_tree(iter, memcg)
Tejun Heoc2b42d32015-06-24 16:58:23 -07001597 iter->under_oom++;
1598 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001599}
1600
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001601static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001602{
1603 struct mem_cgroup *iter;
1604
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001605 /*
1606 * When a new child is created while the hierarchy is under oom,
Tejun Heoc2b42d32015-06-24 16:58:23 -07001607 * mem_cgroup_oom_lock() may not be called. Watch for underflow.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001608 */
Tejun Heoc2b42d32015-06-24 16:58:23 -07001609 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001610 for_each_mem_cgroup_tree(iter, memcg)
Tejun Heoc2b42d32015-06-24 16:58:23 -07001611 if (iter->under_oom > 0)
1612 iter->under_oom--;
1613 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001614}
1615
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001616static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1617
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001618struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001619 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001620 wait_queue_t wait;
1621};
1622
1623static int memcg_oom_wake_function(wait_queue_t *wait,
1624 unsigned mode, int sync, void *arg)
1625{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001626 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1627 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001628 struct oom_wait_info *oom_wait_info;
1629
1630 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001631 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001632
Johannes Weiner2314b422014-12-10 15:44:33 -08001633 if (!mem_cgroup_is_descendant(wake_memcg, oom_wait_memcg) &&
1634 !mem_cgroup_is_descendant(oom_wait_memcg, wake_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001635 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001636 return autoremove_wake_function(wait, mode, sync, arg);
1637}
1638
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001639static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001640{
Tejun Heoc2b42d32015-06-24 16:58:23 -07001641 /*
1642 * For the following lockless ->under_oom test, the only required
1643 * guarantee is that it must see the state asserted by an OOM when
1644 * this function is called as a result of userland actions
1645 * triggered by the notification of the OOM. This is trivially
1646 * achieved by invoking mem_cgroup_mark_under_oom() before
1647 * triggering notification.
1648 */
1649 if (memcg && memcg->under_oom)
Tejun Heof4b90b702015-06-24 16:58:21 -07001650 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001651}
1652
Johannes Weiner3812c8c2013-09-12 15:13:44 -07001653static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001654{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07001655 if (!current->memcg_oom.may_oom)
1656 return;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001657 /*
Johannes Weiner49426422013-10-16 13:46:59 -07001658 * We are in the middle of the charge context here, so we
1659 * don't want to block when potentially sitting on a callstack
1660 * that holds all kinds of filesystem and mm locks.
1661 *
1662 * Also, the caller may handle a failed allocation gracefully
1663 * (like optional page cache readahead) and so an OOM killer
1664 * invocation might not even be necessary.
1665 *
1666 * That's why we don't do anything here except remember the
1667 * OOM context and then deal with it at the end of the page
1668 * fault when the stack is unwound, the locks are released,
1669 * and when we know whether the fault was overall successful.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001670 */
Johannes Weiner49426422013-10-16 13:46:59 -07001671 css_get(&memcg->css);
1672 current->memcg_oom.memcg = memcg;
1673 current->memcg_oom.gfp_mask = mask;
1674 current->memcg_oom.order = order;
1675}
1676
1677/**
1678 * mem_cgroup_oom_synchronize - complete memcg OOM handling
1679 * @handle: actually kill/wait or just clean up the OOM state
1680 *
1681 * This has to be called at the end of a page fault if the memcg OOM
1682 * handler was enabled.
1683 *
1684 * Memcg supports userspace OOM handling where failed allocations must
1685 * sleep on a waitqueue until the userspace task resolves the
1686 * situation. Sleeping directly in the charge context with all kinds
1687 * of locks held is not a good idea, instead we remember an OOM state
1688 * in the task and mem_cgroup_oom_synchronize() has to be called at
1689 * the end of the page fault to complete the OOM handling.
1690 *
1691 * Returns %true if an ongoing memcg OOM situation was detected and
1692 * completed, %false otherwise.
1693 */
1694bool mem_cgroup_oom_synchronize(bool handle)
1695{
1696 struct mem_cgroup *memcg = current->memcg_oom.memcg;
1697 struct oom_wait_info owait;
1698 bool locked;
1699
1700 /* OOM is global, do not handle */
1701 if (!memcg)
1702 return false;
1703
Michal Hockoc32b3cb2015-02-11 15:26:24 -08001704 if (!handle || oom_killer_disabled)
Johannes Weiner49426422013-10-16 13:46:59 -07001705 goto cleanup;
1706
1707 owait.memcg = memcg;
1708 owait.wait.flags = 0;
1709 owait.wait.func = memcg_oom_wake_function;
1710 owait.wait.private = current;
1711 INIT_LIST_HEAD(&owait.wait.task_list);
1712
1713 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001714 mem_cgroup_mark_under_oom(memcg);
1715
1716 locked = mem_cgroup_oom_trylock(memcg);
1717
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001718 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001719 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001720
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001721 if (locked && !memcg->oom_kill_disable) {
1722 mem_cgroup_unmark_under_oom(memcg);
Johannes Weiner49426422013-10-16 13:46:59 -07001723 finish_wait(&memcg_oom_waitq, &owait.wait);
1724 mem_cgroup_out_of_memory(memcg, current->memcg_oom.gfp_mask,
1725 current->memcg_oom.order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001726 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07001727 schedule();
Johannes Weiner49426422013-10-16 13:46:59 -07001728 mem_cgroup_unmark_under_oom(memcg);
1729 finish_wait(&memcg_oom_waitq, &owait.wait);
1730 }
1731
1732 if (locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001733 mem_cgroup_oom_unlock(memcg);
1734 /*
1735 * There is no guarantee that an OOM-lock contender
1736 * sees the wakeups triggered by the OOM kill
1737 * uncharges. Wake any sleepers explicitely.
1738 */
1739 memcg_oom_recover(memcg);
1740 }
Johannes Weiner49426422013-10-16 13:46:59 -07001741cleanup:
1742 current->memcg_oom.memcg = NULL;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07001743 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001744 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001745}
1746
Johannes Weinerd7365e72014-10-29 14:50:48 -07001747/**
1748 * mem_cgroup_begin_page_stat - begin a page state statistics transaction
1749 * @page: page that is going to change accounted state
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001750 *
Johannes Weinerd7365e72014-10-29 14:50:48 -07001751 * This function must mark the beginning of an accounted page state
1752 * change to prevent double accounting when the page is concurrently
1753 * being moved to another memcg:
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001754 *
Johannes Weiner6de22612015-02-11 15:25:01 -08001755 * memcg = mem_cgroup_begin_page_stat(page);
Johannes Weinerd7365e72014-10-29 14:50:48 -07001756 * if (TestClearPageState(page))
1757 * mem_cgroup_update_page_stat(memcg, state, -1);
Johannes Weiner6de22612015-02-11 15:25:01 -08001758 * mem_cgroup_end_page_stat(memcg);
Balbir Singhd69b0422009-06-17 16:26:34 -07001759 */
Johannes Weiner6de22612015-02-11 15:25:01 -08001760struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001761{
1762 struct mem_cgroup *memcg;
Johannes Weiner6de22612015-02-11 15:25:01 -08001763 unsigned long flags;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001764
Johannes Weiner6de22612015-02-11 15:25:01 -08001765 /*
1766 * The RCU lock is held throughout the transaction. The fast
1767 * path can get away without acquiring the memcg->move_lock
1768 * because page moving starts with an RCU grace period.
1769 *
1770 * The RCU lock also protects the memcg from being freed when
1771 * the page state that is going to change is the only thing
1772 * preventing the page from being uncharged.
1773 * E.g. end-writeback clearing PageWriteback(), which allows
1774 * migration to go ahead and uncharge the page before the
1775 * account transaction might be complete.
1776 */
Johannes Weinerd7365e72014-10-29 14:50:48 -07001777 rcu_read_lock();
1778
1779 if (mem_cgroup_disabled())
1780 return NULL;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001781again:
Johannes Weiner1306a852014-12-10 15:44:52 -08001782 memcg = page->mem_cgroup;
Johannes Weiner29833312014-12-10 15:44:02 -08001783 if (unlikely(!memcg))
Johannes Weinerd7365e72014-10-29 14:50:48 -07001784 return NULL;
1785
Qiang Huangbdcbb652014-06-04 16:08:21 -07001786 if (atomic_read(&memcg->moving_account) <= 0)
Johannes Weinerd7365e72014-10-29 14:50:48 -07001787 return memcg;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001788
Johannes Weiner6de22612015-02-11 15:25:01 -08001789 spin_lock_irqsave(&memcg->move_lock, flags);
Johannes Weiner1306a852014-12-10 15:44:52 -08001790 if (memcg != page->mem_cgroup) {
Johannes Weiner6de22612015-02-11 15:25:01 -08001791 spin_unlock_irqrestore(&memcg->move_lock, flags);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001792 goto again;
1793 }
Johannes Weiner6de22612015-02-11 15:25:01 -08001794
1795 /*
1796 * When charge migration first begins, we can have locked and
1797 * unlocked page stat updates happening concurrently. Track
1798 * the task who has the lock for mem_cgroup_end_page_stat().
1799 */
1800 memcg->move_lock_task = current;
1801 memcg->move_lock_flags = flags;
Johannes Weinerd7365e72014-10-29 14:50:48 -07001802
1803 return memcg;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001804}
Greg Thelenc4843a72015-05-22 17:13:16 -04001805EXPORT_SYMBOL(mem_cgroup_begin_page_stat);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001806
Johannes Weinerd7365e72014-10-29 14:50:48 -07001807/**
1808 * mem_cgroup_end_page_stat - finish a page state statistics transaction
1809 * @memcg: the memcg that was accounted against
Johannes Weinerd7365e72014-10-29 14:50:48 -07001810 */
Johannes Weiner6de22612015-02-11 15:25:01 -08001811void mem_cgroup_end_page_stat(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001812{
Johannes Weiner6de22612015-02-11 15:25:01 -08001813 if (memcg && memcg->move_lock_task == current) {
1814 unsigned long flags = memcg->move_lock_flags;
1815
1816 memcg->move_lock_task = NULL;
1817 memcg->move_lock_flags = 0;
1818
1819 spin_unlock_irqrestore(&memcg->move_lock, flags);
1820 }
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001821
Johannes Weinerd7365e72014-10-29 14:50:48 -07001822 rcu_read_unlock();
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001823}
Greg Thelenc4843a72015-05-22 17:13:16 -04001824EXPORT_SYMBOL(mem_cgroup_end_page_stat);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001825
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08001826/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001827 * size of first charge trial. "32" comes from vmscan.c's magic value.
1828 * TODO: maybe necessary to use big numbers in big irons.
1829 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001830#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001831struct memcg_stock_pcp {
1832 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07001833 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001834 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07001835 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07001836#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001837};
1838static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02001839static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001840
Suleiman Souhlala0956d52012-12-18 14:21:36 -08001841/**
1842 * consume_stock: Try to consume stocked charge on this cpu.
1843 * @memcg: memcg to consume from.
1844 * @nr_pages: how many pages to charge.
1845 *
1846 * The charges will only happen if @memcg matches the current cpu's memcg
1847 * stock, and at least @nr_pages are available in that stock. Failure to
1848 * service an allocation will refill the stock.
1849 *
1850 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001851 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08001852static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001853{
1854 struct memcg_stock_pcp *stock;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001855 bool ret = false;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001856
Suleiman Souhlala0956d52012-12-18 14:21:36 -08001857 if (nr_pages > CHARGE_BATCH)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001858 return ret;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08001859
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001860 stock = &get_cpu_var(memcg_stock);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001861 if (memcg == stock->cached && stock->nr_pages >= nr_pages) {
Suleiman Souhlala0956d52012-12-18 14:21:36 -08001862 stock->nr_pages -= nr_pages;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001863 ret = true;
1864 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001865 put_cpu_var(memcg_stock);
1866 return ret;
1867}
1868
1869/*
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001870 * Returns stocks cached in percpu and reset cached information.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001871 */
1872static void drain_stock(struct memcg_stock_pcp *stock)
1873{
1874 struct mem_cgroup *old = stock->cached;
1875
Johannes Weiner11c9ea42011-03-23 16:42:34 -07001876 if (stock->nr_pages) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001877 page_counter_uncharge(&old->memory, stock->nr_pages);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001878 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001879 page_counter_uncharge(&old->memsw, stock->nr_pages);
Johannes Weinere8ea14c2014-12-10 15:42:42 -08001880 css_put_many(&old->css, stock->nr_pages);
Johannes Weiner11c9ea42011-03-23 16:42:34 -07001881 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001882 }
1883 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001884}
1885
1886/*
1887 * This must be called under preempt disabled or must be called by
1888 * a thread which is pinned to local cpu.
1889 */
1890static void drain_local_stock(struct work_struct *dummy)
1891{
Christoph Lameter7c8e0182014-06-04 16:07:56 -07001892 struct memcg_stock_pcp *stock = this_cpu_ptr(&memcg_stock);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001893 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07001894 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001895}
1896
1897/*
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001898 * Cache charges(val) to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01001899 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001900 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001901static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001902{
1903 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
1904
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001905 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001906 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001907 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001908 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07001909 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001910 put_cpu_var(memcg_stock);
1911}
1912
1913/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001914 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Johannes Weiner6d3d6aa2014-12-10 15:42:50 -08001915 * of the hierarchy under it.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001916 */
Johannes Weiner6d3d6aa2014-12-10 15:42:50 -08001917static void drain_all_stock(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001918{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07001919 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07001920
Johannes Weiner6d3d6aa2014-12-10 15:42:50 -08001921 /* If someone's already draining, avoid adding running more workers. */
1922 if (!mutex_trylock(&percpu_charge_mutex))
1923 return;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001924 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001925 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07001926 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001927 for_each_online_cpu(cpu) {
1928 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001929 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07001930
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001931 memcg = stock->cached;
1932 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07001933 continue;
Johannes Weiner2314b422014-12-10 15:44:33 -08001934 if (!mem_cgroup_is_descendant(memcg, root_memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07001935 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07001936 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
1937 if (cpu == curcpu)
1938 drain_local_stock(&stock->work);
1939 else
1940 schedule_work_on(cpu, &stock->work);
1941 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001942 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07001943 put_cpu();
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001944 put_online_cpus();
Michal Hocko9f50fad2011-08-09 11:56:26 +02001945 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001946}
1947
Paul Gortmaker0db06282013-06-19 14:53:51 -04001948static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001949 unsigned long action,
1950 void *hcpu)
1951{
1952 int cpu = (unsigned long)hcpu;
1953 struct memcg_stock_pcp *stock;
1954
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001955 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001956 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07001957
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07001958 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001959 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001960
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08001961 stock = &per_cpu(memcg_stock, cpu);
1962 drain_stock(stock);
1963 return NOTIFY_OK;
1964}
1965
Johannes Weiner00501b52014-08-08 14:19:20 -07001966static int try_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
1967 unsigned int nr_pages)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001968{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001969 unsigned int batch = max(CHARGE_BATCH, nr_pages);
Johannes Weiner9b130612014-08-06 16:05:51 -07001970 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Johannes Weiner6539cc02014-08-06 16:05:42 -07001971 struct mem_cgroup *mem_over_limit;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001972 struct page_counter *counter;
Johannes Weiner6539cc02014-08-06 16:05:42 -07001973 unsigned long nr_reclaimed;
Johannes Weinerb70a2a22014-10-09 15:28:56 -07001974 bool may_swap = true;
1975 bool drained = false;
Johannes Weiner05b84302014-08-06 16:05:59 -07001976 int ret = 0;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001977
Johannes Weinerce00a962014-09-05 08:43:57 -04001978 if (mem_cgroup_is_root(memcg))
1979 goto done;
Johannes Weiner6539cc02014-08-06 16:05:42 -07001980retry:
Michal Hockob6b6cc72014-04-07 15:37:44 -07001981 if (consume_stock(memcg, nr_pages))
1982 goto done;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001983
Johannes Weiner3fbe7242014-10-09 15:28:54 -07001984 if (!do_swap_account ||
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001985 !page_counter_try_charge(&memcg->memsw, batch, &counter)) {
1986 if (!page_counter_try_charge(&memcg->memory, batch, &counter))
Johannes Weiner6539cc02014-08-06 16:05:42 -07001987 goto done_restock;
Johannes Weiner3fbe7242014-10-09 15:28:54 -07001988 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001989 page_counter_uncharge(&memcg->memsw, batch);
1990 mem_over_limit = mem_cgroup_from_counter(counter, memory);
Johannes Weiner3fbe7242014-10-09 15:28:54 -07001991 } else {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001992 mem_over_limit = mem_cgroup_from_counter(counter, memsw);
Johannes Weinerb70a2a22014-10-09 15:28:56 -07001993 may_swap = false;
Johannes Weiner3fbe7242014-10-09 15:28:54 -07001994 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08001995
Johannes Weiner6539cc02014-08-06 16:05:42 -07001996 if (batch > nr_pages) {
1997 batch = nr_pages;
1998 goto retry;
1999 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002000
Johannes Weiner06b078f2014-08-06 16:05:44 -07002001 /*
2002 * Unlike in global OOM situations, memcg is not in a physical
2003 * memory shortage. Allow dying and OOM-killed tasks to
2004 * bypass the last charges so that they can exit quickly and
2005 * free their memory.
2006 */
2007 if (unlikely(test_thread_flag(TIF_MEMDIE) ||
2008 fatal_signal_pending(current) ||
2009 current->flags & PF_EXITING))
2010 goto bypass;
2011
2012 if (unlikely(task_in_memcg_oom(current)))
2013 goto nomem;
2014
Johannes Weiner6539cc02014-08-06 16:05:42 -07002015 if (!(gfp_mask & __GFP_WAIT))
2016 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002017
Johannes Weiner241994e2015-02-11 15:26:06 -08002018 mem_cgroup_events(mem_over_limit, MEMCG_MAX, 1);
2019
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002020 nr_reclaimed = try_to_free_mem_cgroup_pages(mem_over_limit, nr_pages,
2021 gfp_mask, may_swap);
Johannes Weiner6539cc02014-08-06 16:05:42 -07002022
Johannes Weiner61e02c72014-08-06 16:08:16 -07002023 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner6539cc02014-08-06 16:05:42 -07002024 goto retry;
Johannes Weiner28c34c22014-08-06 16:05:47 -07002025
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002026 if (!drained) {
Johannes Weiner6d3d6aa2014-12-10 15:42:50 -08002027 drain_all_stock(mem_over_limit);
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002028 drained = true;
2029 goto retry;
2030 }
2031
Johannes Weiner28c34c22014-08-06 16:05:47 -07002032 if (gfp_mask & __GFP_NORETRY)
2033 goto nomem;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002034 /*
2035 * Even though the limit is exceeded at this point, reclaim
2036 * may have been able to free some pages. Retry the charge
2037 * before killing the task.
2038 *
2039 * Only for regular pages, though: huge pages are rather
2040 * unlikely to succeed so close to the limit, and we fall back
2041 * to regular pages anyway in case of failure.
2042 */
Johannes Weiner61e02c72014-08-06 16:08:16 -07002043 if (nr_reclaimed && nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER))
Johannes Weiner6539cc02014-08-06 16:05:42 -07002044 goto retry;
2045 /*
2046 * At task move, charge accounts can be doubly counted. So, it's
2047 * better to wait until the end of task_move if something is going on.
2048 */
2049 if (mem_cgroup_wait_acct_move(mem_over_limit))
2050 goto retry;
2051
Johannes Weiner9b130612014-08-06 16:05:51 -07002052 if (nr_retries--)
2053 goto retry;
2054
Johannes Weiner06b078f2014-08-06 16:05:44 -07002055 if (gfp_mask & __GFP_NOFAIL)
2056 goto bypass;
2057
Johannes Weiner6539cc02014-08-06 16:05:42 -07002058 if (fatal_signal_pending(current))
2059 goto bypass;
2060
Johannes Weiner241994e2015-02-11 15:26:06 -08002061 mem_cgroup_events(mem_over_limit, MEMCG_OOM, 1);
2062
Johannes Weiner61e02c72014-08-06 16:08:16 -07002063 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(nr_pages));
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002064nomem:
Johannes Weiner6d1fdc42014-04-07 15:37:45 -07002065 if (!(gfp_mask & __GFP_NOFAIL))
Johannes Weiner3168ecb2013-10-31 16:34:13 -07002066 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002067bypass:
Johannes Weinerce00a962014-09-05 08:43:57 -04002068 return -EINTR;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002069
2070done_restock:
Johannes Weinere8ea14c2014-12-10 15:42:42 -08002071 css_get_many(&memcg->css, batch);
Johannes Weiner6539cc02014-08-06 16:05:42 -07002072 if (batch > nr_pages)
2073 refill_stock(memcg, batch - nr_pages);
Vladimir Davydov7d638092015-06-10 11:14:46 -07002074 if (!(gfp_mask & __GFP_WAIT))
2075 goto done;
Johannes Weiner241994e2015-02-11 15:26:06 -08002076 /*
2077 * If the hierarchy is above the normal consumption range,
2078 * make the charging task trim their excess contribution.
2079 */
2080 do {
2081 if (page_counter_read(&memcg->memory) <= memcg->high)
2082 continue;
2083 mem_cgroup_events(memcg, MEMCG_HIGH, 1);
2084 try_to_free_mem_cgroup_pages(memcg, nr_pages, gfp_mask, true);
2085 } while ((memcg = parent_mem_cgroup(memcg)));
Johannes Weiner6539cc02014-08-06 16:05:42 -07002086done:
Johannes Weiner05b84302014-08-06 16:05:59 -07002087 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002088}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002089
Johannes Weiner00501b52014-08-08 14:19:20 -07002090static void cancel_charge(struct mem_cgroup *memcg, unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002091{
Johannes Weinerce00a962014-09-05 08:43:57 -04002092 if (mem_cgroup_is_root(memcg))
2093 return;
2094
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002095 page_counter_uncharge(&memcg->memory, nr_pages);
Johannes Weiner05b84302014-08-06 16:05:59 -07002096 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002097 page_counter_uncharge(&memcg->memsw, nr_pages);
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002098
Johannes Weinere8ea14c2014-12-10 15:42:42 -08002099 css_put_many(&memcg->css, nr_pages);
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002100}
2101
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002102static void lock_page_lru(struct page *page, int *isolated)
2103{
2104 struct zone *zone = page_zone(page);
2105
2106 spin_lock_irq(&zone->lru_lock);
2107 if (PageLRU(page)) {
2108 struct lruvec *lruvec;
2109
2110 lruvec = mem_cgroup_page_lruvec(page, zone);
2111 ClearPageLRU(page);
2112 del_page_from_lru_list(page, lruvec, page_lru(page));
2113 *isolated = 1;
2114 } else
2115 *isolated = 0;
2116}
2117
2118static void unlock_page_lru(struct page *page, int isolated)
2119{
2120 struct zone *zone = page_zone(page);
2121
2122 if (isolated) {
2123 struct lruvec *lruvec;
2124
2125 lruvec = mem_cgroup_page_lruvec(page, zone);
2126 VM_BUG_ON_PAGE(PageLRU(page), page);
2127 SetPageLRU(page);
2128 add_page_to_lru_list(page, lruvec, page_lru(page));
2129 }
2130 spin_unlock_irq(&zone->lru_lock);
2131}
2132
Johannes Weiner00501b52014-08-08 14:19:20 -07002133static void commit_charge(struct page *page, struct mem_cgroup *memcg,
Johannes Weiner6abb5a82014-08-08 14:19:33 -07002134 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002135{
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002136 int isolated;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002137
Johannes Weiner1306a852014-12-10 15:44:52 -08002138 VM_BUG_ON_PAGE(page->mem_cgroup, page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002139
2140 /*
2141 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2142 * may already be on some other mem_cgroup's LRU. Take care of it.
2143 */
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002144 if (lrucare)
2145 lock_page_lru(page, &isolated);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002146
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002147 /*
2148 * Nobody should be changing or seriously looking at
Johannes Weiner1306a852014-12-10 15:44:52 -08002149 * page->mem_cgroup at this point:
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002150 *
2151 * - the page is uncharged
2152 *
2153 * - the page is off-LRU
2154 *
2155 * - an anonymous fault has exclusive page access, except for
2156 * a locked page table
2157 *
2158 * - a page cache insertion, a swapin fault, or a migration
2159 * have the page locked
2160 */
Johannes Weiner1306a852014-12-10 15:44:52 -08002161 page->mem_cgroup = memcg;
Hugh Dickins3be91272008-02-07 00:14:19 -08002162
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002163 if (lrucare)
2164 unlock_page_lru(page, isolated);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002165}
2166
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002167#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydovdbf22eb2015-02-10 14:11:41 -08002168int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp,
2169 unsigned long nr_pages)
Glauber Costa749c5412012-12-18 14:23:01 -08002170{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002171 struct page_counter *counter;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002172 int ret = 0;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002173
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002174 ret = page_counter_try_charge(&memcg->kmem, nr_pages, &counter);
2175 if (ret < 0)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002176 return ret;
2177
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002178 ret = try_charge(memcg, gfp, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002179 if (ret == -EINTR) {
2180 /*
Johannes Weiner00501b52014-08-08 14:19:20 -07002181 * try_charge() chose to bypass to root due to OOM kill or
2182 * fatal signal. Since our only options are to either fail
2183 * the allocation or charge it to this cgroup, do it as a
2184 * temporary condition. But we can't fail. From a kmem/slab
2185 * perspective, the cache has already been selected, by
2186 * mem_cgroup_kmem_get_cache(), so it is too late to change
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002187 * our minds.
2188 *
2189 * This condition will only trigger if the task entered
Johannes Weiner00501b52014-08-08 14:19:20 -07002190 * memcg_charge_kmem in a sane state, but was OOM-killed
2191 * during try_charge() above. Tasks that were already dying
2192 * when the allocation triggers should have been already
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002193 * directed to the root cgroup in memcontrol.h
2194 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002195 page_counter_charge(&memcg->memory, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002196 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002197 page_counter_charge(&memcg->memsw, nr_pages);
Johannes Weinere8ea14c2014-12-10 15:42:42 -08002198 css_get_many(&memcg->css, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002199 ret = 0;
2200 } else if (ret)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002201 page_counter_uncharge(&memcg->kmem, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002202
2203 return ret;
2204}
2205
Vladimir Davydovdbf22eb2015-02-10 14:11:41 -08002206void memcg_uncharge_kmem(struct mem_cgroup *memcg, unsigned long nr_pages)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002207{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002208 page_counter_uncharge(&memcg->memory, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002209 if (do_swap_account)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002210 page_counter_uncharge(&memcg->memsw, nr_pages);
Glauber Costa7de37682012-12-18 14:22:07 -08002211
Johannes Weiner64f21992014-12-10 15:42:45 -08002212 page_counter_uncharge(&memcg->kmem, nr_pages);
Glauber Costa7de37682012-12-18 14:22:07 -08002213
Johannes Weinere8ea14c2014-12-10 15:42:42 -08002214 css_put_many(&memcg->css, nr_pages);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002215}
2216
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002217static int memcg_alloc_cache_id(void)
Glauber Costa55007d82012-12-18 14:22:38 -08002218{
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002219 int id, size;
2220 int err;
Glauber Costa55007d82012-12-18 14:22:38 -08002221
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08002222 id = ida_simple_get(&memcg_cache_ida,
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002223 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2224 if (id < 0)
2225 return id;
2226
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08002227 if (id < memcg_nr_cache_ids)
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002228 return id;
2229
2230 /*
2231 * There's no space for the new id in memcg_caches arrays,
2232 * so we have to grow them.
2233 */
Vladimir Davydov05257a12015-02-12 14:59:01 -08002234 down_write(&memcg_cache_ids_sem);
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002235
2236 size = 2 * (id + 1);
Glauber Costa55007d82012-12-18 14:22:38 -08002237 if (size < MEMCG_CACHES_MIN_SIZE)
2238 size = MEMCG_CACHES_MIN_SIZE;
2239 else if (size > MEMCG_CACHES_MAX_SIZE)
2240 size = MEMCG_CACHES_MAX_SIZE;
2241
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002242 err = memcg_update_all_caches(size);
Vladimir Davydov05257a12015-02-12 14:59:01 -08002243 if (!err)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -08002244 err = memcg_update_all_list_lrus(size);
2245 if (!err)
Vladimir Davydov05257a12015-02-12 14:59:01 -08002246 memcg_nr_cache_ids = size;
2247
2248 up_write(&memcg_cache_ids_sem);
2249
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002250 if (err) {
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08002251 ida_simple_remove(&memcg_cache_ida, id);
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002252 return err;
2253 }
2254 return id;
2255}
2256
2257static void memcg_free_cache_id(int id)
2258{
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08002259 ida_simple_remove(&memcg_cache_ida, id);
Glauber Costa55007d82012-12-18 14:22:38 -08002260}
2261
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002262struct memcg_kmem_cache_create_work {
Vladimir Davydov5722d092014-04-07 15:39:24 -07002263 struct mem_cgroup *memcg;
2264 struct kmem_cache *cachep;
2265 struct work_struct work;
2266};
2267
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002268static void memcg_kmem_cache_create_func(struct work_struct *w)
Glauber Costad7f25f82012-12-18 14:22:40 -08002269{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002270 struct memcg_kmem_cache_create_work *cw =
2271 container_of(w, struct memcg_kmem_cache_create_work, work);
Vladimir Davydov5722d092014-04-07 15:39:24 -07002272 struct mem_cgroup *memcg = cw->memcg;
2273 struct kmem_cache *cachep = cw->cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08002274
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002275 memcg_create_kmem_cache(memcg, cachep);
Vladimir Davydovbd673142014-06-04 16:07:40 -07002276
Vladimir Davydov5722d092014-04-07 15:39:24 -07002277 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08002278 kfree(cw);
2279}
2280
2281/*
2282 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08002283 */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002284static void __memcg_schedule_kmem_cache_create(struct mem_cgroup *memcg,
2285 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08002286{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002287 struct memcg_kmem_cache_create_work *cw;
Glauber Costad7f25f82012-12-18 14:22:40 -08002288
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07002289 cw = kmalloc(sizeof(*cw), GFP_NOWAIT);
Vladimir Davydov8135be52014-12-12 16:56:38 -08002290 if (!cw)
Glauber Costad7f25f82012-12-18 14:22:40 -08002291 return;
Vladimir Davydov8135be52014-12-12 16:56:38 -08002292
2293 css_get(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08002294
2295 cw->memcg = memcg;
2296 cw->cachep = cachep;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002297 INIT_WORK(&cw->work, memcg_kmem_cache_create_func);
Glauber Costad7f25f82012-12-18 14:22:40 -08002298
Glauber Costad7f25f82012-12-18 14:22:40 -08002299 schedule_work(&cw->work);
2300}
2301
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002302static void memcg_schedule_kmem_cache_create(struct mem_cgroup *memcg,
2303 struct kmem_cache *cachep)
Glauber Costa0e9d92f2012-12-18 14:22:42 -08002304{
2305 /*
2306 * We need to stop accounting when we kmalloc, because if the
2307 * corresponding kmalloc cache is not yet created, the first allocation
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002308 * in __memcg_schedule_kmem_cache_create will recurse.
Glauber Costa0e9d92f2012-12-18 14:22:42 -08002309 *
2310 * However, it is better to enclose the whole function. Depending on
2311 * the debugging options enabled, INIT_WORK(), for instance, can
2312 * trigger an allocation. This too, will make us recurse. Because at
2313 * this point we can't allow ourselves back into memcg_kmem_get_cache,
2314 * the safest choice is to do it like this, wrapping the whole function.
2315 */
Vladimir Davydov6f185c22014-12-12 16:55:15 -08002316 current->memcg_kmem_skip_account = 1;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002317 __memcg_schedule_kmem_cache_create(memcg, cachep);
Vladimir Davydov6f185c22014-12-12 16:55:15 -08002318 current->memcg_kmem_skip_account = 0;
Glauber Costa0e9d92f2012-12-18 14:22:42 -08002319}
Vladimir Davydovc67a8a62014-06-04 16:07:39 -07002320
Glauber Costad7f25f82012-12-18 14:22:40 -08002321/*
2322 * Return the kmem_cache we're supposed to use for a slab allocation.
2323 * We try to use the current memcg's version of the cache.
2324 *
2325 * If the cache does not exist yet, if we are the first user of it,
2326 * we either create it immediately, if possible, or create it asynchronously
2327 * in a workqueue.
2328 * In the latter case, we will let the current allocation go through with
2329 * the original cache.
2330 *
2331 * Can't be called in interrupt context or from kernel threads.
2332 * This function needs to be called with rcu_read_lock() held.
2333 */
Zhang Zhen056b7cc2014-12-12 16:55:38 -08002334struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08002335{
2336 struct mem_cgroup *memcg;
Vladimir Davydov959c8962014-01-23 15:52:59 -08002337 struct kmem_cache *memcg_cachep;
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08002338 int kmemcg_id;
Glauber Costad7f25f82012-12-18 14:22:40 -08002339
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08002340 VM_BUG_ON(!is_root_cache(cachep));
Glauber Costad7f25f82012-12-18 14:22:40 -08002341
Vladimir Davydov9d100c52014-12-12 16:54:53 -08002342 if (current->memcg_kmem_skip_account)
Glauber Costa0e9d92f2012-12-18 14:22:42 -08002343 return cachep;
2344
Vladimir Davydov8135be52014-12-12 16:56:38 -08002345 memcg = get_mem_cgroup_from_mm(current->mm);
Jason Low4db0c3c2015-04-15 16:14:08 -07002346 kmemcg_id = READ_ONCE(memcg->kmemcg_id);
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08002347 if (kmemcg_id < 0)
Li Zefanca0dde92013-04-29 15:08:57 -07002348 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08002349
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08002350 memcg_cachep = cache_from_memcg_idx(cachep, kmemcg_id);
Vladimir Davydov8135be52014-12-12 16:56:38 -08002351 if (likely(memcg_cachep))
2352 return memcg_cachep;
Li Zefanca0dde92013-04-29 15:08:57 -07002353
2354 /*
2355 * If we are in a safe context (can wait, and not in interrupt
2356 * context), we could be be predictable and return right away.
2357 * This would guarantee that the allocation being performed
2358 * already belongs in the new cache.
2359 *
2360 * However, there are some clashes that can arrive from locking.
2361 * For instance, because we acquire the slab_mutex while doing
Vladimir Davydov776ed0f2014-06-04 16:10:02 -07002362 * memcg_create_kmem_cache, this means no further allocation
2363 * could happen with the slab_mutex held. So it's better to
2364 * defer everything.
Li Zefanca0dde92013-04-29 15:08:57 -07002365 */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -08002366 memcg_schedule_kmem_cache_create(memcg, cachep);
Li Zefanca0dde92013-04-29 15:08:57 -07002367out:
Vladimir Davydov8135be52014-12-12 16:56:38 -08002368 css_put(&memcg->css);
Li Zefanca0dde92013-04-29 15:08:57 -07002369 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08002370}
Glauber Costad7f25f82012-12-18 14:22:40 -08002371
Vladimir Davydov8135be52014-12-12 16:56:38 -08002372void __memcg_kmem_put_cache(struct kmem_cache *cachep)
2373{
2374 if (!is_root_cache(cachep))
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08002375 css_put(&cachep->memcg_params.memcg->css);
Vladimir Davydov8135be52014-12-12 16:56:38 -08002376}
2377
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002378/*
2379 * We need to verify if the allocation against current->mm->owner's memcg is
2380 * possible for the given order. But the page is not allocated yet, so we'll
2381 * need a further commit step to do the final arrangements.
2382 *
2383 * It is possible for the task to switch cgroups in this mean time, so at
2384 * commit time, we can't rely on task conversion any longer. We'll then use
2385 * the handle argument to return to the caller which cgroup we should commit
2386 * against. We could also return the memcg directly and avoid the pointer
2387 * passing, but a boolean return value gives better semantics considering
2388 * the compiled-out case as well.
2389 *
2390 * Returning true means the allocation is possible.
2391 */
2392bool
2393__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
2394{
2395 struct mem_cgroup *memcg;
2396 int ret;
2397
2398 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07002399
Johannes Weinerdf381972014-04-07 15:37:43 -07002400 memcg = get_mem_cgroup_from_mm(current->mm);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002401
Vladimir Davydovcf2b8fb2014-10-09 15:28:59 -07002402 if (!memcg_kmem_is_active(memcg)) {
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002403 css_put(&memcg->css);
2404 return true;
2405 }
2406
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002407 ret = memcg_charge_kmem(memcg, gfp, 1 << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002408 if (!ret)
2409 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002410
2411 css_put(&memcg->css);
2412 return (ret == 0);
2413}
2414
2415void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
2416 int order)
2417{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002418 VM_BUG_ON(mem_cgroup_is_root(memcg));
2419
2420 /* The page allocation failed. Revert */
2421 if (!page) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002422 memcg_uncharge_kmem(memcg, 1 << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002423 return;
2424 }
Johannes Weiner1306a852014-12-10 15:44:52 -08002425 page->mem_cgroup = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002426}
2427
2428void __memcg_kmem_uncharge_pages(struct page *page, int order)
2429{
Johannes Weiner1306a852014-12-10 15:44:52 -08002430 struct mem_cgroup *memcg = page->mem_cgroup;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002431
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002432 if (!memcg)
2433 return;
2434
Sasha Levin309381fea2014-01-23 15:52:54 -08002435 VM_BUG_ON_PAGE(mem_cgroup_is_root(memcg), page);
Johannes Weiner29833312014-12-10 15:44:02 -08002436
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002437 memcg_uncharge_kmem(memcg, 1 << order);
Johannes Weiner1306a852014-12-10 15:44:52 -08002438 page->mem_cgroup = NULL;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002439}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -08002440
2441struct mem_cgroup *__mem_cgroup_from_kmem(void *ptr)
2442{
2443 struct mem_cgroup *memcg = NULL;
2444 struct kmem_cache *cachep;
2445 struct page *page;
2446
2447 page = virt_to_head_page(ptr);
2448 if (PageSlab(page)) {
2449 cachep = page->slab_cache;
2450 if (!is_root_cache(cachep))
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08002451 memcg = cachep->memcg_params.memcg;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -08002452 } else
2453 /* page allocated by alloc_kmem_pages */
2454 memcg = page->mem_cgroup;
2455
2456 return memcg;
2457}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002458#endif /* CONFIG_MEMCG_KMEM */
2459
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002460#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2461
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002462/*
2463 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002464 * zone->lru_lock, 'splitting on pmd' and compound_lock.
2465 * charge/uncharge will be never happen and move_account() is done under
2466 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002467 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002468void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002469{
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08002470 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002471
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08002472 if (mem_cgroup_disabled())
2473 return;
David Rientjesb070e652013-05-07 16:18:09 -07002474
Johannes Weiner29833312014-12-10 15:44:02 -08002475 for (i = 1; i < HPAGE_PMD_NR; i++)
Johannes Weiner1306a852014-12-10 15:44:52 -08002476 head[i].mem_cgroup = head->mem_cgroup;
Michal Hockob9982f82014-12-10 15:43:51 -08002477
Johannes Weiner1306a852014-12-10 15:44:52 -08002478 __this_cpu_sub(head->mem_cgroup->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
David Rientjesb070e652013-05-07 16:18:09 -07002479 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002480}
Hugh Dickins12d27102012-01-12 17:19:52 -08002481#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002482
Andrew Mortonc255a452012-07-31 16:43:02 -07002483#ifdef CONFIG_MEMCG_SWAP
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002484static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
2485 bool charge)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002486{
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002487 int val = (charge) ? 1 : -1;
2488 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002489}
Daisuke Nishimura02491442010-03-10 15:22:17 -08002490
2491/**
2492 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
2493 * @entry: swap entry to be moved
2494 * @from: mem_cgroup which the entry is moved from
2495 * @to: mem_cgroup which the entry is moved to
2496 *
2497 * It succeeds only when the swap_cgroup's record for this entry is the same
2498 * as the mem_cgroup's id of @from.
2499 *
2500 * Returns 0 on success, -EINVAL on failure.
2501 *
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002502 * The caller must have charged to @to, IOW, called page_counter_charge() about
Daisuke Nishimura02491442010-03-10 15:22:17 -08002503 * both res and memsw, and called css_get().
2504 */
2505static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07002506 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08002507{
2508 unsigned short old_id, new_id;
2509
Li Zefan34c00c32013-09-23 16:56:01 +08002510 old_id = mem_cgroup_id(from);
2511 new_id = mem_cgroup_id(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08002512
2513 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08002514 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08002515 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura02491442010-03-10 15:22:17 -08002516 return 0;
2517 }
2518 return -EINVAL;
2519}
2520#else
2521static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07002522 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08002523{
2524 return -EINVAL;
2525}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002526#endif
2527
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002528static DEFINE_MUTEX(memcg_limit_mutex);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07002529
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08002530static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002531 unsigned long limit)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002532{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002533 unsigned long curusage;
2534 unsigned long oldusage;
2535 bool enlarge = false;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07002536 int retry_count;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002537 int ret;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07002538
2539 /*
2540 * For keeping hierarchical_reclaim simple, how long we should retry
2541 * is depends on callers. We set our retry-count to be function
2542 * of # of children which we should visit in this loop.
2543 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002544 retry_count = MEM_CGROUP_RECLAIM_RETRIES *
2545 mem_cgroup_count_children(memcg);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07002546
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002547 oldusage = page_counter_read(&memcg->memory);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002548
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002549 do {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002550 if (signal_pending(current)) {
2551 ret = -EINTR;
2552 break;
2553 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002554
2555 mutex_lock(&memcg_limit_mutex);
2556 if (limit > memcg->memsw.limit) {
2557 mutex_unlock(&memcg_limit_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002558 ret = -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002559 break;
2560 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002561 if (limit > memcg->memory.limit)
2562 enlarge = true;
2563 ret = page_counter_limit(&memcg->memory, limit);
2564 mutex_unlock(&memcg_limit_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002565
2566 if (!ret)
2567 break;
2568
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002569 try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, true);
2570
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002571 curusage = page_counter_read(&memcg->memory);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07002572 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002573 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07002574 retry_count--;
2575 else
2576 oldusage = curusage;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002577 } while (retry_count);
2578
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002579 if (!ret && enlarge)
2580 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08002581
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002582 return ret;
2583}
2584
Li Zefan338c8432009-06-17 16:27:15 -07002585static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002586 unsigned long limit)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002587{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002588 unsigned long curusage;
2589 unsigned long oldusage;
2590 bool enlarge = false;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07002591 int retry_count;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002592 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002593
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07002594 /* see mem_cgroup_resize_res_limit */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002595 retry_count = MEM_CGROUP_RECLAIM_RETRIES *
2596 mem_cgroup_count_children(memcg);
2597
2598 oldusage = page_counter_read(&memcg->memsw);
2599
2600 do {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002601 if (signal_pending(current)) {
2602 ret = -EINTR;
2603 break;
2604 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002605
2606 mutex_lock(&memcg_limit_mutex);
2607 if (limit < memcg->memory.limit) {
2608 mutex_unlock(&memcg_limit_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002609 ret = -EINVAL;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002610 break;
2611 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002612 if (limit > memcg->memsw.limit)
2613 enlarge = true;
2614 ret = page_counter_limit(&memcg->memsw, limit);
2615 mutex_unlock(&memcg_limit_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002616
2617 if (!ret)
2618 break;
2619
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002620 try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, false);
2621
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002622 curusage = page_counter_read(&memcg->memsw);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07002623 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002624 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002625 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07002626 else
2627 oldusage = curusage;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002628 } while (retry_count);
2629
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002630 if (!ret && enlarge)
2631 memcg_oom_recover(memcg);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002632
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002633 return ret;
2634}
2635
Andrew Morton0608f432013-09-24 15:27:41 -07002636unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
2637 gfp_t gfp_mask,
2638 unsigned long *total_scanned)
2639{
2640 unsigned long nr_reclaimed = 0;
2641 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
2642 unsigned long reclaimed;
2643 int loop = 0;
2644 struct mem_cgroup_tree_per_zone *mctz;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002645 unsigned long excess;
Andrew Morton0608f432013-09-24 15:27:41 -07002646 unsigned long nr_scanned;
2647
2648 if (order > 0)
2649 return 0;
2650
2651 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
2652 /*
2653 * This loop can run a while, specially if mem_cgroup's continuously
2654 * keep exceeding their soft limit and putting the system under
2655 * pressure
2656 */
2657 do {
2658 if (next_mz)
2659 mz = next_mz;
2660 else
2661 mz = mem_cgroup_largest_soft_limit_node(mctz);
2662 if (!mz)
2663 break;
2664
2665 nr_scanned = 0;
2666 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
2667 gfp_mask, &nr_scanned);
2668 nr_reclaimed += reclaimed;
2669 *total_scanned += nr_scanned;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002670 spin_lock_irq(&mctz->lock);
Vladimir Davydovbc2f2e72014-12-10 15:43:40 -08002671 __mem_cgroup_remove_exceeded(mz, mctz);
Andrew Morton0608f432013-09-24 15:27:41 -07002672
2673 /*
2674 * If we failed to reclaim anything from this memory cgroup
2675 * it is time to move on to the next cgroup
2676 */
2677 next_mz = NULL;
Vladimir Davydovbc2f2e72014-12-10 15:43:40 -08002678 if (!reclaimed)
2679 next_mz = __mem_cgroup_largest_soft_limit_node(mctz);
2680
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002681 excess = soft_limit_excess(mz->memcg);
Andrew Morton0608f432013-09-24 15:27:41 -07002682 /*
2683 * One school of thought says that we should not add
2684 * back the node to the tree if reclaim returns 0.
2685 * But our reclaim could return 0, simply because due
2686 * to priority we are exposing a smaller subset of
2687 * memory to reclaim from. Consider this as a longer
2688 * term TODO.
2689 */
2690 /* If excess == 0, no tree ops */
Johannes Weinercf2c8122014-06-06 14:38:21 -07002691 __mem_cgroup_insert_exceeded(mz, mctz, excess);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002692 spin_unlock_irq(&mctz->lock);
Andrew Morton0608f432013-09-24 15:27:41 -07002693 css_put(&mz->memcg->css);
2694 loop++;
2695 /*
2696 * Could not reclaim anything and there are no more
2697 * mem cgroups to try or we seem to be looping without
2698 * reclaiming anything.
2699 */
2700 if (!nr_reclaimed &&
2701 (next_mz == NULL ||
2702 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
2703 break;
2704 } while (!nr_reclaimed);
2705 if (next_mz)
2706 css_put(&next_mz->memcg->css);
2707 return nr_reclaimed;
2708}
2709
Tejun Heoea280e72014-05-16 13:22:48 -04002710/*
2711 * Test whether @memcg has children, dead or alive. Note that this
2712 * function doesn't care whether @memcg has use_hierarchy enabled and
2713 * returns %true if there are child csses according to the cgroup
2714 * hierarchy. Testing use_hierarchy is the caller's responsiblity.
2715 */
Glauber Costab5f99b52013-02-22 16:34:53 -08002716static inline bool memcg_has_children(struct mem_cgroup *memcg)
2717{
Tejun Heoea280e72014-05-16 13:22:48 -04002718 bool ret;
2719
Johannes Weiner696ac172013-10-31 16:34:15 -07002720 /*
Tejun Heoea280e72014-05-16 13:22:48 -04002721 * The lock does not prevent addition or deletion of children, but
2722 * it prevents a new child from being initialized based on this
2723 * parent in css_online(), so it's enough to decide whether
2724 * hierarchically inherited attributes can still be changed or not.
Johannes Weiner696ac172013-10-31 16:34:15 -07002725 */
Tejun Heoea280e72014-05-16 13:22:48 -04002726 lockdep_assert_held(&memcg_create_mutex);
2727
2728 rcu_read_lock();
2729 ret = css_next_child(NULL, &memcg->css);
2730 rcu_read_unlock();
2731 return ret;
Glauber Costab5f99b52013-02-22 16:34:53 -08002732}
2733
2734/*
Michal Hockoc26251f2012-10-26 13:37:28 +02002735 * Reclaims as many pages from the given memcg as possible and moves
2736 * the rest to the parent.
2737 *
2738 * Caller is responsible for holding css reference for memcg.
2739 */
2740static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
2741{
2742 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
Michal Hockoc26251f2012-10-26 13:37:28 +02002743
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002744 /* we call try-to-free pages for make this cgroup empty */
2745 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002746 /* try to free all pages in this cgroup */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002747 while (nr_retries && page_counter_read(&memcg->memory)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002748 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002749
Michal Hockoc26251f2012-10-26 13:37:28 +02002750 if (signal_pending(current))
2751 return -EINTR;
2752
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002753 progress = try_to_free_mem_cgroup_pages(memcg, 1,
2754 GFP_KERNEL, true);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002755 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002756 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002757 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02002758 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002759 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002760
2761 }
Michal Hockoab5196c2012-10-26 13:37:32 +02002762
2763 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08002764}
2765
Tejun Heo6770c642014-05-13 12:16:21 -04002766static ssize_t mem_cgroup_force_empty_write(struct kernfs_open_file *of,
2767 char *buf, size_t nbytes,
2768 loff_t off)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002769{
Tejun Heo6770c642014-05-13 12:16:21 -04002770 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Michal Hockoc26251f2012-10-26 13:37:28 +02002771
Michal Hockod8423012012-10-26 13:37:29 +02002772 if (mem_cgroup_is_root(memcg))
2773 return -EINVAL;
Tejun Heo6770c642014-05-13 12:16:21 -04002774 return mem_cgroup_force_empty(memcg) ?: nbytes;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08002775}
2776
Tejun Heo182446d2013-08-08 20:11:24 -04002777static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
2778 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08002779{
Tejun Heo182446d2013-08-08 20:11:24 -04002780 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08002781}
2782
Tejun Heo182446d2013-08-08 20:11:24 -04002783static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
2784 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08002785{
2786 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04002787 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04002788 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(memcg->css.parent);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002789
Glauber Costa09998212013-02-22 16:34:55 -08002790 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07002791
2792 if (memcg->use_hierarchy == val)
2793 goto out;
2794
Balbir Singh18f59ea2009-01-07 18:08:07 -08002795 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002796 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08002797 * in the child subtrees. If it is unset, then the change can
2798 * occur, provided the current cgroup has no children.
2799 *
2800 * For the root cgroup, parent_mem is NULL, we allow value to be
2801 * set if there are no children.
2802 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002803 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08002804 (val == 1 || val == 0)) {
Tejun Heoea280e72014-05-16 13:22:48 -04002805 if (!memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002806 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08002807 else
2808 retval = -EBUSY;
2809 } else
2810 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07002811
2812out:
Glauber Costa09998212013-02-22 16:34:55 -08002813 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08002814
2815 return retval;
2816}
2817
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002818static unsigned long tree_stat(struct mem_cgroup *memcg,
2819 enum mem_cgroup_stat_index idx)
Johannes Weinerce00a962014-09-05 08:43:57 -04002820{
2821 struct mem_cgroup *iter;
2822 long val = 0;
2823
2824 /* Per-cpu values can be negative, use a signed accumulator */
2825 for_each_mem_cgroup_tree(iter, memcg)
2826 val += mem_cgroup_read_stat(iter, idx);
2827
2828 if (val < 0) /* race ? */
2829 val = 0;
2830 return val;
2831}
2832
2833static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
2834{
2835 u64 val;
2836
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002837 if (mem_cgroup_is_root(memcg)) {
2838 val = tree_stat(memcg, MEM_CGROUP_STAT_CACHE);
2839 val += tree_stat(memcg, MEM_CGROUP_STAT_RSS);
2840 if (swap)
2841 val += tree_stat(memcg, MEM_CGROUP_STAT_SWAP);
2842 } else {
Johannes Weinerce00a962014-09-05 08:43:57 -04002843 if (!swap)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002844 val = page_counter_read(&memcg->memory);
Johannes Weinerce00a962014-09-05 08:43:57 -04002845 else
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002846 val = page_counter_read(&memcg->memsw);
Johannes Weinerce00a962014-09-05 08:43:57 -04002847 }
Johannes Weinerce00a962014-09-05 08:43:57 -04002848 return val << PAGE_SHIFT;
2849}
2850
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002851enum {
2852 RES_USAGE,
2853 RES_LIMIT,
2854 RES_MAX_USAGE,
2855 RES_FAILCNT,
2856 RES_SOFT_LIMIT,
2857};
Johannes Weinerce00a962014-09-05 08:43:57 -04002858
Tejun Heo791badb2013-12-05 12:28:02 -05002859static u64 mem_cgroup_read_u64(struct cgroup_subsys_state *css,
Johannes Weiner05b84302014-08-06 16:05:59 -07002860 struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002861{
Tejun Heo182446d2013-08-08 20:11:24 -04002862 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002863 struct page_counter *counter;
Tejun Heoaf36f902012-04-01 12:09:55 -07002864
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002865 switch (MEMFILE_TYPE(cft->private)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002866 case _MEM:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002867 counter = &memcg->memory;
Glauber Costa510fc4e2012-12-18 14:21:47 -08002868 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002869 case _MEMSWAP:
2870 counter = &memcg->memsw;
2871 break;
2872 case _KMEM:
2873 counter = &memcg->kmem;
2874 break;
2875 default:
2876 BUG();
2877 }
2878
2879 switch (MEMFILE_ATTR(cft->private)) {
2880 case RES_USAGE:
2881 if (counter == &memcg->memory)
2882 return mem_cgroup_usage(memcg, false);
2883 if (counter == &memcg->memsw)
2884 return mem_cgroup_usage(memcg, true);
2885 return (u64)page_counter_read(counter) * PAGE_SIZE;
2886 case RES_LIMIT:
2887 return (u64)counter->limit * PAGE_SIZE;
2888 case RES_MAX_USAGE:
2889 return (u64)counter->watermark * PAGE_SIZE;
2890 case RES_FAILCNT:
2891 return counter->failcnt;
2892 case RES_SOFT_LIMIT:
2893 return (u64)memcg->soft_limit * PAGE_SIZE;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002894 default:
2895 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002896 }
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002897}
Glauber Costa510fc4e2012-12-18 14:21:47 -08002898
Glauber Costa510fc4e2012-12-18 14:21:47 -08002899#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydov8c0145b2014-12-10 15:43:48 -08002900static int memcg_activate_kmem(struct mem_cgroup *memcg,
2901 unsigned long nr_pages)
Vladimir Davydovd6441632014-01-23 15:53:09 -08002902{
2903 int err = 0;
2904 int memcg_id;
2905
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08002906 BUG_ON(memcg->kmemcg_id >= 0);
Vladimir Davydov2788cf02015-02-12 14:59:38 -08002907 BUG_ON(memcg->kmem_acct_activated);
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08002908 BUG_ON(memcg->kmem_acct_active);
Vladimir Davydovd6441632014-01-23 15:53:09 -08002909
2910 /*
Glauber Costa510fc4e2012-12-18 14:21:47 -08002911 * For simplicity, we won't allow this to be disabled. It also can't
2912 * be changed if the cgroup has children already, or if tasks had
2913 * already joined.
2914 *
2915 * If tasks join before we set the limit, a person looking at
2916 * kmem.usage_in_bytes will have no way to determine when it took
2917 * place, which makes the value quite meaningless.
2918 *
2919 * After it first became limited, changes in the value of the limit are
2920 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08002921 */
Glauber Costa09998212013-02-22 16:34:55 -08002922 mutex_lock(&memcg_create_mutex);
Tejun Heoea280e72014-05-16 13:22:48 -04002923 if (cgroup_has_tasks(memcg->css.cgroup) ||
2924 (memcg->use_hierarchy && memcg_has_children(memcg)))
Vladimir Davydovd6441632014-01-23 15:53:09 -08002925 err = -EBUSY;
Glauber Costa09998212013-02-22 16:34:55 -08002926 mutex_unlock(&memcg_create_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08002927 if (err)
2928 goto out;
2929
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002930 memcg_id = memcg_alloc_cache_id();
Vladimir Davydovd6441632014-01-23 15:53:09 -08002931 if (memcg_id < 0) {
2932 err = memcg_id;
2933 goto out;
2934 }
2935
Vladimir Davydovd6441632014-01-23 15:53:09 -08002936 /*
Vladimir Davydov900a38f2014-12-12 16:55:10 -08002937 * We couldn't have accounted to this cgroup, because it hasn't got
2938 * activated yet, so this should succeed.
Vladimir Davydovd6441632014-01-23 15:53:09 -08002939 */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002940 err = page_counter_limit(&memcg->kmem, nr_pages);
Vladimir Davydovd6441632014-01-23 15:53:09 -08002941 VM_BUG_ON(err);
2942
2943 static_key_slow_inc(&memcg_kmem_enabled_key);
2944 /*
Vladimir Davydov900a38f2014-12-12 16:55:10 -08002945 * A memory cgroup is considered kmem-active as soon as it gets
2946 * kmemcg_id. Setting the id after enabling static branching will
Vladimir Davydovd6441632014-01-23 15:53:09 -08002947 * guarantee no one starts accounting before all call sites are
2948 * patched.
2949 */
Vladimir Davydov900a38f2014-12-12 16:55:10 -08002950 memcg->kmemcg_id = memcg_id;
Vladimir Davydov2788cf02015-02-12 14:59:38 -08002951 memcg->kmem_acct_activated = true;
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08002952 memcg->kmem_acct_active = true;
Vladimir Davydovd6441632014-01-23 15:53:09 -08002953out:
Vladimir Davydovd6441632014-01-23 15:53:09 -08002954 return err;
Vladimir Davydovd6441632014-01-23 15:53:09 -08002955}
2956
Vladimir Davydovd6441632014-01-23 15:53:09 -08002957static int memcg_update_kmem_limit(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002958 unsigned long limit)
Vladimir Davydovd6441632014-01-23 15:53:09 -08002959{
2960 int ret;
2961
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002962 mutex_lock(&memcg_limit_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08002963 if (!memcg_kmem_is_active(memcg))
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002964 ret = memcg_activate_kmem(memcg, limit);
Vladimir Davydovd6441632014-01-23 15:53:09 -08002965 else
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002966 ret = page_counter_limit(&memcg->kmem, limit);
2967 mutex_unlock(&memcg_limit_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08002968 return ret;
2969}
2970
Glauber Costa55007d82012-12-18 14:22:38 -08002971static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08002972{
Glauber Costa55007d82012-12-18 14:22:38 -08002973 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08002974 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
Vladimir Davydovd6441632014-01-23 15:53:09 -08002975
Glauber Costa510fc4e2012-12-18 14:21:47 -08002976 if (!parent)
Vladimir Davydovd6441632014-01-23 15:53:09 -08002977 return 0;
Glauber Costa55007d82012-12-18 14:22:38 -08002978
Vladimir Davydov8c0145b2014-12-10 15:43:48 -08002979 mutex_lock(&memcg_limit_mutex);
Glauber Costaa8964b92012-12-18 14:22:09 -08002980 /*
Vladimir Davydovd6441632014-01-23 15:53:09 -08002981 * If the parent cgroup is not kmem-active now, it cannot be activated
2982 * after this point, because it has at least one child already.
Glauber Costaa8964b92012-12-18 14:22:09 -08002983 */
Vladimir Davydovd6441632014-01-23 15:53:09 -08002984 if (memcg_kmem_is_active(parent))
Vladimir Davydov8c0145b2014-12-10 15:43:48 -08002985 ret = memcg_activate_kmem(memcg, PAGE_COUNTER_MAX);
2986 mutex_unlock(&memcg_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08002987 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08002988}
Vladimir Davydovd6441632014-01-23 15:53:09 -08002989#else
2990static int memcg_update_kmem_limit(struct mem_cgroup *memcg,
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002991 unsigned long limit)
Vladimir Davydovd6441632014-01-23 15:53:09 -08002992{
2993 return -EINVAL;
2994}
Hugh Dickins6d0439902013-02-22 16:35:50 -08002995#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08002996
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07002997/*
2998 * The user of this function is...
2999 * RES_LIMIT.
3000 */
Tejun Heo451af502014-05-13 12:16:21 -04003001static ssize_t mem_cgroup_write(struct kernfs_open_file *of,
3002 char *buf, size_t nbytes, loff_t off)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003003{
Tejun Heo451af502014-05-13 12:16:21 -04003004 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003005 unsigned long nr_pages;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003006 int ret;
3007
Tejun Heo451af502014-05-13 12:16:21 -04003008 buf = strstrip(buf);
Johannes Weiner650c5e52015-02-11 15:26:03 -08003009 ret = page_counter_memparse(buf, "-1", &nr_pages);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003010 if (ret)
3011 return ret;
Tejun Heoaf36f902012-04-01 12:09:55 -07003012
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003013 switch (MEMFILE_ATTR(of_cft(of)->private)) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003014 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07003015 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3016 ret = -EINVAL;
3017 break;
3018 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003019 switch (MEMFILE_TYPE(of_cft(of)->private)) {
3020 case _MEM:
3021 ret = mem_cgroup_resize_limit(memcg, nr_pages);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003022 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003023 case _MEMSWAP:
3024 ret = mem_cgroup_resize_memsw_limit(memcg, nr_pages);
3025 break;
3026 case _KMEM:
3027 ret = memcg_update_kmem_limit(memcg, nr_pages);
3028 break;
3029 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003030 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07003031 case RES_SOFT_LIMIT:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003032 memcg->soft_limit = nr_pages;
3033 ret = 0;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003034 break;
3035 }
Tejun Heo451af502014-05-13 12:16:21 -04003036 return ret ?: nbytes;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003037}
3038
Tejun Heo6770c642014-05-13 12:16:21 -04003039static ssize_t mem_cgroup_reset(struct kernfs_open_file *of, char *buf,
3040 size_t nbytes, loff_t off)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07003041{
Tejun Heo6770c642014-05-13 12:16:21 -04003042 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003043 struct page_counter *counter;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07003044
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003045 switch (MEMFILE_TYPE(of_cft(of)->private)) {
3046 case _MEM:
3047 counter = &memcg->memory;
3048 break;
3049 case _MEMSWAP:
3050 counter = &memcg->memsw;
3051 break;
3052 case _KMEM:
3053 counter = &memcg->kmem;
3054 break;
3055 default:
3056 BUG();
3057 }
Tejun Heoaf36f902012-04-01 12:09:55 -07003058
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003059 switch (MEMFILE_ATTR(of_cft(of)->private)) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003060 case RES_MAX_USAGE:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003061 page_counter_reset_watermark(counter);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003062 break;
3063 case RES_FAILCNT:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003064 counter->failcnt = 0;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003065 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003066 default:
3067 BUG();
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003068 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07003069
Tejun Heo6770c642014-05-13 12:16:21 -04003070 return nbytes;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07003071}
3072
Tejun Heo182446d2013-08-08 20:11:24 -04003073static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003074 struct cftype *cft)
3075{
Tejun Heo182446d2013-08-08 20:11:24 -04003076 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003077}
3078
Daisuke Nishimura02491442010-03-10 15:22:17 -08003079#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04003080static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003081 struct cftype *cft, u64 val)
3082{
Tejun Heo182446d2013-08-08 20:11:24 -04003083 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003084
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08003085 if (val & ~MOVE_MASK)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003086 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003087
Glauber Costaee5e8472013-02-22 16:34:50 -08003088 /*
3089 * No kind of locking is needed in here, because ->can_attach() will
3090 * check this value once in the beginning of the process, and then carry
3091 * on with stale data. This means that changes to this value will only
3092 * affect task migrations starting after the change.
3093 */
3094 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003095 return 0;
3096}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003097#else
Tejun Heo182446d2013-08-08 20:11:24 -04003098static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08003099 struct cftype *cft, u64 val)
3100{
3101 return -ENOSYS;
3102}
3103#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003104
Ying Han406eb0c2011-05-26 16:25:37 -07003105#ifdef CONFIG_NUMA
Tejun Heo2da8ca82013-12-05 12:28:04 -05003106static int memcg_numa_stat_show(struct seq_file *m, void *v)
Ying Han406eb0c2011-05-26 16:25:37 -07003107{
Greg Thelen25485de2013-11-12 15:07:40 -08003108 struct numa_stat {
3109 const char *name;
3110 unsigned int lru_mask;
3111 };
3112
3113 static const struct numa_stat stats[] = {
3114 { "total", LRU_ALL },
3115 { "file", LRU_ALL_FILE },
3116 { "anon", LRU_ALL_ANON },
3117 { "unevictable", BIT(LRU_UNEVICTABLE) },
3118 };
3119 const struct numa_stat *stat;
Ying Han406eb0c2011-05-26 16:25:37 -07003120 int nid;
Greg Thelen25485de2013-11-12 15:07:40 -08003121 unsigned long nr;
Tejun Heo2da8ca82013-12-05 12:28:04 -05003122 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Ying Han406eb0c2011-05-26 16:25:37 -07003123
Greg Thelen25485de2013-11-12 15:07:40 -08003124 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
3125 nr = mem_cgroup_nr_lru_pages(memcg, stat->lru_mask);
3126 seq_printf(m, "%s=%lu", stat->name, nr);
3127 for_each_node_state(nid, N_MEMORY) {
3128 nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
3129 stat->lru_mask);
3130 seq_printf(m, " N%d=%lu", nid, nr);
3131 }
3132 seq_putc(m, '\n');
Ying Han406eb0c2011-05-26 16:25:37 -07003133 }
Ying Han406eb0c2011-05-26 16:25:37 -07003134
Ying Han071aee12013-11-12 15:07:41 -08003135 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
3136 struct mem_cgroup *iter;
Ying Han406eb0c2011-05-26 16:25:37 -07003137
Ying Han071aee12013-11-12 15:07:41 -08003138 nr = 0;
3139 for_each_mem_cgroup_tree(iter, memcg)
3140 nr += mem_cgroup_nr_lru_pages(iter, stat->lru_mask);
3141 seq_printf(m, "hierarchical_%s=%lu", stat->name, nr);
3142 for_each_node_state(nid, N_MEMORY) {
3143 nr = 0;
3144 for_each_mem_cgroup_tree(iter, memcg)
3145 nr += mem_cgroup_node_nr_lru_pages(
3146 iter, nid, stat->lru_mask);
3147 seq_printf(m, " N%d=%lu", nid, nr);
3148 }
3149 seq_putc(m, '\n');
Ying Han406eb0c2011-05-26 16:25:37 -07003150 }
Ying Han406eb0c2011-05-26 16:25:37 -07003151
Ying Han406eb0c2011-05-26 16:25:37 -07003152 return 0;
3153}
3154#endif /* CONFIG_NUMA */
3155
Tejun Heo2da8ca82013-12-05 12:28:04 -05003156static int memcg_stat_show(struct seq_file *m, void *v)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08003157{
Tejun Heo2da8ca82013-12-05 12:28:04 -05003158 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003159 unsigned long memory, memsw;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07003160 struct mem_cgroup *mi;
3161 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08003162
Greg Thelen0ca44b12015-02-11 15:25:58 -08003163 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_stat_names) !=
3164 MEM_CGROUP_STAT_NSTATS);
3165 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_events_names) !=
3166 MEM_CGROUP_EVENTS_NSTATS);
Rickard Strandqvist70bc0682014-12-12 16:56:41 -08003167 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
3168
Johannes Weineraf7c4b02012-05-29 15:07:08 -07003169 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07003170 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07003171 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07003172 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
3173 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07003174 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003175
Johannes Weineraf7c4b02012-05-29 15:07:08 -07003176 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
3177 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
3178 mem_cgroup_read_events(memcg, i));
3179
3180 for (i = 0; i < NR_LRU_LISTS; i++)
3181 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
3182 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
3183
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07003184 /* Hierarchical information */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003185 memory = memsw = PAGE_COUNTER_MAX;
3186 for (mi = memcg; mi; mi = parent_mem_cgroup(mi)) {
3187 memory = min(memory, mi->memory.limit);
3188 memsw = min(memsw, mi->memsw.limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08003189 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003190 seq_printf(m, "hierarchical_memory_limit %llu\n",
3191 (u64)memory * PAGE_SIZE);
3192 if (do_swap_account)
3193 seq_printf(m, "hierarchical_memsw_limit %llu\n",
3194 (u64)memsw * PAGE_SIZE);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08003195
Johannes Weineraf7c4b02012-05-29 15:07:08 -07003196 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
3197 long long val = 0;
3198
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07003199 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07003200 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07003201 for_each_mem_cgroup_tree(mi, memcg)
3202 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
3203 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
3204 }
3205
3206 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
3207 unsigned long long val = 0;
3208
3209 for_each_mem_cgroup_tree(mi, memcg)
3210 val += mem_cgroup_read_events(mi, i);
3211 seq_printf(m, "total_%s %llu\n",
3212 mem_cgroup_events_names[i], val);
3213 }
3214
3215 for (i = 0; i < NR_LRU_LISTS; i++) {
3216 unsigned long long val = 0;
3217
3218 for_each_mem_cgroup_tree(mi, memcg)
3219 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
3220 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07003221 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07003222
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08003223#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08003224 {
3225 int nid, zid;
3226 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07003227 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08003228 unsigned long recent_rotated[2] = {0, 0};
3229 unsigned long recent_scanned[2] = {0, 0};
3230
3231 for_each_online_node(nid)
3232 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Jianyu Zhane2318752014-06-06 14:38:20 -07003233 mz = &memcg->nodeinfo[nid]->zoneinfo[zid];
Hugh Dickins89abfab2012-05-29 15:06:53 -07003234 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08003235
Hugh Dickins89abfab2012-05-29 15:06:53 -07003236 recent_rotated[0] += rstat->recent_rotated[0];
3237 recent_rotated[1] += rstat->recent_rotated[1];
3238 recent_scanned[0] += rstat->recent_scanned[0];
3239 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08003240 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07003241 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
3242 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
3243 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
3244 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08003245 }
3246#endif
3247
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08003248 return 0;
3249}
3250
Tejun Heo182446d2013-08-08 20:11:24 -04003251static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
3252 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08003253{
Tejun Heo182446d2013-08-08 20:11:24 -04003254 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08003255
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07003256 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08003257}
3258
Tejun Heo182446d2013-08-08 20:11:24 -04003259static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
3260 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08003261{
Tejun Heo182446d2013-08-08 20:11:24 -04003262 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Li Zefan068b38c2009-01-15 13:51:26 -08003263
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07003264 if (val > 100)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08003265 return -EINVAL;
3266
Linus Torvalds14208b02014-06-09 15:03:33 -07003267 if (css->parent)
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07003268 memcg->swappiness = val;
3269 else
3270 vm_swappiness = val;
Li Zefan068b38c2009-01-15 13:51:26 -08003271
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08003272 return 0;
3273}
3274
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003275static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
3276{
3277 struct mem_cgroup_threshold_ary *t;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003278 unsigned long usage;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003279 int i;
3280
3281 rcu_read_lock();
3282 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003283 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003284 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003285 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003286
3287 if (!t)
3288 goto unlock;
3289
Johannes Weinerce00a962014-09-05 08:43:57 -04003290 usage = mem_cgroup_usage(memcg, swap);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003291
3292 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07003293 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003294 * If it's not true, a threshold was crossed after last
3295 * call of __mem_cgroup_threshold().
3296 */
Phil Carmody5407a562010-05-26 14:42:42 -07003297 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003298
3299 /*
3300 * Iterate backward over array of thresholds starting from
3301 * current_threshold and check if a threshold is crossed.
3302 * If none of thresholds below usage is crossed, we read
3303 * only one element of the array here.
3304 */
3305 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
3306 eventfd_signal(t->entries[i].eventfd, 1);
3307
3308 /* i = current_threshold + 1 */
3309 i++;
3310
3311 /*
3312 * Iterate forward over array of thresholds starting from
3313 * current_threshold+1 and check if a threshold is crossed.
3314 * If none of thresholds above usage is crossed, we read
3315 * only one element of the array here.
3316 */
3317 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
3318 eventfd_signal(t->entries[i].eventfd, 1);
3319
3320 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07003321 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003322unlock:
3323 rcu_read_unlock();
3324}
3325
3326static void mem_cgroup_threshold(struct mem_cgroup *memcg)
3327{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07003328 while (memcg) {
3329 __mem_cgroup_threshold(memcg, false);
3330 if (do_swap_account)
3331 __mem_cgroup_threshold(memcg, true);
3332
3333 memcg = parent_mem_cgroup(memcg);
3334 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003335}
3336
3337static int compare_thresholds(const void *a, const void *b)
3338{
3339 const struct mem_cgroup_threshold *_a = a;
3340 const struct mem_cgroup_threshold *_b = b;
3341
Greg Thelen2bff24a2013-09-11 14:23:08 -07003342 if (_a->threshold > _b->threshold)
3343 return 1;
3344
3345 if (_a->threshold < _b->threshold)
3346 return -1;
3347
3348 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003349}
3350
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003351static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003352{
3353 struct mem_cgroup_eventfd_list *ev;
3354
Michal Hocko2bcf2e92014-07-30 16:08:33 -07003355 spin_lock(&memcg_oom_lock);
3356
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003357 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003358 eventfd_signal(ev->eventfd, 1);
Michal Hocko2bcf2e92014-07-30 16:08:33 -07003359
3360 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003361 return 0;
3362}
3363
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003364static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003365{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003366 struct mem_cgroup *iter;
3367
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003368 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07003369 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003370}
3371
Tejun Heo59b6f872013-11-22 18:20:43 -05003372static int __mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05003373 struct eventfd_ctx *eventfd, const char *args, enum res_type type)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003374{
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003375 struct mem_cgroup_thresholds *thresholds;
3376 struct mem_cgroup_threshold_ary *new;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003377 unsigned long threshold;
3378 unsigned long usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003379 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003380
Johannes Weiner650c5e52015-02-11 15:26:03 -08003381 ret = page_counter_memparse(args, "-1", &threshold);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003382 if (ret)
3383 return ret;
3384
3385 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003386
Johannes Weiner05b84302014-08-06 16:05:59 -07003387 if (type == _MEM) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003388 thresholds = &memcg->thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04003389 usage = mem_cgroup_usage(memcg, false);
Johannes Weiner05b84302014-08-06 16:05:59 -07003390 } else if (type == _MEMSWAP) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003391 thresholds = &memcg->memsw_thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04003392 usage = mem_cgroup_usage(memcg, true);
Johannes Weiner05b84302014-08-06 16:05:59 -07003393 } else
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003394 BUG();
3395
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003396 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003397 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003398 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
3399
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003400 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003401
3402 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003403 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003404 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003405 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003406 ret = -ENOMEM;
3407 goto unlock;
3408 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003409 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003410
3411 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003412 if (thresholds->primary) {
3413 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003414 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003415 }
3416
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003417 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003418 new->entries[size - 1].eventfd = eventfd;
3419 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003420
3421 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003422 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003423 compare_thresholds, NULL);
3424
3425 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003426 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003427 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07003428 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003429 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003430 * new->current_threshold will not be used until
3431 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003432 * it here.
3433 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003434 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07003435 } else
3436 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003437 }
3438
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003439 /* Free old spare buffer and save old primary buffer as spare */
3440 kfree(thresholds->spare);
3441 thresholds->spare = thresholds->primary;
3442
3443 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003444
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07003445 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003446 synchronize_rcu();
3447
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003448unlock:
3449 mutex_unlock(&memcg->thresholds_lock);
3450
3451 return ret;
3452}
3453
Tejun Heo59b6f872013-11-22 18:20:43 -05003454static int mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05003455 struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003456{
Tejun Heo59b6f872013-11-22 18:20:43 -05003457 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEM);
Tejun Heo347c4a82013-11-22 18:20:43 -05003458}
3459
Tejun Heo59b6f872013-11-22 18:20:43 -05003460static int memsw_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05003461 struct eventfd_ctx *eventfd, const char *args)
3462{
Tejun Heo59b6f872013-11-22 18:20:43 -05003463 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEMSWAP);
Tejun Heo347c4a82013-11-22 18:20:43 -05003464}
3465
Tejun Heo59b6f872013-11-22 18:20:43 -05003466static void __mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05003467 struct eventfd_ctx *eventfd, enum res_type type)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003468{
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003469 struct mem_cgroup_thresholds *thresholds;
3470 struct mem_cgroup_threshold_ary *new;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003471 unsigned long usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003472 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003473
3474 mutex_lock(&memcg->thresholds_lock);
Johannes Weiner05b84302014-08-06 16:05:59 -07003475
3476 if (type == _MEM) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003477 thresholds = &memcg->thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04003478 usage = mem_cgroup_usage(memcg, false);
Johannes Weiner05b84302014-08-06 16:05:59 -07003479 } else if (type == _MEMSWAP) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003480 thresholds = &memcg->memsw_thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04003481 usage = mem_cgroup_usage(memcg, true);
Johannes Weiner05b84302014-08-06 16:05:59 -07003482 } else
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003483 BUG();
3484
Anton Vorontsov371528c2012-02-24 05:14:46 +04003485 if (!thresholds->primary)
3486 goto unlock;
3487
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003488 /* Check if a threshold crossed before removing */
3489 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
3490
3491 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003492 size = 0;
3493 for (i = 0; i < thresholds->primary->size; i++) {
3494 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003495 size++;
3496 }
3497
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003498 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07003499
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003500 /* Set thresholds array to NULL if we don't have thresholds */
3501 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003502 kfree(new);
3503 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07003504 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003505 }
3506
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003507 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003508
3509 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003510 new->current_threshold = -1;
3511 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
3512 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003513 continue;
3514
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003515 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07003516 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003517 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003518 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003519 * until rcu_assign_pointer(), so it's safe to increment
3520 * it here.
3521 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003522 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003523 }
3524 j++;
3525 }
3526
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07003527swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003528 /* Swap primary and spare array */
3529 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07003530 /* If all events are unregistered, free the spare array */
3531 if (!new) {
3532 kfree(thresholds->spare);
3533 thresholds->spare = NULL;
3534 }
3535
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07003536 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003537
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07003538 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003539 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04003540unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003541 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08003542}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003543
Tejun Heo59b6f872013-11-22 18:20:43 -05003544static void mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05003545 struct eventfd_ctx *eventfd)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003546{
Tejun Heo59b6f872013-11-22 18:20:43 -05003547 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEM);
Tejun Heo347c4a82013-11-22 18:20:43 -05003548}
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003549
Tejun Heo59b6f872013-11-22 18:20:43 -05003550static void memsw_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05003551 struct eventfd_ctx *eventfd)
3552{
Tejun Heo59b6f872013-11-22 18:20:43 -05003553 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEMSWAP);
Tejun Heo347c4a82013-11-22 18:20:43 -05003554}
3555
Tejun Heo59b6f872013-11-22 18:20:43 -05003556static int mem_cgroup_oom_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05003557 struct eventfd_ctx *eventfd, const char *args)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003558{
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003559 struct mem_cgroup_eventfd_list *event;
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003560
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003561 event = kmalloc(sizeof(*event), GFP_KERNEL);
3562 if (!event)
3563 return -ENOMEM;
3564
Michal Hocko1af8efe2011-07-26 16:08:24 -07003565 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003566
3567 event->eventfd = eventfd;
3568 list_add(&event->list, &memcg->oom_notify);
3569
3570 /* already in OOM ? */
Tejun Heoc2b42d32015-06-24 16:58:23 -07003571 if (memcg->under_oom)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003572 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07003573 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003574
3575 return 0;
3576}
3577
Tejun Heo59b6f872013-11-22 18:20:43 -05003578static void mem_cgroup_oom_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05003579 struct eventfd_ctx *eventfd)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003580{
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003581 struct mem_cgroup_eventfd_list *ev, *tmp;
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003582
Michal Hocko1af8efe2011-07-26 16:08:24 -07003583 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003584
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003585 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003586 if (ev->eventfd == eventfd) {
3587 list_del(&ev->list);
3588 kfree(ev);
3589 }
3590 }
3591
Michal Hocko1af8efe2011-07-26 16:08:24 -07003592 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07003593}
3594
Tejun Heo2da8ca82013-12-05 12:28:04 -05003595static int mem_cgroup_oom_control_read(struct seq_file *sf, void *v)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003596{
Tejun Heo2da8ca82013-12-05 12:28:04 -05003597 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(sf));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003598
Tejun Heo791badb2013-12-05 12:28:02 -05003599 seq_printf(sf, "oom_kill_disable %d\n", memcg->oom_kill_disable);
Tejun Heoc2b42d32015-06-24 16:58:23 -07003600 seq_printf(sf, "under_oom %d\n", (bool)memcg->under_oom);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003601 return 0;
3602}
3603
Tejun Heo182446d2013-08-08 20:11:24 -04003604static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003605 struct cftype *cft, u64 val)
3606{
Tejun Heo182446d2013-08-08 20:11:24 -04003607 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003608
3609 /* cannot set to root cgroup and only 0 and 1 are allowed */
Linus Torvalds14208b02014-06-09 15:03:33 -07003610 if (!css->parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003611 return -EINVAL;
3612
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003613 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07003614 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003615 memcg_oom_recover(memcg);
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07003616
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003617 return 0;
3618}
3619
Andrew Mortonc255a452012-07-31 16:43:02 -07003620#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03003621static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00003622{
Glauber Costa55007d82012-12-18 14:22:38 -08003623 int ret;
3624
Glauber Costa55007d82012-12-18 14:22:38 -08003625 ret = memcg_propagate_kmem(memcg);
3626 if (ret)
3627 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003628
Glauber Costa1d62e432012-04-09 19:36:33 -03003629 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07003630}
Glauber Costae5671df2011-12-11 21:47:01 +00003631
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08003632static void memcg_deactivate_kmem(struct mem_cgroup *memcg)
3633{
Vladimir Davydov2788cf02015-02-12 14:59:38 -08003634 struct cgroup_subsys_state *css;
3635 struct mem_cgroup *parent, *child;
3636 int kmemcg_id;
3637
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08003638 if (!memcg->kmem_acct_active)
3639 return;
3640
3641 /*
3642 * Clear the 'active' flag before clearing memcg_caches arrays entries.
3643 * Since we take the slab_mutex in memcg_deactivate_kmem_caches(), it
3644 * guarantees no cache will be created for this cgroup after we are
3645 * done (see memcg_create_kmem_cache()).
3646 */
3647 memcg->kmem_acct_active = false;
3648
3649 memcg_deactivate_kmem_caches(memcg);
Vladimir Davydov2788cf02015-02-12 14:59:38 -08003650
3651 kmemcg_id = memcg->kmemcg_id;
3652 BUG_ON(kmemcg_id < 0);
3653
3654 parent = parent_mem_cgroup(memcg);
3655 if (!parent)
3656 parent = root_mem_cgroup;
3657
3658 /*
3659 * Change kmemcg_id of this cgroup and all its descendants to the
3660 * parent's id, and then move all entries from this cgroup's list_lrus
3661 * to ones of the parent. After we have finished, all list_lrus
3662 * corresponding to this cgroup are guaranteed to remain empty. The
3663 * ordering is imposed by list_lru_node->lock taken by
3664 * memcg_drain_all_list_lrus().
3665 */
3666 css_for_each_descendant_pre(css, &memcg->css) {
3667 child = mem_cgroup_from_css(css);
3668 BUG_ON(child->kmemcg_id != kmemcg_id);
3669 child->kmemcg_id = parent->kmemcg_id;
3670 if (!memcg->use_hierarchy)
3671 break;
3672 }
3673 memcg_drain_all_list_lrus(kmemcg_id, parent->kmemcg_id);
3674
3675 memcg_free_cache_id(kmemcg_id);
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08003676}
3677
Li Zefan10d5ebf2013-07-08 16:00:33 -07003678static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00003679{
Vladimir Davydovf48b80a2015-02-12 14:59:56 -08003680 if (memcg->kmem_acct_activated) {
3681 memcg_destroy_kmem_caches(memcg);
3682 static_key_slow_dec(&memcg_kmem_enabled_key);
3683 WARN_ON(page_counter_read(&memcg->kmem));
3684 }
Glauber Costa1d62e432012-04-09 19:36:33 -03003685 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07003686}
Glauber Costae5671df2011-12-11 21:47:01 +00003687#else
Glauber Costacbe128e32012-04-09 19:36:34 -03003688static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00003689{
3690 return 0;
3691}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00003692
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08003693static void memcg_deactivate_kmem(struct mem_cgroup *memcg)
3694{
3695}
3696
Li Zefan10d5ebf2013-07-08 16:00:33 -07003697static void memcg_destroy_kmem(struct mem_cgroup *memcg)
3698{
3699}
Glauber Costae5671df2011-12-11 21:47:01 +00003700#endif
3701
Tejun Heo52ebea72015-05-22 17:13:37 -04003702#ifdef CONFIG_CGROUP_WRITEBACK
3703
3704struct list_head *mem_cgroup_cgwb_list(struct mem_cgroup *memcg)
3705{
3706 return &memcg->cgwb_list;
3707}
3708
Tejun Heo841710a2015-05-22 18:23:33 -04003709static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
3710{
3711 return wb_domain_init(&memcg->cgwb_domain, gfp);
3712}
3713
3714static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
3715{
3716 wb_domain_exit(&memcg->cgwb_domain);
3717}
3718
Tejun Heo2529bb32015-05-22 18:23:34 -04003719static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
3720{
3721 wb_domain_size_changed(&memcg->cgwb_domain);
3722}
3723
Tejun Heo841710a2015-05-22 18:23:33 -04003724struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
3725{
3726 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
3727
3728 if (!memcg->css.parent)
3729 return NULL;
3730
3731 return &memcg->cgwb_domain;
3732}
3733
Tejun Heoc2aa7232015-05-22 18:23:35 -04003734/**
3735 * mem_cgroup_wb_stats - retrieve writeback related stats from its memcg
3736 * @wb: bdi_writeback in question
3737 * @pavail: out parameter for number of available pages
3738 * @pdirty: out parameter for number of dirty pages
3739 * @pwriteback: out parameter for number of pages under writeback
3740 *
3741 * Determine the numbers of available, dirty, and writeback pages in @wb's
3742 * memcg. Dirty and writeback are self-explanatory. Available is a bit
3743 * more involved.
3744 *
3745 * A memcg's headroom is "min(max, high) - used". The available memory is
3746 * calculated as the lowest headroom of itself and the ancestors plus the
3747 * number of pages already being used for file pages. Note that this
3748 * doesn't consider the actual amount of available memory in the system.
3749 * The caller should further cap *@pavail accordingly.
3750 */
3751void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pavail,
3752 unsigned long *pdirty, unsigned long *pwriteback)
3753{
3754 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
3755 struct mem_cgroup *parent;
3756 unsigned long head_room = PAGE_COUNTER_MAX;
3757 unsigned long file_pages;
3758
3759 *pdirty = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_DIRTY);
3760
3761 /* this should eventually include NR_UNSTABLE_NFS */
3762 *pwriteback = mem_cgroup_read_stat(memcg, MEM_CGROUP_STAT_WRITEBACK);
3763
3764 file_pages = mem_cgroup_nr_lru_pages(memcg, (1 << LRU_INACTIVE_FILE) |
3765 (1 << LRU_ACTIVE_FILE));
3766 while ((parent = parent_mem_cgroup(memcg))) {
3767 unsigned long ceiling = min(memcg->memory.limit, memcg->high);
3768 unsigned long used = page_counter_read(&memcg->memory);
3769
3770 head_room = min(head_room, ceiling - min(ceiling, used));
3771 memcg = parent;
3772 }
3773
3774 *pavail = file_pages + head_room;
3775}
3776
Tejun Heo841710a2015-05-22 18:23:33 -04003777#else /* CONFIG_CGROUP_WRITEBACK */
3778
3779static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
3780{
3781 return 0;
3782}
3783
3784static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
3785{
3786}
3787
Tejun Heo2529bb32015-05-22 18:23:34 -04003788static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
3789{
3790}
3791
Tejun Heo52ebea72015-05-22 17:13:37 -04003792#endif /* CONFIG_CGROUP_WRITEBACK */
3793
Tejun Heo79bd9812013-11-22 18:20:42 -05003794/*
Tejun Heo3bc942f2013-11-22 18:20:44 -05003795 * DO NOT USE IN NEW FILES.
3796 *
3797 * "cgroup.event_control" implementation.
3798 *
3799 * This is way over-engineered. It tries to support fully configurable
3800 * events for each user. Such level of flexibility is completely
3801 * unnecessary especially in the light of the planned unified hierarchy.
3802 *
3803 * Please deprecate this and replace with something simpler if at all
3804 * possible.
3805 */
3806
3807/*
Tejun Heo79bd9812013-11-22 18:20:42 -05003808 * Unregister event and free resources.
3809 *
3810 * Gets called from workqueue.
3811 */
Tejun Heo3bc942f2013-11-22 18:20:44 -05003812static void memcg_event_remove(struct work_struct *work)
Tejun Heo79bd9812013-11-22 18:20:42 -05003813{
Tejun Heo3bc942f2013-11-22 18:20:44 -05003814 struct mem_cgroup_event *event =
3815 container_of(work, struct mem_cgroup_event, remove);
Tejun Heo59b6f872013-11-22 18:20:43 -05003816 struct mem_cgroup *memcg = event->memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05003817
3818 remove_wait_queue(event->wqh, &event->wait);
3819
Tejun Heo59b6f872013-11-22 18:20:43 -05003820 event->unregister_event(memcg, event->eventfd);
Tejun Heo79bd9812013-11-22 18:20:42 -05003821
3822 /* Notify userspace the event is going away. */
3823 eventfd_signal(event->eventfd, 1);
3824
3825 eventfd_ctx_put(event->eventfd);
3826 kfree(event);
Tejun Heo59b6f872013-11-22 18:20:43 -05003827 css_put(&memcg->css);
Tejun Heo79bd9812013-11-22 18:20:42 -05003828}
3829
3830/*
3831 * Gets called on POLLHUP on eventfd when user closes it.
3832 *
3833 * Called with wqh->lock held and interrupts disabled.
3834 */
Tejun Heo3bc942f2013-11-22 18:20:44 -05003835static int memcg_event_wake(wait_queue_t *wait, unsigned mode,
3836 int sync, void *key)
Tejun Heo79bd9812013-11-22 18:20:42 -05003837{
Tejun Heo3bc942f2013-11-22 18:20:44 -05003838 struct mem_cgroup_event *event =
3839 container_of(wait, struct mem_cgroup_event, wait);
Tejun Heo59b6f872013-11-22 18:20:43 -05003840 struct mem_cgroup *memcg = event->memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05003841 unsigned long flags = (unsigned long)key;
3842
3843 if (flags & POLLHUP) {
3844 /*
3845 * If the event has been detached at cgroup removal, we
3846 * can simply return knowing the other side will cleanup
3847 * for us.
3848 *
3849 * We can't race against event freeing since the other
3850 * side will require wqh->lock via remove_wait_queue(),
3851 * which we hold.
3852 */
Tejun Heofba94802013-11-22 18:20:43 -05003853 spin_lock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05003854 if (!list_empty(&event->list)) {
3855 list_del_init(&event->list);
3856 /*
3857 * We are in atomic context, but cgroup_event_remove()
3858 * may sleep, so we have to call it in workqueue.
3859 */
3860 schedule_work(&event->remove);
3861 }
Tejun Heofba94802013-11-22 18:20:43 -05003862 spin_unlock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05003863 }
3864
3865 return 0;
3866}
3867
Tejun Heo3bc942f2013-11-22 18:20:44 -05003868static void memcg_event_ptable_queue_proc(struct file *file,
Tejun Heo79bd9812013-11-22 18:20:42 -05003869 wait_queue_head_t *wqh, poll_table *pt)
3870{
Tejun Heo3bc942f2013-11-22 18:20:44 -05003871 struct mem_cgroup_event *event =
3872 container_of(pt, struct mem_cgroup_event, pt);
Tejun Heo79bd9812013-11-22 18:20:42 -05003873
3874 event->wqh = wqh;
3875 add_wait_queue(wqh, &event->wait);
3876}
3877
3878/*
Tejun Heo3bc942f2013-11-22 18:20:44 -05003879 * DO NOT USE IN NEW FILES.
3880 *
Tejun Heo79bd9812013-11-22 18:20:42 -05003881 * Parse input and register new cgroup event handler.
3882 *
3883 * Input must be in format '<event_fd> <control_fd> <args>'.
3884 * Interpretation of args is defined by control file implementation.
3885 */
Tejun Heo451af502014-05-13 12:16:21 -04003886static ssize_t memcg_write_event_control(struct kernfs_open_file *of,
3887 char *buf, size_t nbytes, loff_t off)
Tejun Heo79bd9812013-11-22 18:20:42 -05003888{
Tejun Heo451af502014-05-13 12:16:21 -04003889 struct cgroup_subsys_state *css = of_css(of);
Tejun Heofba94802013-11-22 18:20:43 -05003890 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo3bc942f2013-11-22 18:20:44 -05003891 struct mem_cgroup_event *event;
Tejun Heo79bd9812013-11-22 18:20:42 -05003892 struct cgroup_subsys_state *cfile_css;
3893 unsigned int efd, cfd;
3894 struct fd efile;
3895 struct fd cfile;
Tejun Heofba94802013-11-22 18:20:43 -05003896 const char *name;
Tejun Heo79bd9812013-11-22 18:20:42 -05003897 char *endp;
3898 int ret;
3899
Tejun Heo451af502014-05-13 12:16:21 -04003900 buf = strstrip(buf);
3901
3902 efd = simple_strtoul(buf, &endp, 10);
Tejun Heo79bd9812013-11-22 18:20:42 -05003903 if (*endp != ' ')
3904 return -EINVAL;
Tejun Heo451af502014-05-13 12:16:21 -04003905 buf = endp + 1;
Tejun Heo79bd9812013-11-22 18:20:42 -05003906
Tejun Heo451af502014-05-13 12:16:21 -04003907 cfd = simple_strtoul(buf, &endp, 10);
Tejun Heo79bd9812013-11-22 18:20:42 -05003908 if ((*endp != ' ') && (*endp != '\0'))
3909 return -EINVAL;
Tejun Heo451af502014-05-13 12:16:21 -04003910 buf = endp + 1;
Tejun Heo79bd9812013-11-22 18:20:42 -05003911
3912 event = kzalloc(sizeof(*event), GFP_KERNEL);
3913 if (!event)
3914 return -ENOMEM;
3915
Tejun Heo59b6f872013-11-22 18:20:43 -05003916 event->memcg = memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05003917 INIT_LIST_HEAD(&event->list);
Tejun Heo3bc942f2013-11-22 18:20:44 -05003918 init_poll_funcptr(&event->pt, memcg_event_ptable_queue_proc);
3919 init_waitqueue_func_entry(&event->wait, memcg_event_wake);
3920 INIT_WORK(&event->remove, memcg_event_remove);
Tejun Heo79bd9812013-11-22 18:20:42 -05003921
3922 efile = fdget(efd);
3923 if (!efile.file) {
3924 ret = -EBADF;
3925 goto out_kfree;
3926 }
3927
3928 event->eventfd = eventfd_ctx_fileget(efile.file);
3929 if (IS_ERR(event->eventfd)) {
3930 ret = PTR_ERR(event->eventfd);
3931 goto out_put_efile;
3932 }
3933
3934 cfile = fdget(cfd);
3935 if (!cfile.file) {
3936 ret = -EBADF;
3937 goto out_put_eventfd;
3938 }
3939
3940 /* the process need read permission on control file */
3941 /* AV: shouldn't we check that it's been opened for read instead? */
3942 ret = inode_permission(file_inode(cfile.file), MAY_READ);
3943 if (ret < 0)
3944 goto out_put_cfile;
3945
Tejun Heo79bd9812013-11-22 18:20:42 -05003946 /*
Tejun Heofba94802013-11-22 18:20:43 -05003947 * Determine the event callbacks and set them in @event. This used
3948 * to be done via struct cftype but cgroup core no longer knows
3949 * about these events. The following is crude but the whole thing
3950 * is for compatibility anyway.
Tejun Heo3bc942f2013-11-22 18:20:44 -05003951 *
3952 * DO NOT ADD NEW FILES.
Tejun Heofba94802013-11-22 18:20:43 -05003953 */
Al Virob5830432014-10-31 01:22:04 -04003954 name = cfile.file->f_path.dentry->d_name.name;
Tejun Heofba94802013-11-22 18:20:43 -05003955
3956 if (!strcmp(name, "memory.usage_in_bytes")) {
3957 event->register_event = mem_cgroup_usage_register_event;
3958 event->unregister_event = mem_cgroup_usage_unregister_event;
3959 } else if (!strcmp(name, "memory.oom_control")) {
3960 event->register_event = mem_cgroup_oom_register_event;
3961 event->unregister_event = mem_cgroup_oom_unregister_event;
3962 } else if (!strcmp(name, "memory.pressure_level")) {
3963 event->register_event = vmpressure_register_event;
3964 event->unregister_event = vmpressure_unregister_event;
3965 } else if (!strcmp(name, "memory.memsw.usage_in_bytes")) {
Tejun Heo347c4a82013-11-22 18:20:43 -05003966 event->register_event = memsw_cgroup_usage_register_event;
3967 event->unregister_event = memsw_cgroup_usage_unregister_event;
Tejun Heofba94802013-11-22 18:20:43 -05003968 } else {
3969 ret = -EINVAL;
3970 goto out_put_cfile;
3971 }
3972
3973 /*
Tejun Heob5557c42013-11-22 18:20:42 -05003974 * Verify @cfile should belong to @css. Also, remaining events are
3975 * automatically removed on cgroup destruction but the removal is
3976 * asynchronous, so take an extra ref on @css.
Tejun Heo79bd9812013-11-22 18:20:42 -05003977 */
Al Virob5830432014-10-31 01:22:04 -04003978 cfile_css = css_tryget_online_from_dir(cfile.file->f_path.dentry->d_parent,
Tejun Heoec903c02014-05-13 12:11:01 -04003979 &memory_cgrp_subsys);
Tejun Heo79bd9812013-11-22 18:20:42 -05003980 ret = -EINVAL;
Tejun Heo5a17f542014-02-11 11:52:47 -05003981 if (IS_ERR(cfile_css))
Tejun Heo79bd9812013-11-22 18:20:42 -05003982 goto out_put_cfile;
Tejun Heo5a17f542014-02-11 11:52:47 -05003983 if (cfile_css != css) {
3984 css_put(cfile_css);
3985 goto out_put_cfile;
3986 }
Tejun Heo79bd9812013-11-22 18:20:42 -05003987
Tejun Heo451af502014-05-13 12:16:21 -04003988 ret = event->register_event(memcg, event->eventfd, buf);
Tejun Heo79bd9812013-11-22 18:20:42 -05003989 if (ret)
3990 goto out_put_css;
3991
3992 efile.file->f_op->poll(efile.file, &event->pt);
3993
Tejun Heofba94802013-11-22 18:20:43 -05003994 spin_lock(&memcg->event_list_lock);
3995 list_add(&event->list, &memcg->event_list);
3996 spin_unlock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05003997
3998 fdput(cfile);
3999 fdput(efile);
4000
Tejun Heo451af502014-05-13 12:16:21 -04004001 return nbytes;
Tejun Heo79bd9812013-11-22 18:20:42 -05004002
4003out_put_css:
Tejun Heob5557c42013-11-22 18:20:42 -05004004 css_put(css);
Tejun Heo79bd9812013-11-22 18:20:42 -05004005out_put_cfile:
4006 fdput(cfile);
4007out_put_eventfd:
4008 eventfd_ctx_put(event->eventfd);
4009out_put_efile:
4010 fdput(efile);
4011out_kfree:
4012 kfree(event);
4013
4014 return ret;
4015}
4016
Johannes Weiner241994e2015-02-11 15:26:06 -08004017static struct cftype mem_cgroup_legacy_files[] = {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004018 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004019 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004020 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05004021 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004022 },
4023 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004024 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004025 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04004026 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05004027 .read_u64 = mem_cgroup_read_u64,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004028 },
4029 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004030 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004031 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04004032 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05004033 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004034 },
4035 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004036 .name = "soft_limit_in_bytes",
4037 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04004038 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05004039 .read_u64 = mem_cgroup_read_u64,
Balbir Singh296c81d2009-09-23 15:56:36 -07004040 },
4041 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004042 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004043 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04004044 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05004045 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004046 },
Balbir Singh8697d332008-02-07 00:13:59 -08004047 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004048 .name = "stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004049 .seq_show = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004050 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004051 {
4052 .name = "force_empty",
Tejun Heo6770c642014-05-13 12:16:21 -04004053 .write = mem_cgroup_force_empty_write,
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004054 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004055 {
4056 .name = "use_hierarchy",
4057 .write_u64 = mem_cgroup_hierarchy_write,
4058 .read_u64 = mem_cgroup_hierarchy_read,
4059 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004060 {
Tejun Heo3bc942f2013-11-22 18:20:44 -05004061 .name = "cgroup.event_control", /* XXX: for compat */
Tejun Heo451af502014-05-13 12:16:21 -04004062 .write = memcg_write_event_control,
Tejun Heo79bd9812013-11-22 18:20:42 -05004063 .flags = CFTYPE_NO_PREFIX,
4064 .mode = S_IWUGO,
4065 },
4066 {
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004067 .name = "swappiness",
4068 .read_u64 = mem_cgroup_swappiness_read,
4069 .write_u64 = mem_cgroup_swappiness_write,
4070 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004071 {
4072 .name = "move_charge_at_immigrate",
4073 .read_u64 = mem_cgroup_move_charge_read,
4074 .write_u64 = mem_cgroup_move_charge_write,
4075 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004076 {
4077 .name = "oom_control",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004078 .seq_show = mem_cgroup_oom_control_read,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004079 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004080 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4081 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07004082 {
4083 .name = "pressure_level",
Anton Vorontsov70ddf632013-04-29 15:08:31 -07004084 },
Ying Han406eb0c2011-05-26 16:25:37 -07004085#ifdef CONFIG_NUMA
4086 {
4087 .name = "numa_stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004088 .seq_show = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07004089 },
4090#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08004091#ifdef CONFIG_MEMCG_KMEM
4092 {
4093 .name = "kmem.limit_in_bytes",
4094 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04004095 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05004096 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08004097 },
4098 {
4099 .name = "kmem.usage_in_bytes",
4100 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05004101 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08004102 },
4103 {
4104 .name = "kmem.failcnt",
4105 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04004106 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05004107 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08004108 },
4109 {
4110 .name = "kmem.max_usage_in_bytes",
4111 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04004112 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05004113 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08004114 },
Glauber Costa749c5412012-12-18 14:23:01 -08004115#ifdef CONFIG_SLABINFO
4116 {
4117 .name = "kmem.slabinfo",
Vladimir Davydovb0475012014-12-10 15:44:19 -08004118 .seq_start = slab_start,
4119 .seq_next = slab_next,
4120 .seq_stop = slab_stop,
4121 .seq_show = memcg_slab_show,
Glauber Costa749c5412012-12-18 14:23:01 -08004122 },
4123#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08004124#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07004125 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07004126};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004127
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004128static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004129{
4130 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004131 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004132 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004133 /*
4134 * This routine is called against possible nodes.
4135 * But it's BUG to call kmalloc() against offline node.
4136 *
4137 * TODO: this routine can waste much memory for nodes which will
4138 * never be onlined. It's better to use memory hotplug callback
4139 * function.
4140 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07004141 if (!node_state(node, N_NORMAL_MEMORY))
4142 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08004143 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004144 if (!pn)
4145 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004146
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004147 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
4148 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004149 lruvec_init(&mz->lruvec);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07004150 mz->usage_in_excess = 0;
4151 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004152 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004153 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07004154 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004155 return 0;
4156}
4157
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004158static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004159{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07004160 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004161}
4162
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004163static struct mem_cgroup *mem_cgroup_alloc(void)
4164{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004165 struct mem_cgroup *memcg;
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08004166 size_t size;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004167
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08004168 size = sizeof(struct mem_cgroup);
4169 size += nr_node_ids * sizeof(struct mem_cgroup_per_node *);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004170
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08004171 memcg = kzalloc(size, GFP_KERNEL);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004172 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07004173 return NULL;
4174
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004175 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
4176 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004177 goto out_free;
Tejun Heo841710a2015-05-22 18:23:33 -04004178
4179 if (memcg_wb_domain_init(memcg, GFP_KERNEL))
4180 goto out_free_stat;
4181
Hugh Dickinsd79154b2012-03-21 16:34:18 -07004182 spin_lock_init(&memcg->pcp_counter_lock);
4183 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004184
Tejun Heo841710a2015-05-22 18:23:33 -04004185out_free_stat:
4186 free_percpu(memcg->stat);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004187out_free:
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08004188 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08004189 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004190}
4191
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004192/*
Glauber Costac8b2a362012-12-18 14:22:13 -08004193 * At destroying mem_cgroup, references from swap_cgroup can remain.
4194 * (scanning all at force_empty is too costly...)
4195 *
4196 * Instead of clearing all references at force_empty, we remember
4197 * the number of reference from swap_cgroup and free mem_cgroup when
4198 * it goes down to 0.
4199 *
4200 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07004201 */
Glauber Costac8b2a362012-12-18 14:22:13 -08004202
4203static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07004204{
Glauber Costac8b2a362012-12-18 14:22:13 -08004205 int node;
Hugh Dickins59927fb2012-03-15 15:17:07 -07004206
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07004207 mem_cgroup_remove_from_trees(memcg);
Glauber Costac8b2a362012-12-18 14:22:13 -08004208
4209 for_each_node(node)
4210 free_mem_cgroup_per_zone_info(memcg, node);
4211
4212 free_percpu(memcg->stat);
Tejun Heo841710a2015-05-22 18:23:33 -04004213 memcg_wb_domain_exit(memcg);
Vladimir Davydov8ff69e22014-01-23 15:52:52 -08004214 kfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07004215}
Glauber Costa3afe36b2012-05-29 15:07:10 -07004216
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004217/*
4218 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
4219 */
Glauber Costae1aab162011-12-11 21:47:03 +00004220struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004221{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004222 if (!memcg->memory.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004223 return NULL;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004224 return mem_cgroup_from_counter(memcg->memory.parent, memory);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004225}
Glauber Costae1aab162011-12-11 21:47:03 +00004226EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07004227
Li Zefan0eb253e2009-01-15 13:51:25 -08004228static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04004229mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004230{
Glauber Costad142e3e2013-02-22 16:34:52 -08004231 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004232 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004233 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004234
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004235 memcg = mem_cgroup_alloc();
4236 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004237 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004238
Bob Liu3ed28fa2012-01-12 17:19:04 -08004239 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004240 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004241 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07004242
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08004243 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04004244 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08004245 root_mem_cgroup = memcg;
Tejun Heo56161632015-05-22 17:13:20 -04004246 mem_cgroup_root_css = &memcg->css;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004247 page_counter_init(&memcg->memory, NULL);
Johannes Weiner241994e2015-02-11 15:26:06 -08004248 memcg->high = PAGE_COUNTER_MAX;
Johannes Weiner24d404d2015-01-08 14:32:35 -08004249 memcg->soft_limit = PAGE_COUNTER_MAX;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004250 page_counter_init(&memcg->memsw, NULL);
4251 page_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004252 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08004253
Glauber Costad142e3e2013-02-22 16:34:52 -08004254 memcg->last_scanned_node = MAX_NUMNODES;
4255 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08004256 memcg->move_charge_at_immigrate = 0;
4257 mutex_init(&memcg->thresholds_lock);
4258 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07004259 vmpressure_init(&memcg->vmpressure);
Tejun Heofba94802013-11-22 18:20:43 -05004260 INIT_LIST_HEAD(&memcg->event_list);
4261 spin_lock_init(&memcg->event_list_lock);
Vladimir Davydov900a38f2014-12-12 16:55:10 -08004262#ifdef CONFIG_MEMCG_KMEM
4263 memcg->kmemcg_id = -1;
Vladimir Davydov900a38f2014-12-12 16:55:10 -08004264#endif
Tejun Heo52ebea72015-05-22 17:13:37 -04004265#ifdef CONFIG_CGROUP_WRITEBACK
4266 INIT_LIST_HEAD(&memcg->cgwb_list);
4267#endif
Glauber Costad142e3e2013-02-22 16:34:52 -08004268 return &memcg->css;
4269
4270free_out:
4271 __mem_cgroup_free(memcg);
4272 return ERR_PTR(error);
4273}
4274
4275static int
Tejun Heoeb954192013-08-08 20:11:23 -04004276mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08004277{
Tejun Heoeb954192013-08-08 20:11:23 -04004278 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04004279 struct mem_cgroup *parent = mem_cgroup_from_css(css->parent);
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -07004280 int ret;
Glauber Costad142e3e2013-02-22 16:34:52 -08004281
Tejun Heo15a4c832014-05-04 15:09:14 -04004282 if (css->id > MEM_CGROUP_ID_MAX)
Li Zefan4219b2d2013-09-23 16:56:29 +08004283 return -ENOSPC;
4284
Tejun Heo63876982013-08-08 20:11:23 -04004285 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08004286 return 0;
4287
Glauber Costa09998212013-02-22 16:34:55 -08004288 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08004289
4290 memcg->use_hierarchy = parent->use_hierarchy;
4291 memcg->oom_kill_disable = parent->oom_kill_disable;
4292 memcg->swappiness = mem_cgroup_swappiness(parent);
4293
4294 if (parent->use_hierarchy) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004295 page_counter_init(&memcg->memory, &parent->memory);
Johannes Weiner241994e2015-02-11 15:26:06 -08004296 memcg->high = PAGE_COUNTER_MAX;
Johannes Weiner24d404d2015-01-08 14:32:35 -08004297 memcg->soft_limit = PAGE_COUNTER_MAX;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004298 page_counter_init(&memcg->memsw, &parent->memsw);
4299 page_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08004300
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004301 /*
Li Zefan8d76a972013-07-08 16:00:36 -07004302 * No need to take a reference to the parent because cgroup
4303 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08004304 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08004305 } else {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004306 page_counter_init(&memcg->memory, NULL);
Johannes Weiner241994e2015-02-11 15:26:06 -08004307 memcg->high = PAGE_COUNTER_MAX;
Johannes Weiner24d404d2015-01-08 14:32:35 -08004308 memcg->soft_limit = PAGE_COUNTER_MAX;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004309 page_counter_init(&memcg->memsw, NULL);
4310 page_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004311 /*
4312 * Deeper hierachy with use_hierarchy == false doesn't make
4313 * much sense so let cgroup subsystem know about this
4314 * unfortunate state in our controller.
4315 */
Glauber Costad142e3e2013-02-22 16:34:52 -08004316 if (parent != root_mem_cgroup)
Tejun Heo073219e2014-02-08 10:36:58 -05004317 memory_cgrp_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004318 }
Glauber Costa09998212013-02-22 16:34:55 -08004319 mutex_unlock(&memcg_create_mutex);
Vladimir Davydovd6441632014-01-23 15:53:09 -08004320
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -07004321 ret = memcg_init_kmem(memcg, &memory_cgrp_subsys);
4322 if (ret)
4323 return ret;
4324
4325 /*
4326 * Make sure the memcg is initialized: mem_cgroup_iter()
4327 * orders reading memcg->initialized against its callers
4328 * reading the memcg members.
4329 */
4330 smp_store_release(&memcg->initialized, 1);
4331
4332 return 0;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004333}
4334
Tejun Heoeb954192013-08-08 20:11:23 -04004335static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08004336{
Tejun Heoeb954192013-08-08 20:11:23 -04004337 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo3bc942f2013-11-22 18:20:44 -05004338 struct mem_cgroup_event *event, *tmp;
Tejun Heo79bd9812013-11-22 18:20:42 -05004339
4340 /*
4341 * Unregister events and notify userspace.
4342 * Notify userspace about cgroup removing only after rmdir of cgroup
4343 * directory to avoid race between userspace and kernelspace.
4344 */
Tejun Heofba94802013-11-22 18:20:43 -05004345 spin_lock(&memcg->event_list_lock);
4346 list_for_each_entry_safe(event, tmp, &memcg->event_list, list) {
Tejun Heo79bd9812013-11-22 18:20:42 -05004347 list_del_init(&event->list);
4348 schedule_work(&event->remove);
4349 }
Tejun Heofba94802013-11-22 18:20:43 -05004350 spin_unlock(&memcg->event_list_lock);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004351
Michal Hocko33cb8762013-07-31 13:53:51 -07004352 vmpressure_cleanup(&memcg->vmpressure);
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08004353
4354 memcg_deactivate_kmem(memcg);
Tejun Heo52ebea72015-05-22 17:13:37 -04004355
4356 wb_memcg_offline(memcg);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08004357}
4358
Tejun Heoeb954192013-08-08 20:11:23 -04004359static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004360{
Tejun Heoeb954192013-08-08 20:11:23 -04004361 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08004362
Li Zefan10d5ebf2013-07-08 16:00:33 -07004363 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07004364 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004365}
4366
Tejun Heo1ced9532014-07-08 18:02:57 -04004367/**
4368 * mem_cgroup_css_reset - reset the states of a mem_cgroup
4369 * @css: the target css
4370 *
4371 * Reset the states of the mem_cgroup associated with @css. This is
4372 * invoked when the userland requests disabling on the default hierarchy
4373 * but the memcg is pinned through dependency. The memcg should stop
4374 * applying policies and should revert to the vanilla state as it may be
4375 * made visible again.
4376 *
4377 * The current implementation only resets the essential configurations.
4378 * This needs to be expanded to cover all the visible parts.
4379 */
4380static void mem_cgroup_css_reset(struct cgroup_subsys_state *css)
4381{
4382 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4383
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004384 mem_cgroup_resize_limit(memcg, PAGE_COUNTER_MAX);
4385 mem_cgroup_resize_memsw_limit(memcg, PAGE_COUNTER_MAX);
4386 memcg_update_kmem_limit(memcg, PAGE_COUNTER_MAX);
Johannes Weiner241994e2015-02-11 15:26:06 -08004387 memcg->low = 0;
4388 memcg->high = PAGE_COUNTER_MAX;
Johannes Weiner24d404d2015-01-08 14:32:35 -08004389 memcg->soft_limit = PAGE_COUNTER_MAX;
Tejun Heo2529bb32015-05-22 18:23:34 -04004390 memcg_wb_domain_size_changed(memcg);
Tejun Heo1ced9532014-07-08 18:02:57 -04004391}
4392
Daisuke Nishimura02491442010-03-10 15:22:17 -08004393#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004394/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004395static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004396{
Johannes Weiner05b84302014-08-06 16:05:59 -07004397 int ret;
Johannes Weiner9476db92014-08-06 16:05:55 -07004398
4399 /* Try a single bulk charge without reclaim first */
Johannes Weiner00501b52014-08-08 14:19:20 -07004400 ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_WAIT, count);
Johannes Weiner9476db92014-08-06 16:05:55 -07004401 if (!ret) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004402 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004403 return ret;
4404 }
Johannes Weiner692e7c42014-08-06 16:05:57 -07004405 if (ret == -EINTR) {
Johannes Weiner00501b52014-08-08 14:19:20 -07004406 cancel_charge(root_mem_cgroup, count);
Johannes Weiner692e7c42014-08-06 16:05:57 -07004407 return ret;
4408 }
Johannes Weiner9476db92014-08-06 16:05:55 -07004409
4410 /* Try charges one by one with reclaim */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004411 while (count--) {
Johannes Weiner00501b52014-08-08 14:19:20 -07004412 ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_NORETRY, 1);
Johannes Weiner9476db92014-08-06 16:05:55 -07004413 /*
4414 * In case of failure, any residual charges against
4415 * mc.to will be dropped by mem_cgroup_clear_mc()
Johannes Weiner692e7c42014-08-06 16:05:57 -07004416 * later on. However, cancel any charges that are
4417 * bypassed to root right away or they'll be lost.
Johannes Weiner9476db92014-08-06 16:05:55 -07004418 */
Johannes Weiner692e7c42014-08-06 16:05:57 -07004419 if (ret == -EINTR)
Johannes Weiner00501b52014-08-08 14:19:20 -07004420 cancel_charge(root_mem_cgroup, 1);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08004421 if (ret)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08004422 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004423 mc.precharge++;
Johannes Weiner9476db92014-08-06 16:05:55 -07004424 cond_resched();
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004425 }
Johannes Weiner9476db92014-08-06 16:05:55 -07004426 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004427}
4428
4429/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07004430 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004431 * @vma: the vma the pte to be checked belongs
4432 * @addr: the address corresponding to the pte to be checked
4433 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08004434 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004435 *
4436 * Returns
4437 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
4438 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
4439 * move charge. if @target is not NULL, the page is stored in target->page
4440 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08004441 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
4442 * target for charge migration. if @target is not NULL, the entry is stored
4443 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004444 *
4445 * Called with pte lock held.
4446 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004447union mc_target {
4448 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08004449 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004450};
4451
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004452enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07004453 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004454 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08004455 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004456};
4457
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004458static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
4459 unsigned long addr, pte_t ptent)
4460{
4461 struct page *page = vm_normal_page(vma, addr, ptent);
4462
4463 if (!page || !page_mapped(page))
4464 return NULL;
4465 if (PageAnon(page)) {
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08004466 if (!(mc.flags & MOVE_ANON))
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004467 return NULL;
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08004468 } else {
4469 if (!(mc.flags & MOVE_FILE))
4470 return NULL;
4471 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004472 if (!get_page_unless_zero(page))
4473 return NULL;
4474
4475 return page;
4476}
4477
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07004478#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004479static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
4480 unsigned long addr, pte_t ptent, swp_entry_t *entry)
4481{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004482 struct page *page = NULL;
4483 swp_entry_t ent = pte_to_swp_entry(ptent);
4484
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08004485 if (!(mc.flags & MOVE_ANON) || non_swap_entry(ent))
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004486 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07004487 /*
4488 * Because lookup_swap_cache() updates some statistics counter,
4489 * we call find_get_page() with swapper_space directly.
4490 */
Shaohua Li33806f02013-02-22 16:34:37 -08004491 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004492 if (do_swap_account)
4493 entry->val = ent.val;
4494
4495 return page;
4496}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07004497#else
4498static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
4499 unsigned long addr, pte_t ptent, swp_entry_t *entry)
4500{
4501 return NULL;
4502}
4503#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004504
Daisuke Nishimura87946a72010-05-26 14:42:39 -07004505static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
4506 unsigned long addr, pte_t ptent, swp_entry_t *entry)
4507{
4508 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07004509 struct address_space *mapping;
4510 pgoff_t pgoff;
4511
4512 if (!vma->vm_file) /* anonymous vma */
4513 return NULL;
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08004514 if (!(mc.flags & MOVE_FILE))
Daisuke Nishimura87946a72010-05-26 14:42:39 -07004515 return NULL;
4516
Daisuke Nishimura87946a72010-05-26 14:42:39 -07004517 mapping = vma->vm_file->f_mapping;
Kirill A. Shutemov0661a332015-02-10 14:10:04 -08004518 pgoff = linear_page_index(vma, addr);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07004519
4520 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07004521#ifdef CONFIG_SWAP
4522 /* shmem/tmpfs may report page out on swap: account for that too. */
Johannes Weiner139b6a62014-05-06 12:50:05 -07004523 if (shmem_mapping(mapping)) {
4524 page = find_get_entry(mapping, pgoff);
4525 if (radix_tree_exceptional_entry(page)) {
4526 swp_entry_t swp = radix_to_swp_entry(page);
4527 if (do_swap_account)
4528 *entry = swp;
4529 page = find_get_page(swap_address_space(swp), swp.val);
4530 }
4531 } else
4532 page = find_get_page(mapping, pgoff);
4533#else
4534 page = find_get_page(mapping, pgoff);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07004535#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07004536 return page;
4537}
4538
Chen Gangb1b0dea2015-04-14 15:47:35 -07004539/**
4540 * mem_cgroup_move_account - move account of the page
4541 * @page: the page
4542 * @nr_pages: number of regular pages (>1 for huge pages)
4543 * @from: mem_cgroup which the page is moved from.
4544 * @to: mem_cgroup which the page is moved to. @from != @to.
4545 *
4546 * The caller must confirm following.
4547 * - page is not on LRU (isolate_page() is useful.)
4548 * - compound_lock is held when nr_pages > 1
4549 *
4550 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
4551 * from old cgroup.
4552 */
4553static int mem_cgroup_move_account(struct page *page,
4554 unsigned int nr_pages,
4555 struct mem_cgroup *from,
4556 struct mem_cgroup *to)
4557{
4558 unsigned long flags;
4559 int ret;
Greg Thelenc4843a72015-05-22 17:13:16 -04004560 bool anon;
Chen Gangb1b0dea2015-04-14 15:47:35 -07004561
4562 VM_BUG_ON(from == to);
4563 VM_BUG_ON_PAGE(PageLRU(page), page);
4564 /*
4565 * The page is isolated from LRU. So, collapse function
4566 * will not handle this page. But page splitting can happen.
4567 * Do this check under compound_page_lock(). The caller should
4568 * hold it.
4569 */
4570 ret = -EBUSY;
4571 if (nr_pages > 1 && !PageTransHuge(page))
4572 goto out;
4573
4574 /*
4575 * Prevent mem_cgroup_migrate() from looking at page->mem_cgroup
4576 * of its source page while we change it: page migration takes
4577 * both pages off the LRU, but page cache replacement doesn't.
4578 */
4579 if (!trylock_page(page))
4580 goto out;
4581
4582 ret = -EINVAL;
4583 if (page->mem_cgroup != from)
4584 goto out_unlock;
4585
Greg Thelenc4843a72015-05-22 17:13:16 -04004586 anon = PageAnon(page);
4587
Chen Gangb1b0dea2015-04-14 15:47:35 -07004588 spin_lock_irqsave(&from->move_lock, flags);
4589
Greg Thelenc4843a72015-05-22 17:13:16 -04004590 if (!anon && page_mapped(page)) {
Chen Gangb1b0dea2015-04-14 15:47:35 -07004591 __this_cpu_sub(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED],
4592 nr_pages);
4593 __this_cpu_add(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED],
4594 nr_pages);
4595 }
4596
Greg Thelenc4843a72015-05-22 17:13:16 -04004597 /*
4598 * move_lock grabbed above and caller set from->moving_account, so
4599 * mem_cgroup_update_page_stat() will serialize updates to PageDirty.
4600 * So mapping should be stable for dirty pages.
4601 */
4602 if (!anon && PageDirty(page)) {
4603 struct address_space *mapping = page_mapping(page);
4604
4605 if (mapping_cap_account_dirty(mapping)) {
4606 __this_cpu_sub(from->stat->count[MEM_CGROUP_STAT_DIRTY],
4607 nr_pages);
4608 __this_cpu_add(to->stat->count[MEM_CGROUP_STAT_DIRTY],
4609 nr_pages);
4610 }
4611 }
4612
Chen Gangb1b0dea2015-04-14 15:47:35 -07004613 if (PageWriteback(page)) {
4614 __this_cpu_sub(from->stat->count[MEM_CGROUP_STAT_WRITEBACK],
4615 nr_pages);
4616 __this_cpu_add(to->stat->count[MEM_CGROUP_STAT_WRITEBACK],
4617 nr_pages);
4618 }
4619
4620 /*
4621 * It is safe to change page->mem_cgroup here because the page
4622 * is referenced, charged, and isolated - we can't race with
4623 * uncharging, charging, migration, or LRU putback.
4624 */
4625
4626 /* caller should have done css_get */
4627 page->mem_cgroup = to;
4628 spin_unlock_irqrestore(&from->move_lock, flags);
4629
4630 ret = 0;
4631
4632 local_irq_disable();
4633 mem_cgroup_charge_statistics(to, page, nr_pages);
4634 memcg_check_events(to, page);
4635 mem_cgroup_charge_statistics(from, page, -nr_pages);
4636 memcg_check_events(from, page);
4637 local_irq_enable();
4638out_unlock:
4639 unlock_page(page);
4640out:
4641 return ret;
4642}
4643
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07004644static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004645 unsigned long addr, pte_t ptent, union mc_target *target)
4646{
Daisuke Nishimura02491442010-03-10 15:22:17 -08004647 struct page *page = NULL;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07004648 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08004649 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004650
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004651 if (pte_present(ptent))
4652 page = mc_handle_present_pte(vma, addr, ptent);
4653 else if (is_swap_pte(ptent))
4654 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Kirill A. Shutemov0661a332015-02-10 14:10:04 -08004655 else if (pte_none(ptent))
Daisuke Nishimura87946a72010-05-26 14:42:39 -07004656 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004657
4658 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07004659 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08004660 if (page) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004661 /*
Johannes Weiner0a31bc92014-08-08 14:19:22 -07004662 * Do only loose check w/o serialization.
Johannes Weiner1306a852014-12-10 15:44:52 -08004663 * mem_cgroup_move_account() checks the page is valid or
Johannes Weiner0a31bc92014-08-08 14:19:22 -07004664 * not under LRU exclusion.
Daisuke Nishimura02491442010-03-10 15:22:17 -08004665 */
Johannes Weiner1306a852014-12-10 15:44:52 -08004666 if (page->mem_cgroup == mc.from) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004667 ret = MC_TARGET_PAGE;
4668 if (target)
4669 target->page = page;
4670 }
4671 if (!ret || !target)
4672 put_page(page);
4673 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07004674 /* There is a swap entry and a page doesn't exist or isn't charged */
4675 if (ent.val && !ret &&
Li Zefan34c00c32013-09-23 16:56:01 +08004676 mem_cgroup_id(mc.from) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004677 ret = MC_TARGET_SWAP;
4678 if (target)
4679 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08004680 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004681 return ret;
4682}
4683
Naoya Horiguchi12724852012-03-21 16:34:28 -07004684#ifdef CONFIG_TRANSPARENT_HUGEPAGE
4685/*
4686 * We don't consider swapping or file mapped pages because THP does not
4687 * support them for now.
4688 * Caller should make sure that pmd_trans_huge(pmd) is true.
4689 */
4690static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
4691 unsigned long addr, pmd_t pmd, union mc_target *target)
4692{
4693 struct page *page = NULL;
Naoya Horiguchi12724852012-03-21 16:34:28 -07004694 enum mc_target_type ret = MC_TARGET_NONE;
4695
4696 page = pmd_page(pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08004697 VM_BUG_ON_PAGE(!page || !PageHead(page), page);
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08004698 if (!(mc.flags & MOVE_ANON))
Naoya Horiguchi12724852012-03-21 16:34:28 -07004699 return ret;
Johannes Weiner1306a852014-12-10 15:44:52 -08004700 if (page->mem_cgroup == mc.from) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07004701 ret = MC_TARGET_PAGE;
4702 if (target) {
4703 get_page(page);
4704 target->page = page;
4705 }
4706 }
4707 return ret;
4708}
4709#else
4710static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
4711 unsigned long addr, pmd_t pmd, union mc_target *target)
4712{
4713 return MC_TARGET_NONE;
4714}
4715#endif
4716
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004717static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
4718 unsigned long addr, unsigned long end,
4719 struct mm_walk *walk)
4720{
Naoya Horiguchi26bcd642015-02-11 15:27:57 -08004721 struct vm_area_struct *vma = walk->vma;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004722 pte_t *pte;
4723 spinlock_t *ptl;
4724
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08004725 if (pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07004726 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
4727 mc.precharge += HPAGE_PMD_NR;
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08004728 spin_unlock(ptl);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07004729 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07004730 }
Dave Hansen03319322011-03-22 16:32:56 -07004731
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07004732 if (pmd_trans_unstable(pmd))
4733 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004734 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
4735 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07004736 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004737 mc.precharge++; /* increment precharge temporarily */
4738 pte_unmap_unlock(pte - 1, ptl);
4739 cond_resched();
4740
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004741 return 0;
4742}
4743
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004744static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
4745{
4746 unsigned long precharge;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004747
Naoya Horiguchi26bcd642015-02-11 15:27:57 -08004748 struct mm_walk mem_cgroup_count_precharge_walk = {
4749 .pmd_entry = mem_cgroup_count_precharge_pte_range,
4750 .mm = mm,
4751 };
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08004752 down_read(&mm->mmap_sem);
Naoya Horiguchi26bcd642015-02-11 15:27:57 -08004753 walk_page_range(0, ~0UL, &mem_cgroup_count_precharge_walk);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08004754 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004755
4756 precharge = mc.precharge;
4757 mc.precharge = 0;
4758
4759 return precharge;
4760}
4761
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004762static int mem_cgroup_precharge_mc(struct mm_struct *mm)
4763{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08004764 unsigned long precharge = mem_cgroup_count_precharge(mm);
4765
4766 VM_BUG_ON(mc.moving_task);
4767 mc.moving_task = current;
4768 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004769}
4770
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08004771/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
4772static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004773{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07004774 struct mem_cgroup *from = mc.from;
4775 struct mem_cgroup *to = mc.to;
4776
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004777 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004778 if (mc.precharge) {
Johannes Weiner00501b52014-08-08 14:19:20 -07004779 cancel_charge(mc.to, mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004780 mc.precharge = 0;
4781 }
4782 /*
4783 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
4784 * we must uncharge here.
4785 */
4786 if (mc.moved_charge) {
Johannes Weiner00501b52014-08-08 14:19:20 -07004787 cancel_charge(mc.from, mc.moved_charge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004788 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004789 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004790 /* we must fixup refcnts and charges */
4791 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004792 /* uncharge swap account from the old cgroup */
Johannes Weinerce00a962014-09-05 08:43:57 -04004793 if (!mem_cgroup_is_root(mc.from))
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004794 page_counter_uncharge(&mc.from->memsw, mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004795
Johannes Weiner05b84302014-08-06 16:05:59 -07004796 /*
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004797 * we charged both to->memory and to->memsw, so we
4798 * should uncharge to->memory.
Johannes Weiner05b84302014-08-06 16:05:59 -07004799 */
Johannes Weinerce00a962014-09-05 08:43:57 -04004800 if (!mem_cgroup_is_root(mc.to))
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004801 page_counter_uncharge(&mc.to->memory, mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004802
Johannes Weinere8ea14c2014-12-10 15:42:42 -08004803 css_put_many(&mc.from->css, mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004804
Li Zefan40503772013-07-08 16:00:34 -07004805 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004806 mc.moved_swap = 0;
4807 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08004808 memcg_oom_recover(from);
4809 memcg_oom_recover(to);
4810 wake_up_all(&mc.waitq);
4811}
4812
4813static void mem_cgroup_clear_mc(void)
4814{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08004815 /*
4816 * we must clear moving_task before waking up waiters at the end of
4817 * task migration.
4818 */
4819 mc.moving_task = NULL;
4820 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07004821 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004822 mc.from = NULL;
4823 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07004824 spin_unlock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004825}
4826
Tejun Heoeb954192013-08-08 20:11:23 -04004827static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08004828 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004829{
Tejun Heoeb954192013-08-08 20:11:23 -04004830 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo9f2115f2015-09-08 15:01:10 -07004831 struct mem_cgroup *from;
4832 struct task_struct *p;
4833 struct mm_struct *mm;
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08004834 unsigned long move_flags;
Tejun Heo9f2115f2015-09-08 15:01:10 -07004835 int ret = 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004836
Glauber Costaee5e8472013-02-22 16:34:50 -08004837 /*
4838 * We are now commited to this value whatever it is. Changes in this
4839 * tunable will only affect upcoming migrations, not the current one.
4840 * So we need to save it, and keep it going.
4841 */
Jason Low4db0c3c2015-04-15 16:14:08 -07004842 move_flags = READ_ONCE(memcg->move_charge_at_immigrate);
Tejun Heo9f2115f2015-09-08 15:01:10 -07004843 if (!move_flags)
4844 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004845
Tejun Heo9f2115f2015-09-08 15:01:10 -07004846 p = cgroup_taskset_first(tset);
4847 from = mem_cgroup_from_task(p);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004848
Tejun Heo9f2115f2015-09-08 15:01:10 -07004849 VM_BUG_ON(from == memcg);
Johannes Weiner247b1442014-12-10 15:44:11 -08004850
Tejun Heo9f2115f2015-09-08 15:01:10 -07004851 mm = get_task_mm(p);
4852 if (!mm)
4853 return 0;
4854 /* We move charges only when we move a owner of the mm */
4855 if (mm->owner == p) {
4856 VM_BUG_ON(mc.from);
4857 VM_BUG_ON(mc.to);
4858 VM_BUG_ON(mc.precharge);
4859 VM_BUG_ON(mc.moved_charge);
4860 VM_BUG_ON(mc.moved_swap);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004861
Tejun Heo9f2115f2015-09-08 15:01:10 -07004862 spin_lock(&mc.lock);
4863 mc.from = from;
4864 mc.to = memcg;
4865 mc.flags = move_flags;
4866 spin_unlock(&mc.lock);
4867 /* We set mc.moving_task later */
4868
4869 ret = mem_cgroup_precharge_mc(mm);
4870 if (ret)
4871 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004872 }
Tejun Heo9f2115f2015-09-08 15:01:10 -07004873 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004874 return ret;
4875}
4876
Tejun Heoeb954192013-08-08 20:11:23 -04004877static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08004878 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004879{
Johannes Weiner4e2f2452014-12-10 15:44:08 -08004880 if (mc.to)
4881 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004882}
4883
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004884static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
4885 unsigned long addr, unsigned long end,
4886 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004887{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004888 int ret = 0;
Naoya Horiguchi26bcd642015-02-11 15:27:57 -08004889 struct vm_area_struct *vma = walk->vma;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004890 pte_t *pte;
4891 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07004892 enum mc_target_type target_type;
4893 union mc_target target;
4894 struct page *page;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004895
Naoya Horiguchi12724852012-03-21 16:34:28 -07004896 /*
4897 * We don't take compound_lock() here but no race with splitting thp
4898 * happens because:
4899 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
4900 * under splitting, which means there's no concurrent thp split,
4901 * - if another thread runs into split_huge_page() just after we
4902 * entered this if-block, the thread must wait for page table lock
4903 * to be unlocked in __split_huge_page_splitting(), where the main
4904 * part of thp split is not executed yet.
4905 */
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08004906 if (pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07004907 if (mc.precharge < HPAGE_PMD_NR) {
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08004908 spin_unlock(ptl);
Naoya Horiguchi12724852012-03-21 16:34:28 -07004909 return 0;
4910 }
4911 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
4912 if (target_type == MC_TARGET_PAGE) {
4913 page = target.page;
4914 if (!isolate_lru_page(page)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07004915 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
Johannes Weiner1306a852014-12-10 15:44:52 -08004916 mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07004917 mc.precharge -= HPAGE_PMD_NR;
4918 mc.moved_charge += HPAGE_PMD_NR;
4919 }
4920 putback_lru_page(page);
4921 }
4922 put_page(page);
4923 }
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08004924 spin_unlock(ptl);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07004925 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07004926 }
4927
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07004928 if (pmd_trans_unstable(pmd))
4929 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004930retry:
4931 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
4932 for (; addr != end; addr += PAGE_SIZE) {
4933 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004934 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004935
4936 if (!mc.precharge)
4937 break;
4938
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07004939 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004940 case MC_TARGET_PAGE:
4941 page = target.page;
4942 if (isolate_lru_page(page))
4943 goto put;
Johannes Weiner1306a852014-12-10 15:44:52 -08004944 if (!mem_cgroup_move_account(page, 1, mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004945 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004946 /* we uncharge from mc.from later. */
4947 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004948 }
4949 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07004950put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004951 put_page(page);
4952 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08004953 case MC_TARGET_SWAP:
4954 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004955 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004956 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004957 /* we fixup refcnts and charges later. */
4958 mc.moved_swap++;
4959 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08004960 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004961 default:
4962 break;
4963 }
4964 }
4965 pte_unmap_unlock(pte - 1, ptl);
4966 cond_resched();
4967
4968 if (addr != end) {
4969 /*
4970 * We have consumed all precharges we got in can_attach().
4971 * We try charge one by one, but don't do any additional
4972 * charges to mc.to if we have failed in charge once in attach()
4973 * phase.
4974 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08004975 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004976 if (!ret)
4977 goto retry;
4978 }
4979
4980 return ret;
4981}
4982
4983static void mem_cgroup_move_charge(struct mm_struct *mm)
4984{
Naoya Horiguchi26bcd642015-02-11 15:27:57 -08004985 struct mm_walk mem_cgroup_move_charge_walk = {
4986 .pmd_entry = mem_cgroup_move_charge_pte_range,
4987 .mm = mm,
4988 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08004989
4990 lru_add_drain_all();
Johannes Weiner312722c2014-12-10 15:44:25 -08004991 /*
4992 * Signal mem_cgroup_begin_page_stat() to take the memcg's
4993 * move_lock while we're moving its pages to another memcg.
4994 * Then wait for already started RCU-only updates to finish.
4995 */
4996 atomic_inc(&mc.from->moving_account);
4997 synchronize_rcu();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08004998retry:
4999 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
5000 /*
5001 * Someone who are holding the mmap_sem might be waiting in
5002 * waitq. So we cancel all extra charges, wake up all waiters,
5003 * and retry. Because we cancel precharges, we might not be able
5004 * to move enough charges, but moving charge is a best-effort
5005 * feature anyway, so it wouldn't be a big problem.
5006 */
5007 __mem_cgroup_clear_mc();
5008 cond_resched();
5009 goto retry;
5010 }
Naoya Horiguchi26bcd642015-02-11 15:27:57 -08005011 /*
5012 * When we have consumed all precharges and failed in doing
5013 * additional charge, the page walk just aborts.
5014 */
5015 walk_page_range(0, ~0UL, &mem_cgroup_move_charge_walk);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005016 up_read(&mm->mmap_sem);
Johannes Weiner312722c2014-12-10 15:44:25 -08005017 atomic_dec(&mc.from->moving_account);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005018}
5019
Tejun Heoeb954192013-08-08 20:11:23 -04005020static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08005021 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08005022{
Tejun Heo2f7ee562011-12-12 18:12:21 -08005023 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005024 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005025
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005026 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005027 if (mc.to)
5028 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005029 mmput(mm);
5030 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07005031 if (mc.to)
5032 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08005033}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005034#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04005035static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08005036 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005037{
5038 return 0;
5039}
Tejun Heoeb954192013-08-08 20:11:23 -04005040static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08005041 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005042{
5043}
Tejun Heoeb954192013-08-08 20:11:23 -04005044static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08005045 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07005046{
5047}
5048#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08005049
Tejun Heof00baae2013-04-15 13:41:15 -07005050/*
5051 * Cgroup retains root cgroups across [un]mount cycles making it necessary
Tejun Heoaa6ec292014-07-09 10:08:08 -04005052 * to verify whether we're attached to the default hierarchy on each mount
5053 * attempt.
Tejun Heof00baae2013-04-15 13:41:15 -07005054 */
Tejun Heoeb954192013-08-08 20:11:23 -04005055static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07005056{
5057 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -04005058 * use_hierarchy is forced on the default hierarchy. cgroup core
Tejun Heof00baae2013-04-15 13:41:15 -07005059 * guarantees that @root doesn't have any children, so turning it
5060 * on for the root memcg is enough.
5061 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04005062 if (cgroup_on_dfl(root_css->cgroup))
Vladimir Davydov7feee592015-03-12 16:26:19 -07005063 root_mem_cgroup->use_hierarchy = true;
5064 else
5065 root_mem_cgroup->use_hierarchy = false;
Tejun Heof00baae2013-04-15 13:41:15 -07005066}
5067
Johannes Weiner241994e2015-02-11 15:26:06 -08005068static u64 memory_current_read(struct cgroup_subsys_state *css,
5069 struct cftype *cft)
5070{
5071 return mem_cgroup_usage(mem_cgroup_from_css(css), false);
5072}
5073
5074static int memory_low_show(struct seq_file *m, void *v)
5075{
5076 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Jason Low4db0c3c2015-04-15 16:14:08 -07005077 unsigned long low = READ_ONCE(memcg->low);
Johannes Weiner241994e2015-02-11 15:26:06 -08005078
5079 if (low == PAGE_COUNTER_MAX)
Johannes Weinerd2973692015-02-27 15:52:04 -08005080 seq_puts(m, "max\n");
Johannes Weiner241994e2015-02-11 15:26:06 -08005081 else
5082 seq_printf(m, "%llu\n", (u64)low * PAGE_SIZE);
5083
5084 return 0;
5085}
5086
5087static ssize_t memory_low_write(struct kernfs_open_file *of,
5088 char *buf, size_t nbytes, loff_t off)
5089{
5090 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
5091 unsigned long low;
5092 int err;
5093
5094 buf = strstrip(buf);
Johannes Weinerd2973692015-02-27 15:52:04 -08005095 err = page_counter_memparse(buf, "max", &low);
Johannes Weiner241994e2015-02-11 15:26:06 -08005096 if (err)
5097 return err;
5098
5099 memcg->low = low;
5100
5101 return nbytes;
5102}
5103
5104static int memory_high_show(struct seq_file *m, void *v)
5105{
5106 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Jason Low4db0c3c2015-04-15 16:14:08 -07005107 unsigned long high = READ_ONCE(memcg->high);
Johannes Weiner241994e2015-02-11 15:26:06 -08005108
5109 if (high == PAGE_COUNTER_MAX)
Johannes Weinerd2973692015-02-27 15:52:04 -08005110 seq_puts(m, "max\n");
Johannes Weiner241994e2015-02-11 15:26:06 -08005111 else
5112 seq_printf(m, "%llu\n", (u64)high * PAGE_SIZE);
5113
5114 return 0;
5115}
5116
5117static ssize_t memory_high_write(struct kernfs_open_file *of,
5118 char *buf, size_t nbytes, loff_t off)
5119{
5120 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
5121 unsigned long high;
5122 int err;
5123
5124 buf = strstrip(buf);
Johannes Weinerd2973692015-02-27 15:52:04 -08005125 err = page_counter_memparse(buf, "max", &high);
Johannes Weiner241994e2015-02-11 15:26:06 -08005126 if (err)
5127 return err;
5128
5129 memcg->high = high;
5130
Tejun Heo2529bb32015-05-22 18:23:34 -04005131 memcg_wb_domain_size_changed(memcg);
Johannes Weiner241994e2015-02-11 15:26:06 -08005132 return nbytes;
5133}
5134
5135static int memory_max_show(struct seq_file *m, void *v)
5136{
5137 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
Jason Low4db0c3c2015-04-15 16:14:08 -07005138 unsigned long max = READ_ONCE(memcg->memory.limit);
Johannes Weiner241994e2015-02-11 15:26:06 -08005139
5140 if (max == PAGE_COUNTER_MAX)
Johannes Weinerd2973692015-02-27 15:52:04 -08005141 seq_puts(m, "max\n");
Johannes Weiner241994e2015-02-11 15:26:06 -08005142 else
5143 seq_printf(m, "%llu\n", (u64)max * PAGE_SIZE);
5144
5145 return 0;
5146}
5147
5148static ssize_t memory_max_write(struct kernfs_open_file *of,
5149 char *buf, size_t nbytes, loff_t off)
5150{
5151 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
5152 unsigned long max;
5153 int err;
5154
5155 buf = strstrip(buf);
Johannes Weinerd2973692015-02-27 15:52:04 -08005156 err = page_counter_memparse(buf, "max", &max);
Johannes Weiner241994e2015-02-11 15:26:06 -08005157 if (err)
5158 return err;
5159
5160 err = mem_cgroup_resize_limit(memcg, max);
5161 if (err)
5162 return err;
5163
Tejun Heo2529bb32015-05-22 18:23:34 -04005164 memcg_wb_domain_size_changed(memcg);
Johannes Weiner241994e2015-02-11 15:26:06 -08005165 return nbytes;
5166}
5167
5168static int memory_events_show(struct seq_file *m, void *v)
5169{
5170 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
5171
5172 seq_printf(m, "low %lu\n", mem_cgroup_read_events(memcg, MEMCG_LOW));
5173 seq_printf(m, "high %lu\n", mem_cgroup_read_events(memcg, MEMCG_HIGH));
5174 seq_printf(m, "max %lu\n", mem_cgroup_read_events(memcg, MEMCG_MAX));
5175 seq_printf(m, "oom %lu\n", mem_cgroup_read_events(memcg, MEMCG_OOM));
5176
5177 return 0;
5178}
5179
5180static struct cftype memory_files[] = {
5181 {
5182 .name = "current",
5183 .read_u64 = memory_current_read,
5184 },
5185 {
5186 .name = "low",
5187 .flags = CFTYPE_NOT_ON_ROOT,
5188 .seq_show = memory_low_show,
5189 .write = memory_low_write,
5190 },
5191 {
5192 .name = "high",
5193 .flags = CFTYPE_NOT_ON_ROOT,
5194 .seq_show = memory_high_show,
5195 .write = memory_high_write,
5196 },
5197 {
5198 .name = "max",
5199 .flags = CFTYPE_NOT_ON_ROOT,
5200 .seq_show = memory_max_show,
5201 .write = memory_max_write,
5202 },
5203 {
5204 .name = "events",
5205 .flags = CFTYPE_NOT_ON_ROOT,
5206 .seq_show = memory_events_show,
5207 },
5208 { } /* terminate */
5209};
5210
Tejun Heo073219e2014-02-08 10:36:58 -05005211struct cgroup_subsys memory_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005212 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08005213 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08005214 .css_offline = mem_cgroup_css_offline,
5215 .css_free = mem_cgroup_css_free,
Tejun Heo1ced9532014-07-08 18:02:57 -04005216 .css_reset = mem_cgroup_css_reset,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005217 .can_attach = mem_cgroup_can_attach,
5218 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08005219 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07005220 .bind = mem_cgroup_bind,
Johannes Weiner241994e2015-02-11 15:26:06 -08005221 .dfl_cftypes = memory_files,
5222 .legacy_cftypes = mem_cgroup_legacy_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005223 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005224};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005225
Johannes Weiner241994e2015-02-11 15:26:06 -08005226/**
Johannes Weiner241994e2015-02-11 15:26:06 -08005227 * mem_cgroup_low - check if memory consumption is below the normal range
5228 * @root: the highest ancestor to consider
5229 * @memcg: the memory cgroup to check
5230 *
5231 * Returns %true if memory consumption of @memcg, and that of all
5232 * configurable ancestors up to @root, is below the normal range.
5233 */
5234bool mem_cgroup_low(struct mem_cgroup *root, struct mem_cgroup *memcg)
5235{
5236 if (mem_cgroup_disabled())
5237 return false;
5238
5239 /*
5240 * The toplevel group doesn't have a configurable range, so
5241 * it's never low when looked at directly, and it is not
5242 * considered an ancestor when assessing the hierarchy.
5243 */
5244
5245 if (memcg == root_mem_cgroup)
5246 return false;
5247
Michal Hocko4e54ded2015-02-27 15:51:46 -08005248 if (page_counter_read(&memcg->memory) >= memcg->low)
Johannes Weiner241994e2015-02-11 15:26:06 -08005249 return false;
5250
5251 while (memcg != root) {
5252 memcg = parent_mem_cgroup(memcg);
5253
5254 if (memcg == root_mem_cgroup)
5255 break;
5256
Michal Hocko4e54ded2015-02-27 15:51:46 -08005257 if (page_counter_read(&memcg->memory) >= memcg->low)
Johannes Weiner241994e2015-02-11 15:26:06 -08005258 return false;
5259 }
5260 return true;
5261}
5262
Johannes Weiner00501b52014-08-08 14:19:20 -07005263/**
5264 * mem_cgroup_try_charge - try charging a page
5265 * @page: page to charge
5266 * @mm: mm context of the victim
5267 * @gfp_mask: reclaim mode
5268 * @memcgp: charged memcg return
5269 *
5270 * Try to charge @page to the memcg that @mm belongs to, reclaiming
5271 * pages according to @gfp_mask if necessary.
5272 *
5273 * Returns 0 on success, with *@memcgp pointing to the charged memcg.
5274 * Otherwise, an error code is returned.
5275 *
5276 * After page->mapping has been set up, the caller must finalize the
5277 * charge with mem_cgroup_commit_charge(). Or abort the transaction
5278 * with mem_cgroup_cancel_charge() in case page instantiation fails.
5279 */
5280int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
5281 gfp_t gfp_mask, struct mem_cgroup **memcgp)
5282{
5283 struct mem_cgroup *memcg = NULL;
5284 unsigned int nr_pages = 1;
5285 int ret = 0;
5286
5287 if (mem_cgroup_disabled())
5288 goto out;
5289
5290 if (PageSwapCache(page)) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005291 /*
5292 * Every swap fault against a single page tries to charge the
5293 * page, bail as early as possible. shmem_unuse() encounters
5294 * already charged pages, too. The USED bit is protected by
5295 * the page lock, which serializes swap cache removal, which
5296 * in turn serializes uncharging.
5297 */
Vladimir Davydove993d902015-09-09 15:35:35 -07005298 VM_BUG_ON_PAGE(!PageLocked(page), page);
Johannes Weiner1306a852014-12-10 15:44:52 -08005299 if (page->mem_cgroup)
Johannes Weiner00501b52014-08-08 14:19:20 -07005300 goto out;
Vladimir Davydove993d902015-09-09 15:35:35 -07005301
5302 if (do_swap_account) {
5303 swp_entry_t ent = { .val = page_private(page), };
5304 unsigned short id = lookup_swap_cgroup_id(ent);
5305
5306 rcu_read_lock();
5307 memcg = mem_cgroup_from_id(id);
5308 if (memcg && !css_tryget_online(&memcg->css))
5309 memcg = NULL;
5310 rcu_read_unlock();
5311 }
Johannes Weiner00501b52014-08-08 14:19:20 -07005312 }
5313
5314 if (PageTransHuge(page)) {
5315 nr_pages <<= compound_order(page);
5316 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
5317 }
5318
Johannes Weiner00501b52014-08-08 14:19:20 -07005319 if (!memcg)
5320 memcg = get_mem_cgroup_from_mm(mm);
5321
5322 ret = try_charge(memcg, gfp_mask, nr_pages);
5323
5324 css_put(&memcg->css);
5325
5326 if (ret == -EINTR) {
5327 memcg = root_mem_cgroup;
5328 ret = 0;
5329 }
5330out:
5331 *memcgp = memcg;
5332 return ret;
5333}
5334
5335/**
5336 * mem_cgroup_commit_charge - commit a page charge
5337 * @page: page to charge
5338 * @memcg: memcg to charge the page to
5339 * @lrucare: page might be on LRU already
5340 *
5341 * Finalize a charge transaction started by mem_cgroup_try_charge(),
5342 * after page->mapping has been set up. This must happen atomically
5343 * as part of the page instantiation, i.e. under the page table lock
5344 * for anonymous pages, under the page lock for page and swap cache.
5345 *
5346 * In addition, the page must not be on the LRU during the commit, to
5347 * prevent racing with task migration. If it might be, use @lrucare.
5348 *
5349 * Use mem_cgroup_cancel_charge() to cancel the transaction instead.
5350 */
5351void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
5352 bool lrucare)
5353{
5354 unsigned int nr_pages = 1;
5355
5356 VM_BUG_ON_PAGE(!page->mapping, page);
5357 VM_BUG_ON_PAGE(PageLRU(page) && !lrucare, page);
5358
5359 if (mem_cgroup_disabled())
5360 return;
5361 /*
5362 * Swap faults will attempt to charge the same page multiple
5363 * times. But reuse_swap_page() might have removed the page
5364 * from swapcache already, so we can't check PageSwapCache().
5365 */
5366 if (!memcg)
5367 return;
5368
Johannes Weiner6abb5a82014-08-08 14:19:33 -07005369 commit_charge(page, memcg, lrucare);
5370
Johannes Weiner00501b52014-08-08 14:19:20 -07005371 if (PageTransHuge(page)) {
5372 nr_pages <<= compound_order(page);
5373 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
5374 }
5375
Johannes Weiner6abb5a82014-08-08 14:19:33 -07005376 local_irq_disable();
5377 mem_cgroup_charge_statistics(memcg, page, nr_pages);
5378 memcg_check_events(memcg, page);
5379 local_irq_enable();
Johannes Weiner00501b52014-08-08 14:19:20 -07005380
5381 if (do_swap_account && PageSwapCache(page)) {
5382 swp_entry_t entry = { .val = page_private(page) };
5383 /*
5384 * The swap entry might not get freed for a long time,
5385 * let's not wait for it. The page already received a
5386 * memory+swap charge, drop the swap entry duplicate.
5387 */
5388 mem_cgroup_uncharge_swap(entry);
5389 }
5390}
5391
5392/**
5393 * mem_cgroup_cancel_charge - cancel a page charge
5394 * @page: page to charge
5395 * @memcg: memcg to charge the page to
5396 *
5397 * Cancel a charge transaction started by mem_cgroup_try_charge().
5398 */
5399void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg)
5400{
5401 unsigned int nr_pages = 1;
5402
5403 if (mem_cgroup_disabled())
5404 return;
5405 /*
5406 * Swap faults will attempt to charge the same page multiple
5407 * times. But reuse_swap_page() might have removed the page
5408 * from swapcache already, so we can't check PageSwapCache().
5409 */
5410 if (!memcg)
5411 return;
5412
5413 if (PageTransHuge(page)) {
5414 nr_pages <<= compound_order(page);
5415 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
5416 }
5417
5418 cancel_charge(memcg, nr_pages);
5419}
5420
Johannes Weiner747db952014-08-08 14:19:24 -07005421static void uncharge_batch(struct mem_cgroup *memcg, unsigned long pgpgout,
Johannes Weiner747db952014-08-08 14:19:24 -07005422 unsigned long nr_anon, unsigned long nr_file,
5423 unsigned long nr_huge, struct page *dummy_page)
5424{
Johannes Weiner18eca2e2014-12-10 15:43:57 -08005425 unsigned long nr_pages = nr_anon + nr_file;
Johannes Weiner747db952014-08-08 14:19:24 -07005426 unsigned long flags;
5427
Johannes Weinerce00a962014-09-05 08:43:57 -04005428 if (!mem_cgroup_is_root(memcg)) {
Johannes Weiner18eca2e2014-12-10 15:43:57 -08005429 page_counter_uncharge(&memcg->memory, nr_pages);
5430 if (do_swap_account)
5431 page_counter_uncharge(&memcg->memsw, nr_pages);
Johannes Weinerce00a962014-09-05 08:43:57 -04005432 memcg_oom_recover(memcg);
5433 }
Johannes Weiner747db952014-08-08 14:19:24 -07005434
5435 local_irq_save(flags);
5436 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS], nr_anon);
5437 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_CACHE], nr_file);
5438 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE], nr_huge);
5439 __this_cpu_add(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT], pgpgout);
Johannes Weiner18eca2e2014-12-10 15:43:57 -08005440 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Johannes Weiner747db952014-08-08 14:19:24 -07005441 memcg_check_events(memcg, dummy_page);
5442 local_irq_restore(flags);
Johannes Weinere8ea14c2014-12-10 15:42:42 -08005443
5444 if (!mem_cgroup_is_root(memcg))
Johannes Weiner18eca2e2014-12-10 15:43:57 -08005445 css_put_many(&memcg->css, nr_pages);
Johannes Weiner747db952014-08-08 14:19:24 -07005446}
5447
5448static void uncharge_list(struct list_head *page_list)
5449{
5450 struct mem_cgroup *memcg = NULL;
Johannes Weiner747db952014-08-08 14:19:24 -07005451 unsigned long nr_anon = 0;
5452 unsigned long nr_file = 0;
5453 unsigned long nr_huge = 0;
5454 unsigned long pgpgout = 0;
Johannes Weiner747db952014-08-08 14:19:24 -07005455 struct list_head *next;
5456 struct page *page;
5457
5458 next = page_list->next;
5459 do {
5460 unsigned int nr_pages = 1;
Johannes Weiner747db952014-08-08 14:19:24 -07005461
5462 page = list_entry(next, struct page, lru);
5463 next = page->lru.next;
5464
5465 VM_BUG_ON_PAGE(PageLRU(page), page);
5466 VM_BUG_ON_PAGE(page_count(page), page);
5467
Johannes Weiner1306a852014-12-10 15:44:52 -08005468 if (!page->mem_cgroup)
Johannes Weiner747db952014-08-08 14:19:24 -07005469 continue;
5470
5471 /*
5472 * Nobody should be changing or seriously looking at
Johannes Weiner1306a852014-12-10 15:44:52 -08005473 * page->mem_cgroup at this point, we have fully
Johannes Weiner29833312014-12-10 15:44:02 -08005474 * exclusive access to the page.
Johannes Weiner747db952014-08-08 14:19:24 -07005475 */
5476
Johannes Weiner1306a852014-12-10 15:44:52 -08005477 if (memcg != page->mem_cgroup) {
Johannes Weiner747db952014-08-08 14:19:24 -07005478 if (memcg) {
Johannes Weiner18eca2e2014-12-10 15:43:57 -08005479 uncharge_batch(memcg, pgpgout, nr_anon, nr_file,
5480 nr_huge, page);
5481 pgpgout = nr_anon = nr_file = nr_huge = 0;
Johannes Weiner747db952014-08-08 14:19:24 -07005482 }
Johannes Weiner1306a852014-12-10 15:44:52 -08005483 memcg = page->mem_cgroup;
Johannes Weiner747db952014-08-08 14:19:24 -07005484 }
5485
5486 if (PageTransHuge(page)) {
5487 nr_pages <<= compound_order(page);
5488 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
5489 nr_huge += nr_pages;
5490 }
5491
5492 if (PageAnon(page))
5493 nr_anon += nr_pages;
5494 else
5495 nr_file += nr_pages;
5496
Johannes Weiner1306a852014-12-10 15:44:52 -08005497 page->mem_cgroup = NULL;
Johannes Weiner747db952014-08-08 14:19:24 -07005498
5499 pgpgout++;
5500 } while (next != page_list);
5501
5502 if (memcg)
Johannes Weiner18eca2e2014-12-10 15:43:57 -08005503 uncharge_batch(memcg, pgpgout, nr_anon, nr_file,
5504 nr_huge, page);
Johannes Weiner747db952014-08-08 14:19:24 -07005505}
5506
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005507/**
5508 * mem_cgroup_uncharge - uncharge a page
5509 * @page: page to uncharge
5510 *
5511 * Uncharge a page previously charged with mem_cgroup_try_charge() and
5512 * mem_cgroup_commit_charge().
5513 */
5514void mem_cgroup_uncharge(struct page *page)
5515{
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005516 if (mem_cgroup_disabled())
5517 return;
5518
Johannes Weiner747db952014-08-08 14:19:24 -07005519 /* Don't touch page->lru of any random page, pre-check: */
Johannes Weiner1306a852014-12-10 15:44:52 -08005520 if (!page->mem_cgroup)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005521 return;
5522
Johannes Weiner747db952014-08-08 14:19:24 -07005523 INIT_LIST_HEAD(&page->lru);
5524 uncharge_list(&page->lru);
5525}
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005526
Johannes Weiner747db952014-08-08 14:19:24 -07005527/**
5528 * mem_cgroup_uncharge_list - uncharge a list of page
5529 * @page_list: list of pages to uncharge
5530 *
5531 * Uncharge a list of pages previously charged with
5532 * mem_cgroup_try_charge() and mem_cgroup_commit_charge().
5533 */
5534void mem_cgroup_uncharge_list(struct list_head *page_list)
5535{
5536 if (mem_cgroup_disabled())
5537 return;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005538
Johannes Weiner747db952014-08-08 14:19:24 -07005539 if (!list_empty(page_list))
5540 uncharge_list(page_list);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005541}
5542
5543/**
5544 * mem_cgroup_migrate - migrate a charge to another page
5545 * @oldpage: currently charged page
5546 * @newpage: page to transfer the charge to
Michal Hockof5e03a42015-02-05 12:25:14 -08005547 * @lrucare: either or both pages might be on the LRU already
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005548 *
5549 * Migrate the charge from @oldpage to @newpage.
5550 *
5551 * Both pages must be locked, @newpage->mapping must be set up.
5552 */
5553void mem_cgroup_migrate(struct page *oldpage, struct page *newpage,
5554 bool lrucare)
5555{
Johannes Weiner29833312014-12-10 15:44:02 -08005556 struct mem_cgroup *memcg;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005557 int isolated;
5558
5559 VM_BUG_ON_PAGE(!PageLocked(oldpage), oldpage);
5560 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
5561 VM_BUG_ON_PAGE(!lrucare && PageLRU(oldpage), oldpage);
5562 VM_BUG_ON_PAGE(!lrucare && PageLRU(newpage), newpage);
5563 VM_BUG_ON_PAGE(PageAnon(oldpage) != PageAnon(newpage), newpage);
Johannes Weiner6abb5a82014-08-08 14:19:33 -07005564 VM_BUG_ON_PAGE(PageTransHuge(oldpage) != PageTransHuge(newpage),
5565 newpage);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005566
5567 if (mem_cgroup_disabled())
5568 return;
5569
5570 /* Page cache replacement: new page already charged? */
Johannes Weiner1306a852014-12-10 15:44:52 -08005571 if (newpage->mem_cgroup)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005572 return;
5573
Johannes Weiner7d5e3242014-12-10 15:43:46 -08005574 /*
5575 * Swapcache readahead pages can get migrated before being
5576 * charged, and migration from compaction can happen to an
5577 * uncharged page when the PFN walker finds a page that
5578 * reclaim just put back on the LRU but has not released yet.
5579 */
Johannes Weiner1306a852014-12-10 15:44:52 -08005580 memcg = oldpage->mem_cgroup;
Johannes Weiner29833312014-12-10 15:44:02 -08005581 if (!memcg)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005582 return;
5583
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005584 if (lrucare)
5585 lock_page_lru(oldpage, &isolated);
5586
Johannes Weiner1306a852014-12-10 15:44:52 -08005587 oldpage->mem_cgroup = NULL;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005588
5589 if (lrucare)
5590 unlock_page_lru(oldpage, isolated);
5591
Johannes Weiner29833312014-12-10 15:44:02 -08005592 commit_charge(newpage, memcg, lrucare);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005593}
5594
Michal Hocko2d110852013-02-22 16:34:43 -08005595/*
Michal Hocko10813122013-02-22 16:35:41 -08005596 * subsys_initcall() for memory controller.
5597 *
5598 * Some parts like hotcpu_notifier() have to be initialized from this context
5599 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
5600 * everything that doesn't depend on a specific mem_cgroup structure should
5601 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08005602 */
5603static int __init mem_cgroup_init(void)
5604{
Johannes Weiner95a045f2015-02-11 15:26:33 -08005605 int cpu, node;
5606
Michal Hocko2d110852013-02-22 16:34:43 -08005607 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Johannes Weiner95a045f2015-02-11 15:26:33 -08005608
5609 for_each_possible_cpu(cpu)
5610 INIT_WORK(&per_cpu_ptr(&memcg_stock, cpu)->work,
5611 drain_local_stock);
5612
5613 for_each_node(node) {
5614 struct mem_cgroup_tree_per_node *rtpn;
5615 int zone;
5616
5617 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL,
5618 node_online(node) ? node : NUMA_NO_NODE);
5619
5620 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5621 struct mem_cgroup_tree_per_zone *rtpz;
5622
5623 rtpz = &rtpn->rb_tree_per_zone[zone];
5624 rtpz->rb_root = RB_ROOT;
5625 spin_lock_init(&rtpz->lock);
5626 }
5627 soft_limit_tree.rb_tree_per_node[node] = rtpn;
5628 }
5629
Michal Hocko2d110852013-02-22 16:34:43 -08005630 return 0;
5631}
5632subsys_initcall(mem_cgroup_init);
Johannes Weiner21afa382015-02-11 15:26:36 -08005633
5634#ifdef CONFIG_MEMCG_SWAP
5635/**
5636 * mem_cgroup_swapout - transfer a memsw charge to swap
5637 * @page: page whose memsw charge to transfer
5638 * @entry: swap entry to move the charge to
5639 *
5640 * Transfer the memsw charge of @page to @entry.
5641 */
5642void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
5643{
5644 struct mem_cgroup *memcg;
5645 unsigned short oldid;
5646
5647 VM_BUG_ON_PAGE(PageLRU(page), page);
5648 VM_BUG_ON_PAGE(page_count(page), page);
5649
5650 if (!do_swap_account)
5651 return;
5652
5653 memcg = page->mem_cgroup;
5654
5655 /* Readahead page, never charged */
5656 if (!memcg)
5657 return;
5658
5659 oldid = swap_cgroup_record(entry, mem_cgroup_id(memcg));
5660 VM_BUG_ON_PAGE(oldid, page);
5661 mem_cgroup_swap_statistics(memcg, true);
5662
5663 page->mem_cgroup = NULL;
5664
5665 if (!mem_cgroup_is_root(memcg))
5666 page_counter_uncharge(&memcg->memory, 1);
5667
Sebastian Andrzej Siewiorce9ce662015-09-04 15:47:50 -07005668 /*
5669 * Interrupts should be disabled here because the caller holds the
5670 * mapping->tree_lock lock which is taken with interrupts-off. It is
5671 * important here to have the interrupts disabled because it is the
5672 * only synchronisation we have for udpating the per-CPU variables.
5673 */
5674 VM_BUG_ON(!irqs_disabled());
Johannes Weiner21afa382015-02-11 15:26:36 -08005675 mem_cgroup_charge_statistics(memcg, page, -1);
5676 memcg_check_events(memcg, page);
5677}
5678
5679/**
5680 * mem_cgroup_uncharge_swap - uncharge a swap entry
5681 * @entry: swap entry to uncharge
5682 *
5683 * Drop the memsw charge associated with @entry.
5684 */
5685void mem_cgroup_uncharge_swap(swp_entry_t entry)
5686{
5687 struct mem_cgroup *memcg;
5688 unsigned short id;
5689
5690 if (!do_swap_account)
5691 return;
5692
5693 id = swap_cgroup_record(entry, 0);
5694 rcu_read_lock();
Vladimir Davydovadbe4272015-04-15 16:13:00 -07005695 memcg = mem_cgroup_from_id(id);
Johannes Weiner21afa382015-02-11 15:26:36 -08005696 if (memcg) {
5697 if (!mem_cgroup_is_root(memcg))
5698 page_counter_uncharge(&memcg->memsw, 1);
5699 mem_cgroup_swap_statistics(memcg, false);
5700 css_put(&memcg->css);
5701 }
5702 rcu_read_unlock();
5703}
5704
5705/* for remember boot option*/
5706#ifdef CONFIG_MEMCG_SWAP_ENABLED
5707static int really_do_swap_account __initdata = 1;
5708#else
5709static int really_do_swap_account __initdata;
5710#endif
5711
5712static int __init enable_swap_account(char *s)
5713{
5714 if (!strcmp(s, "1"))
5715 really_do_swap_account = 1;
5716 else if (!strcmp(s, "0"))
5717 really_do_swap_account = 0;
5718 return 1;
5719}
5720__setup("swapaccount=", enable_swap_account);
5721
5722static struct cftype memsw_cgroup_files[] = {
5723 {
5724 .name = "memsw.usage_in_bytes",
5725 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5726 .read_u64 = mem_cgroup_read_u64,
5727 },
5728 {
5729 .name = "memsw.max_usage_in_bytes",
5730 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5731 .write = mem_cgroup_reset,
5732 .read_u64 = mem_cgroup_read_u64,
5733 },
5734 {
5735 .name = "memsw.limit_in_bytes",
5736 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5737 .write = mem_cgroup_write,
5738 .read_u64 = mem_cgroup_read_u64,
5739 },
5740 {
5741 .name = "memsw.failcnt",
5742 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5743 .write = mem_cgroup_reset,
5744 .read_u64 = mem_cgroup_read_u64,
5745 },
5746 { }, /* terminate */
5747};
5748
5749static int __init mem_cgroup_swap_init(void)
5750{
5751 if (!mem_cgroup_disabled() && really_do_swap_account) {
5752 do_swap_account = 1;
5753 WARN_ON(cgroup_add_legacy_cftypes(&memory_cgrp_subsys,
5754 memsw_cgroup_files));
5755 }
5756 return 0;
5757}
5758subsys_initcall(mem_cgroup_swap_init);
5759
5760#endif /* CONFIG_MEMCG_SWAP */