blob: 87a448dd9c104f4833d040a51689d8346591d4ce [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08009 * Memory thresholds
10 * Copyright (C) 2009 Nokia Corporation
11 * Author: Kirill A. Shutemov
12 *
Glauber Costa7ae1e1d2012-12-18 14:21:56 -080013 * Kernel Memory Controller
14 * Copyright (C) 2012 Parallels Inc. and Google Inc.
15 * Authors: Glauber Costa and Suleiman Souhlal
16 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -080017 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 */
27
28#include <linux/res_counter.h>
29#include <linux/memcontrol.h>
30#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080031#include <linux/mm.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080032#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080033#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080034#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080035#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080036#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080037#include <linux/bit_spinlock.h>
38#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070039#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040040#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080041#include <linux/mutex.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070042#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080043#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080044#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080045#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080046#include <linux/eventfd.h>
47#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080048#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080049#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070050#include <linux/vmalloc.h>
Anton Vorontsov70ddf632013-04-29 15:08:31 -070051#include <linux/vmpressure.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070052#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070053#include <linux/page_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080054#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070055#include <linux/oom.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080056#include "internal.h"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000057#include <net/sock.h>
Michal Hocko4bd2c1e2012-10-08 16:33:10 -070058#include <net/ip.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +000059#include <net/tcp_memcontrol.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080060
Balbir Singh8697d332008-02-07 00:13:59 -080061#include <asm/uaccess.h>
62
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070063#include <trace/events/vmscan.h>
64
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070065struct cgroup_subsys mem_cgroup_subsys __read_mostly;
David Rientjes68ae5642012-12-12 13:51:57 -080066EXPORT_SYMBOL(mem_cgroup_subsys);
67
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070068#define MEM_CGROUP_RECLAIM_RETRIES 5
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -070069static struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080070
Andrew Mortonc255a452012-07-31 16:43:02 -070071#ifdef CONFIG_MEMCG_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070072/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080073int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080074
75/* for remember boot option*/
Andrew Mortonc255a452012-07-31 16:43:02 -070076#ifdef CONFIG_MEMCG_SWAP_ENABLED
Michal Hockoa42c3902010-11-24 12:57:08 -080077static int really_do_swap_account __initdata = 1;
78#else
79static int really_do_swap_account __initdata = 0;
80#endif
81
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080082#else
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -070083#define do_swap_account 0
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080084#endif
85
86
Balbir Singh8cdea7c2008-02-07 00:13:50 -080087/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080088 * Statistics for memory cgroup.
89 */
90enum mem_cgroup_stat_index {
91 /*
92 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
93 */
David Rientjesb070e652013-05-07 16:18:09 -070094 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
95 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
96 MEM_CGROUP_STAT_RSS_HUGE, /* # of pages charged as anon huge */
97 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
98 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080099 MEM_CGROUP_STAT_NSTATS,
100};
101
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700102static const char * const mem_cgroup_stat_names[] = {
103 "cache",
104 "rss",
David Rientjesb070e652013-05-07 16:18:09 -0700105 "rss_huge",
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700106 "mapped_file",
107 "swap",
108};
109
Johannes Weinere9f89742011-03-23 16:42:37 -0700110enum mem_cgroup_events_index {
111 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
112 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -0700113 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
114 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700115 MEM_CGROUP_EVENTS_NSTATS,
116};
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700117
118static const char * const mem_cgroup_events_names[] = {
119 "pgpgin",
120 "pgpgout",
121 "pgfault",
122 "pgmajfault",
123};
124
Sha Zhengju58cf1882013-02-22 16:32:05 -0800125static const char * const mem_cgroup_lru_names[] = {
126 "inactive_anon",
127 "active_anon",
128 "inactive_file",
129 "active_file",
130 "unevictable",
131};
132
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700133/*
134 * Per memcg event counter is incremented at every pagein/pageout. With THP,
135 * it will be incremated by the number of pages. This counter is used for
136 * for trigger some periodic events. This is straightforward and better
137 * than using jiffies etc. to handle periodic memcg event.
138 */
139enum mem_cgroup_events_target {
140 MEM_CGROUP_TARGET_THRESH,
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -0700141 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700142 MEM_CGROUP_NTARGETS,
143};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700144#define THRESHOLDS_EVENTS_TARGET 128
145#define SOFTLIMIT_EVENTS_TARGET 1024
146#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700147
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800148struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700149 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700150 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700151 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700152 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800153};
154
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800155struct mem_cgroup_reclaim_iter {
Michal Hocko5f578162013-04-29 15:07:17 -0700156 /*
157 * last scanned hierarchy member. Valid only if last_dead_count
158 * matches memcg->dead_count of the hierarchy root group.
159 */
Michal Hocko542f85f2013-04-29 15:07:15 -0700160 struct mem_cgroup *last_visited;
Michal Hocko5f578162013-04-29 15:07:17 -0700161 unsigned long last_dead_count;
162
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800163 /* scan generation, increased every round-trip */
164 unsigned int generation;
165};
166
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800167/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800168 * per-zone information in memory controller.
169 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800170struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800171 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700172 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800173
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800174 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
175
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700176 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700177 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800178};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800179
180struct mem_cgroup_per_node {
181 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
182};
183
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800184struct mem_cgroup_threshold {
185 struct eventfd_ctx *eventfd;
186 u64 threshold;
187};
188
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700189/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800190struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700191 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700192 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800193 /* Size of entries[] */
194 unsigned int size;
195 /* Array of thresholds */
196 struct mem_cgroup_threshold entries[0];
197};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700198
199struct mem_cgroup_thresholds {
200 /* Primary thresholds array */
201 struct mem_cgroup_threshold_ary *primary;
202 /*
203 * Spare threshold array.
204 * This is needed to make mem_cgroup_unregister_event() "never fail".
205 * It must be able to store at least primary->size - 1 entries.
206 */
207 struct mem_cgroup_threshold_ary *spare;
208};
209
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700210/* for OOM */
211struct mem_cgroup_eventfd_list {
212 struct list_head list;
213 struct eventfd_ctx *eventfd;
214};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800215
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700216static void mem_cgroup_threshold(struct mem_cgroup *memcg);
217static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800218
Balbir Singhf64c3f52009-09-23 15:56:37 -0700219/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800220 * The memory controller data structure. The memory controller controls both
221 * page cache and RSS per cgroup. We would eventually like to provide
222 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
223 * to help the administrator determine what knobs to tune.
224 *
225 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800226 * we hit the water mark. May be even add a low water mark, such that
227 * no reclaim occurs from a cgroup at it's low water mark, this is
228 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800229 */
230struct mem_cgroup {
231 struct cgroup_subsys_state css;
232 /*
233 * the counter to account for memory usage
234 */
235 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700236
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700237 /* vmpressure notifications */
238 struct vmpressure vmpressure;
239
Li Zefan465939a2013-07-08 16:00:38 -0700240 /*
241 * the counter to account for mem+swap usage.
242 */
243 struct res_counter memsw;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700244
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800245 /*
Glauber Costa510fc4e2012-12-18 14:21:47 -0800246 * the counter to account for kernel memory usage.
247 */
248 struct res_counter kmem;
249 /*
Balbir Singh18f59ea2009-01-07 18:08:07 -0800250 * Should the accounting and control be hierarchical, per subtree?
251 */
252 bool use_hierarchy;
Glauber Costa510fc4e2012-12-18 14:21:47 -0800253 unsigned long kmem_account_flags; /* See KMEM_ACCOUNTED_*, below */
Michal Hocko79dfdac2011-07-26 16:08:23 -0700254
255 bool oom_lock;
256 atomic_t under_oom;
257
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700258 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700259 /* OOM-Killer disable */
260 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800261
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700262 /* set when res.limit == memsw.limit */
263 bool memsw_is_minimum;
264
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800265 /* protect arrays of thresholds */
266 struct mutex thresholds_lock;
267
268 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700269 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700270
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800271 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700272 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700273
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700274 /* For oom notifier event fd */
275 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700276
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800277 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800278 * Should we move charges of a task when a task is moved into this
279 * mem_cgroup ? And what type of charges should we move ?
280 */
281 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800282 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700283 * set > 0 if pages under this cgroup are moving to other cgroup.
284 */
285 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700286 /* taken only while moving_account > 0 */
287 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700288 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800289 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800290 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700291 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700292 /*
293 * used when a cpu is offlined or other synchronizations
294 * See mem_cgroup_read_stat().
295 */
296 struct mem_cgroup_stat_cpu nocpu_base;
297 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000298
Michal Hocko5f578162013-04-29 15:07:17 -0700299 atomic_t dead_count;
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700300#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000301 struct tcp_memcontrol tcp_mem;
302#endif
Glauber Costa2633d7a2012-12-18 14:22:34 -0800303#if defined(CONFIG_MEMCG_KMEM)
304 /* analogous to slab_common's slab_caches list. per-memcg */
305 struct list_head memcg_slab_caches;
306 /* Not a spinlock, we can take a lot of time walking the list */
307 struct mutex slab_caches_mutex;
308 /* Index in the kmem_cache->memcg_params->memcg_caches array */
309 int kmemcg_id;
310#endif
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800311
312 int last_scanned_node;
313#if MAX_NUMNODES > 1
314 nodemask_t scan_nodes;
315 atomic_t numainfo_events;
316 atomic_t numainfo_updating;
317#endif
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700318
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700319 struct mem_cgroup_per_node *nodeinfo[0];
320 /* WARNING: nodeinfo must be the last member here */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800321};
322
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800323static size_t memcg_size(void)
324{
325 return sizeof(struct mem_cgroup) +
326 nr_node_ids * sizeof(struct mem_cgroup_per_node);
327}
328
Glauber Costa510fc4e2012-12-18 14:21:47 -0800329/* internal only representation about the status of kmem accounting. */
330enum {
331 KMEM_ACCOUNTED_ACTIVE = 0, /* accounted by this cgroup itself */
Glauber Costaa8964b92012-12-18 14:22:09 -0800332 KMEM_ACCOUNTED_ACTIVATED, /* static key enabled. */
Glauber Costa7de37682012-12-18 14:22:07 -0800333 KMEM_ACCOUNTED_DEAD, /* dead memcg with pending kmem charges */
Glauber Costa510fc4e2012-12-18 14:21:47 -0800334};
335
Glauber Costaa8964b92012-12-18 14:22:09 -0800336/* We account when limit is on, but only after call sites are patched */
337#define KMEM_ACCOUNTED_MASK \
338 ((1 << KMEM_ACCOUNTED_ACTIVE) | (1 << KMEM_ACCOUNTED_ACTIVATED))
Glauber Costa510fc4e2012-12-18 14:21:47 -0800339
340#ifdef CONFIG_MEMCG_KMEM
341static inline void memcg_kmem_set_active(struct mem_cgroup *memcg)
342{
343 set_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
344}
Glauber Costa7de37682012-12-18 14:22:07 -0800345
346static bool memcg_kmem_is_active(struct mem_cgroup *memcg)
347{
348 return test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
349}
350
Glauber Costaa8964b92012-12-18 14:22:09 -0800351static void memcg_kmem_set_activated(struct mem_cgroup *memcg)
352{
353 set_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
354}
355
Glauber Costa55007d82012-12-18 14:22:38 -0800356static void memcg_kmem_clear_activated(struct mem_cgroup *memcg)
357{
358 clear_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
359}
360
Glauber Costa7de37682012-12-18 14:22:07 -0800361static void memcg_kmem_mark_dead(struct mem_cgroup *memcg)
362{
Li Zefan10d5ebf2013-07-08 16:00:33 -0700363 /*
364 * Our caller must use css_get() first, because memcg_uncharge_kmem()
365 * will call css_put() if it sees the memcg is dead.
366 */
367 smp_wmb();
Glauber Costa7de37682012-12-18 14:22:07 -0800368 if (test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags))
369 set_bit(KMEM_ACCOUNTED_DEAD, &memcg->kmem_account_flags);
370}
371
372static bool memcg_kmem_test_and_clear_dead(struct mem_cgroup *memcg)
373{
374 return test_and_clear_bit(KMEM_ACCOUNTED_DEAD,
375 &memcg->kmem_account_flags);
376}
Glauber Costa510fc4e2012-12-18 14:21:47 -0800377#endif
378
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800379/* Stuffs for move charges at task migration. */
380/*
Glauber Costaee5e8472013-02-22 16:34:50 -0800381 * Types of charges to be moved. "move_charge_at_immitgrate" and
382 * "immigrate_flags" are treated as a left-shifted bitmap of these types.
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800383 */
384enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800385 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700386 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800387 NR_MOVE_TYPE,
388};
389
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800390/* "mc" and its members are protected by cgroup_mutex */
391static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800392 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800393 struct mem_cgroup *from;
394 struct mem_cgroup *to;
Glauber Costaee5e8472013-02-22 16:34:50 -0800395 unsigned long immigrate_flags;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800396 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800397 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800398 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800399 struct task_struct *moving_task; /* a task moving charges */
400 wait_queue_head_t waitq; /* a waitq for other context */
401} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700402 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800403 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
404};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800405
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700406static bool move_anon(void)
407{
Glauber Costaee5e8472013-02-22 16:34:50 -0800408 return test_bit(MOVE_CHARGE_TYPE_ANON, &mc.immigrate_flags);
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700409}
410
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700411static bool move_file(void)
412{
Glauber Costaee5e8472013-02-22 16:34:50 -0800413 return test_bit(MOVE_CHARGE_TYPE_FILE, &mc.immigrate_flags);
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700414}
415
Balbir Singh4e416952009-09-23 15:56:39 -0700416/*
417 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
418 * limit reclaim to prevent infinite loops, if they ever occur.
419 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700420#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
Balbir Singh4e416952009-09-23 15:56:39 -0700421
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800422enum charge_type {
423 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700424 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800425 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700426 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700427 NR_CHARGE_TYPE,
428};
429
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800430/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800431enum res_type {
432 _MEM,
433 _MEMSWAP,
434 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800435 _KMEM,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800436};
437
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700438#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
439#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800440#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700441/* Used for OOM nofiier */
442#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800443
Balbir Singh75822b42009-09-23 15:56:38 -0700444/*
445 * Reclaim flags for mem_cgroup_hierarchical_reclaim
446 */
447#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
448#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
449#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
450#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
451
Glauber Costa09998212013-02-22 16:34:55 -0800452/*
453 * The memcg_create_mutex will be held whenever a new cgroup is created.
454 * As a consequence, any change that needs to protect against new child cgroups
455 * appearing has to hold it as well.
456 */
457static DEFINE_MUTEX(memcg_create_mutex);
458
Wanpeng Lib2145142012-07-31 16:46:01 -0700459struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
460{
Tejun Heoa7c6d552013-08-08 20:11:23 -0400461 return s ? container_of(s, struct mem_cgroup, css) : NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -0700462}
463
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700464/* Some nice accessors for the vmpressure. */
465struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
466{
467 if (!memcg)
468 memcg = root_mem_cgroup;
469 return &memcg->vmpressure;
470}
471
472struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr)
473{
474 return &container_of(vmpr, struct mem_cgroup, vmpressure)->css;
475}
476
477struct vmpressure *css_to_vmpressure(struct cgroup_subsys_state *css)
478{
479 return &mem_cgroup_from_css(css)->vmpressure;
480}
481
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700482static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
483{
484 return (memcg == root_mem_cgroup);
485}
486
Glauber Costae1aab162011-12-11 21:47:03 +0000487/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700488#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000489
Glauber Costae1aab162011-12-11 21:47:03 +0000490void sock_update_memcg(struct sock *sk)
491{
Glauber Costa376be5f2012-01-20 04:57:14 +0000492 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000493 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700494 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000495
496 BUG_ON(!sk->sk_prot->proto_cgroup);
497
Glauber Costaf3f511e2012-01-05 20:16:39 +0000498 /* Socket cloning can throw us here with sk_cgrp already
499 * filled. It won't however, necessarily happen from
500 * process context. So the test for root memcg given
501 * the current task's memcg won't help us in this case.
502 *
503 * Respecting the original socket's memcg is a better
504 * decision in this case.
505 */
506 if (sk->sk_cgrp) {
507 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700508 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000509 return;
510 }
511
Glauber Costae1aab162011-12-11 21:47:03 +0000512 rcu_read_lock();
513 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700514 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Li Zefan5347e5a2013-07-08 16:00:30 -0700515 if (!mem_cgroup_is_root(memcg) &&
516 memcg_proto_active(cg_proto) && css_tryget(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700517 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000518 }
519 rcu_read_unlock();
520 }
521}
522EXPORT_SYMBOL(sock_update_memcg);
523
524void sock_release_memcg(struct sock *sk)
525{
Glauber Costa376be5f2012-01-20 04:57:14 +0000526 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000527 struct mem_cgroup *memcg;
528 WARN_ON(!sk->sk_cgrp->memcg);
529 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700530 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000531 }
532}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000533
534struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
535{
536 if (!memcg || mem_cgroup_is_root(memcg))
537 return NULL;
538
539 return &memcg->tcp_mem.cg_proto;
540}
541EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000542
Glauber Costa3f134612012-05-29 15:07:11 -0700543static void disarm_sock_keys(struct mem_cgroup *memcg)
544{
545 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
546 return;
547 static_key_slow_dec(&memcg_socket_limit_enabled);
548}
549#else
550static void disarm_sock_keys(struct mem_cgroup *memcg)
551{
552}
553#endif
554
Glauber Costaa8964b92012-12-18 14:22:09 -0800555#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800556/*
557 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
558 * There are two main reasons for not using the css_id for this:
559 * 1) this works better in sparse environments, where we have a lot of memcgs,
560 * but only a few kmem-limited. Or also, if we have, for instance, 200
561 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
562 * 200 entry array for that.
563 *
564 * 2) In order not to violate the cgroup API, we would like to do all memory
565 * allocation in ->create(). At that point, we haven't yet allocated the
566 * css_id. Having a separate index prevents us from messing with the cgroup
567 * core for this
568 *
569 * The current size of the caches array is stored in
570 * memcg_limited_groups_array_size. It will double each time we have to
571 * increase it.
572 */
573static DEFINE_IDA(kmem_limited_groups);
Glauber Costa749c5412012-12-18 14:23:01 -0800574int memcg_limited_groups_array_size;
575
Glauber Costa55007d82012-12-18 14:22:38 -0800576/*
577 * MIN_SIZE is different than 1, because we would like to avoid going through
578 * the alloc/free process all the time. In a small machine, 4 kmem-limited
579 * cgroups is a reasonable guess. In the future, it could be a parameter or
580 * tunable, but that is strictly not necessary.
581 *
582 * MAX_SIZE should be as large as the number of css_ids. Ideally, we could get
583 * this constant directly from cgroup, but it is understandable that this is
584 * better kept as an internal representation in cgroup.c. In any case, the
585 * css_id space is not getting any smaller, and we don't have to necessarily
586 * increase ours as well if it increases.
587 */
588#define MEMCG_CACHES_MIN_SIZE 4
589#define MEMCG_CACHES_MAX_SIZE 65535
590
Glauber Costad7f25f82012-12-18 14:22:40 -0800591/*
592 * A lot of the calls to the cache allocation functions are expected to be
593 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
594 * conditional to this static branch, we'll have to allow modules that does
595 * kmem_cache_alloc and the such to see this symbol as well
596 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800597struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800598EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800599
600static void disarm_kmem_keys(struct mem_cgroup *memcg)
601{
Glauber Costa55007d82012-12-18 14:22:38 -0800602 if (memcg_kmem_is_active(memcg)) {
Glauber Costaa8964b92012-12-18 14:22:09 -0800603 static_key_slow_dec(&memcg_kmem_enabled_key);
Glauber Costa55007d82012-12-18 14:22:38 -0800604 ida_simple_remove(&kmem_limited_groups, memcg->kmemcg_id);
605 }
Glauber Costabea207c2012-12-18 14:22:11 -0800606 /*
607 * This check can't live in kmem destruction function,
608 * since the charges will outlive the cgroup
609 */
610 WARN_ON(res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0);
Glauber Costaa8964b92012-12-18 14:22:09 -0800611}
612#else
613static void disarm_kmem_keys(struct mem_cgroup *memcg)
614{
615}
616#endif /* CONFIG_MEMCG_KMEM */
617
618static void disarm_static_keys(struct mem_cgroup *memcg)
619{
620 disarm_sock_keys(memcg);
621 disarm_kmem_keys(memcg);
622}
623
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700624static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800625
Balbir Singhf64c3f52009-09-23 15:56:37 -0700626static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700627mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700628{
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800629 VM_BUG_ON((unsigned)nid >= nr_node_ids);
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700630 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700631}
632
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700633struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100634{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700635 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100636}
637
Balbir Singhf64c3f52009-09-23 15:56:37 -0700638static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700639page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700640{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700641 int nid = page_to_nid(page);
642 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700643
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700644 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700645}
646
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700647/*
648 * Implementation Note: reading percpu statistics for memcg.
649 *
650 * Both of vmstat[] and percpu_counter has threshold and do periodic
651 * synchronization to implement "quick" read. There are trade-off between
652 * reading cost and precision of value. Then, we may have a chance to implement
653 * a periodic synchronizion of counter in memcg's counter.
654 *
655 * But this _read() function is used for user interface now. The user accounts
656 * memory usage by memory cgroup and he _always_ requires exact value because
657 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
658 * have to visit all online cpus and make sum. So, for now, unnecessary
659 * synchronization is not implemented. (just implemented for cpu hotplug)
660 *
661 * If there are kernel internal actions which can make use of some not-exact
662 * value, and reading all cpu value can be performance bottleneck in some
663 * common workload, threashold and synchonization as vmstat[] should be
664 * implemented.
665 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700666static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700667 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800668{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700669 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800670 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800671
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700672 get_online_cpus();
673 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700674 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700675#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700676 spin_lock(&memcg->pcp_counter_lock);
677 val += memcg->nocpu_base.count[idx];
678 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700679#endif
680 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800681 return val;
682}
683
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700684static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700685 bool charge)
686{
687 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700688 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700689}
690
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700691static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700692 enum mem_cgroup_events_index idx)
693{
694 unsigned long val = 0;
695 int cpu;
696
697 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700698 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700699#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700700 spin_lock(&memcg->pcp_counter_lock);
701 val += memcg->nocpu_base.events[idx];
702 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700703#endif
704 return val;
705}
706
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700707static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700708 struct page *page,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700709 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800710{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800711 preempt_disable();
712
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700713 /*
714 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
715 * counted as CACHE even if it's on ANON LRU.
716 */
717 if (anon)
718 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700719 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800720 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700721 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700722 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700723
David Rientjesb070e652013-05-07 16:18:09 -0700724 if (PageTransHuge(page))
725 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
726 nr_pages);
727
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800728 /* pagein of a big page is an event. So, ignore page size */
729 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700730 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800731 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700732 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800733 nr_pages = -nr_pages; /* for event */
734 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800735
Johannes Weiner13114712012-05-29 15:07:07 -0700736 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800737
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800738 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800739}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800740
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700741unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700742mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700743{
744 struct mem_cgroup_per_zone *mz;
745
746 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
747 return mz->lru_size[lru];
748}
749
750static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700751mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700752 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700753{
754 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab932012-03-21 16:34:19 -0700755 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700756 unsigned long ret = 0;
757
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700758 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700759
Hugh Dickinsf156ab932012-03-21 16:34:19 -0700760 for_each_lru(lru) {
761 if (BIT(lru) & lru_mask)
762 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700763 }
764 return ret;
765}
766
767static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700768mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700769 int nid, unsigned int lru_mask)
770{
Ying Han889976d2011-05-26 16:25:33 -0700771 u64 total = 0;
772 int zid;
773
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700774 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700775 total += mem_cgroup_zone_nr_lru_pages(memcg,
776 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700777
Ying Han889976d2011-05-26 16:25:33 -0700778 return total;
779}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700780
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700781static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700782 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800783{
Ying Han889976d2011-05-26 16:25:33 -0700784 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800785 u64 total = 0;
786
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800787 for_each_node_state(nid, N_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700788 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800789 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800790}
791
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800792static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
793 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800794{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700795 unsigned long val, next;
796
Johannes Weiner13114712012-05-29 15:07:07 -0700797 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700798 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700799 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800800 if ((long)next - (long)val < 0) {
801 switch (target) {
802 case MEM_CGROUP_TARGET_THRESH:
803 next = val + THRESHOLDS_EVENTS_TARGET;
804 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800805 case MEM_CGROUP_TARGET_NUMAINFO:
806 next = val + NUMAINFO_EVENTS_TARGET;
807 break;
808 default:
809 break;
810 }
811 __this_cpu_write(memcg->stat->targets[target], next);
812 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700813 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800814 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800815}
816
817/*
818 * Check events in order.
819 *
820 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700821static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800822{
Steven Rostedt47994012011-11-02 13:38:33 -0700823 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800824 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800825 if (unlikely(mem_cgroup_event_ratelimit(memcg,
826 MEM_CGROUP_TARGET_THRESH))) {
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800827 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800828
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -0700829#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800830 do_numainfo = mem_cgroup_event_ratelimit(memcg,
831 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -0700832#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800833 preempt_enable();
834
835 mem_cgroup_threshold(memcg);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800836#if MAX_NUMNODES > 1
837 if (unlikely(do_numainfo))
838 atomic_inc(&memcg->numainfo_events);
839#endif
840 } else
841 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800842}
843
Balbir Singhcf475ad2008-04-29 01:00:16 -0700844struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800845{
Balbir Singh31a78f22008-09-28 23:09:31 +0100846 /*
847 * mm_update_next_owner() may clear mm->owner to NULL
848 * if it races with swapoff, page migration, etc.
849 * So this can be called with p == NULL.
850 */
851 if (unlikely(!p))
852 return NULL;
853
Tejun Heo8af01f52013-08-08 20:11:22 -0400854 return mem_cgroup_from_css(task_css(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800855}
856
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700857struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800858{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700859 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700860
861 if (!mm)
862 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800863 /*
864 * Because we have no locks, mm->owner's may be being moved to other
865 * cgroup. We use css_tryget() here even if this looks
866 * pessimistic (rather than adding locks here).
867 */
868 rcu_read_lock();
869 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700870 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
871 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800872 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700873 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800874 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700875 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800876}
877
Michal Hocko16248d82013-04-29 15:07:19 -0700878/*
879 * Returns a next (in a pre-order walk) alive memcg (with elevated css
880 * ref. count) or NULL if the whole root's subtree has been visited.
881 *
882 * helper function to be used by mem_cgroup_iter
883 */
884static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
885 struct mem_cgroup *last_visited)
886{
Tejun Heo492eb212013-08-08 20:11:25 -0400887 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700888
Tejun Heobd8815a2013-08-08 20:11:27 -0400889 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -0700890skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -0400891 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -0700892
893 /*
894 * Even if we found a group we have to make sure it is
895 * alive. css && !memcg means that the groups should be
896 * skipped and we should continue the tree walk.
897 * last_visited css is safe to use because it is
898 * protected by css_get and the tree walk is rcu safe.
899 */
Tejun Heo492eb212013-08-08 20:11:25 -0400900 if (next_css) {
901 struct mem_cgroup *mem = mem_cgroup_from_css(next_css);
902
Michal Hocko16248d82013-04-29 15:07:19 -0700903 if (css_tryget(&mem->css))
904 return mem;
905 else {
Tejun Heo492eb212013-08-08 20:11:25 -0400906 prev_css = next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700907 goto skip_node;
908 }
909 }
910
911 return NULL;
912}
913
Johannes Weiner519ebea2013-07-03 15:04:51 -0700914static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
915{
916 /*
917 * When a group in the hierarchy below root is destroyed, the
918 * hierarchy iterator can no longer be trusted since it might
919 * have pointed to the destroyed group. Invalidate it.
920 */
921 atomic_inc(&root->dead_count);
922}
923
924static struct mem_cgroup *
925mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
926 struct mem_cgroup *root,
927 int *sequence)
928{
929 struct mem_cgroup *position = NULL;
930 /*
931 * A cgroup destruction happens in two stages: offlining and
932 * release. They are separated by a RCU grace period.
933 *
934 * If the iterator is valid, we may still race with an
935 * offlining. The RCU lock ensures the object won't be
936 * released, tryget will fail if we lost the race.
937 */
938 *sequence = atomic_read(&root->dead_count);
939 if (iter->last_dead_count == *sequence) {
940 smp_rmb();
941 position = iter->last_visited;
942 if (position && !css_tryget(&position->css))
943 position = NULL;
944 }
945 return position;
946}
947
948static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
949 struct mem_cgroup *last_visited,
950 struct mem_cgroup *new_position,
951 int sequence)
952{
953 if (last_visited)
954 css_put(&last_visited->css);
955 /*
956 * We store the sequence count from the time @last_visited was
957 * loaded successfully instead of rereading it here so that we
958 * don't lose destruction events in between. We could have
959 * raced with the destruction of @new_position after all.
960 */
961 iter->last_visited = new_position;
962 smp_wmb();
963 iter->last_dead_count = sequence;
964}
965
Johannes Weiner56600482012-01-12 17:17:59 -0800966/**
967 * mem_cgroup_iter - iterate over memory cgroup hierarchy
968 * @root: hierarchy root
969 * @prev: previously returned memcg, NULL on first invocation
970 * @reclaim: cookie for shared reclaim walks, NULL for full walks
971 *
972 * Returns references to children of the hierarchy below @root, or
973 * @root itself, or %NULL after a full round-trip.
974 *
975 * Caller must pass the return value in @prev on subsequent
976 * invocations for reference counting, or use mem_cgroup_iter_break()
977 * to cancel a hierarchy walk before the round-trip is complete.
978 *
979 * Reclaimers can specify a zone and a priority level in @reclaim to
980 * divide up the memcgs in the hierarchy among all concurrent
981 * reclaimers operating on the same zone and priority.
982 */
983struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
984 struct mem_cgroup *prev,
985 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700986{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800987 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -0700988 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700989
Johannes Weiner56600482012-01-12 17:17:59 -0800990 if (mem_cgroup_disabled())
991 return NULL;
992
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700993 if (!root)
994 root = root_mem_cgroup;
995
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800996 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -0700997 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800998
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800999 if (!root->use_hierarchy && root != root_mem_cgroup) {
1000 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001001 goto out_css_put;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001002 return root;
1003 }
1004
Michal Hocko542f85f2013-04-29 15:07:15 -07001005 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001006 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001007 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001008 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001009
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001010 if (reclaim) {
1011 int nid = zone_to_nid(reclaim->zone);
1012 int zid = zone_idx(reclaim->zone);
1013 struct mem_cgroup_per_zone *mz;
1014
1015 mz = mem_cgroup_zoneinfo(root, nid, zid);
1016 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001017 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001018 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001019 goto out_unlock;
1020 }
Michal Hocko5f578162013-04-29 15:07:17 -07001021
Johannes Weiner519ebea2013-07-03 15:04:51 -07001022 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001023 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001024
Michal Hocko16248d82013-04-29 15:07:19 -07001025 memcg = __mem_cgroup_iter_next(root, last_visited);
Michal Hocko542f85f2013-04-29 15:07:15 -07001026
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001027 if (reclaim) {
Johannes Weiner519ebea2013-07-03 15:04:51 -07001028 mem_cgroup_iter_update(iter, last_visited, memcg, seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001029
Michal Hocko19f39402013-04-29 15:07:18 -07001030 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001031 iter->generation++;
1032 else if (!prev && memcg)
1033 reclaim->generation = iter->generation;
1034 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001035
Michal Hocko19f39402013-04-29 15:07:18 -07001036 if (prev && !memcg)
Michal Hocko542f85f2013-04-29 15:07:15 -07001037 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001038 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001039out_unlock:
1040 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001041out_css_put:
1042 if (prev && prev != root)
1043 css_put(&prev->css);
1044
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001045 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001046}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001047
Johannes Weiner56600482012-01-12 17:17:59 -08001048/**
1049 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1050 * @root: hierarchy root
1051 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1052 */
1053void mem_cgroup_iter_break(struct mem_cgroup *root,
1054 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001055{
1056 if (!root)
1057 root = root_mem_cgroup;
1058 if (prev && prev != root)
1059 css_put(&prev->css);
1060}
1061
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001062/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001063 * Iteration constructs for visiting all cgroups (under a tree). If
1064 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1065 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001066 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001067#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001068 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001069 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001070 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001071
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001072#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001073 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001074 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001075 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001076
David Rientjes68ae5642012-12-12 13:51:57 -08001077void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001078{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001079 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001080
Ying Han456f9982011-05-26 16:25:38 -07001081 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001082 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1083 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001084 goto out;
1085
1086 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001087 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001088 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1089 break;
1090 case PGMAJFAULT:
1091 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001092 break;
1093 default:
1094 BUG();
1095 }
1096out:
1097 rcu_read_unlock();
1098}
David Rientjes68ae5642012-12-12 13:51:57 -08001099EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001100
Johannes Weiner925b7672012-01-12 17:18:15 -08001101/**
1102 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1103 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001104 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001105 *
1106 * Returns the lru list vector holding pages for the given @zone and
1107 * @mem. This can be the global zone lruvec, if the memory controller
1108 * is disabled.
1109 */
1110struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1111 struct mem_cgroup *memcg)
1112{
1113 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001114 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001115
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001116 if (mem_cgroup_disabled()) {
1117 lruvec = &zone->lruvec;
1118 goto out;
1119 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001120
1121 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001122 lruvec = &mz->lruvec;
1123out:
1124 /*
1125 * Since a node can be onlined after the mem_cgroup was created,
1126 * we have to be prepared to initialize lruvec->zone here;
1127 * and if offlined then reonlined, we need to reinitialize it.
1128 */
1129 if (unlikely(lruvec->zone != zone))
1130 lruvec->zone = zone;
1131 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001132}
1133
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001134/*
1135 * Following LRU functions are allowed to be used without PCG_LOCK.
1136 * Operations are called by routine of global LRU independently from memcg.
1137 * What we have to take care of here is validness of pc->mem_cgroup.
1138 *
1139 * Changes to pc->mem_cgroup happens when
1140 * 1. charge
1141 * 2. moving account
1142 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1143 * It is added to LRU before charge.
1144 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1145 * When moving account, the page is not on LRU. It's isolated.
1146 */
1147
Johannes Weiner925b7672012-01-12 17:18:15 -08001148/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001149 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001150 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001151 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001152 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001153struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001154{
1155 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001156 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001157 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001158 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001159
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001160 if (mem_cgroup_disabled()) {
1161 lruvec = &zone->lruvec;
1162 goto out;
1163 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001164
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001165 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001166 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001167
1168 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001169 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001170 * an uncharged page off lru does nothing to secure
1171 * its former mem_cgroup from sudden removal.
1172 *
1173 * Our caller holds lru_lock, and PageCgroupUsed is updated
1174 * under page_cgroup lock: between them, they make all uses
1175 * of pc->mem_cgroup safe.
1176 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001177 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001178 pc->mem_cgroup = memcg = root_mem_cgroup;
1179
Johannes Weiner925b7672012-01-12 17:18:15 -08001180 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001181 lruvec = &mz->lruvec;
1182out:
1183 /*
1184 * Since a node can be onlined after the mem_cgroup was created,
1185 * we have to be prepared to initialize lruvec->zone here;
1186 * and if offlined then reonlined, we need to reinitialize it.
1187 */
1188 if (unlikely(lruvec->zone != zone))
1189 lruvec->zone = zone;
1190 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001191}
1192
1193/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001194 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1195 * @lruvec: mem_cgroup per zone lru vector
1196 * @lru: index of lru list the page is sitting on
1197 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001198 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001199 * This function must be called when a page is added to or removed from an
1200 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001201 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001202void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1203 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001204{
1205 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001206 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001207
1208 if (mem_cgroup_disabled())
1209 return;
1210
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001211 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1212 lru_size = mz->lru_size + lru;
1213 *lru_size += nr_pages;
1214 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001215}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001216
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001217/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001218 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001219 * hierarchy subtree
1220 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001221bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1222 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001223{
Johannes Weiner91c637342012-05-29 15:06:24 -07001224 if (root_memcg == memcg)
1225 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001226 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001227 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001228 return css_is_ancestor(&memcg->css, &root_memcg->css);
1229}
1230
1231static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1232 struct mem_cgroup *memcg)
1233{
1234 bool ret;
1235
Johannes Weiner91c637342012-05-29 15:06:24 -07001236 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001237 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001238 rcu_read_unlock();
1239 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001240}
1241
David Rientjesffbdccf2013-07-03 15:01:23 -07001242bool task_in_mem_cgroup(struct task_struct *task,
1243 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001244{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001245 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001246 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001247 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001248
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001249 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001250 if (p) {
1251 curr = try_get_mem_cgroup_from_mm(p->mm);
1252 task_unlock(p);
1253 } else {
1254 /*
1255 * All threads may have already detached their mm's, but the oom
1256 * killer still needs to detect if they have already been oom
1257 * killed to prevent needlessly killing additional tasks.
1258 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001259 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001260 curr = mem_cgroup_from_task(task);
1261 if (curr)
1262 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001263 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001264 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001265 if (!curr)
David Rientjesffbdccf2013-07-03 15:01:23 -07001266 return false;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001267 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001268 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001269 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001270 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1271 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001272 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001273 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001274 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001275 return ret;
1276}
1277
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001278int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001279{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001280 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001281 unsigned long inactive;
1282 unsigned long active;
1283 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001284
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001285 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1286 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001287
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001288 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1289 if (gb)
1290 inactive_ratio = int_sqrt(10 * gb);
1291 else
1292 inactive_ratio = 1;
1293
Johannes Weiner9b272972011-11-02 13:38:23 -07001294 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001295}
1296
Balbir Singh6d61ef42009-01-07 18:08:06 -08001297#define mem_cgroup_from_res_counter(counter, member) \
1298 container_of(counter, struct mem_cgroup, member)
1299
Johannes Weiner19942822011-02-01 15:52:43 -08001300/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001301 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001302 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001303 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001304 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001305 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001306 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001307static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001308{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001309 unsigned long long margin;
1310
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001311 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001312 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001313 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001314 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001315}
1316
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001317int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001318{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001319 /* root ? */
Tejun Heo63876982013-08-08 20:11:23 -04001320 if (!css_parent(&memcg->css))
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001321 return vm_swappiness;
1322
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001323 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001324}
1325
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001326/*
1327 * memcg->moving_account is used for checking possibility that some thread is
1328 * calling move_account(). When a thread on CPU-A starts moving pages under
1329 * a memcg, other threads should check memcg->moving_account under
1330 * rcu_read_lock(), like this:
1331 *
1332 * CPU-A CPU-B
1333 * rcu_read_lock()
1334 * memcg->moving_account+1 if (memcg->mocing_account)
1335 * take heavy locks.
1336 * synchronize_rcu() update something.
1337 * rcu_read_unlock()
1338 * start move here.
1339 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001340
1341/* for quick checking without looking up memcg */
1342atomic_t memcg_moving __read_mostly;
1343
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001344static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001345{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001346 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001347 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001348 synchronize_rcu();
1349}
1350
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001351static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001352{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001353 /*
1354 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1355 * We check NULL in callee rather than caller.
1356 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001357 if (memcg) {
1358 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001359 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001360 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001361}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001362
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001363/*
1364 * 2 routines for checking "mem" is under move_account() or not.
1365 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001366 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1367 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001368 * pc->mem_cgroup may be overwritten.
1369 *
1370 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1371 * under hierarchy of moving cgroups. This is for
1372 * waiting at hith-memory prressure caused by "move".
1373 */
1374
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001375static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001376{
1377 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001378 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001379}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001380
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001381static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001382{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001383 struct mem_cgroup *from;
1384 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001385 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001386 /*
1387 * Unlike task_move routines, we access mc.to, mc.from not under
1388 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1389 */
1390 spin_lock(&mc.lock);
1391 from = mc.from;
1392 to = mc.to;
1393 if (!from)
1394 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001395
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001396 ret = mem_cgroup_same_or_subtree(memcg, from)
1397 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001398unlock:
1399 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001400 return ret;
1401}
1402
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001403static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001404{
1405 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001406 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001407 DEFINE_WAIT(wait);
1408 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1409 /* moving charge context might have finished. */
1410 if (mc.moving_task)
1411 schedule();
1412 finish_wait(&mc.waitq, &wait);
1413 return true;
1414 }
1415 }
1416 return false;
1417}
1418
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001419/*
1420 * Take this lock when
1421 * - a code tries to modify page's memcg while it's USED.
1422 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001423 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001424 */
1425static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1426 unsigned long *flags)
1427{
1428 spin_lock_irqsave(&memcg->move_lock, *flags);
1429}
1430
1431static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1432 unsigned long *flags)
1433{
1434 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1435}
1436
Sha Zhengju58cf1882013-02-22 16:32:05 -08001437#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001438/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001439 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001440 * @memcg: The memory cgroup that went over limit
1441 * @p: Task that is going to be killed
1442 *
1443 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1444 * enabled
1445 */
1446void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1447{
1448 struct cgroup *task_cgrp;
1449 struct cgroup *mem_cgrp;
1450 /*
1451 * Need a buffer in BSS, can't rely on allocations. The code relies
1452 * on the assumption that OOM is serialized for memory controller.
1453 * If this assumption is broken, revisit this code.
1454 */
1455 static char memcg_name[PATH_MAX];
1456 int ret;
Sha Zhengju58cf1882013-02-22 16:32:05 -08001457 struct mem_cgroup *iter;
1458 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001459
Sha Zhengju58cf1882013-02-22 16:32:05 -08001460 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001461 return;
1462
Balbir Singhe2224322009-04-02 16:57:39 -07001463 rcu_read_lock();
1464
1465 mem_cgrp = memcg->css.cgroup;
1466 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1467
1468 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1469 if (ret < 0) {
1470 /*
1471 * Unfortunately, we are unable to convert to a useful name
1472 * But we'll still print out the usage information
1473 */
1474 rcu_read_unlock();
1475 goto done;
1476 }
1477 rcu_read_unlock();
1478
Andrew Mortond0451972013-02-22 16:32:06 -08001479 pr_info("Task in %s killed", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001480
1481 rcu_read_lock();
1482 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1483 if (ret < 0) {
1484 rcu_read_unlock();
1485 goto done;
1486 }
1487 rcu_read_unlock();
1488
1489 /*
1490 * Continues from above, so we don't need an KERN_ level
1491 */
Andrew Mortond0451972013-02-22 16:32:06 -08001492 pr_cont(" as a result of limit of %s\n", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001493done:
1494
Andrew Mortond0451972013-02-22 16:32:06 -08001495 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001496 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1497 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1498 res_counter_read_u64(&memcg->res, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001499 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001500 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1501 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1502 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001503 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
Glauber Costa510fc4e2012-12-18 14:21:47 -08001504 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1505 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1506 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Sha Zhengju58cf1882013-02-22 16:32:05 -08001507
1508 for_each_mem_cgroup_tree(iter, memcg) {
1509 pr_info("Memory cgroup stats");
1510
1511 rcu_read_lock();
1512 ret = cgroup_path(iter->css.cgroup, memcg_name, PATH_MAX);
1513 if (!ret)
1514 pr_cont(" for %s", memcg_name);
1515 rcu_read_unlock();
1516 pr_cont(":");
1517
1518 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1519 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1520 continue;
1521 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1522 K(mem_cgroup_read_stat(iter, i)));
1523 }
1524
1525 for (i = 0; i < NR_LRU_LISTS; i++)
1526 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1527 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1528
1529 pr_cont("\n");
1530 }
Balbir Singhe2224322009-04-02 16:57:39 -07001531}
1532
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001533/*
1534 * This function returns the number of memcg under hierarchy tree. Returns
1535 * 1(self count) if no children.
1536 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001537static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001538{
1539 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001540 struct mem_cgroup *iter;
1541
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001542 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001543 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001544 return num;
1545}
1546
Balbir Singh6d61ef42009-01-07 18:08:06 -08001547/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001548 * Return the memory (and swap, if configured) limit for a memcg.
1549 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001550static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001551{
1552 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001553
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001554 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001555
David Rientjesa63d83f2010-08-09 17:19:46 -07001556 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001557 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001558 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001559 if (mem_cgroup_swappiness(memcg)) {
1560 u64 memsw;
1561
1562 limit += total_swap_pages << PAGE_SHIFT;
1563 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1564
1565 /*
1566 * If memsw is finite and limits the amount of swap space
1567 * available to this memcg, return that limit.
1568 */
1569 limit = min(limit, memsw);
1570 }
1571
1572 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001573}
1574
David Rientjes19965462012-12-11 16:00:26 -08001575static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1576 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001577{
1578 struct mem_cgroup *iter;
1579 unsigned long chosen_points = 0;
1580 unsigned long totalpages;
1581 unsigned int points = 0;
1582 struct task_struct *chosen = NULL;
1583
David Rientjes876aafb2012-07-31 16:43:48 -07001584 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001585 * If current has a pending SIGKILL or is exiting, then automatically
1586 * select it. The goal is to allow it to allocate so that it may
1587 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001588 */
David Rientjes465adcf2013-04-29 15:08:45 -07001589 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001590 set_thread_flag(TIF_MEMDIE);
1591 return;
1592 }
1593
1594 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001595 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1596 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001597 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001598 struct task_struct *task;
1599
Tejun Heo72ec7022013-08-08 20:11:26 -04001600 css_task_iter_start(&iter->css, &it);
1601 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001602 switch (oom_scan_process_thread(task, totalpages, NULL,
1603 false)) {
1604 case OOM_SCAN_SELECT:
1605 if (chosen)
1606 put_task_struct(chosen);
1607 chosen = task;
1608 chosen_points = ULONG_MAX;
1609 get_task_struct(chosen);
1610 /* fall through */
1611 case OOM_SCAN_CONTINUE:
1612 continue;
1613 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001614 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001615 mem_cgroup_iter_break(memcg, iter);
1616 if (chosen)
1617 put_task_struct(chosen);
1618 return;
1619 case OOM_SCAN_OK:
1620 break;
1621 };
1622 points = oom_badness(task, memcg, NULL, totalpages);
1623 if (points > chosen_points) {
1624 if (chosen)
1625 put_task_struct(chosen);
1626 chosen = task;
1627 chosen_points = points;
1628 get_task_struct(chosen);
1629 }
1630 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001631 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001632 }
1633
1634 if (!chosen)
1635 return;
1636 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001637 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1638 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001639}
1640
Johannes Weiner56600482012-01-12 17:17:59 -08001641static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1642 gfp_t gfp_mask,
1643 unsigned long flags)
1644{
1645 unsigned long total = 0;
1646 bool noswap = false;
1647 int loop;
1648
1649 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1650 noswap = true;
1651 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1652 noswap = true;
1653
1654 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1655 if (loop)
1656 drain_all_stock_async(memcg);
1657 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1658 /*
1659 * Allow limit shrinkers, which are triggered directly
1660 * by userspace, to catch signals and stop reclaim
1661 * after minimal progress, regardless of the margin.
1662 */
1663 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1664 break;
1665 if (mem_cgroup_margin(memcg))
1666 break;
1667 /*
1668 * If nothing was reclaimed after two attempts, there
1669 * may be no reclaimable pages in this hierarchy.
1670 */
1671 if (loop && !total)
1672 break;
1673 }
1674 return total;
1675}
1676
Michal Hockoe8831102013-09-12 15:13:23 -07001677#if MAX_NUMNODES > 1
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001678/**
1679 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001680 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001681 * @nid: the node ID to be checked.
1682 * @noswap : specify true here if the user wants flle only information.
1683 *
1684 * This function returns whether the specified memcg contains any
1685 * reclaimable pages on a node. Returns true if there are any reclaimable
1686 * pages in the node.
1687 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001688static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001689 int nid, bool noswap)
1690{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001691 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001692 return true;
1693 if (noswap || !total_swap_pages)
1694 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001695 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001696 return true;
1697 return false;
1698
1699}
Ying Han889976d2011-05-26 16:25:33 -07001700
1701/*
1702 * Always updating the nodemask is not very good - even if we have an empty
1703 * list or the wrong list here, we can start from some node and traverse all
1704 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1705 *
1706 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001707static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001708{
1709 int nid;
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -07001710 /*
1711 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1712 * pagein/pageout changes since the last update.
1713 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001714 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -07001715 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001716 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001717 return;
1718
Ying Han889976d2011-05-26 16:25:33 -07001719 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001720 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001721
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001722 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001723
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001724 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1725 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001726 }
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -07001727
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001728 atomic_set(&memcg->numainfo_events, 0);
1729 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001730}
1731
1732/*
1733 * Selecting a node where we start reclaim from. Because what we need is just
1734 * reducing usage counter, start from anywhere is O,K. Considering
1735 * memory reclaim from current node, there are pros. and cons.
1736 *
1737 * Freeing memory from current node means freeing memory from a node which
1738 * we'll use or we've used. So, it may make LRU bad. And if several threads
1739 * hit limits, it will see a contention on a node. But freeing from remote
1740 * node means more costs for memory reclaim because of memory latency.
1741 *
1742 * Now, we use round-robin. Better algorithm is welcomed.
1743 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001744int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001745{
1746 int node;
1747
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001748 mem_cgroup_may_update_nodemask(memcg);
1749 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001750
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001751 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001752 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001753 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001754 /*
1755 * We call this when we hit limit, not when pages are added to LRU.
1756 * No LRU may hold pages because all pages are UNEVICTABLE or
1757 * memcg is too small and all pages are not on LRU. In that case,
1758 * we use curret node.
1759 */
1760 if (unlikely(node == MAX_NUMNODES))
1761 node = numa_node_id();
1762
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001763 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001764 return node;
1765}
1766
1767#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001768int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001769{
1770 return 0;
1771}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001772
Ying Han889976d2011-05-26 16:25:33 -07001773#endif
1774
Michal Hocko3b387222013-09-12 15:13:21 -07001775/*
1776 * A group is eligible for the soft limit reclaim if it is
1777 * a) is over its soft limit
1778 * b) any parent up the hierarchy is over its soft limit
1779 */
1780bool mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001781{
Michal Hocko3b387222013-09-12 15:13:21 -07001782 struct mem_cgroup *parent = memcg;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001783
Michal Hocko3b387222013-09-12 15:13:21 -07001784 if (res_counter_soft_limit_excess(&memcg->res))
1785 return true;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001786
Michal Hocko3b387222013-09-12 15:13:21 -07001787 /*
1788 * If any parent up the hierarchy is over its soft limit then we
1789 * have to obey and reclaim from this group as well.
1790 */
1791 while((parent = parent_mem_cgroup(parent))) {
1792 if (res_counter_soft_limit_excess(&parent->res))
1793 return true;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001794 }
Michal Hocko3b387222013-09-12 15:13:21 -07001795
1796 return false;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001797}
1798
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001799/*
1800 * Check OOM-Killer is already running under our hierarchy.
1801 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001802 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001803 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001804static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001805{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001806 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001807
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001808 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001809 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001810 /*
1811 * this subtree of our hierarchy is already locked
1812 * so we cannot give a lock.
1813 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001814 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001815 mem_cgroup_iter_break(memcg, iter);
1816 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001817 } else
1818 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001819 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001820
Michal Hocko79dfdac2011-07-26 16:08:23 -07001821 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001822 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001823
1824 /*
1825 * OK, we failed to lock the whole subtree so we have to clean up
1826 * what we set up to the failing subtree
1827 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001828 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001829 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001830 mem_cgroup_iter_break(memcg, iter);
1831 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001832 }
1833 iter->oom_lock = false;
1834 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001835 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001836}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001837
Michal Hocko79dfdac2011-07-26 16:08:23 -07001838/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001839 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001840 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001841static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001842{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001843 struct mem_cgroup *iter;
1844
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001845 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001846 iter->oom_lock = false;
1847 return 0;
1848}
1849
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001850static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001851{
1852 struct mem_cgroup *iter;
1853
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001854 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001855 atomic_inc(&iter->under_oom);
1856}
1857
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001858static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001859{
1860 struct mem_cgroup *iter;
1861
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001862 /*
1863 * When a new child is created while the hierarchy is under oom,
1864 * mem_cgroup_oom_lock() may not be called. We have to use
1865 * atomic_add_unless() here.
1866 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001867 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001868 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001869}
1870
Michal Hocko1af8efe2011-07-26 16:08:24 -07001871static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001872static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1873
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001874struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001875 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001876 wait_queue_t wait;
1877};
1878
1879static int memcg_oom_wake_function(wait_queue_t *wait,
1880 unsigned mode, int sync, void *arg)
1881{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001882 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1883 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001884 struct oom_wait_info *oom_wait_info;
1885
1886 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001887 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001888
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001889 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001890 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001891 * Then we can use css_is_ancestor without taking care of RCU.
1892 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001893 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1894 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001895 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001896 return autoremove_wake_function(wait, mode, sync, arg);
1897}
1898
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001899static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001900{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001901 /* for filtering, pass "memcg" as argument. */
1902 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001903}
1904
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001905static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001906{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001907 if (memcg && atomic_read(&memcg->under_oom))
1908 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001909}
1910
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001911/*
1912 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
1913 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07001914static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
1915 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001916{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001917 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001918 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001919
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001920 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001921 owait.wait.flags = 0;
1922 owait.wait.func = memcg_oom_wake_function;
1923 owait.wait.private = current;
1924 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001925 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001926 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001927
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001928 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07001929 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001930 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001931 /*
1932 * Even if signal_pending(), we can't quit charge() loop without
1933 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
1934 * under OOM is always welcomed, use TASK_KILLABLE here.
1935 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001936 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001937 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001938 need_to_kill = false;
1939 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001940 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001941 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001942
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001943 if (need_to_kill) {
1944 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07001945 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001946 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001947 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001948 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001949 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07001950 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001951 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001952 mem_cgroup_oom_unlock(memcg);
1953 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07001954 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001955
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001956 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001957
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001958 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
1959 return false;
1960 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07001961 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001962 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001963}
1964
Balbir Singhd69b0422009-06-17 16:26:34 -07001965/*
1966 * Currently used to update mapped file statistics, but the routine can be
1967 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001968 *
1969 * Notes: Race condition
1970 *
1971 * We usually use page_cgroup_lock() for accessing page_cgroup member but
1972 * it tends to be costly. But considering some conditions, we doesn't need
1973 * to do so _always_.
1974 *
1975 * Considering "charge", lock_page_cgroup() is not required because all
1976 * file-stat operations happen after a page is attached to radix-tree. There
1977 * are no race with "charge".
1978 *
1979 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
1980 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
1981 * if there are race with "uncharge". Statistics itself is properly handled
1982 * by flags.
1983 *
1984 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001985 * small, we check mm->moving_account and detect there are possibility of race
1986 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07001987 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07001988
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001989void __mem_cgroup_begin_update_page_stat(struct page *page,
1990 bool *locked, unsigned long *flags)
1991{
1992 struct mem_cgroup *memcg;
1993 struct page_cgroup *pc;
1994
1995 pc = lookup_page_cgroup(page);
1996again:
1997 memcg = pc->mem_cgroup;
1998 if (unlikely(!memcg || !PageCgroupUsed(pc)))
1999 return;
2000 /*
2001 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002002 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002003 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002004 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002005 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002006 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002007 return;
2008
2009 move_lock_mem_cgroup(memcg, flags);
2010 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2011 move_unlock_mem_cgroup(memcg, flags);
2012 goto again;
2013 }
2014 *locked = true;
2015}
2016
2017void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2018{
2019 struct page_cgroup *pc = lookup_page_cgroup(page);
2020
2021 /*
2022 * It's guaranteed that pc->mem_cgroup never changes while
2023 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002024 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002025 */
2026 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2027}
2028
Greg Thelen2a7106f2011-01-13 15:47:37 -08002029void mem_cgroup_update_page_stat(struct page *page,
2030 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002031{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002032 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002033 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002034 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002035
Johannes Weinercfa44942012-01-12 17:18:38 -08002036 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002037 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002038
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002039 memcg = pc->mem_cgroup;
2040 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002041 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002042
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002043 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002044 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08002045 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002046 break;
2047 default:
2048 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002049 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002050
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002051 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002052}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002053
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002054/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002055 * size of first charge trial. "32" comes from vmscan.c's magic value.
2056 * TODO: maybe necessary to use big numbers in big irons.
2057 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002058#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002059struct memcg_stock_pcp {
2060 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002061 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002062 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002063 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002064#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002065};
2066static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002067static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002068
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002069/**
2070 * consume_stock: Try to consume stocked charge on this cpu.
2071 * @memcg: memcg to consume from.
2072 * @nr_pages: how many pages to charge.
2073 *
2074 * The charges will only happen if @memcg matches the current cpu's memcg
2075 * stock, and at least @nr_pages are available in that stock. Failure to
2076 * service an allocation will refill the stock.
2077 *
2078 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002079 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002080static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002081{
2082 struct memcg_stock_pcp *stock;
2083 bool ret = true;
2084
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002085 if (nr_pages > CHARGE_BATCH)
2086 return false;
2087
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002088 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002089 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2090 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002091 else /* need to call res_counter_charge */
2092 ret = false;
2093 put_cpu_var(memcg_stock);
2094 return ret;
2095}
2096
2097/*
2098 * Returns stocks cached in percpu to res_counter and reset cached information.
2099 */
2100static void drain_stock(struct memcg_stock_pcp *stock)
2101{
2102 struct mem_cgroup *old = stock->cached;
2103
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002104 if (stock->nr_pages) {
2105 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2106
2107 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002108 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002109 res_counter_uncharge(&old->memsw, bytes);
2110 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002111 }
2112 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002113}
2114
2115/*
2116 * This must be called under preempt disabled or must be called by
2117 * a thread which is pinned to local cpu.
2118 */
2119static void drain_local_stock(struct work_struct *dummy)
2120{
2121 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2122 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002123 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002124}
2125
Michal Hockoe4777492013-02-22 16:35:40 -08002126static void __init memcg_stock_init(void)
2127{
2128 int cpu;
2129
2130 for_each_possible_cpu(cpu) {
2131 struct memcg_stock_pcp *stock =
2132 &per_cpu(memcg_stock, cpu);
2133 INIT_WORK(&stock->work, drain_local_stock);
2134 }
2135}
2136
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002137/*
2138 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002139 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002140 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002141static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002142{
2143 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2144
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002145 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002146 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002147 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002148 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002149 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002150 put_cpu_var(memcg_stock);
2151}
2152
2153/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002154 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002155 * of the hierarchy under it. sync flag says whether we should block
2156 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002157 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002158static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002159{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002160 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002161
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002162 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002163 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002164 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002165 for_each_online_cpu(cpu) {
2166 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002167 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002168
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002169 memcg = stock->cached;
2170 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002171 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002172 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002173 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002174 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2175 if (cpu == curcpu)
2176 drain_local_stock(&stock->work);
2177 else
2178 schedule_work_on(cpu, &stock->work);
2179 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002180 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002181 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002182
2183 if (!sync)
2184 goto out;
2185
2186 for_each_online_cpu(cpu) {
2187 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002188 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002189 flush_work(&stock->work);
2190 }
2191out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002192 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002193}
2194
2195/*
2196 * Tries to drain stocked charges in other cpus. This function is asynchronous
2197 * and just put a work per cpu for draining localy on each cpu. Caller can
2198 * expects some charges will be back to res_counter later but cannot wait for
2199 * it.
2200 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002201static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002202{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002203 /*
2204 * If someone calls draining, avoid adding more kworker runs.
2205 */
2206 if (!mutex_trylock(&percpu_charge_mutex))
2207 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002208 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002209 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002210}
2211
2212/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002213static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002214{
2215 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002216 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002217 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002218 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002219}
2220
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002221/*
2222 * This function drains percpu counter value from DEAD cpu and
2223 * move it to local cpu. Note that this function can be preempted.
2224 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002225static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002226{
2227 int i;
2228
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002229 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002230 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002231 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002232
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002233 per_cpu(memcg->stat->count[i], cpu) = 0;
2234 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002235 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002236 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002237 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002238
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002239 per_cpu(memcg->stat->events[i], cpu) = 0;
2240 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002241 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002242 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002243}
2244
Paul Gortmaker0db06282013-06-19 14:53:51 -04002245static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002246 unsigned long action,
2247 void *hcpu)
2248{
2249 int cpu = (unsigned long)hcpu;
2250 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002251 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002252
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002253 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002254 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002255
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002256 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002257 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002258
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002259 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002260 mem_cgroup_drain_pcp_counter(iter, cpu);
2261
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002262 stock = &per_cpu(memcg_stock, cpu);
2263 drain_stock(stock);
2264 return NOTIFY_OK;
2265}
2266
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002267
2268/* See __mem_cgroup_try_charge() for details */
2269enum {
2270 CHARGE_OK, /* success */
2271 CHARGE_RETRY, /* need to retry but retry is not bad */
2272 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2273 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2274 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2275};
2276
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002277static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002278 unsigned int nr_pages, unsigned int min_pages,
2279 bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002280{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002281 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002282 struct mem_cgroup *mem_over_limit;
2283 struct res_counter *fail_res;
2284 unsigned long flags = 0;
2285 int ret;
2286
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002287 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002288
2289 if (likely(!ret)) {
2290 if (!do_swap_account)
2291 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002292 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002293 if (likely(!ret))
2294 return CHARGE_OK;
2295
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002296 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002297 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2298 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2299 } else
2300 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002301 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002302 * Never reclaim on behalf of optional batching, retry with a
2303 * single page instead.
2304 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002305 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002306 return CHARGE_RETRY;
2307
2308 if (!(gfp_mask & __GFP_WAIT))
2309 return CHARGE_WOULDBLOCK;
2310
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002311 if (gfp_mask & __GFP_NORETRY)
2312 return CHARGE_NOMEM;
2313
Johannes Weiner56600482012-01-12 17:17:59 -08002314 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002315 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002316 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002317 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002318 * Even though the limit is exceeded at this point, reclaim
2319 * may have been able to free some pages. Retry the charge
2320 * before killing the task.
2321 *
2322 * Only for regular pages, though: huge pages are rather
2323 * unlikely to succeed so close to the limit, and we fall back
2324 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002325 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002326 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002327 return CHARGE_RETRY;
2328
2329 /*
2330 * At task move, charge accounts can be doubly counted. So, it's
2331 * better to wait until the end of task_move if something is going on.
2332 */
2333 if (mem_cgroup_wait_acct_move(mem_over_limit))
2334 return CHARGE_RETRY;
2335
2336 /* If we don't need to call oom-killer at el, return immediately */
2337 if (!oom_check)
2338 return CHARGE_NOMEM;
2339 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002340 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002341 return CHARGE_OOM_DIE;
2342
2343 return CHARGE_RETRY;
2344}
2345
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002346/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002347 * __mem_cgroup_try_charge() does
2348 * 1. detect memcg to be charged against from passed *mm and *ptr,
2349 * 2. update res_counter
2350 * 3. call memory reclaim if necessary.
2351 *
2352 * In some special case, if the task is fatal, fatal_signal_pending() or
2353 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2354 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2355 * as possible without any hazards. 2: all pages should have a valid
2356 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2357 * pointer, that is treated as a charge to root_mem_cgroup.
2358 *
2359 * So __mem_cgroup_try_charge() will return
2360 * 0 ... on success, filling *ptr with a valid memcg pointer.
2361 * -ENOMEM ... charge failure because of resource limits.
2362 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2363 *
2364 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2365 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002366 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002367static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002368 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002369 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002370 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002371 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002372{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002373 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002374 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002375 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002376 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002377
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002378 /*
2379 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2380 * in system level. So, allow to go ahead dying process in addition to
2381 * MEMDIE process.
2382 */
2383 if (unlikely(test_thread_flag(TIF_MEMDIE)
2384 || fatal_signal_pending(current)))
2385 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002386
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002387 /*
Hugh Dickins3be912772008-02-07 00:14:19 -08002388 * We always charge the cgroup the mm_struct belongs to.
2389 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002390 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002391 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002392 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002393 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002394 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002395again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002396 if (*ptr) { /* css should be a valid one */
2397 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002398 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002399 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002400 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002401 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002402 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002403 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002404 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002405
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002406 rcu_read_lock();
2407 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002408 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002409 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002410 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002411 * race with swapoff. Then, we have small risk of mis-accouning.
2412 * But such kind of mis-account by race always happens because
2413 * we don't have cgroup_mutex(). It's overkill and we allo that
2414 * small race, here.
2415 * (*) swapoff at el will charge against mm-struct not against
2416 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002417 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002418 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002419 if (!memcg)
2420 memcg = root_mem_cgroup;
2421 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002422 rcu_read_unlock();
2423 goto done;
2424 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002425 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002426 /*
2427 * It seems dagerous to access memcg without css_get().
2428 * But considering how consume_stok works, it's not
2429 * necessary. If consume_stock success, some charges
2430 * from this memcg are cached on this cpu. So, we
2431 * don't need to call css_get()/css_tryget() before
2432 * calling consume_stock().
2433 */
2434 rcu_read_unlock();
2435 goto done;
2436 }
2437 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002438 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002439 rcu_read_unlock();
2440 goto again;
2441 }
2442 rcu_read_unlock();
2443 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002444
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002445 do {
2446 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002447
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002448 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002449 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002450 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002451 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002452 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002453
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002454 oom_check = false;
2455 if (oom && !nr_oom_retries) {
2456 oom_check = true;
2457 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2458 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002459
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002460 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, nr_pages,
2461 oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002462 switch (ret) {
2463 case CHARGE_OK:
2464 break;
2465 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002466 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002467 css_put(&memcg->css);
2468 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002469 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002470 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002471 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002472 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002473 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002474 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002475 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002476 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002477 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002478 /* If oom, we never return -ENOMEM */
2479 nr_oom_retries--;
2480 break;
2481 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002482 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002483 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002484 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002485 } while (ret != CHARGE_OK);
2486
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002487 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002488 refill_stock(memcg, batch - nr_pages);
2489 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002490done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002491 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002492 return 0;
2493nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002494 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002495 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002496bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002497 *ptr = root_mem_cgroup;
2498 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002499}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002500
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002501/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002502 * Somemtimes we have to undo a charge we got by try_charge().
2503 * This function is for that and do uncharge, put css's refcnt.
2504 * gotten by try_charge().
2505 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002506static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002507 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002508{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002509 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002510 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002511
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002512 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002513 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002514 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002515 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002516}
2517
2518/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002519 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2520 * This is useful when moving usage to parent cgroup.
2521 */
2522static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2523 unsigned int nr_pages)
2524{
2525 unsigned long bytes = nr_pages * PAGE_SIZE;
2526
2527 if (mem_cgroup_is_root(memcg))
2528 return;
2529
2530 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2531 if (do_swap_account)
2532 res_counter_uncharge_until(&memcg->memsw,
2533 memcg->memsw.parent, bytes);
2534}
2535
2536/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002537 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002538 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2539 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2540 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002541 */
2542static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2543{
2544 struct cgroup_subsys_state *css;
2545
2546 /* ID 0 is unused ID */
2547 if (!id)
2548 return NULL;
2549 css = css_lookup(&mem_cgroup_subsys, id);
2550 if (!css)
2551 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002552 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002553}
2554
Wu Fengguange42d9d52009-12-16 12:19:59 +01002555struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002556{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002557 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002558 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002559 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002560 swp_entry_t ent;
2561
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002562 VM_BUG_ON(!PageLocked(page));
2563
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002564 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f632009-04-30 15:08:11 -07002565 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002566 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002567 memcg = pc->mem_cgroup;
2568 if (memcg && !css_tryget(&memcg->css))
2569 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002570 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002571 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002572 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002573 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002574 memcg = mem_cgroup_lookup(id);
2575 if (memcg && !css_tryget(&memcg->css))
2576 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002577 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002578 }
Daisuke Nishimurac0bd3f632009-04-30 15:08:11 -07002579 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002580 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002581}
2582
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002583static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002584 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002585 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002586 enum charge_type ctype,
2587 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002588{
Johannes Weinerce587e62012-04-24 20:22:33 +02002589 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002590 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002591 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002592 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002593 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002594
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002595 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002596 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002597 /*
2598 * we don't need page_cgroup_lock about tail pages, becase they are not
2599 * accessed by any other context at this point.
2600 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002601
2602 /*
2603 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2604 * may already be on some other mem_cgroup's LRU. Take care of it.
2605 */
2606 if (lrucare) {
2607 zone = page_zone(page);
2608 spin_lock_irq(&zone->lru_lock);
2609 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002610 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002611 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002612 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002613 was_on_lru = true;
2614 }
2615 }
2616
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002617 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002618 /*
2619 * We access a page_cgroup asynchronously without lock_page_cgroup().
2620 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2621 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2622 * before USED bit, we need memory barrier here.
2623 * See mem_cgroup_add_lru_list(), etc.
2624 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002625 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002626 SetPageCgroupUsed(pc);
Hugh Dickins3be912772008-02-07 00:14:19 -08002627
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002628 if (lrucare) {
2629 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002630 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002631 VM_BUG_ON(PageLRU(page));
2632 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002633 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002634 }
2635 spin_unlock_irq(&zone->lru_lock);
2636 }
2637
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002638 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002639 anon = true;
2640 else
2641 anon = false;
2642
David Rientjesb070e652013-05-07 16:18:09 -07002643 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002644 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002645
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002646 /*
Michal Hockoe8831102013-09-12 15:13:23 -07002647 * "charge_statistics" updated event counter.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002648 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002649 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002650}
2651
Glauber Costa7cf27982012-12-18 14:22:55 -08002652static DEFINE_MUTEX(set_limit_mutex);
2653
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002654#ifdef CONFIG_MEMCG_KMEM
2655static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2656{
2657 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2658 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2659}
2660
Glauber Costa1f458cb2012-12-18 14:22:50 -08002661/*
2662 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2663 * in the memcg_cache_params struct.
2664 */
2665static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2666{
2667 struct kmem_cache *cachep;
2668
2669 VM_BUG_ON(p->is_root_cache);
2670 cachep = p->root_cache;
2671 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2672}
2673
Glauber Costa749c5412012-12-18 14:23:01 -08002674#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002675static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2676 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002677{
Tejun Heo182446d2013-08-08 20:11:24 -04002678 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002679 struct memcg_cache_params *params;
2680
2681 if (!memcg_can_account_kmem(memcg))
2682 return -EIO;
2683
2684 print_slabinfo_header(m);
2685
2686 mutex_lock(&memcg->slab_caches_mutex);
2687 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2688 cache_show(memcg_params_to_cache(params), m);
2689 mutex_unlock(&memcg->slab_caches_mutex);
2690
2691 return 0;
2692}
2693#endif
2694
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002695static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2696{
2697 struct res_counter *fail_res;
2698 struct mem_cgroup *_memcg;
2699 int ret = 0;
2700 bool may_oom;
2701
2702 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2703 if (ret)
2704 return ret;
2705
2706 /*
2707 * Conditions under which we can wait for the oom_killer. Those are
2708 * the same conditions tested by the core page allocator
2709 */
2710 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2711
2712 _memcg = memcg;
2713 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2714 &_memcg, may_oom);
2715
2716 if (ret == -EINTR) {
2717 /*
2718 * __mem_cgroup_try_charge() chosed to bypass to root due to
2719 * OOM kill or fatal signal. Since our only options are to
2720 * either fail the allocation or charge it to this cgroup, do
2721 * it as a temporary condition. But we can't fail. From a
2722 * kmem/slab perspective, the cache has already been selected,
2723 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2724 * our minds.
2725 *
2726 * This condition will only trigger if the task entered
2727 * memcg_charge_kmem in a sane state, but was OOM-killed during
2728 * __mem_cgroup_try_charge() above. Tasks that were already
2729 * dying when the allocation triggers should have been already
2730 * directed to the root cgroup in memcontrol.h
2731 */
2732 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2733 if (do_swap_account)
2734 res_counter_charge_nofail(&memcg->memsw, size,
2735 &fail_res);
2736 ret = 0;
2737 } else if (ret)
2738 res_counter_uncharge(&memcg->kmem, size);
2739
2740 return ret;
2741}
2742
2743static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2744{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002745 res_counter_uncharge(&memcg->res, size);
2746 if (do_swap_account)
2747 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002748
2749 /* Not down to 0 */
2750 if (res_counter_uncharge(&memcg->kmem, size))
2751 return;
2752
Li Zefan10d5ebf2013-07-08 16:00:33 -07002753 /*
2754 * Releases a reference taken in kmem_cgroup_css_offline in case
2755 * this last uncharge is racing with the offlining code or it is
2756 * outliving the memcg existence.
2757 *
2758 * The memory barrier imposed by test&clear is paired with the
2759 * explicit one in memcg_kmem_mark_dead().
2760 */
Glauber Costa7de37682012-12-18 14:22:07 -08002761 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002762 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002763}
2764
Glauber Costa2633d7a2012-12-18 14:22:34 -08002765void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2766{
2767 if (!memcg)
2768 return;
2769
2770 mutex_lock(&memcg->slab_caches_mutex);
2771 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2772 mutex_unlock(&memcg->slab_caches_mutex);
2773}
2774
2775/*
2776 * helper for acessing a memcg's index. It will be used as an index in the
2777 * child cache array in kmem_cache, and also to derive its name. This function
2778 * will return -1 when this is not a kmem-limited memcg.
2779 */
2780int memcg_cache_id(struct mem_cgroup *memcg)
2781{
2782 return memcg ? memcg->kmemcg_id : -1;
2783}
2784
Glauber Costa55007d82012-12-18 14:22:38 -08002785/*
2786 * This ends up being protected by the set_limit mutex, during normal
2787 * operation, because that is its main call site.
2788 *
2789 * But when we create a new cache, we can call this as well if its parent
2790 * is kmem-limited. That will have to hold set_limit_mutex as well.
2791 */
2792int memcg_update_cache_sizes(struct mem_cgroup *memcg)
2793{
2794 int num, ret;
2795
2796 num = ida_simple_get(&kmem_limited_groups,
2797 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2798 if (num < 0)
2799 return num;
2800 /*
2801 * After this point, kmem_accounted (that we test atomically in
2802 * the beginning of this conditional), is no longer 0. This
2803 * guarantees only one process will set the following boolean
2804 * to true. We don't need test_and_set because we're protected
2805 * by the set_limit_mutex anyway.
2806 */
2807 memcg_kmem_set_activated(memcg);
2808
2809 ret = memcg_update_all_caches(num+1);
2810 if (ret) {
2811 ida_simple_remove(&kmem_limited_groups, num);
2812 memcg_kmem_clear_activated(memcg);
2813 return ret;
2814 }
2815
2816 memcg->kmemcg_id = num;
2817 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
2818 mutex_init(&memcg->slab_caches_mutex);
2819 return 0;
2820}
2821
2822static size_t memcg_caches_array_size(int num_groups)
2823{
2824 ssize_t size;
2825 if (num_groups <= 0)
2826 return 0;
2827
2828 size = 2 * num_groups;
2829 if (size < MEMCG_CACHES_MIN_SIZE)
2830 size = MEMCG_CACHES_MIN_SIZE;
2831 else if (size > MEMCG_CACHES_MAX_SIZE)
2832 size = MEMCG_CACHES_MAX_SIZE;
2833
2834 return size;
2835}
2836
2837/*
2838 * We should update the current array size iff all caches updates succeed. This
2839 * can only be done from the slab side. The slab mutex needs to be held when
2840 * calling this.
2841 */
2842void memcg_update_array_size(int num)
2843{
2844 if (num > memcg_limited_groups_array_size)
2845 memcg_limited_groups_array_size = memcg_caches_array_size(num);
2846}
2847
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08002848static void kmem_cache_destroy_work_func(struct work_struct *w);
2849
Glauber Costa55007d82012-12-18 14:22:38 -08002850int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
2851{
2852 struct memcg_cache_params *cur_params = s->memcg_params;
2853
2854 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
2855
2856 if (num_groups > memcg_limited_groups_array_size) {
2857 int i;
2858 ssize_t size = memcg_caches_array_size(num_groups);
2859
2860 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07002861 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08002862
2863 s->memcg_params = kzalloc(size, GFP_KERNEL);
2864 if (!s->memcg_params) {
2865 s->memcg_params = cur_params;
2866 return -ENOMEM;
2867 }
2868
2869 s->memcg_params->is_root_cache = true;
2870
2871 /*
2872 * There is the chance it will be bigger than
2873 * memcg_limited_groups_array_size, if we failed an allocation
2874 * in a cache, in which case all caches updated before it, will
2875 * have a bigger array.
2876 *
2877 * But if that is the case, the data after
2878 * memcg_limited_groups_array_size is certainly unused
2879 */
2880 for (i = 0; i < memcg_limited_groups_array_size; i++) {
2881 if (!cur_params->memcg_caches[i])
2882 continue;
2883 s->memcg_params->memcg_caches[i] =
2884 cur_params->memcg_caches[i];
2885 }
2886
2887 /*
2888 * Ideally, we would wait until all caches succeed, and only
2889 * then free the old one. But this is not worth the extra
2890 * pointer per-cache we'd have to have for this.
2891 *
2892 * It is not a big deal if some caches are left with a size
2893 * bigger than the others. And all updates will reset this
2894 * anyway.
2895 */
2896 kfree(cur_params);
2897 }
2898 return 0;
2899}
2900
Glauber Costa943a4512012-12-18 14:23:03 -08002901int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
2902 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08002903{
Andrey Vagin90c7a792013-09-11 14:22:18 -07002904 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08002905
2906 if (!memcg_kmem_enabled())
2907 return 0;
2908
Andrey Vagin90c7a792013-09-11 14:22:18 -07002909 if (!memcg) {
2910 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08002911 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07002912 } else
2913 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08002914
Glauber Costa2633d7a2012-12-18 14:22:34 -08002915 s->memcg_params = kzalloc(size, GFP_KERNEL);
2916 if (!s->memcg_params)
2917 return -ENOMEM;
2918
Glauber Costa943a4512012-12-18 14:23:03 -08002919 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08002920 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08002921 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07002922 INIT_WORK(&s->memcg_params->destroy,
2923 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08002924 } else
2925 s->memcg_params->is_root_cache = true;
2926
Glauber Costa2633d7a2012-12-18 14:22:34 -08002927 return 0;
2928}
2929
2930void memcg_release_cache(struct kmem_cache *s)
2931{
Glauber Costad7f25f82012-12-18 14:22:40 -08002932 struct kmem_cache *root;
2933 struct mem_cgroup *memcg;
2934 int id;
2935
2936 /*
2937 * This happens, for instance, when a root cache goes away before we
2938 * add any memcg.
2939 */
2940 if (!s->memcg_params)
2941 return;
2942
2943 if (s->memcg_params->is_root_cache)
2944 goto out;
2945
2946 memcg = s->memcg_params->memcg;
2947 id = memcg_cache_id(memcg);
2948
2949 root = s->memcg_params->root_cache;
2950 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08002951
2952 mutex_lock(&memcg->slab_caches_mutex);
2953 list_del(&s->memcg_params->list);
2954 mutex_unlock(&memcg->slab_caches_mutex);
2955
Li Zefan20f05312013-07-08 16:00:31 -07002956 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08002957out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08002958 kfree(s->memcg_params);
2959}
2960
Glauber Costa0e9d92f2012-12-18 14:22:42 -08002961/*
2962 * During the creation a new cache, we need to disable our accounting mechanism
2963 * altogether. This is true even if we are not creating, but rather just
2964 * enqueing new caches to be created.
2965 *
2966 * This is because that process will trigger allocations; some visible, like
2967 * explicit kmallocs to auxiliary data structures, name strings and internal
2968 * cache structures; some well concealed, like INIT_WORK() that can allocate
2969 * objects during debug.
2970 *
2971 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
2972 * to it. This may not be a bounded recursion: since the first cache creation
2973 * failed to complete (waiting on the allocation), we'll just try to create the
2974 * cache again, failing at the same point.
2975 *
2976 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
2977 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
2978 * inside the following two functions.
2979 */
2980static inline void memcg_stop_kmem_account(void)
2981{
2982 VM_BUG_ON(!current->mm);
2983 current->memcg_kmem_skip_account++;
2984}
2985
2986static inline void memcg_resume_kmem_account(void)
2987{
2988 VM_BUG_ON(!current->mm);
2989 current->memcg_kmem_skip_account--;
2990}
2991
Glauber Costa1f458cb2012-12-18 14:22:50 -08002992static void kmem_cache_destroy_work_func(struct work_struct *w)
2993{
2994 struct kmem_cache *cachep;
2995 struct memcg_cache_params *p;
2996
2997 p = container_of(w, struct memcg_cache_params, destroy);
2998
2999 cachep = memcg_params_to_cache(p);
3000
Glauber Costa22933152012-12-18 14:22:59 -08003001 /*
3002 * If we get down to 0 after shrink, we could delete right away.
3003 * However, memcg_release_pages() already puts us back in the workqueue
3004 * in that case. If we proceed deleting, we'll get a dangling
3005 * reference, and removing the object from the workqueue in that case
3006 * is unnecessary complication. We are not a fast path.
3007 *
3008 * Note that this case is fundamentally different from racing with
3009 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3010 * kmem_cache_shrink, not only we would be reinserting a dead cache
3011 * into the queue, but doing so from inside the worker racing to
3012 * destroy it.
3013 *
3014 * So if we aren't down to zero, we'll just schedule a worker and try
3015 * again
3016 */
3017 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3018 kmem_cache_shrink(cachep);
3019 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3020 return;
3021 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003022 kmem_cache_destroy(cachep);
3023}
3024
3025void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3026{
3027 if (!cachep->memcg_params->dead)
3028 return;
3029
3030 /*
Glauber Costa22933152012-12-18 14:22:59 -08003031 * There are many ways in which we can get here.
3032 *
3033 * We can get to a memory-pressure situation while the delayed work is
3034 * still pending to run. The vmscan shrinkers can then release all
3035 * cache memory and get us to destruction. If this is the case, we'll
3036 * be executed twice, which is a bug (the second time will execute over
3037 * bogus data). In this case, cancelling the work should be fine.
3038 *
3039 * But we can also get here from the worker itself, if
3040 * kmem_cache_shrink is enough to shake all the remaining objects and
3041 * get the page count to 0. In this case, we'll deadlock if we try to
3042 * cancel the work (the worker runs with an internal lock held, which
3043 * is the same lock we would hold for cancel_work_sync().)
3044 *
3045 * Since we can't possibly know who got us here, just refrain from
3046 * running if there is already work pending
3047 */
3048 if (work_pending(&cachep->memcg_params->destroy))
3049 return;
3050 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003051 * We have to defer the actual destroying to a workqueue, because
3052 * we might currently be in a context that cannot sleep.
3053 */
3054 schedule_work(&cachep->memcg_params->destroy);
3055}
3056
Glauber Costad7f25f82012-12-18 14:22:40 -08003057/*
3058 * This lock protects updaters, not readers. We want readers to be as fast as
3059 * they can, and they will either see NULL or a valid cache value. Our model
3060 * allow them to see NULL, in which case the root memcg will be selected.
3061 *
3062 * We need this lock because multiple allocations to the same cache from a non
3063 * will span more than one worker. Only one of them can create the cache.
3064 */
3065static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003066
3067/*
3068 * Called with memcg_cache_mutex held
3069 */
3070static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3071 struct kmem_cache *s)
3072{
3073 struct kmem_cache *new;
3074 static char *tmp_name = NULL;
3075
3076 lockdep_assert_held(&memcg_cache_mutex);
3077
3078 /*
3079 * kmem_cache_create_memcg duplicates the given name and
3080 * cgroup_name for this name requires RCU context.
3081 * This static temporary buffer is used to prevent from
3082 * pointless shortliving allocation.
3083 */
3084 if (!tmp_name) {
3085 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3086 if (!tmp_name)
3087 return NULL;
3088 }
3089
3090 rcu_read_lock();
3091 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3092 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3093 rcu_read_unlock();
3094
3095 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3096 (s->flags & ~SLAB_PANIC), s->ctor, s);
3097
3098 if (new)
3099 new->allocflags |= __GFP_KMEMCG;
3100
3101 return new;
3102}
3103
Glauber Costad7f25f82012-12-18 14:22:40 -08003104static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3105 struct kmem_cache *cachep)
3106{
3107 struct kmem_cache *new_cachep;
3108 int idx;
3109
3110 BUG_ON(!memcg_can_account_kmem(memcg));
3111
3112 idx = memcg_cache_id(memcg);
3113
3114 mutex_lock(&memcg_cache_mutex);
3115 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003116 if (new_cachep) {
3117 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003118 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003119 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003120
3121 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003122 if (new_cachep == NULL) {
3123 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003124 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003125 goto out;
3126 }
3127
Glauber Costa1f458cb2012-12-18 14:22:50 -08003128 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003129
3130 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3131 /*
3132 * the readers won't lock, make sure everybody sees the updated value,
3133 * so they won't put stuff in the queue again for no reason
3134 */
3135 wmb();
3136out:
3137 mutex_unlock(&memcg_cache_mutex);
3138 return new_cachep;
3139}
3140
Glauber Costa7cf27982012-12-18 14:22:55 -08003141void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3142{
3143 struct kmem_cache *c;
3144 int i;
3145
3146 if (!s->memcg_params)
3147 return;
3148 if (!s->memcg_params->is_root_cache)
3149 return;
3150
3151 /*
3152 * If the cache is being destroyed, we trust that there is no one else
3153 * requesting objects from it. Even if there are, the sanity checks in
3154 * kmem_cache_destroy should caught this ill-case.
3155 *
3156 * Still, we don't want anyone else freeing memcg_caches under our
3157 * noses, which can happen if a new memcg comes to life. As usual,
3158 * we'll take the set_limit_mutex to protect ourselves against this.
3159 */
3160 mutex_lock(&set_limit_mutex);
3161 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3162 c = s->memcg_params->memcg_caches[i];
3163 if (!c)
3164 continue;
3165
3166 /*
3167 * We will now manually delete the caches, so to avoid races
3168 * we need to cancel all pending destruction workers and
3169 * proceed with destruction ourselves.
3170 *
3171 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3172 * and that could spawn the workers again: it is likely that
3173 * the cache still have active pages until this very moment.
3174 * This would lead us back to mem_cgroup_destroy_cache.
3175 *
3176 * But that will not execute at all if the "dead" flag is not
3177 * set, so flip it down to guarantee we are in control.
3178 */
3179 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003180 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003181 kmem_cache_destroy(c);
3182 }
3183 mutex_unlock(&set_limit_mutex);
3184}
3185
Glauber Costad7f25f82012-12-18 14:22:40 -08003186struct create_work {
3187 struct mem_cgroup *memcg;
3188 struct kmem_cache *cachep;
3189 struct work_struct work;
3190};
3191
Glauber Costa1f458cb2012-12-18 14:22:50 -08003192static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3193{
3194 struct kmem_cache *cachep;
3195 struct memcg_cache_params *params;
3196
3197 if (!memcg_kmem_is_active(memcg))
3198 return;
3199
3200 mutex_lock(&memcg->slab_caches_mutex);
3201 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3202 cachep = memcg_params_to_cache(params);
3203 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003204 schedule_work(&cachep->memcg_params->destroy);
3205 }
3206 mutex_unlock(&memcg->slab_caches_mutex);
3207}
3208
Glauber Costad7f25f82012-12-18 14:22:40 -08003209static void memcg_create_cache_work_func(struct work_struct *w)
3210{
3211 struct create_work *cw;
3212
3213 cw = container_of(w, struct create_work, work);
3214 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003215 kfree(cw);
3216}
3217
3218/*
3219 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003220 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003221static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3222 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003223{
3224 struct create_work *cw;
3225
3226 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003227 if (cw == NULL) {
3228 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003229 return;
3230 }
3231
3232 cw->memcg = memcg;
3233 cw->cachep = cachep;
3234
3235 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3236 schedule_work(&cw->work);
3237}
3238
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003239static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3240 struct kmem_cache *cachep)
3241{
3242 /*
3243 * We need to stop accounting when we kmalloc, because if the
3244 * corresponding kmalloc cache is not yet created, the first allocation
3245 * in __memcg_create_cache_enqueue will recurse.
3246 *
3247 * However, it is better to enclose the whole function. Depending on
3248 * the debugging options enabled, INIT_WORK(), for instance, can
3249 * trigger an allocation. This too, will make us recurse. Because at
3250 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3251 * the safest choice is to do it like this, wrapping the whole function.
3252 */
3253 memcg_stop_kmem_account();
3254 __memcg_create_cache_enqueue(memcg, cachep);
3255 memcg_resume_kmem_account();
3256}
Glauber Costad7f25f82012-12-18 14:22:40 -08003257/*
3258 * Return the kmem_cache we're supposed to use for a slab allocation.
3259 * We try to use the current memcg's version of the cache.
3260 *
3261 * If the cache does not exist yet, if we are the first user of it,
3262 * we either create it immediately, if possible, or create it asynchronously
3263 * in a workqueue.
3264 * In the latter case, we will let the current allocation go through with
3265 * the original cache.
3266 *
3267 * Can't be called in interrupt context or from kernel threads.
3268 * This function needs to be called with rcu_read_lock() held.
3269 */
3270struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3271 gfp_t gfp)
3272{
3273 struct mem_cgroup *memcg;
3274 int idx;
3275
3276 VM_BUG_ON(!cachep->memcg_params);
3277 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3278
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003279 if (!current->mm || current->memcg_kmem_skip_account)
3280 return cachep;
3281
Glauber Costad7f25f82012-12-18 14:22:40 -08003282 rcu_read_lock();
3283 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003284
3285 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003286 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003287
3288 idx = memcg_cache_id(memcg);
3289
3290 /*
3291 * barrier to mare sure we're always seeing the up to date value. The
3292 * code updating memcg_caches will issue a write barrier to match this.
3293 */
3294 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003295 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3296 cachep = cachep->memcg_params->memcg_caches[idx];
3297 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003298 }
3299
Li Zefanca0dde92013-04-29 15:08:57 -07003300 /* The corresponding put will be done in the workqueue. */
3301 if (!css_tryget(&memcg->css))
3302 goto out;
3303 rcu_read_unlock();
3304
3305 /*
3306 * If we are in a safe context (can wait, and not in interrupt
3307 * context), we could be be predictable and return right away.
3308 * This would guarantee that the allocation being performed
3309 * already belongs in the new cache.
3310 *
3311 * However, there are some clashes that can arrive from locking.
3312 * For instance, because we acquire the slab_mutex while doing
3313 * kmem_cache_dup, this means no further allocation could happen
3314 * with the slab_mutex held.
3315 *
3316 * Also, because cache creation issue get_online_cpus(), this
3317 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3318 * that ends up reversed during cpu hotplug. (cpuset allocates
3319 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3320 * better to defer everything.
3321 */
3322 memcg_create_cache_enqueue(memcg, cachep);
3323 return cachep;
3324out:
3325 rcu_read_unlock();
3326 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003327}
3328EXPORT_SYMBOL(__memcg_kmem_get_cache);
3329
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003330/*
3331 * We need to verify if the allocation against current->mm->owner's memcg is
3332 * possible for the given order. But the page is not allocated yet, so we'll
3333 * need a further commit step to do the final arrangements.
3334 *
3335 * It is possible for the task to switch cgroups in this mean time, so at
3336 * commit time, we can't rely on task conversion any longer. We'll then use
3337 * the handle argument to return to the caller which cgroup we should commit
3338 * against. We could also return the memcg directly and avoid the pointer
3339 * passing, but a boolean return value gives better semantics considering
3340 * the compiled-out case as well.
3341 *
3342 * Returning true means the allocation is possible.
3343 */
3344bool
3345__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3346{
3347 struct mem_cgroup *memcg;
3348 int ret;
3349
3350 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003351
3352 /*
3353 * Disabling accounting is only relevant for some specific memcg
3354 * internal allocations. Therefore we would initially not have such
3355 * check here, since direct calls to the page allocator that are marked
3356 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3357 * concerned with cache allocations, and by having this test at
3358 * memcg_kmem_get_cache, we are already able to relay the allocation to
3359 * the root cache and bypass the memcg cache altogether.
3360 *
3361 * There is one exception, though: the SLUB allocator does not create
3362 * large order caches, but rather service large kmallocs directly from
3363 * the page allocator. Therefore, the following sequence when backed by
3364 * the SLUB allocator:
3365 *
3366 * memcg_stop_kmem_account();
3367 * kmalloc(<large_number>)
3368 * memcg_resume_kmem_account();
3369 *
3370 * would effectively ignore the fact that we should skip accounting,
3371 * since it will drive us directly to this function without passing
3372 * through the cache selector memcg_kmem_get_cache. Such large
3373 * allocations are extremely rare but can happen, for instance, for the
3374 * cache arrays. We bring this test here.
3375 */
3376 if (!current->mm || current->memcg_kmem_skip_account)
3377 return true;
3378
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003379 memcg = try_get_mem_cgroup_from_mm(current->mm);
3380
3381 /*
3382 * very rare case described in mem_cgroup_from_task. Unfortunately there
3383 * isn't much we can do without complicating this too much, and it would
3384 * be gfp-dependent anyway. Just let it go
3385 */
3386 if (unlikely(!memcg))
3387 return true;
3388
3389 if (!memcg_can_account_kmem(memcg)) {
3390 css_put(&memcg->css);
3391 return true;
3392 }
3393
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003394 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3395 if (!ret)
3396 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003397
3398 css_put(&memcg->css);
3399 return (ret == 0);
3400}
3401
3402void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3403 int order)
3404{
3405 struct page_cgroup *pc;
3406
3407 VM_BUG_ON(mem_cgroup_is_root(memcg));
3408
3409 /* The page allocation failed. Revert */
3410 if (!page) {
3411 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003412 return;
3413 }
3414
3415 pc = lookup_page_cgroup(page);
3416 lock_page_cgroup(pc);
3417 pc->mem_cgroup = memcg;
3418 SetPageCgroupUsed(pc);
3419 unlock_page_cgroup(pc);
3420}
3421
3422void __memcg_kmem_uncharge_pages(struct page *page, int order)
3423{
3424 struct mem_cgroup *memcg = NULL;
3425 struct page_cgroup *pc;
3426
3427
3428 pc = lookup_page_cgroup(page);
3429 /*
3430 * Fast unlocked return. Theoretically might have changed, have to
3431 * check again after locking.
3432 */
3433 if (!PageCgroupUsed(pc))
3434 return;
3435
3436 lock_page_cgroup(pc);
3437 if (PageCgroupUsed(pc)) {
3438 memcg = pc->mem_cgroup;
3439 ClearPageCgroupUsed(pc);
3440 }
3441 unlock_page_cgroup(pc);
3442
3443 /*
3444 * We trust that only if there is a memcg associated with the page, it
3445 * is a valid allocation
3446 */
3447 if (!memcg)
3448 return;
3449
3450 VM_BUG_ON(mem_cgroup_is_root(memcg));
3451 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003452}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003453#else
3454static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3455{
3456}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003457#endif /* CONFIG_MEMCG_KMEM */
3458
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003459#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3460
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003461#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003462/*
3463 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003464 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3465 * charge/uncharge will be never happen and move_account() is done under
3466 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003467 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003468void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003469{
3470 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003471 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003472 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003473 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003474
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003475 if (mem_cgroup_disabled())
3476 return;
David Rientjesb070e652013-05-07 16:18:09 -07003477
3478 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003479 for (i = 1; i < HPAGE_PMD_NR; i++) {
3480 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003481 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003482 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003483 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3484 }
David Rientjesb070e652013-05-07 16:18:09 -07003485 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3486 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003487}
Hugh Dickins12d27102012-01-12 17:19:52 -08003488#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003489
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003490/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003491 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003492 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003493 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003494 * @pc: page_cgroup of the page.
3495 * @from: mem_cgroup which the page is moved from.
3496 * @to: mem_cgroup which the page is moved to. @from != @to.
3497 *
3498 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003499 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003500 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003501 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003502 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3503 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003504 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003505static int mem_cgroup_move_account(struct page *page,
3506 unsigned int nr_pages,
3507 struct page_cgroup *pc,
3508 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003509 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003510{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003511 unsigned long flags;
3512 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003513 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003514
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003515 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003516 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003517 /*
3518 * The page is isolated from LRU. So, collapse function
3519 * will not handle this page. But page splitting can happen.
3520 * Do this check under compound_page_lock(). The caller should
3521 * hold it.
3522 */
3523 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003524 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003525 goto out;
3526
3527 lock_page_cgroup(pc);
3528
3529 ret = -EINVAL;
3530 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3531 goto unlock;
3532
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003533 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003534
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003535 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08003536 /* Update mapped_file data for mem_cgroup */
3537 preempt_disable();
3538 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3539 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3540 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07003541 }
David Rientjesb070e652013-05-07 16:18:09 -07003542 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003543
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003544 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003545 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003546 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003547 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003548 ret = 0;
3549unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003550 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003551 /*
3552 * check events
3553 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003554 memcg_check_events(to, page);
3555 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003556out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003557 return ret;
3558}
3559
Michal Hocko2ef37d32012-10-26 13:37:30 +02003560/**
3561 * mem_cgroup_move_parent - moves page to the parent group
3562 * @page: the page to move
3563 * @pc: page_cgroup of the page
3564 * @child: page's cgroup
3565 *
3566 * move charges to its parent or the root cgroup if the group has no
3567 * parent (aka use_hierarchy==0).
3568 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3569 * mem_cgroup_move_account fails) the failure is always temporary and
3570 * it signals a race with a page removal/uncharge or migration. In the
3571 * first case the page is on the way out and it will vanish from the LRU
3572 * on the next attempt and the call should be retried later.
3573 * Isolation from the LRU fails only if page has been isolated from
3574 * the LRU since we looked at it and that usually means either global
3575 * reclaim or migration going on. The page will either get back to the
3576 * LRU or vanish.
3577 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3578 * (!PageCgroupUsed) or moved to a different group. The page will
3579 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003580 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003581static int mem_cgroup_move_parent(struct page *page,
3582 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003583 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003584{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003585 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003586 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003587 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003588 int ret;
3589
Michal Hockod8423012012-10-26 13:37:29 +02003590 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003591
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003592 ret = -EBUSY;
3593 if (!get_page_unless_zero(page))
3594 goto out;
3595 if (isolate_lru_page(page))
3596 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003597
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003598 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003599
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003600 parent = parent_mem_cgroup(child);
3601 /*
3602 * If no parent, move charges to root cgroup.
3603 */
3604 if (!parent)
3605 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003606
Michal Hocko2ef37d32012-10-26 13:37:30 +02003607 if (nr_pages > 1) {
3608 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003609 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003610 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003611
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003612 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003613 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003614 if (!ret)
3615 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003616
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003617 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003618 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003619 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003620put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003621 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003622out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003623 return ret;
3624}
3625
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003626/*
3627 * Charge the memory controller for page usage.
3628 * Return
3629 * 0 if the charge was successful
3630 * < 0 if the cgroup is over its limit
3631 */
3632static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003633 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003634{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003635 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003636 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003637 bool oom = true;
3638 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003639
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003640 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003641 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003642 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003643 /*
3644 * Never OOM-kill a process for a huge page. The
3645 * fault handler will fall back to regular pages.
3646 */
3647 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003648 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003649
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003650 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003651 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003652 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003653 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003654 return 0;
3655}
3656
3657int mem_cgroup_newpage_charge(struct page *page,
3658 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003659{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003660 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003661 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003662 VM_BUG_ON(page_mapped(page));
3663 VM_BUG_ON(page->mapping && !PageAnon(page));
3664 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003665 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003666 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003667}
3668
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003669/*
3670 * While swap-in, try_charge -> commit or cancel, the page is locked.
3671 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003672 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003673 * "commit()" or removed by "cancel()"
3674 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003675static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3676 struct page *page,
3677 gfp_t mask,
3678 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003679{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003680 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003681 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003682 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003683
Johannes Weiner90deb782012-07-31 16:45:47 -07003684 pc = lookup_page_cgroup(page);
3685 /*
3686 * Every swap fault against a single page tries to charge the
3687 * page, bail as early as possible. shmem_unuse() encounters
3688 * already charged pages, too. The USED bit is protected by
3689 * the page lock, which serializes swap cache removal, which
3690 * in turn serializes uncharging.
3691 */
3692 if (PageCgroupUsed(pc))
3693 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003694 if (!do_swap_account)
3695 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003696 memcg = try_get_mem_cgroup_from_page(page);
3697 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003698 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003699 *memcgp = memcg;
3700 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003701 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003702 if (ret == -EINTR)
3703 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003704 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003705charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003706 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3707 if (ret == -EINTR)
3708 ret = 0;
3709 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003710}
3711
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003712int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3713 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3714{
3715 *memcgp = NULL;
3716 if (mem_cgroup_disabled())
3717 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07003718 /*
3719 * A racing thread's fault, or swapoff, may have already
3720 * updated the pte, and even removed page from swap cache: in
3721 * those cases unuse_pte()'s pte_same() test will fail; but
3722 * there's also a KSM case which does need to charge the page.
3723 */
3724 if (!PageSwapCache(page)) {
3725 int ret;
3726
3727 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3728 if (ret == -EINTR)
3729 ret = 0;
3730 return ret;
3731 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003732 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3733}
3734
Johannes Weiner827a03d2012-07-31 16:45:36 -07003735void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3736{
3737 if (mem_cgroup_disabled())
3738 return;
3739 if (!memcg)
3740 return;
3741 __mem_cgroup_cancel_charge(memcg, 1);
3742}
3743
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003744static void
Johannes Weiner72835c82012-01-12 17:18:32 -08003745__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003746 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003747{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003748 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003749 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08003750 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003751 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07003752
Johannes Weinerce587e62012-04-24 20:22:33 +02003753 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003754 /*
3755 * Now swap is on-memory. This means this page may be
3756 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003757 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3758 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3759 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003760 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003761 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003762 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07003763 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003764 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003765}
3766
Johannes Weiner72835c82012-01-12 17:18:32 -08003767void mem_cgroup_commit_charge_swapin(struct page *page,
3768 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003769{
Johannes Weiner72835c82012-01-12 17:18:32 -08003770 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003771 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003772}
3773
Johannes Weiner827a03d2012-07-31 16:45:36 -07003774int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3775 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003776{
Johannes Weiner827a03d2012-07-31 16:45:36 -07003777 struct mem_cgroup *memcg = NULL;
3778 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3779 int ret;
3780
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003781 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07003782 return 0;
3783 if (PageCompound(page))
3784 return 0;
3785
Johannes Weiner827a03d2012-07-31 16:45:36 -07003786 if (!PageSwapCache(page))
3787 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3788 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003789 ret = __mem_cgroup_try_charge_swapin(mm, page,
3790 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07003791 if (!ret)
3792 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3793 }
3794 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003795}
3796
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003797static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003798 unsigned int nr_pages,
3799 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003800{
3801 struct memcg_batch_info *batch = NULL;
3802 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003803
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003804 /* If swapout, usage of swap doesn't decrease */
3805 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3806 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003807
3808 batch = &current->memcg_batch;
3809 /*
3810 * In usual, we do css_get() when we remember memcg pointer.
3811 * But in this case, we keep res->usage until end of a series of
3812 * uncharges. Then, it's ok to ignore memcg's refcnt.
3813 */
3814 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003815 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003816 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003817 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003818 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003819 * the same cgroup and we have chance to coalesce uncharges.
3820 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3821 * because we want to do uncharge as soon as possible.
3822 */
3823
3824 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
3825 goto direct_uncharge;
3826
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003827 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08003828 goto direct_uncharge;
3829
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003830 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003831 * In typical case, batch->memcg == mem. This means we can
3832 * merge a series of uncharges to an uncharge of res_counter.
3833 * If not, we uncharge res_counter ony by one.
3834 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003835 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003836 goto direct_uncharge;
3837 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003838 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003839 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003840 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003841 return;
3842direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003843 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003844 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003845 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
3846 if (unlikely(batch->memcg != memcg))
3847 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003848}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003849
Balbir Singh8697d332008-02-07 00:13:59 -08003850/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003851 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003852 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003853static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07003854__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
3855 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003856{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003857 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003858 unsigned int nr_pages = 1;
3859 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003860 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003861
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003862 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003863 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07003864
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003865 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003866 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003867 VM_BUG_ON(!PageTransHuge(page));
3868 }
Balbir Singh8697d332008-02-07 00:13:59 -08003869 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003870 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003871 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003872 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003873 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003874 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003875
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003876 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003877
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003878 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003879
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003880 if (!PageCgroupUsed(pc))
3881 goto unlock_out;
3882
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003883 anon = PageAnon(page);
3884
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003885 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003886 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003887 /*
3888 * Generally PageAnon tells if it's the anon statistics to be
3889 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
3890 * used before page reached the stage of being marked PageAnon.
3891 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003892 anon = true;
3893 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07003894 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07003895 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07003896 if (page_mapped(page))
3897 goto unlock_out;
3898 /*
3899 * Pages under migration may not be uncharged. But
3900 * end_migration() /must/ be the one uncharging the
3901 * unused post-migration page and so it has to call
3902 * here with the migration bit still set. See the
3903 * res_counter handling below.
3904 */
3905 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003906 goto unlock_out;
3907 break;
3908 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
3909 if (!PageAnon(page)) { /* Shared memory */
3910 if (page->mapping && !page_is_file_cache(page))
3911 goto unlock_out;
3912 } else if (page_mapped(page)) /* Anon */
3913 goto unlock_out;
3914 break;
3915 default:
3916 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003917 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003918
David Rientjesb070e652013-05-07 16:18:09 -07003919 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07003920
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003921 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08003922 /*
3923 * pc->mem_cgroup is not cleared here. It will be accessed when it's
3924 * freed from LRU. This is safe because uncharged page is expected not
3925 * to be reused (freed soon). Exception is SwapCache, it's handled by
3926 * special functions.
3927 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08003928
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003929 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003930 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003931 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07003932 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003933 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003934 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003935 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003936 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07003937 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07003938 }
Johannes Weiner0030f532012-07-31 16:45:25 -07003939 /*
3940 * Migration does not charge the res_counter for the
3941 * replacement page, so leave it alone when phasing out the
3942 * page that is unused after the migration.
3943 */
3944 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003945 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003946
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003947 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003948
3949unlock_out:
3950 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003951 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08003952}
3953
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003954void mem_cgroup_uncharge_page(struct page *page)
3955{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003956 /* early check. */
3957 if (page_mapped(page))
3958 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08003959 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07003960 /*
3961 * If the page is in swap cache, uncharge should be deferred
3962 * to the swap path, which also properly accounts swap usage
3963 * and handles memcg lifetime.
3964 *
3965 * Note that this check is not stable and reclaim may add the
3966 * page to swap cache at any time after this. However, if the
3967 * page is not in swap cache by the time page->mapcount hits
3968 * 0, there won't be any page table references to the swap
3969 * slot, and reclaim will free it and not actually write the
3970 * page to disk.
3971 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07003972 if (PageSwapCache(page))
3973 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07003974 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003975}
3976
3977void mem_cgroup_uncharge_cache_page(struct page *page)
3978{
3979 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07003980 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07003981 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003982}
3983
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003984/*
3985 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
3986 * In that cases, pages are freed continuously and we can expect pages
3987 * are in the same memcg. All these calls itself limits the number of
3988 * pages freed at once, then uncharge_start/end() is called properly.
3989 * This may be called prural(2) times in a context,
3990 */
3991
3992void mem_cgroup_uncharge_start(void)
3993{
3994 current->memcg_batch.do_batch++;
3995 /* We can do nest. */
3996 if (current->memcg_batch.do_batch == 1) {
3997 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003998 current->memcg_batch.nr_pages = 0;
3999 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004000 }
4001}
4002
4003void mem_cgroup_uncharge_end(void)
4004{
4005 struct memcg_batch_info *batch = &current->memcg_batch;
4006
4007 if (!batch->do_batch)
4008 return;
4009
4010 batch->do_batch--;
4011 if (batch->do_batch) /* If stacked, do nothing. */
4012 return;
4013
4014 if (!batch->memcg)
4015 return;
4016 /*
4017 * This "batch->memcg" is valid without any css_get/put etc...
4018 * bacause we hide charges behind us.
4019 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004020 if (batch->nr_pages)
4021 res_counter_uncharge(&batch->memcg->res,
4022 batch->nr_pages * PAGE_SIZE);
4023 if (batch->memsw_nr_pages)
4024 res_counter_uncharge(&batch->memcg->memsw,
4025 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004026 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004027 /* forget this pointer (for sanity check) */
4028 batch->memcg = NULL;
4029}
4030
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004031#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004032/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004033 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004034 * memcg information is recorded to swap_cgroup of "ent"
4035 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004036void
4037mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004038{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004039 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004040 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004041
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004042 if (!swapout) /* this was a swap cache but the swap is unused ! */
4043 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4044
Johannes Weiner0030f532012-07-31 16:45:25 -07004045 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004046
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004047 /*
4048 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004049 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004050 */
4051 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004052 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004053}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004054#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004055
Andrew Mortonc255a452012-07-31 16:43:02 -07004056#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004057/*
4058 * called from swap_entry_free(). remove record in swap_cgroup and
4059 * uncharge "memsw" account.
4060 */
4061void mem_cgroup_uncharge_swap(swp_entry_t ent)
4062{
4063 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004064 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004065
4066 if (!do_swap_account)
4067 return;
4068
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004069 id = swap_cgroup_record(ent, 0);
4070 rcu_read_lock();
4071 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004072 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004073 /*
4074 * We uncharge this because swap is freed.
4075 * This memcg can be obsolete one. We avoid calling css_tryget
4076 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004077 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004078 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004079 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004080 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004081 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004082 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004083}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004084
4085/**
4086 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4087 * @entry: swap entry to be moved
4088 * @from: mem_cgroup which the entry is moved from
4089 * @to: mem_cgroup which the entry is moved to
4090 *
4091 * It succeeds only when the swap_cgroup's record for this entry is the same
4092 * as the mem_cgroup's id of @from.
4093 *
4094 * Returns 0 on success, -EINVAL on failure.
4095 *
4096 * The caller must have charged to @to, IOW, called res_counter_charge() about
4097 * both res and memsw, and called css_get().
4098 */
4099static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004100 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004101{
4102 unsigned short old_id, new_id;
4103
4104 old_id = css_id(&from->css);
4105 new_id = css_id(&to->css);
4106
4107 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004108 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004109 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004110 /*
4111 * This function is only called from task migration context now.
4112 * It postpones res_counter and refcount handling till the end
4113 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004114 * improvement. But we cannot postpone css_get(to) because if
4115 * the process that has been moved to @to does swap-in, the
4116 * refcount of @to might be decreased to 0.
4117 *
4118 * We are in attach() phase, so the cgroup is guaranteed to be
4119 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004120 */
Li Zefan40503772013-07-08 16:00:34 -07004121 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004122 return 0;
4123 }
4124 return -EINVAL;
4125}
4126#else
4127static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004128 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004129{
4130 return -EINVAL;
4131}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004132#endif
4133
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004134/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004135 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4136 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004137 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004138void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4139 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004140{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004141 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004142 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004143 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004144 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004145
Johannes Weiner72835c82012-01-12 17:18:32 -08004146 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004147
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004148 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004149 return;
Balbir Singh40779602008-04-04 14:29:59 -07004150
Mel Gormanb32967f2012-11-19 12:35:47 +00004151 if (PageTransHuge(page))
4152 nr_pages <<= compound_order(page);
4153
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004154 pc = lookup_page_cgroup(page);
4155 lock_page_cgroup(pc);
4156 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004157 memcg = pc->mem_cgroup;
4158 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004159 /*
4160 * At migrating an anonymous page, its mapcount goes down
4161 * to 0 and uncharge() will be called. But, even if it's fully
4162 * unmapped, migration may fail and this page has to be
4163 * charged again. We set MIGRATION flag here and delay uncharge
4164 * until end_migration() is called
4165 *
4166 * Corner Case Thinking
4167 * A)
4168 * When the old page was mapped as Anon and it's unmap-and-freed
4169 * while migration was ongoing.
4170 * If unmap finds the old page, uncharge() of it will be delayed
4171 * until end_migration(). If unmap finds a new page, it's
4172 * uncharged when it make mapcount to be 1->0. If unmap code
4173 * finds swap_migration_entry, the new page will not be mapped
4174 * and end_migration() will find it(mapcount==0).
4175 *
4176 * B)
4177 * When the old page was mapped but migraion fails, the kernel
4178 * remaps it. A charge for it is kept by MIGRATION flag even
4179 * if mapcount goes down to 0. We can do remap successfully
4180 * without charging it again.
4181 *
4182 * C)
4183 * The "old" page is under lock_page() until the end of
4184 * migration, so, the old page itself will not be swapped-out.
4185 * If the new page is swapped out before end_migraton, our
4186 * hook to usual swap-out path will catch the event.
4187 */
4188 if (PageAnon(page))
4189 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004190 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004191 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004192 /*
4193 * If the page is not charged at this point,
4194 * we return here.
4195 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004196 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004197 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004198
Johannes Weiner72835c82012-01-12 17:18:32 -08004199 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004200 /*
4201 * We charge new page before it's used/mapped. So, even if unlock_page()
4202 * is called before end_migration, we can catch all events on this new
4203 * page. In the case new page is migrated but not remapped, new page's
4204 * mapcount will be finally 0 and we call uncharge in end_migration().
4205 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004206 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004207 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004208 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004209 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004210 /*
4211 * The page is committed to the memcg, but it's not actually
4212 * charged to the res_counter since we plan on replacing the
4213 * old one and only one page is going to be left afterwards.
4214 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004215 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004216}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004217
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004218/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004219void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004220 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004221{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004222 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004223 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004224 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004225
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004226 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004227 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004228
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004229 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004230 used = oldpage;
4231 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004232 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004233 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004234 unused = oldpage;
4235 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004236 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004237 __mem_cgroup_uncharge_common(unused,
4238 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4239 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4240 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004241 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004242 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004243 * We disallowed uncharge of pages under migration because mapcount
4244 * of the page goes down to zero, temporarly.
4245 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004246 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004247 pc = lookup_page_cgroup(oldpage);
4248 lock_page_cgroup(pc);
4249 ClearPageCgroupMigration(pc);
4250 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004251
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004252 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004253 * If a page is a file cache, radix-tree replacement is very atomic
4254 * and we can skip this check. When it was an Anon page, its mapcount
4255 * goes down to 0. But because we added MIGRATION flage, it's not
4256 * uncharged yet. There are several case but page->mapcount check
4257 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4258 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004259 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004260 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004261 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004262}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004263
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004264/*
4265 * At replace page cache, newpage is not under any memcg but it's on
4266 * LRU. So, this function doesn't touch res_counter but handles LRU
4267 * in correct way. Both pages are locked so we cannot race with uncharge.
4268 */
4269void mem_cgroup_replace_page_cache(struct page *oldpage,
4270 struct page *newpage)
4271{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004272 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004273 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004274 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004275
4276 if (mem_cgroup_disabled())
4277 return;
4278
4279 pc = lookup_page_cgroup(oldpage);
4280 /* fix accounting on old pages */
4281 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004282 if (PageCgroupUsed(pc)) {
4283 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004284 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004285 ClearPageCgroupUsed(pc);
4286 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004287 unlock_page_cgroup(pc);
4288
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004289 /*
4290 * When called from shmem_replace_page(), in some cases the
4291 * oldpage has already been charged, and in some cases not.
4292 */
4293 if (!memcg)
4294 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004295 /*
4296 * Even if newpage->mapping was NULL before starting replacement,
4297 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4298 * LRU while we overwrite pc->mem_cgroup.
4299 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004300 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004301}
4302
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004303#ifdef CONFIG_DEBUG_VM
4304static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4305{
4306 struct page_cgroup *pc;
4307
4308 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004309 /*
4310 * Can be NULL while feeding pages into the page allocator for
4311 * the first time, i.e. during boot or memory hotplug;
4312 * or when mem_cgroup_disabled().
4313 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004314 if (likely(pc) && PageCgroupUsed(pc))
4315 return pc;
4316 return NULL;
4317}
4318
4319bool mem_cgroup_bad_page_check(struct page *page)
4320{
4321 if (mem_cgroup_disabled())
4322 return false;
4323
4324 return lookup_page_cgroup_used(page) != NULL;
4325}
4326
4327void mem_cgroup_print_bad_page(struct page *page)
4328{
4329 struct page_cgroup *pc;
4330
4331 pc = lookup_page_cgroup_used(page);
4332 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004333 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4334 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004335 }
4336}
4337#endif
4338
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004339static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004340 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004341{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004342 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004343 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004344 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004345 int children = mem_cgroup_count_children(memcg);
4346 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004347 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004348
4349 /*
4350 * For keeping hierarchical_reclaim simple, how long we should retry
4351 * is depends on callers. We set our retry-count to be function
4352 * of # of children which we should visit in this loop.
4353 */
4354 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4355
4356 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004357
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004358 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004359 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004360 if (signal_pending(current)) {
4361 ret = -EINTR;
4362 break;
4363 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004364 /*
4365 * Rather than hide all in some function, I do this in
4366 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004367 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004368 */
4369 mutex_lock(&set_limit_mutex);
4370 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4371 if (memswlimit < val) {
4372 ret = -EINVAL;
4373 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004374 break;
4375 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004376
4377 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4378 if (memlimit < val)
4379 enlarge = 1;
4380
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004381 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004382 if (!ret) {
4383 if (memswlimit == val)
4384 memcg->memsw_is_minimum = true;
4385 else
4386 memcg->memsw_is_minimum = false;
4387 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004388 mutex_unlock(&set_limit_mutex);
4389
4390 if (!ret)
4391 break;
4392
Johannes Weiner56600482012-01-12 17:17:59 -08004393 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4394 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004395 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4396 /* Usage is reduced ? */
4397 if (curusage >= oldusage)
4398 retry_count--;
4399 else
4400 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004401 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004402 if (!ret && enlarge)
4403 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004404
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004405 return ret;
4406}
4407
Li Zefan338c8432009-06-17 16:27:15 -07004408static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4409 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004410{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004411 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004412 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004413 int children = mem_cgroup_count_children(memcg);
4414 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004415 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004416
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004417 /* see mem_cgroup_resize_res_limit */
4418 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
4419 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004420 while (retry_count) {
4421 if (signal_pending(current)) {
4422 ret = -EINTR;
4423 break;
4424 }
4425 /*
4426 * Rather than hide all in some function, I do this in
4427 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004428 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004429 */
4430 mutex_lock(&set_limit_mutex);
4431 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4432 if (memlimit > val) {
4433 ret = -EINVAL;
4434 mutex_unlock(&set_limit_mutex);
4435 break;
4436 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004437 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4438 if (memswlimit < val)
4439 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004440 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004441 if (!ret) {
4442 if (memlimit == val)
4443 memcg->memsw_is_minimum = true;
4444 else
4445 memcg->memsw_is_minimum = false;
4446 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004447 mutex_unlock(&set_limit_mutex);
4448
4449 if (!ret)
4450 break;
4451
Johannes Weiner56600482012-01-12 17:17:59 -08004452 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4453 MEM_CGROUP_RECLAIM_NOSWAP |
4454 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004455 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004456 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004457 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004458 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004459 else
4460 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004461 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004462 if (!ret && enlarge)
4463 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004464 return ret;
4465}
4466
Michal Hocko2ef37d32012-10-26 13:37:30 +02004467/**
4468 * mem_cgroup_force_empty_list - clears LRU of a group
4469 * @memcg: group to clear
4470 * @node: NUMA node
4471 * @zid: zone id
4472 * @lru: lru to to clear
4473 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004474 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004475 * reclaim the pages page themselves - pages are moved to the parent (or root)
4476 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004477 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004478static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004479 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004480{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004481 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004482 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004483 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004484 struct page *busy;
4485 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004486
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004487 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004488 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4489 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004490
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004491 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004492 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004493 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004494 struct page *page;
4495
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004496 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004497 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004498 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004499 break;
4500 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004501 page = list_entry(list->prev, struct page, lru);
4502 if (busy == page) {
4503 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004504 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004505 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004506 continue;
4507 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004508 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004509
Johannes Weiner925b7672012-01-12 17:18:15 -08004510 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004511
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004512 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004513 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004514 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004515 cond_resched();
4516 } else
4517 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004518 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004519}
4520
4521/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004522 * make mem_cgroup's charge to be 0 if there is no task by moving
4523 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004524 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004525 *
4526 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004527 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004528static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004529{
Michal Hockoc26251f2012-10-26 13:37:28 +02004530 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004531 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004532
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004533 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004534 /* This is for making all *used* pages to be on LRU. */
4535 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004536 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004537 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004538 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004539 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004540 enum lru_list lru;
4541 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004542 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004543 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004544 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004545 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004546 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004547 mem_cgroup_end_move(memcg);
4548 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004549 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004550
Michal Hocko2ef37d32012-10-26 13:37:30 +02004551 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004552 * Kernel memory may not necessarily be trackable to a specific
4553 * process. So they are not migrated, and therefore we can't
4554 * expect their value to drop to 0 here.
4555 * Having res filled up with kmem only is enough.
4556 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004557 * This is a safety check because mem_cgroup_force_empty_list
4558 * could have raced with mem_cgroup_replace_page_cache callers
4559 * so the lru seemed empty but the page could have been added
4560 * right after the check. RES_USAGE should be safe as we always
4561 * charge before adding to the LRU.
4562 */
Glauber Costabea207c2012-12-18 14:22:11 -08004563 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4564 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4565 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004566}
4567
4568/*
Glauber Costab5f99b52013-02-22 16:34:53 -08004569 * This mainly exists for tests during the setting of set of use_hierarchy.
4570 * Since this is the very setting we are changing, the current hierarchy value
4571 * is meaningless
4572 */
4573static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4574{
Tejun Heo492eb212013-08-08 20:11:25 -04004575 struct cgroup_subsys_state *pos;
Glauber Costab5f99b52013-02-22 16:34:53 -08004576
4577 /* bounce at first found */
Tejun Heo492eb212013-08-08 20:11:25 -04004578 css_for_each_child(pos, &memcg->css)
Glauber Costab5f99b52013-02-22 16:34:53 -08004579 return true;
4580 return false;
4581}
4582
4583/*
Glauber Costa09998212013-02-22 16:34:55 -08004584 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4585 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
Glauber Costab5f99b52013-02-22 16:34:53 -08004586 * from mem_cgroup_count_children(), in the sense that we don't really care how
4587 * many children we have; we only need to know if we have any. It also counts
4588 * any memcg without hierarchy as infertile.
4589 */
4590static inline bool memcg_has_children(struct mem_cgroup *memcg)
4591{
4592 return memcg->use_hierarchy && __memcg_has_children(memcg);
4593}
4594
4595/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004596 * Reclaims as many pages from the given memcg as possible and moves
4597 * the rest to the parent.
4598 *
4599 * Caller is responsible for holding css reference for memcg.
4600 */
4601static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4602{
4603 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4604 struct cgroup *cgrp = memcg->css.cgroup;
4605
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004606 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004607 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4608 return -EBUSY;
4609
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004610 /* we call try-to-free pages for make this cgroup empty */
4611 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004612 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004613 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004614 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004615
Michal Hockoc26251f2012-10-26 13:37:28 +02004616 if (signal_pending(current))
4617 return -EINTR;
4618
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004619 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004620 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004621 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004622 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004623 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004624 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004625 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004626
4627 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004628 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02004629 mem_cgroup_reparent_charges(memcg);
4630
4631 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004632}
4633
Tejun Heo182446d2013-08-08 20:11:24 -04004634static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
4635 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004636{
Tejun Heo182446d2013-08-08 20:11:24 -04004637 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02004638
Michal Hockod8423012012-10-26 13:37:29 +02004639 if (mem_cgroup_is_root(memcg))
4640 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07004641 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004642}
4643
Tejun Heo182446d2013-08-08 20:11:24 -04004644static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
4645 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004646{
Tejun Heo182446d2013-08-08 20:11:24 -04004647 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004648}
4649
Tejun Heo182446d2013-08-08 20:11:24 -04004650static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
4651 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004652{
4653 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04004654 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04004655 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08004656
Glauber Costa09998212013-02-22 16:34:55 -08004657 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07004658
4659 if (memcg->use_hierarchy == val)
4660 goto out;
4661
Balbir Singh18f59ea2009-01-07 18:08:07 -08004662 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004663 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08004664 * in the child subtrees. If it is unset, then the change can
4665 * occur, provided the current cgroup has no children.
4666 *
4667 * For the root cgroup, parent_mem is NULL, we allow value to be
4668 * set if there are no children.
4669 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004670 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08004671 (val == 1 || val == 0)) {
Glauber Costab5f99b52013-02-22 16:34:53 -08004672 if (!__memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004673 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004674 else
4675 retval = -EBUSY;
4676 } else
4677 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07004678
4679out:
Glauber Costa09998212013-02-22 16:34:55 -08004680 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004681
4682 return retval;
4683}
4684
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004685
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004686static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004687 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004688{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004689 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004690 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004691
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004692 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004693 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004694 val += mem_cgroup_read_stat(iter, idx);
4695
4696 if (val < 0) /* race ? */
4697 val = 0;
4698 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004699}
4700
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004701static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004702{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004703 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004704
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004705 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004706 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00004707 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004708 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00004709 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004710 }
4711
David Rientjesb070e652013-05-07 16:18:09 -07004712 /*
4713 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4714 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4715 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004716 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4717 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004718
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004719 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004720 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004721
4722 return val << PAGE_SHIFT;
4723}
4724
Tejun Heo182446d2013-08-08 20:11:24 -04004725static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
4726 struct cftype *cft, struct file *file,
4727 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004728{
Tejun Heo182446d2013-08-08 20:11:24 -04004729 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07004730 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004731 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004732 int name, len;
4733 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004734
4735 type = MEMFILE_TYPE(cft->private);
4736 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004737
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004738 switch (type) {
4739 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004740 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004741 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004742 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004743 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004744 break;
4745 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004746 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004747 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004748 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004749 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004750 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004751 case _KMEM:
4752 val = res_counter_read_u64(&memcg->kmem, name);
4753 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004754 default:
4755 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004756 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004757
4758 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4759 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004760}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004761
Tejun Heo182446d2013-08-08 20:11:24 -04004762static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004763{
4764 int ret = -EINVAL;
4765#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04004766 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004767 /*
4768 * For simplicity, we won't allow this to be disabled. It also can't
4769 * be changed if the cgroup has children already, or if tasks had
4770 * already joined.
4771 *
4772 * If tasks join before we set the limit, a person looking at
4773 * kmem.usage_in_bytes will have no way to determine when it took
4774 * place, which makes the value quite meaningless.
4775 *
4776 * After it first became limited, changes in the value of the limit are
4777 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004778 */
Glauber Costa09998212013-02-22 16:34:55 -08004779 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004780 mutex_lock(&set_limit_mutex);
4781 if (!memcg->kmem_account_flags && val != RESOURCE_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04004782 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08004783 ret = -EBUSY;
4784 goto out;
4785 }
4786 ret = res_counter_set_limit(&memcg->kmem, val);
4787 VM_BUG_ON(ret);
4788
Glauber Costa55007d82012-12-18 14:22:38 -08004789 ret = memcg_update_cache_sizes(memcg);
4790 if (ret) {
4791 res_counter_set_limit(&memcg->kmem, RESOURCE_MAX);
4792 goto out;
4793 }
Glauber Costa692e89a2013-02-22 16:34:56 -08004794 static_key_slow_inc(&memcg_kmem_enabled_key);
4795 /*
4796 * setting the active bit after the inc will guarantee no one
4797 * starts accounting before all call sites are patched
4798 */
4799 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004800 } else
4801 ret = res_counter_set_limit(&memcg->kmem, val);
4802out:
4803 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08004804 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004805#endif
4806 return ret;
4807}
4808
Hugh Dickins6d0439902013-02-22 16:35:50 -08004809#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08004810static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004811{
Glauber Costa55007d82012-12-18 14:22:38 -08004812 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004813 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4814 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08004815 goto out;
4816
Glauber Costa510fc4e2012-12-18 14:21:47 -08004817 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08004818 /*
4819 * When that happen, we need to disable the static branch only on those
4820 * memcgs that enabled it. To achieve this, we would be forced to
4821 * complicate the code by keeping track of which memcgs were the ones
4822 * that actually enabled limits, and which ones got it from its
4823 * parents.
4824 *
4825 * It is a lot simpler just to do static_key_slow_inc() on every child
4826 * that is accounted.
4827 */
Glauber Costa55007d82012-12-18 14:22:38 -08004828 if (!memcg_kmem_is_active(memcg))
4829 goto out;
4830
4831 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07004832 * __mem_cgroup_free() will issue static_key_slow_dec() because this
4833 * memcg is active already. If the later initialization fails then the
4834 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08004835 */
Glauber Costa55007d82012-12-18 14:22:38 -08004836 static_key_slow_inc(&memcg_kmem_enabled_key);
4837
4838 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07004839 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08004840 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07004841 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08004842 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08004843out:
4844 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004845}
Hugh Dickins6d0439902013-02-22 16:35:50 -08004846#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08004847
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004848/*
4849 * The user of this function is...
4850 * RES_LIMIT.
4851 */
Tejun Heo182446d2013-08-08 20:11:24 -04004852static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07004853 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004854{
Tejun Heo182446d2013-08-08 20:11:24 -04004855 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08004856 enum res_type type;
4857 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004858 unsigned long long val;
4859 int ret;
4860
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004861 type = MEMFILE_TYPE(cft->private);
4862 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004863
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004864 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004865 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07004866 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
4867 ret = -EINVAL;
4868 break;
4869 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004870 /* This function does all necessary parse...reuse it */
4871 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004872 if (ret)
4873 break;
4874 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004875 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004876 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004877 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004878 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04004879 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004880 else
4881 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004882 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07004883 case RES_SOFT_LIMIT:
4884 ret = res_counter_memparse_write_strategy(buffer, &val);
4885 if (ret)
4886 break;
4887 /*
4888 * For memsw, soft limits are hard to implement in terms
4889 * of semantics, for now, we support soft limits for
4890 * control without swap
4891 */
4892 if (type == _MEM)
4893 ret = res_counter_set_soft_limit(&memcg->res, val);
4894 else
4895 ret = -EINVAL;
4896 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004897 default:
4898 ret = -EINVAL; /* should be BUG() ? */
4899 break;
4900 }
4901 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004902}
4903
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004904static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
4905 unsigned long long *mem_limit, unsigned long long *memsw_limit)
4906{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004907 unsigned long long min_limit, min_memsw_limit, tmp;
4908
4909 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4910 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004911 if (!memcg->use_hierarchy)
4912 goto out;
4913
Tejun Heo63876982013-08-08 20:11:23 -04004914 while (css_parent(&memcg->css)) {
4915 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004916 if (!memcg->use_hierarchy)
4917 break;
4918 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
4919 min_limit = min(min_limit, tmp);
4920 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4921 min_memsw_limit = min(min_memsw_limit, tmp);
4922 }
4923out:
4924 *mem_limit = min_limit;
4925 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004926}
4927
Tejun Heo182446d2013-08-08 20:11:24 -04004928static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004929{
Tejun Heo182446d2013-08-08 20:11:24 -04004930 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08004931 int name;
4932 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004933
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004934 type = MEMFILE_TYPE(event);
4935 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07004936
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004937 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004938 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004939 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004940 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004941 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004942 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004943 else if (type == _KMEM)
4944 res_counter_reset_max(&memcg->kmem);
4945 else
4946 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004947 break;
4948 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004949 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004950 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004951 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004952 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004953 else if (type == _KMEM)
4954 res_counter_reset_failcnt(&memcg->kmem);
4955 else
4956 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07004957 break;
4958 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07004959
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07004960 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004961}
4962
Tejun Heo182446d2013-08-08 20:11:24 -04004963static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004964 struct cftype *cft)
4965{
Tejun Heo182446d2013-08-08 20:11:24 -04004966 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004967}
4968
Daisuke Nishimura02491442010-03-10 15:22:17 -08004969#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04004970static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004971 struct cftype *cft, u64 val)
4972{
Tejun Heo182446d2013-08-08 20:11:24 -04004973 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004974
4975 if (val >= (1 << NR_MOVE_TYPE))
4976 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004977
Glauber Costaee5e8472013-02-22 16:34:50 -08004978 /*
4979 * No kind of locking is needed in here, because ->can_attach() will
4980 * check this value once in the beginning of the process, and then carry
4981 * on with stale data. This means that changes to this value will only
4982 * affect task migrations starting after the change.
4983 */
4984 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004985 return 0;
4986}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004987#else
Tejun Heo182446d2013-08-08 20:11:24 -04004988static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08004989 struct cftype *cft, u64 val)
4990{
4991 return -ENOSYS;
4992}
4993#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004994
Ying Han406eb0c2011-05-26 16:25:37 -07004995#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04004996static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
4997 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07004998{
4999 int nid;
5000 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5001 unsigned long node_nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005002 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005003
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005004 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005005 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005006 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005007 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005008 seq_printf(m, " N%d=%lu", nid, node_nr);
5009 }
5010 seq_putc(m, '\n');
5011
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005012 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005013 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005014 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005015 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005016 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005017 seq_printf(m, " N%d=%lu", nid, node_nr);
5018 }
5019 seq_putc(m, '\n');
5020
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005021 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005022 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005023 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005024 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005025 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005026 seq_printf(m, " N%d=%lu", nid, node_nr);
5027 }
5028 seq_putc(m, '\n');
5029
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005030 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005031 seq_printf(m, "unevictable=%lu", unevictable_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005032 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005033 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005034 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005035 seq_printf(m, " N%d=%lu", nid, node_nr);
5036 }
5037 seq_putc(m, '\n');
5038 return 0;
5039}
5040#endif /* CONFIG_NUMA */
5041
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005042static inline void mem_cgroup_lru_names_not_uptodate(void)
5043{
5044 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5045}
5046
Tejun Heo182446d2013-08-08 20:11:24 -04005047static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005048 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005049{
Tejun Heo182446d2013-08-08 20:11:24 -04005050 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005051 struct mem_cgroup *mi;
5052 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005053
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005054 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005055 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005056 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005057 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5058 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005059 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005060
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005061 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5062 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5063 mem_cgroup_read_events(memcg, i));
5064
5065 for (i = 0; i < NR_LRU_LISTS; i++)
5066 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5067 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5068
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005069 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005070 {
5071 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005072 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005073 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005074 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005075 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5076 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005077 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005078
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005079 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5080 long long val = 0;
5081
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005082 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005083 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005084 for_each_mem_cgroup_tree(mi, memcg)
5085 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5086 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5087 }
5088
5089 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5090 unsigned long long val = 0;
5091
5092 for_each_mem_cgroup_tree(mi, memcg)
5093 val += mem_cgroup_read_events(mi, i);
5094 seq_printf(m, "total_%s %llu\n",
5095 mem_cgroup_events_names[i], val);
5096 }
5097
5098 for (i = 0; i < NR_LRU_LISTS; i++) {
5099 unsigned long long val = 0;
5100
5101 for_each_mem_cgroup_tree(mi, memcg)
5102 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5103 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005104 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005105
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005106#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005107 {
5108 int nid, zid;
5109 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005110 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005111 unsigned long recent_rotated[2] = {0, 0};
5112 unsigned long recent_scanned[2] = {0, 0};
5113
5114 for_each_online_node(nid)
5115 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005116 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005117 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005118
Hugh Dickins89abfab2012-05-29 15:06:53 -07005119 recent_rotated[0] += rstat->recent_rotated[0];
5120 recent_rotated[1] += rstat->recent_rotated[1];
5121 recent_scanned[0] += rstat->recent_scanned[0];
5122 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005123 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005124 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5125 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5126 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5127 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005128 }
5129#endif
5130
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005131 return 0;
5132}
5133
Tejun Heo182446d2013-08-08 20:11:24 -04005134static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5135 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005136{
Tejun Heo182446d2013-08-08 20:11:24 -04005137 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005138
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005139 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005140}
5141
Tejun Heo182446d2013-08-08 20:11:24 -04005142static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5143 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005144{
Tejun Heo182446d2013-08-08 20:11:24 -04005145 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005146 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005147
Tejun Heo63876982013-08-08 20:11:23 -04005148 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005149 return -EINVAL;
5150
Glauber Costa09998212013-02-22 16:34:55 -08005151 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005152
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005153 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005154 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005155 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005156 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005157 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005158
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005159 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005160
Glauber Costa09998212013-02-22 16:34:55 -08005161 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005162
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005163 return 0;
5164}
5165
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005166static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5167{
5168 struct mem_cgroup_threshold_ary *t;
5169 u64 usage;
5170 int i;
5171
5172 rcu_read_lock();
5173 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005174 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005175 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005176 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005177
5178 if (!t)
5179 goto unlock;
5180
5181 usage = mem_cgroup_usage(memcg, swap);
5182
5183 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005184 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005185 * If it's not true, a threshold was crossed after last
5186 * call of __mem_cgroup_threshold().
5187 */
Phil Carmody5407a562010-05-26 14:42:42 -07005188 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005189
5190 /*
5191 * Iterate backward over array of thresholds starting from
5192 * current_threshold and check if a threshold is crossed.
5193 * If none of thresholds below usage is crossed, we read
5194 * only one element of the array here.
5195 */
5196 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5197 eventfd_signal(t->entries[i].eventfd, 1);
5198
5199 /* i = current_threshold + 1 */
5200 i++;
5201
5202 /*
5203 * Iterate forward over array of thresholds starting from
5204 * current_threshold+1 and check if a threshold is crossed.
5205 * If none of thresholds above usage is crossed, we read
5206 * only one element of the array here.
5207 */
5208 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5209 eventfd_signal(t->entries[i].eventfd, 1);
5210
5211 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005212 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005213unlock:
5214 rcu_read_unlock();
5215}
5216
5217static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5218{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005219 while (memcg) {
5220 __mem_cgroup_threshold(memcg, false);
5221 if (do_swap_account)
5222 __mem_cgroup_threshold(memcg, true);
5223
5224 memcg = parent_mem_cgroup(memcg);
5225 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005226}
5227
5228static int compare_thresholds(const void *a, const void *b)
5229{
5230 const struct mem_cgroup_threshold *_a = a;
5231 const struct mem_cgroup_threshold *_b = b;
5232
Greg Thelen2bff24a2013-09-11 14:23:08 -07005233 if (_a->threshold > _b->threshold)
5234 return 1;
5235
5236 if (_a->threshold < _b->threshold)
5237 return -1;
5238
5239 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005240}
5241
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005242static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005243{
5244 struct mem_cgroup_eventfd_list *ev;
5245
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005246 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005247 eventfd_signal(ev->eventfd, 1);
5248 return 0;
5249}
5250
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005251static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005252{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005253 struct mem_cgroup *iter;
5254
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005255 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005256 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005257}
5258
Tejun Heo81eeaf02013-08-08 20:11:26 -04005259static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005260 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005261{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005262 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005263 struct mem_cgroup_thresholds *thresholds;
5264 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005265 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005266 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005267 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005268
5269 ret = res_counter_memparse_write_strategy(args, &threshold);
5270 if (ret)
5271 return ret;
5272
5273 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005274
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005275 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005276 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005277 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005278 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005279 else
5280 BUG();
5281
5282 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5283
5284 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005285 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005286 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5287
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005288 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005289
5290 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005291 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005292 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005293 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005294 ret = -ENOMEM;
5295 goto unlock;
5296 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005297 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005298
5299 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005300 if (thresholds->primary) {
5301 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005302 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005303 }
5304
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005305 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005306 new->entries[size - 1].eventfd = eventfd;
5307 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005308
5309 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005310 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005311 compare_thresholds, NULL);
5312
5313 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005314 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005315 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005316 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005317 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005318 * new->current_threshold will not be used until
5319 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005320 * it here.
5321 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005322 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005323 } else
5324 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005325 }
5326
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005327 /* Free old spare buffer and save old primary buffer as spare */
5328 kfree(thresholds->spare);
5329 thresholds->spare = thresholds->primary;
5330
5331 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005332
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005333 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005334 synchronize_rcu();
5335
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005336unlock:
5337 mutex_unlock(&memcg->thresholds_lock);
5338
5339 return ret;
5340}
5341
Tejun Heo81eeaf02013-08-08 20:11:26 -04005342static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005343 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005344{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005345 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005346 struct mem_cgroup_thresholds *thresholds;
5347 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005348 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005349 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005350 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005351
5352 mutex_lock(&memcg->thresholds_lock);
5353 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005354 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005355 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005356 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005357 else
5358 BUG();
5359
Anton Vorontsov371528c2012-02-24 05:14:46 +04005360 if (!thresholds->primary)
5361 goto unlock;
5362
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005363 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5364
5365 /* Check if a threshold crossed before removing */
5366 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5367
5368 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005369 size = 0;
5370 for (i = 0; i < thresholds->primary->size; i++) {
5371 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005372 size++;
5373 }
5374
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005375 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005376
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005377 /* Set thresholds array to NULL if we don't have thresholds */
5378 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005379 kfree(new);
5380 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005381 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005382 }
5383
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005384 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005385
5386 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005387 new->current_threshold = -1;
5388 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5389 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005390 continue;
5391
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005392 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005393 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005394 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005395 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005396 * until rcu_assign_pointer(), so it's safe to increment
5397 * it here.
5398 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005399 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005400 }
5401 j++;
5402 }
5403
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005404swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005405 /* Swap primary and spare array */
5406 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005407 /* If all events are unregistered, free the spare array */
5408 if (!new) {
5409 kfree(thresholds->spare);
5410 thresholds->spare = NULL;
5411 }
5412
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005413 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005414
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005415 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005416 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005417unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005418 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005419}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005420
Tejun Heo81eeaf02013-08-08 20:11:26 -04005421static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005422 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5423{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005424 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005425 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005426 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005427
5428 BUG_ON(type != _OOM_TYPE);
5429 event = kmalloc(sizeof(*event), GFP_KERNEL);
5430 if (!event)
5431 return -ENOMEM;
5432
Michal Hocko1af8efe2011-07-26 16:08:24 -07005433 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005434
5435 event->eventfd = eventfd;
5436 list_add(&event->list, &memcg->oom_notify);
5437
5438 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005439 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005440 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005441 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005442
5443 return 0;
5444}
5445
Tejun Heo81eeaf02013-08-08 20:11:26 -04005446static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005447 struct cftype *cft, struct eventfd_ctx *eventfd)
5448{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005449 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005450 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005451 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005452
5453 BUG_ON(type != _OOM_TYPE);
5454
Michal Hocko1af8efe2011-07-26 16:08:24 -07005455 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005456
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005457 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005458 if (ev->eventfd == eventfd) {
5459 list_del(&ev->list);
5460 kfree(ev);
5461 }
5462 }
5463
Michal Hocko1af8efe2011-07-26 16:08:24 -07005464 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005465}
5466
Tejun Heo182446d2013-08-08 20:11:24 -04005467static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005468 struct cftype *cft, struct cgroup_map_cb *cb)
5469{
Tejun Heo182446d2013-08-08 20:11:24 -04005470 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005471
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005472 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005473
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005474 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005475 cb->fill(cb, "under_oom", 1);
5476 else
5477 cb->fill(cb, "under_oom", 0);
5478 return 0;
5479}
5480
Tejun Heo182446d2013-08-08 20:11:24 -04005481static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005482 struct cftype *cft, u64 val)
5483{
Tejun Heo182446d2013-08-08 20:11:24 -04005484 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005485 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005486
5487 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005488 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005489 return -EINVAL;
5490
Glauber Costa09998212013-02-22 16:34:55 -08005491 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005492 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005493 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005494 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005495 return -EINVAL;
5496 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005497 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005498 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005499 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005500 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005501 return 0;
5502}
5503
Andrew Mortonc255a452012-07-31 16:43:02 -07005504#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005505static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005506{
Glauber Costa55007d82012-12-18 14:22:38 -08005507 int ret;
5508
Glauber Costa2633d7a2012-12-18 14:22:34 -08005509 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005510 ret = memcg_propagate_kmem(memcg);
5511 if (ret)
5512 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005513
Glauber Costa1d62e432012-04-09 19:36:33 -03005514 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005515}
Glauber Costae5671df2011-12-11 21:47:01 +00005516
Li Zefan10d5ebf2013-07-08 16:00:33 -07005517static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005518{
Glauber Costa1d62e432012-04-09 19:36:33 -03005519 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005520}
5521
5522static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5523{
5524 if (!memcg_kmem_is_active(memcg))
5525 return;
5526
5527 /*
5528 * kmem charges can outlive the cgroup. In the case of slab
5529 * pages, for instance, a page contain objects from various
5530 * processes. As we prevent from taking a reference for every
5531 * such allocation we have to be careful when doing uncharge
5532 * (see memcg_uncharge_kmem) and here during offlining.
5533 *
5534 * The idea is that that only the _last_ uncharge which sees
5535 * the dead memcg will drop the last reference. An additional
5536 * reference is taken here before the group is marked dead
5537 * which is then paired with css_put during uncharge resp. here.
5538 *
5539 * Although this might sound strange as this path is called from
5540 * css_offline() when the referencemight have dropped down to 0
5541 * and shouldn't be incremented anymore (css_tryget would fail)
5542 * we do not have other options because of the kmem allocations
5543 * lifetime.
5544 */
5545 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005546
5547 memcg_kmem_mark_dead(memcg);
5548
5549 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5550 return;
5551
Glauber Costa7de37682012-12-18 14:22:07 -08005552 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005553 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005554}
Glauber Costae5671df2011-12-11 21:47:01 +00005555#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005556static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005557{
5558 return 0;
5559}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005560
Li Zefan10d5ebf2013-07-08 16:00:33 -07005561static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5562{
5563}
5564
5565static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005566{
5567}
Glauber Costae5671df2011-12-11 21:47:01 +00005568#endif
5569
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005570static struct cftype mem_cgroup_files[] = {
5571 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005572 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005573 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005574 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005575 .register_event = mem_cgroup_usage_register_event,
5576 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005577 },
5578 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005579 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005580 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005581 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005582 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005583 },
5584 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005585 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005586 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005587 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005588 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005589 },
5590 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005591 .name = "soft_limit_in_bytes",
5592 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5593 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005594 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005595 },
5596 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005597 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005598 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005599 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005600 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005601 },
Balbir Singh8697d332008-02-07 00:13:59 -08005602 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005603 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005604 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005605 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005606 {
5607 .name = "force_empty",
5608 .trigger = mem_cgroup_force_empty_write,
5609 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005610 {
5611 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005612 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005613 .write_u64 = mem_cgroup_hierarchy_write,
5614 .read_u64 = mem_cgroup_hierarchy_read,
5615 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005616 {
5617 .name = "swappiness",
5618 .read_u64 = mem_cgroup_swappiness_read,
5619 .write_u64 = mem_cgroup_swappiness_write,
5620 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005621 {
5622 .name = "move_charge_at_immigrate",
5623 .read_u64 = mem_cgroup_move_charge_read,
5624 .write_u64 = mem_cgroup_move_charge_write,
5625 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005626 {
5627 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005628 .read_map = mem_cgroup_oom_control_read,
5629 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005630 .register_event = mem_cgroup_oom_register_event,
5631 .unregister_event = mem_cgroup_oom_unregister_event,
5632 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5633 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005634 {
5635 .name = "pressure_level",
5636 .register_event = vmpressure_register_event,
5637 .unregister_event = vmpressure_unregister_event,
5638 },
Ying Han406eb0c2011-05-26 16:25:37 -07005639#ifdef CONFIG_NUMA
5640 {
5641 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005642 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005643 },
5644#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005645#ifdef CONFIG_MEMCG_KMEM
5646 {
5647 .name = "kmem.limit_in_bytes",
5648 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5649 .write_string = mem_cgroup_write,
5650 .read = mem_cgroup_read,
5651 },
5652 {
5653 .name = "kmem.usage_in_bytes",
5654 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5655 .read = mem_cgroup_read,
5656 },
5657 {
5658 .name = "kmem.failcnt",
5659 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5660 .trigger = mem_cgroup_reset,
5661 .read = mem_cgroup_read,
5662 },
5663 {
5664 .name = "kmem.max_usage_in_bytes",
5665 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5666 .trigger = mem_cgroup_reset,
5667 .read = mem_cgroup_read,
5668 },
Glauber Costa749c5412012-12-18 14:23:01 -08005669#ifdef CONFIG_SLABINFO
5670 {
5671 .name = "kmem.slabinfo",
5672 .read_seq_string = mem_cgroup_slabinfo_read,
5673 },
5674#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005675#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005676 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005677};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005678
Michal Hocko2d110852013-02-22 16:34:43 -08005679#ifdef CONFIG_MEMCG_SWAP
5680static struct cftype memsw_cgroup_files[] = {
5681 {
5682 .name = "memsw.usage_in_bytes",
5683 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5684 .read = mem_cgroup_read,
5685 .register_event = mem_cgroup_usage_register_event,
5686 .unregister_event = mem_cgroup_usage_unregister_event,
5687 },
5688 {
5689 .name = "memsw.max_usage_in_bytes",
5690 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5691 .trigger = mem_cgroup_reset,
5692 .read = mem_cgroup_read,
5693 },
5694 {
5695 .name = "memsw.limit_in_bytes",
5696 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5697 .write_string = mem_cgroup_write,
5698 .read = mem_cgroup_read,
5699 },
5700 {
5701 .name = "memsw.failcnt",
5702 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5703 .trigger = mem_cgroup_reset,
5704 .read = mem_cgroup_read,
5705 },
5706 { }, /* terminate */
5707};
5708#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005709static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005710{
5711 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005712 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005713 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005714 /*
5715 * This routine is called against possible nodes.
5716 * But it's BUG to call kmalloc() against offline node.
5717 *
5718 * TODO: this routine can waste much memory for nodes which will
5719 * never be onlined. It's better to use memory hotplug callback
5720 * function.
5721 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005722 if (!node_state(node, N_NORMAL_MEMORY))
5723 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005724 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005725 if (!pn)
5726 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005727
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005728 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5729 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005730 lruvec_init(&mz->lruvec);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005731 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005732 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005733 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005734 return 0;
5735}
5736
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005737static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005738{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005739 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005740}
5741
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005742static struct mem_cgroup *mem_cgroup_alloc(void)
5743{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005744 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005745 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005746
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005747 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08005748 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005749 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005750 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005751 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005752
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005753 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005754 return NULL;
5755
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005756 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5757 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005758 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005759 spin_lock_init(&memcg->pcp_counter_lock);
5760 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005761
5762out_free:
5763 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005764 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005765 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005766 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005767 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005768}
5769
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005770/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005771 * At destroying mem_cgroup, references from swap_cgroup can remain.
5772 * (scanning all at force_empty is too costly...)
5773 *
5774 * Instead of clearing all references at force_empty, we remember
5775 * the number of reference from swap_cgroup and free mem_cgroup when
5776 * it goes down to 0.
5777 *
5778 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005779 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005780
5781static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005782{
Glauber Costac8b2a362012-12-18 14:22:13 -08005783 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005784 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07005785
Glauber Costac8b2a362012-12-18 14:22:13 -08005786 free_css_id(&mem_cgroup_subsys, &memcg->css);
5787
5788 for_each_node(node)
5789 free_mem_cgroup_per_zone_info(memcg, node);
5790
5791 free_percpu(memcg->stat);
5792
Glauber Costa3f134612012-05-29 15:07:11 -07005793 /*
5794 * We need to make sure that (at least for now), the jump label
5795 * destruction code runs outside of the cgroup lock. This is because
5796 * get_online_cpus(), which is called from the static_branch update,
5797 * can't be called inside the cgroup_lock. cpusets are the ones
5798 * enforcing this dependency, so if they ever change, we might as well.
5799 *
5800 * schedule_work() will guarantee this happens. Be careful if you need
5801 * to move this code around, and make sure it is outside
5802 * the cgroup_lock.
5803 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005804 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07005805 if (size < PAGE_SIZE)
5806 kfree(memcg);
5807 else
5808 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005809}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005810
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005811/*
5812 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5813 */
Glauber Costae1aab162011-12-11 21:47:03 +00005814struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005815{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005816 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005817 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005818 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005819}
Glauber Costae1aab162011-12-11 21:47:03 +00005820EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005821
Li Zefan0eb253e2009-01-15 13:51:25 -08005822static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04005823mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005824{
Glauber Costad142e3e2013-02-22 16:34:52 -08005825 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005826 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005827 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005828
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005829 memcg = mem_cgroup_alloc();
5830 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005831 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005832
Bob Liu3ed28fa2012-01-12 17:19:04 -08005833 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005834 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005835 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005836
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005837 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04005838 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08005839 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08005840 res_counter_init(&memcg->res, NULL);
5841 res_counter_init(&memcg->memsw, NULL);
5842 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005843 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005844
Glauber Costad142e3e2013-02-22 16:34:52 -08005845 memcg->last_scanned_node = MAX_NUMNODES;
5846 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08005847 memcg->move_charge_at_immigrate = 0;
5848 mutex_init(&memcg->thresholds_lock);
5849 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005850 vmpressure_init(&memcg->vmpressure);
Glauber Costad142e3e2013-02-22 16:34:52 -08005851
5852 return &memcg->css;
5853
5854free_out:
5855 __mem_cgroup_free(memcg);
5856 return ERR_PTR(error);
5857}
5858
5859static int
Tejun Heoeb954192013-08-08 20:11:23 -04005860mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08005861{
Tejun Heoeb954192013-08-08 20:11:23 -04005862 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5863 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08005864 int error = 0;
5865
Tejun Heo63876982013-08-08 20:11:23 -04005866 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08005867 return 0;
5868
Glauber Costa09998212013-02-22 16:34:55 -08005869 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08005870
5871 memcg->use_hierarchy = parent->use_hierarchy;
5872 memcg->oom_kill_disable = parent->oom_kill_disable;
5873 memcg->swappiness = mem_cgroup_swappiness(parent);
5874
5875 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005876 res_counter_init(&memcg->res, &parent->res);
5877 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005878 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08005879
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005880 /*
Li Zefan8d76a972013-07-08 16:00:36 -07005881 * No need to take a reference to the parent because cgroup
5882 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005883 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08005884 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005885 res_counter_init(&memcg->res, NULL);
5886 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005887 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07005888 /*
5889 * Deeper hierachy with use_hierarchy == false doesn't make
5890 * much sense so let cgroup subsystem know about this
5891 * unfortunate state in our controller.
5892 */
Glauber Costad142e3e2013-02-22 16:34:52 -08005893 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07005894 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005895 }
Glauber Costacbe128e32012-04-09 19:36:34 -03005896
5897 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08005898 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08005899 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005900}
5901
Michal Hocko5f578162013-04-29 15:07:17 -07005902/*
5903 * Announce all parents that a group from their hierarchy is gone.
5904 */
5905static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
5906{
5907 struct mem_cgroup *parent = memcg;
5908
5909 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07005910 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07005911
5912 /*
5913 * if the root memcg is not hierarchical we have to check it
5914 * explicitely.
5915 */
5916 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07005917 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07005918}
5919
Tejun Heoeb954192013-08-08 20:11:23 -04005920static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005921{
Tejun Heoeb954192013-08-08 20:11:23 -04005922 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005923
Li Zefan10d5ebf2013-07-08 16:00:33 -07005924 kmem_cgroup_css_offline(memcg);
5925
Michal Hocko5f578162013-04-29 15:07:17 -07005926 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02005927 mem_cgroup_reparent_charges(memcg);
Glauber Costa1f458cb2012-12-18 14:22:50 -08005928 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07005929 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005930}
5931
Tejun Heoeb954192013-08-08 20:11:23 -04005932static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005933{
Tejun Heoeb954192013-08-08 20:11:23 -04005934 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005935
Li Zefan10d5ebf2013-07-08 16:00:33 -07005936 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07005937 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005938}
5939
Daisuke Nishimura02491442010-03-10 15:22:17 -08005940#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005941/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005942#define PRECHARGE_COUNT_AT_ONCE 256
5943static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005944{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005945 int ret = 0;
5946 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005947 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005948
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005949 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005950 mc.precharge += count;
5951 /* we don't need css_get for root */
5952 return ret;
5953 }
5954 /* try to charge at once */
5955 if (count > 1) {
5956 struct res_counter *dummy;
5957 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005958 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005959 * by cgroup_lock_live_cgroup() that it is not removed and we
5960 * are still under the same cgroup_mutex. So we can postpone
5961 * css_get().
5962 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005963 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005964 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005965 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005966 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005967 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005968 goto one_by_one;
5969 }
5970 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005971 return ret;
5972 }
5973one_by_one:
5974 /* fall back to one by one charge */
5975 while (count--) {
5976 if (signal_pending(current)) {
5977 ret = -EINTR;
5978 break;
5979 }
5980 if (!batch_count--) {
5981 batch_count = PRECHARGE_COUNT_AT_ONCE;
5982 cond_resched();
5983 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005984 ret = __mem_cgroup_try_charge(NULL,
5985 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005986 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005987 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005988 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005989 mc.precharge++;
5990 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005991 return ret;
5992}
5993
5994/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005995 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005996 * @vma: the vma the pte to be checked belongs
5997 * @addr: the address corresponding to the pte to be checked
5998 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08005999 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006000 *
6001 * Returns
6002 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6003 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6004 * move charge. if @target is not NULL, the page is stored in target->page
6005 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006006 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6007 * target for charge migration. if @target is not NULL, the entry is stored
6008 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006009 *
6010 * Called with pte lock held.
6011 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006012union mc_target {
6013 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006014 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006015};
6016
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006017enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006018 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006019 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006020 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006021};
6022
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006023static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6024 unsigned long addr, pte_t ptent)
6025{
6026 struct page *page = vm_normal_page(vma, addr, ptent);
6027
6028 if (!page || !page_mapped(page))
6029 return NULL;
6030 if (PageAnon(page)) {
6031 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006032 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006033 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006034 } else if (!move_file())
6035 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006036 return NULL;
6037 if (!get_page_unless_zero(page))
6038 return NULL;
6039
6040 return page;
6041}
6042
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006043#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006044static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6045 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6046{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006047 struct page *page = NULL;
6048 swp_entry_t ent = pte_to_swp_entry(ptent);
6049
6050 if (!move_anon() || non_swap_entry(ent))
6051 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006052 /*
6053 * Because lookup_swap_cache() updates some statistics counter,
6054 * we call find_get_page() with swapper_space directly.
6055 */
Shaohua Li33806f02013-02-22 16:34:37 -08006056 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006057 if (do_swap_account)
6058 entry->val = ent.val;
6059
6060 return page;
6061}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006062#else
6063static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6064 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6065{
6066 return NULL;
6067}
6068#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006069
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006070static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6071 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6072{
6073 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006074 struct address_space *mapping;
6075 pgoff_t pgoff;
6076
6077 if (!vma->vm_file) /* anonymous vma */
6078 return NULL;
6079 if (!move_file())
6080 return NULL;
6081
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006082 mapping = vma->vm_file->f_mapping;
6083 if (pte_none(ptent))
6084 pgoff = linear_page_index(vma, addr);
6085 else /* pte_file(ptent) is true */
6086 pgoff = pte_to_pgoff(ptent);
6087
6088 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006089 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006090
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006091#ifdef CONFIG_SWAP
6092 /* shmem/tmpfs may report page out on swap: account for that too. */
6093 if (radix_tree_exceptional_entry(page)) {
6094 swp_entry_t swap = radix_to_swp_entry(page);
6095 if (do_swap_account)
6096 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006097 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006098 }
6099#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006100 return page;
6101}
6102
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006103static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006104 unsigned long addr, pte_t ptent, union mc_target *target)
6105{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006106 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006107 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006108 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006109 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006110
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006111 if (pte_present(ptent))
6112 page = mc_handle_present_pte(vma, addr, ptent);
6113 else if (is_swap_pte(ptent))
6114 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006115 else if (pte_none(ptent) || pte_file(ptent))
6116 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006117
6118 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006119 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006120 if (page) {
6121 pc = lookup_page_cgroup(page);
6122 /*
6123 * Do only loose check w/o page_cgroup lock.
6124 * mem_cgroup_move_account() checks the pc is valid or not under
6125 * the lock.
6126 */
6127 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6128 ret = MC_TARGET_PAGE;
6129 if (target)
6130 target->page = page;
6131 }
6132 if (!ret || !target)
6133 put_page(page);
6134 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006135 /* There is a swap entry and a page doesn't exist or isn't charged */
6136 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08006137 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006138 ret = MC_TARGET_SWAP;
6139 if (target)
6140 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006141 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006142 return ret;
6143}
6144
Naoya Horiguchi12724852012-03-21 16:34:28 -07006145#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6146/*
6147 * We don't consider swapping or file mapped pages because THP does not
6148 * support them for now.
6149 * Caller should make sure that pmd_trans_huge(pmd) is true.
6150 */
6151static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6152 unsigned long addr, pmd_t pmd, union mc_target *target)
6153{
6154 struct page *page = NULL;
6155 struct page_cgroup *pc;
6156 enum mc_target_type ret = MC_TARGET_NONE;
6157
6158 page = pmd_page(pmd);
6159 VM_BUG_ON(!page || !PageHead(page));
6160 if (!move_anon())
6161 return ret;
6162 pc = lookup_page_cgroup(page);
6163 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6164 ret = MC_TARGET_PAGE;
6165 if (target) {
6166 get_page(page);
6167 target->page = page;
6168 }
6169 }
6170 return ret;
6171}
6172#else
6173static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6174 unsigned long addr, pmd_t pmd, union mc_target *target)
6175{
6176 return MC_TARGET_NONE;
6177}
6178#endif
6179
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006180static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6181 unsigned long addr, unsigned long end,
6182 struct mm_walk *walk)
6183{
6184 struct vm_area_struct *vma = walk->private;
6185 pte_t *pte;
6186 spinlock_t *ptl;
6187
Naoya Horiguchi12724852012-03-21 16:34:28 -07006188 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6189 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6190 mc.precharge += HPAGE_PMD_NR;
6191 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006192 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006193 }
Dave Hansen03319322011-03-22 16:32:56 -07006194
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006195 if (pmd_trans_unstable(pmd))
6196 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006197 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6198 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006199 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006200 mc.precharge++; /* increment precharge temporarily */
6201 pte_unmap_unlock(pte - 1, ptl);
6202 cond_resched();
6203
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006204 return 0;
6205}
6206
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006207static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6208{
6209 unsigned long precharge;
6210 struct vm_area_struct *vma;
6211
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006212 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006213 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6214 struct mm_walk mem_cgroup_count_precharge_walk = {
6215 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6216 .mm = mm,
6217 .private = vma,
6218 };
6219 if (is_vm_hugetlb_page(vma))
6220 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006221 walk_page_range(vma->vm_start, vma->vm_end,
6222 &mem_cgroup_count_precharge_walk);
6223 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006224 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006225
6226 precharge = mc.precharge;
6227 mc.precharge = 0;
6228
6229 return precharge;
6230}
6231
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006232static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6233{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006234 unsigned long precharge = mem_cgroup_count_precharge(mm);
6235
6236 VM_BUG_ON(mc.moving_task);
6237 mc.moving_task = current;
6238 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006239}
6240
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006241/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6242static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006243{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006244 struct mem_cgroup *from = mc.from;
6245 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006246 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006247
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006248 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006249 if (mc.precharge) {
6250 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6251 mc.precharge = 0;
6252 }
6253 /*
6254 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6255 * we must uncharge here.
6256 */
6257 if (mc.moved_charge) {
6258 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6259 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006260 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006261 /* we must fixup refcnts and charges */
6262 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006263 /* uncharge swap account from the old cgroup */
6264 if (!mem_cgroup_is_root(mc.from))
6265 res_counter_uncharge(&mc.from->memsw,
6266 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006267
6268 for (i = 0; i < mc.moved_swap; i++)
6269 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006270
6271 if (!mem_cgroup_is_root(mc.to)) {
6272 /*
6273 * we charged both to->res and to->memsw, so we should
6274 * uncharge to->res.
6275 */
6276 res_counter_uncharge(&mc.to->res,
6277 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006278 }
Li Zefan40503772013-07-08 16:00:34 -07006279 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006280 mc.moved_swap = 0;
6281 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006282 memcg_oom_recover(from);
6283 memcg_oom_recover(to);
6284 wake_up_all(&mc.waitq);
6285}
6286
6287static void mem_cgroup_clear_mc(void)
6288{
6289 struct mem_cgroup *from = mc.from;
6290
6291 /*
6292 * we must clear moving_task before waking up waiters at the end of
6293 * task migration.
6294 */
6295 mc.moving_task = NULL;
6296 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006297 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006298 mc.from = NULL;
6299 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006300 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006301 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006302}
6303
Tejun Heoeb954192013-08-08 20:11:23 -04006304static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006305 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006306{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006307 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006308 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006309 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006310 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006311
Glauber Costaee5e8472013-02-22 16:34:50 -08006312 /*
6313 * We are now commited to this value whatever it is. Changes in this
6314 * tunable will only affect upcoming migrations, not the current one.
6315 * So we need to save it, and keep it going.
6316 */
6317 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6318 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006319 struct mm_struct *mm;
6320 struct mem_cgroup *from = mem_cgroup_from_task(p);
6321
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006322 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006323
6324 mm = get_task_mm(p);
6325 if (!mm)
6326 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006327 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006328 if (mm->owner == p) {
6329 VM_BUG_ON(mc.from);
6330 VM_BUG_ON(mc.to);
6331 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006332 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006333 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006334 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006335 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006336 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006337 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006338 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006339 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006340 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006341
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006342 ret = mem_cgroup_precharge_mc(mm);
6343 if (ret)
6344 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006345 }
6346 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006347 }
6348 return ret;
6349}
6350
Tejun Heoeb954192013-08-08 20:11:23 -04006351static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006352 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006353{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006354 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006355}
6356
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006357static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6358 unsigned long addr, unsigned long end,
6359 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006360{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006361 int ret = 0;
6362 struct vm_area_struct *vma = walk->private;
6363 pte_t *pte;
6364 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006365 enum mc_target_type target_type;
6366 union mc_target target;
6367 struct page *page;
6368 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006369
Naoya Horiguchi12724852012-03-21 16:34:28 -07006370 /*
6371 * We don't take compound_lock() here but no race with splitting thp
6372 * happens because:
6373 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6374 * under splitting, which means there's no concurrent thp split,
6375 * - if another thread runs into split_huge_page() just after we
6376 * entered this if-block, the thread must wait for page table lock
6377 * to be unlocked in __split_huge_page_splitting(), where the main
6378 * part of thp split is not executed yet.
6379 */
6380 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006381 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006382 spin_unlock(&vma->vm_mm->page_table_lock);
6383 return 0;
6384 }
6385 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6386 if (target_type == MC_TARGET_PAGE) {
6387 page = target.page;
6388 if (!isolate_lru_page(page)) {
6389 pc = lookup_page_cgroup(page);
6390 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006391 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006392 mc.precharge -= HPAGE_PMD_NR;
6393 mc.moved_charge += HPAGE_PMD_NR;
6394 }
6395 putback_lru_page(page);
6396 }
6397 put_page(page);
6398 }
6399 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006400 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006401 }
6402
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006403 if (pmd_trans_unstable(pmd))
6404 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006405retry:
6406 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6407 for (; addr != end; addr += PAGE_SIZE) {
6408 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006409 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006410
6411 if (!mc.precharge)
6412 break;
6413
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006414 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006415 case MC_TARGET_PAGE:
6416 page = target.page;
6417 if (isolate_lru_page(page))
6418 goto put;
6419 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006420 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006421 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006422 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006423 /* we uncharge from mc.from later. */
6424 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006425 }
6426 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006427put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006428 put_page(page);
6429 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006430 case MC_TARGET_SWAP:
6431 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006432 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006433 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006434 /* we fixup refcnts and charges later. */
6435 mc.moved_swap++;
6436 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006437 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006438 default:
6439 break;
6440 }
6441 }
6442 pte_unmap_unlock(pte - 1, ptl);
6443 cond_resched();
6444
6445 if (addr != end) {
6446 /*
6447 * We have consumed all precharges we got in can_attach().
6448 * We try charge one by one, but don't do any additional
6449 * charges to mc.to if we have failed in charge once in attach()
6450 * phase.
6451 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006452 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006453 if (!ret)
6454 goto retry;
6455 }
6456
6457 return ret;
6458}
6459
6460static void mem_cgroup_move_charge(struct mm_struct *mm)
6461{
6462 struct vm_area_struct *vma;
6463
6464 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006465retry:
6466 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6467 /*
6468 * Someone who are holding the mmap_sem might be waiting in
6469 * waitq. So we cancel all extra charges, wake up all waiters,
6470 * and retry. Because we cancel precharges, we might not be able
6471 * to move enough charges, but moving charge is a best-effort
6472 * feature anyway, so it wouldn't be a big problem.
6473 */
6474 __mem_cgroup_clear_mc();
6475 cond_resched();
6476 goto retry;
6477 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006478 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6479 int ret;
6480 struct mm_walk mem_cgroup_move_charge_walk = {
6481 .pmd_entry = mem_cgroup_move_charge_pte_range,
6482 .mm = mm,
6483 .private = vma,
6484 };
6485 if (is_vm_hugetlb_page(vma))
6486 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006487 ret = walk_page_range(vma->vm_start, vma->vm_end,
6488 &mem_cgroup_move_charge_walk);
6489 if (ret)
6490 /*
6491 * means we have consumed all precharges and failed in
6492 * doing additional charge. Just abandon here.
6493 */
6494 break;
6495 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006496 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006497}
6498
Tejun Heoeb954192013-08-08 20:11:23 -04006499static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006500 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006501{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006502 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006503 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006504
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006505 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006506 if (mc.to)
6507 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006508 mmput(mm);
6509 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006510 if (mc.to)
6511 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006512}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006513#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006514static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006515 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006516{
6517 return 0;
6518}
Tejun Heoeb954192013-08-08 20:11:23 -04006519static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006520 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006521{
6522}
Tejun Heoeb954192013-08-08 20:11:23 -04006523static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006524 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006525{
6526}
6527#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006528
Tejun Heof00baae2013-04-15 13:41:15 -07006529/*
6530 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6531 * to verify sane_behavior flag on each mount attempt.
6532 */
Tejun Heoeb954192013-08-08 20:11:23 -04006533static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006534{
6535 /*
6536 * use_hierarchy is forced with sane_behavior. cgroup core
6537 * guarantees that @root doesn't have any children, so turning it
6538 * on for the root memcg is enough.
6539 */
Tejun Heoeb954192013-08-08 20:11:23 -04006540 if (cgroup_sane_behavior(root_css->cgroup))
6541 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006542}
6543
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006544struct cgroup_subsys mem_cgroup_subsys = {
6545 .name = "memory",
6546 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006547 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006548 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006549 .css_offline = mem_cgroup_css_offline,
6550 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006551 .can_attach = mem_cgroup_can_attach,
6552 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006553 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006554 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006555 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006556 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006557 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006558};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006559
Andrew Mortonc255a452012-07-31 16:43:02 -07006560#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006561static int __init enable_swap_account(char *s)
6562{
Michal Hockoa2c89902011-05-24 17:12:50 -07006563 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006564 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006565 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006566 really_do_swap_account = 0;
6567 return 1;
6568}
Michal Hockoa2c89902011-05-24 17:12:50 -07006569__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006570
Michal Hocko2d110852013-02-22 16:34:43 -08006571static void __init memsw_file_init(void)
6572{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006573 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006574}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006575
6576static void __init enable_swap_cgroup(void)
6577{
6578 if (!mem_cgroup_disabled() && really_do_swap_account) {
6579 do_swap_account = 1;
6580 memsw_file_init();
6581 }
6582}
6583
Michal Hocko2d110852013-02-22 16:34:43 -08006584#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006585static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006586{
6587}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006588#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006589
6590/*
Michal Hocko10813122013-02-22 16:35:41 -08006591 * subsys_initcall() for memory controller.
6592 *
6593 * Some parts like hotcpu_notifier() have to be initialized from this context
6594 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6595 * everything that doesn't depend on a specific mem_cgroup structure should
6596 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006597 */
6598static int __init mem_cgroup_init(void)
6599{
6600 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006601 enable_swap_cgroup();
Michal Hockoe4777492013-02-22 16:35:40 -08006602 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006603 return 0;
6604}
6605subsys_initcall(mem_cgroup_init);