blob: 848fc6c195d28555cc8d445fcbf7dfc0022c7643 [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,
Michal Hocko7d910c02013-09-12 15:13:28 -0700141 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700142 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700143 MEM_CGROUP_NTARGETS,
144};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700145#define THRESHOLDS_EVENTS_TARGET 128
146#define SOFTLIMIT_EVENTS_TARGET 1024
147#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700148
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800149struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700150 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700151 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700152 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700153 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800154};
155
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800156struct mem_cgroup_reclaim_iter {
Michal Hocko5f578162013-04-29 15:07:17 -0700157 /*
158 * last scanned hierarchy member. Valid only if last_dead_count
159 * matches memcg->dead_count of the hierarchy root group.
160 */
Michal Hocko542f85f2013-04-29 15:07:15 -0700161 struct mem_cgroup *last_visited;
Michal Hocko5f578162013-04-29 15:07:17 -0700162 unsigned long last_dead_count;
163
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800164 /* scan generation, increased every round-trip */
165 unsigned int generation;
166};
167
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800168/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800169 * per-zone information in memory controller.
170 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800171struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800172 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700173 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800174
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800175 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
176
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700177 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700178 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800179};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800180
181struct mem_cgroup_per_node {
182 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
183};
184
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800185struct mem_cgroup_threshold {
186 struct eventfd_ctx *eventfd;
187 u64 threshold;
188};
189
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700190/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800191struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700192 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700193 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800194 /* Size of entries[] */
195 unsigned int size;
196 /* Array of thresholds */
197 struct mem_cgroup_threshold entries[0];
198};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700199
200struct mem_cgroup_thresholds {
201 /* Primary thresholds array */
202 struct mem_cgroup_threshold_ary *primary;
203 /*
204 * Spare threshold array.
205 * This is needed to make mem_cgroup_unregister_event() "never fail".
206 * It must be able to store at least primary->size - 1 entries.
207 */
208 struct mem_cgroup_threshold_ary *spare;
209};
210
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700211/* for OOM */
212struct mem_cgroup_eventfd_list {
213 struct list_head list;
214 struct eventfd_ctx *eventfd;
215};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800216
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700217static void mem_cgroup_threshold(struct mem_cgroup *memcg);
218static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800219
Balbir Singhf64c3f52009-09-23 15:56:37 -0700220/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800221 * The memory controller data structure. The memory controller controls both
222 * page cache and RSS per cgroup. We would eventually like to provide
223 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
224 * to help the administrator determine what knobs to tune.
225 *
226 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800227 * we hit the water mark. May be even add a low water mark, such that
228 * no reclaim occurs from a cgroup at it's low water mark, this is
229 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800230 */
231struct mem_cgroup {
232 struct cgroup_subsys_state css;
233 /*
234 * the counter to account for memory usage
235 */
236 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700237
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700238 /* vmpressure notifications */
239 struct vmpressure vmpressure;
240
Li Zefan465939a2013-07-08 16:00:38 -0700241 /*
242 * the counter to account for mem+swap usage.
243 */
244 struct res_counter memsw;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700245
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800246 /*
Glauber Costa510fc4e2012-12-18 14:21:47 -0800247 * the counter to account for kernel memory usage.
248 */
249 struct res_counter kmem;
250 /*
Balbir Singh18f59ea2009-01-07 18:08:07 -0800251 * Should the accounting and control be hierarchical, per subtree?
252 */
253 bool use_hierarchy;
Glauber Costa510fc4e2012-12-18 14:21:47 -0800254 unsigned long kmem_account_flags; /* See KMEM_ACCOUNTED_*, below */
Michal Hocko79dfdac2011-07-26 16:08:23 -0700255
256 bool oom_lock;
257 atomic_t under_oom;
258
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700259 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700260 /* OOM-Killer disable */
261 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800262
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700263 /* set when res.limit == memsw.limit */
264 bool memsw_is_minimum;
265
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800266 /* protect arrays of thresholds */
267 struct mutex thresholds_lock;
268
269 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700270 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700271
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800272 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700273 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700274
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700275 /* For oom notifier event fd */
276 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700277
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800278 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800279 * Should we move charges of a task when a task is moved into this
280 * mem_cgroup ? And what type of charges should we move ?
281 */
282 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800283 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700284 * set > 0 if pages under this cgroup are moving to other cgroup.
285 */
286 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700287 /* taken only while moving_account > 0 */
288 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700289 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800290 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800291 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700292 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700293 /*
294 * used when a cpu is offlined or other synchronizations
295 * See mem_cgroup_read_stat().
296 */
297 struct mem_cgroup_stat_cpu nocpu_base;
298 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000299
Michal Hocko5f578162013-04-29 15:07:17 -0700300 atomic_t dead_count;
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700301#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000302 struct tcp_memcontrol tcp_mem;
303#endif
Glauber Costa2633d7a2012-12-18 14:22:34 -0800304#if defined(CONFIG_MEMCG_KMEM)
305 /* analogous to slab_common's slab_caches list. per-memcg */
306 struct list_head memcg_slab_caches;
307 /* Not a spinlock, we can take a lot of time walking the list */
308 struct mutex slab_caches_mutex;
309 /* Index in the kmem_cache->memcg_params->memcg_caches array */
310 int kmemcg_id;
311#endif
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800312
313 int last_scanned_node;
314#if MAX_NUMNODES > 1
315 nodemask_t scan_nodes;
316 atomic_t numainfo_events;
317 atomic_t numainfo_updating;
318#endif
Michal Hocko7d910c02013-09-12 15:13:28 -0700319 /*
320 * Protects soft_contributed transitions.
321 * See mem_cgroup_update_soft_limit
322 */
323 spinlock_t soft_lock;
324
325 /*
326 * If true then this group has increased parents' children_in_excess
327 * when it got over the soft limit.
328 * When a group falls bellow the soft limit, parents' children_in_excess
329 * is decreased and soft_contributed changed to false.
330 */
331 bool soft_contributed;
332
333 /* Number of children that are in soft limit excess */
334 atomic_t children_in_excess;
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700335
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700336 struct mem_cgroup_per_node *nodeinfo[0];
337 /* WARNING: nodeinfo must be the last member here */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800338};
339
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800340static size_t memcg_size(void)
341{
342 return sizeof(struct mem_cgroup) +
343 nr_node_ids * sizeof(struct mem_cgroup_per_node);
344}
345
Glauber Costa510fc4e2012-12-18 14:21:47 -0800346/* internal only representation about the status of kmem accounting. */
347enum {
348 KMEM_ACCOUNTED_ACTIVE = 0, /* accounted by this cgroup itself */
Glauber Costaa8964b92012-12-18 14:22:09 -0800349 KMEM_ACCOUNTED_ACTIVATED, /* static key enabled. */
Glauber Costa7de37682012-12-18 14:22:07 -0800350 KMEM_ACCOUNTED_DEAD, /* dead memcg with pending kmem charges */
Glauber Costa510fc4e2012-12-18 14:21:47 -0800351};
352
Glauber Costaa8964b92012-12-18 14:22:09 -0800353/* We account when limit is on, but only after call sites are patched */
354#define KMEM_ACCOUNTED_MASK \
355 ((1 << KMEM_ACCOUNTED_ACTIVE) | (1 << KMEM_ACCOUNTED_ACTIVATED))
Glauber Costa510fc4e2012-12-18 14:21:47 -0800356
357#ifdef CONFIG_MEMCG_KMEM
358static inline void memcg_kmem_set_active(struct mem_cgroup *memcg)
359{
360 set_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
361}
Glauber Costa7de37682012-12-18 14:22:07 -0800362
363static bool memcg_kmem_is_active(struct mem_cgroup *memcg)
364{
365 return test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
366}
367
Glauber Costaa8964b92012-12-18 14:22:09 -0800368static void memcg_kmem_set_activated(struct mem_cgroup *memcg)
369{
370 set_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
371}
372
Glauber Costa55007d82012-12-18 14:22:38 -0800373static void memcg_kmem_clear_activated(struct mem_cgroup *memcg)
374{
375 clear_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
376}
377
Glauber Costa7de37682012-12-18 14:22:07 -0800378static void memcg_kmem_mark_dead(struct mem_cgroup *memcg)
379{
Li Zefan10d5ebf2013-07-08 16:00:33 -0700380 /*
381 * Our caller must use css_get() first, because memcg_uncharge_kmem()
382 * will call css_put() if it sees the memcg is dead.
383 */
384 smp_wmb();
Glauber Costa7de37682012-12-18 14:22:07 -0800385 if (test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags))
386 set_bit(KMEM_ACCOUNTED_DEAD, &memcg->kmem_account_flags);
387}
388
389static bool memcg_kmem_test_and_clear_dead(struct mem_cgroup *memcg)
390{
391 return test_and_clear_bit(KMEM_ACCOUNTED_DEAD,
392 &memcg->kmem_account_flags);
393}
Glauber Costa510fc4e2012-12-18 14:21:47 -0800394#endif
395
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800396/* Stuffs for move charges at task migration. */
397/*
Glauber Costaee5e8472013-02-22 16:34:50 -0800398 * Types of charges to be moved. "move_charge_at_immitgrate" and
399 * "immigrate_flags" are treated as a left-shifted bitmap of these types.
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800400 */
401enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800402 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700403 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800404 NR_MOVE_TYPE,
405};
406
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800407/* "mc" and its members are protected by cgroup_mutex */
408static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800409 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800410 struct mem_cgroup *from;
411 struct mem_cgroup *to;
Glauber Costaee5e8472013-02-22 16:34:50 -0800412 unsigned long immigrate_flags;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800413 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800414 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800415 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800416 struct task_struct *moving_task; /* a task moving charges */
417 wait_queue_head_t waitq; /* a waitq for other context */
418} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700419 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800420 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
421};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800422
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700423static bool move_anon(void)
424{
Glauber Costaee5e8472013-02-22 16:34:50 -0800425 return test_bit(MOVE_CHARGE_TYPE_ANON, &mc.immigrate_flags);
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700426}
427
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700428static bool move_file(void)
429{
Glauber Costaee5e8472013-02-22 16:34:50 -0800430 return test_bit(MOVE_CHARGE_TYPE_FILE, &mc.immigrate_flags);
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700431}
432
Balbir Singh4e416952009-09-23 15:56:39 -0700433/*
434 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
435 * limit reclaim to prevent infinite loops, if they ever occur.
436 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700437#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
Balbir Singh4e416952009-09-23 15:56:39 -0700438
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800439enum charge_type {
440 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700441 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800442 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700443 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700444 NR_CHARGE_TYPE,
445};
446
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800447/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800448enum res_type {
449 _MEM,
450 _MEMSWAP,
451 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800452 _KMEM,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800453};
454
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700455#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
456#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800457#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700458/* Used for OOM nofiier */
459#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800460
Balbir Singh75822b42009-09-23 15:56:38 -0700461/*
462 * Reclaim flags for mem_cgroup_hierarchical_reclaim
463 */
464#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
465#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
466#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
467#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
468
Glauber Costa09998212013-02-22 16:34:55 -0800469/*
470 * The memcg_create_mutex will be held whenever a new cgroup is created.
471 * As a consequence, any change that needs to protect against new child cgroups
472 * appearing has to hold it as well.
473 */
474static DEFINE_MUTEX(memcg_create_mutex);
475
Wanpeng Lib2145142012-07-31 16:46:01 -0700476struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
477{
Tejun Heoa7c6d552013-08-08 20:11:23 -0400478 return s ? container_of(s, struct mem_cgroup, css) : NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -0700479}
480
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700481/* Some nice accessors for the vmpressure. */
482struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
483{
484 if (!memcg)
485 memcg = root_mem_cgroup;
486 return &memcg->vmpressure;
487}
488
489struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr)
490{
491 return &container_of(vmpr, struct mem_cgroup, vmpressure)->css;
492}
493
494struct vmpressure *css_to_vmpressure(struct cgroup_subsys_state *css)
495{
496 return &mem_cgroup_from_css(css)->vmpressure;
497}
498
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700499static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
500{
501 return (memcg == root_mem_cgroup);
502}
503
Glauber Costae1aab162011-12-11 21:47:03 +0000504/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700505#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000506
Glauber Costae1aab162011-12-11 21:47:03 +0000507void sock_update_memcg(struct sock *sk)
508{
Glauber Costa376be5f2012-01-20 04:57:14 +0000509 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000510 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700511 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000512
513 BUG_ON(!sk->sk_prot->proto_cgroup);
514
Glauber Costaf3f511e2012-01-05 20:16:39 +0000515 /* Socket cloning can throw us here with sk_cgrp already
516 * filled. It won't however, necessarily happen from
517 * process context. So the test for root memcg given
518 * the current task's memcg won't help us in this case.
519 *
520 * Respecting the original socket's memcg is a better
521 * decision in this case.
522 */
523 if (sk->sk_cgrp) {
524 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700525 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000526 return;
527 }
528
Glauber Costae1aab162011-12-11 21:47:03 +0000529 rcu_read_lock();
530 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700531 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Li Zefan5347e5a2013-07-08 16:00:30 -0700532 if (!mem_cgroup_is_root(memcg) &&
533 memcg_proto_active(cg_proto) && css_tryget(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700534 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000535 }
536 rcu_read_unlock();
537 }
538}
539EXPORT_SYMBOL(sock_update_memcg);
540
541void sock_release_memcg(struct sock *sk)
542{
Glauber Costa376be5f2012-01-20 04:57:14 +0000543 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000544 struct mem_cgroup *memcg;
545 WARN_ON(!sk->sk_cgrp->memcg);
546 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700547 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000548 }
549}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000550
551struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
552{
553 if (!memcg || mem_cgroup_is_root(memcg))
554 return NULL;
555
556 return &memcg->tcp_mem.cg_proto;
557}
558EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000559
Glauber Costa3f134612012-05-29 15:07:11 -0700560static void disarm_sock_keys(struct mem_cgroup *memcg)
561{
562 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
563 return;
564 static_key_slow_dec(&memcg_socket_limit_enabled);
565}
566#else
567static void disarm_sock_keys(struct mem_cgroup *memcg)
568{
569}
570#endif
571
Glauber Costaa8964b92012-12-18 14:22:09 -0800572#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800573/*
574 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
575 * There are two main reasons for not using the css_id for this:
576 * 1) this works better in sparse environments, where we have a lot of memcgs,
577 * but only a few kmem-limited. Or also, if we have, for instance, 200
578 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
579 * 200 entry array for that.
580 *
581 * 2) In order not to violate the cgroup API, we would like to do all memory
582 * allocation in ->create(). At that point, we haven't yet allocated the
583 * css_id. Having a separate index prevents us from messing with the cgroup
584 * core for this
585 *
586 * The current size of the caches array is stored in
587 * memcg_limited_groups_array_size. It will double each time we have to
588 * increase it.
589 */
590static DEFINE_IDA(kmem_limited_groups);
Glauber Costa749c5412012-12-18 14:23:01 -0800591int memcg_limited_groups_array_size;
592
Glauber Costa55007d82012-12-18 14:22:38 -0800593/*
594 * MIN_SIZE is different than 1, because we would like to avoid going through
595 * the alloc/free process all the time. In a small machine, 4 kmem-limited
596 * cgroups is a reasonable guess. In the future, it could be a parameter or
597 * tunable, but that is strictly not necessary.
598 *
599 * MAX_SIZE should be as large as the number of css_ids. Ideally, we could get
600 * this constant directly from cgroup, but it is understandable that this is
601 * better kept as an internal representation in cgroup.c. In any case, the
602 * css_id space is not getting any smaller, and we don't have to necessarily
603 * increase ours as well if it increases.
604 */
605#define MEMCG_CACHES_MIN_SIZE 4
606#define MEMCG_CACHES_MAX_SIZE 65535
607
Glauber Costad7f25f82012-12-18 14:22:40 -0800608/*
609 * A lot of the calls to the cache allocation functions are expected to be
610 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
611 * conditional to this static branch, we'll have to allow modules that does
612 * kmem_cache_alloc and the such to see this symbol as well
613 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800614struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800615EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800616
617static void disarm_kmem_keys(struct mem_cgroup *memcg)
618{
Glauber Costa55007d82012-12-18 14:22:38 -0800619 if (memcg_kmem_is_active(memcg)) {
Glauber Costaa8964b92012-12-18 14:22:09 -0800620 static_key_slow_dec(&memcg_kmem_enabled_key);
Glauber Costa55007d82012-12-18 14:22:38 -0800621 ida_simple_remove(&kmem_limited_groups, memcg->kmemcg_id);
622 }
Glauber Costabea207c2012-12-18 14:22:11 -0800623 /*
624 * This check can't live in kmem destruction function,
625 * since the charges will outlive the cgroup
626 */
627 WARN_ON(res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0);
Glauber Costaa8964b92012-12-18 14:22:09 -0800628}
629#else
630static void disarm_kmem_keys(struct mem_cgroup *memcg)
631{
632}
633#endif /* CONFIG_MEMCG_KMEM */
634
635static void disarm_static_keys(struct mem_cgroup *memcg)
636{
637 disarm_sock_keys(memcg);
638 disarm_kmem_keys(memcg);
639}
640
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700641static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800642
Balbir Singhf64c3f52009-09-23 15:56:37 -0700643static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700644mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700645{
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800646 VM_BUG_ON((unsigned)nid >= nr_node_ids);
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700647 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700648}
649
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700650struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100651{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700652 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100653}
654
Balbir Singhf64c3f52009-09-23 15:56:37 -0700655static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700656page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700657{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700658 int nid = page_to_nid(page);
659 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700660
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700661 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700662}
663
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700664/*
665 * Implementation Note: reading percpu statistics for memcg.
666 *
667 * Both of vmstat[] and percpu_counter has threshold and do periodic
668 * synchronization to implement "quick" read. There are trade-off between
669 * reading cost and precision of value. Then, we may have a chance to implement
670 * a periodic synchronizion of counter in memcg's counter.
671 *
672 * But this _read() function is used for user interface now. The user accounts
673 * memory usage by memory cgroup and he _always_ requires exact value because
674 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
675 * have to visit all online cpus and make sum. So, for now, unnecessary
676 * synchronization is not implemented. (just implemented for cpu hotplug)
677 *
678 * If there are kernel internal actions which can make use of some not-exact
679 * value, and reading all cpu value can be performance bottleneck in some
680 * common workload, threashold and synchonization as vmstat[] should be
681 * implemented.
682 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700683static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700684 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800685{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700686 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800687 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800688
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700689 get_online_cpus();
690 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700691 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700692#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700693 spin_lock(&memcg->pcp_counter_lock);
694 val += memcg->nocpu_base.count[idx];
695 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700696#endif
697 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800698 return val;
699}
700
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700701static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700702 bool charge)
703{
704 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700705 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700706}
707
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700708static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700709 enum mem_cgroup_events_index idx)
710{
711 unsigned long val = 0;
712 int cpu;
713
714 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700715 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700716#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700717 spin_lock(&memcg->pcp_counter_lock);
718 val += memcg->nocpu_base.events[idx];
719 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700720#endif
721 return val;
722}
723
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700724static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700725 struct page *page,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700726 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800727{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800728 preempt_disable();
729
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700730 /*
731 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
732 * counted as CACHE even if it's on ANON LRU.
733 */
734 if (anon)
735 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700736 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800737 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700738 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700739 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700740
David Rientjesb070e652013-05-07 16:18:09 -0700741 if (PageTransHuge(page))
742 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
743 nr_pages);
744
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800745 /* pagein of a big page is an event. So, ignore page size */
746 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700747 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800748 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700749 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800750 nr_pages = -nr_pages; /* for event */
751 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800752
Johannes Weiner13114712012-05-29 15:07:07 -0700753 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800754
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800755 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800756}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800757
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700758unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700759mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700760{
761 struct mem_cgroup_per_zone *mz;
762
763 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
764 return mz->lru_size[lru];
765}
766
767static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700768mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700769 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700770{
771 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700772 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700773 unsigned long ret = 0;
774
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700775 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700776
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700777 for_each_lru(lru) {
778 if (BIT(lru) & lru_mask)
779 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700780 }
781 return ret;
782}
783
784static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700785mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700786 int nid, unsigned int lru_mask)
787{
Ying Han889976d2011-05-26 16:25:33 -0700788 u64 total = 0;
789 int zid;
790
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700791 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700792 total += mem_cgroup_zone_nr_lru_pages(memcg,
793 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700794
Ying Han889976d2011-05-26 16:25:33 -0700795 return total;
796}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700797
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700798static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700799 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800800{
Ying Han889976d2011-05-26 16:25:33 -0700801 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800802 u64 total = 0;
803
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800804 for_each_node_state(nid, N_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700805 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800806 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800807}
808
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800809static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
810 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800811{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700812 unsigned long val, next;
813
Johannes Weiner13114712012-05-29 15:07:07 -0700814 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700815 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700816 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800817 if ((long)next - (long)val < 0) {
818 switch (target) {
819 case MEM_CGROUP_TARGET_THRESH:
820 next = val + THRESHOLDS_EVENTS_TARGET;
821 break;
Michal Hocko7d910c02013-09-12 15:13:28 -0700822 case MEM_CGROUP_TARGET_SOFTLIMIT:
823 next = val + SOFTLIMIT_EVENTS_TARGET;
824 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800825 case MEM_CGROUP_TARGET_NUMAINFO:
826 next = val + NUMAINFO_EVENTS_TARGET;
827 break;
828 default:
829 break;
830 }
831 __this_cpu_write(memcg->stat->targets[target], next);
832 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700833 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800834 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800835}
836
837/*
Michal Hocko7d910c02013-09-12 15:13:28 -0700838 * Called from rate-limitted memcg_check_events when enough
839 * MEM_CGROUP_TARGET_SOFTLIMIT events are accumulated and it makes sure
840 * that all the parents up the hierarchy will be noticed that this group
841 * is in excess or that it is not in excess anymore. mmecg->soft_contributed
842 * makes the transition a single action whenever the state flips from one to
843 * other.
844 */
845static void mem_cgroup_update_soft_limit(struct mem_cgroup *memcg)
846{
847 unsigned long long excess = res_counter_soft_limit_excess(&memcg->res);
848 struct mem_cgroup *parent = memcg;
849 int delta = 0;
850
851 spin_lock(&memcg->soft_lock);
852 if (excess) {
853 if (!memcg->soft_contributed) {
854 delta = 1;
855 memcg->soft_contributed = true;
856 }
857 } else {
858 if (memcg->soft_contributed) {
859 delta = -1;
860 memcg->soft_contributed = false;
861 }
862 }
863
864 /*
865 * Necessary to update all ancestors when hierarchy is used
866 * because their event counter is not touched.
867 */
868 while (delta && (parent = parent_mem_cgroup(parent)))
869 atomic_add(delta, &parent->children_in_excess);
870 spin_unlock(&memcg->soft_lock);
871}
872
873/*
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800874 * Check events in order.
875 *
876 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700877static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800878{
Steven Rostedt47994012011-11-02 13:38:33 -0700879 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800880 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800881 if (unlikely(mem_cgroup_event_ratelimit(memcg,
882 MEM_CGROUP_TARGET_THRESH))) {
Michal Hocko7d910c02013-09-12 15:13:28 -0700883 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800884 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800885
Michal Hocko7d910c02013-09-12 15:13:28 -0700886 do_softlimit = mem_cgroup_event_ratelimit(memcg,
887 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700888#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800889 do_numainfo = mem_cgroup_event_ratelimit(memcg,
890 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700891#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800892 preempt_enable();
893
894 mem_cgroup_threshold(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -0700895 if (unlikely(do_softlimit))
896 mem_cgroup_update_soft_limit(memcg);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800897#if MAX_NUMNODES > 1
898 if (unlikely(do_numainfo))
899 atomic_inc(&memcg->numainfo_events);
900#endif
901 } else
902 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800903}
904
Balbir Singhcf475ad2008-04-29 01:00:16 -0700905struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800906{
Balbir Singh31a78f22008-09-28 23:09:31 +0100907 /*
908 * mm_update_next_owner() may clear mm->owner to NULL
909 * if it races with swapoff, page migration, etc.
910 * So this can be called with p == NULL.
911 */
912 if (unlikely(!p))
913 return NULL;
914
Tejun Heo8af01f52013-08-08 20:11:22 -0400915 return mem_cgroup_from_css(task_css(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800916}
917
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700918struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800919{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700920 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700921
922 if (!mm)
923 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800924 /*
925 * Because we have no locks, mm->owner's may be being moved to other
926 * cgroup. We use css_tryget() here even if this looks
927 * pessimistic (rather than adding locks here).
928 */
929 rcu_read_lock();
930 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700931 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
932 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800933 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700934 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800935 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700936 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800937}
938
Michal Hockode577802013-09-12 15:13:26 -0700939static enum mem_cgroup_filter_t
940mem_cgroup_filter(struct mem_cgroup *memcg, struct mem_cgroup *root,
941 mem_cgroup_iter_filter cond)
942{
943 if (!cond)
944 return VISIT;
945 return cond(memcg, root);
946}
947
Michal Hocko16248d82013-04-29 15:07:19 -0700948/*
949 * Returns a next (in a pre-order walk) alive memcg (with elevated css
950 * ref. count) or NULL if the whole root's subtree has been visited.
951 *
952 * helper function to be used by mem_cgroup_iter
953 */
954static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
Michal Hockode577802013-09-12 15:13:26 -0700955 struct mem_cgroup *last_visited, mem_cgroup_iter_filter cond)
Michal Hocko16248d82013-04-29 15:07:19 -0700956{
Tejun Heo492eb212013-08-08 20:11:25 -0400957 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700958
Tejun Heobd8815a2013-08-08 20:11:27 -0400959 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -0700960skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -0400961 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -0700962
963 /*
964 * Even if we found a group we have to make sure it is
965 * alive. css && !memcg means that the groups should be
966 * skipped and we should continue the tree walk.
967 * last_visited css is safe to use because it is
968 * protected by css_get and the tree walk is rcu safe.
969 */
Tejun Heo492eb212013-08-08 20:11:25 -0400970 if (next_css) {
971 struct mem_cgroup *mem = mem_cgroup_from_css(next_css);
972
Michal Hockode577802013-09-12 15:13:26 -0700973 switch (mem_cgroup_filter(mem, root, cond)) {
974 case SKIP:
Tejun Heo492eb212013-08-08 20:11:25 -0400975 prev_css = next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700976 goto skip_node;
Michal Hockode577802013-09-12 15:13:26 -0700977 case SKIP_TREE:
978 if (mem == root)
979 return NULL;
980 /*
981 * css_rightmost_descendant is not an optimal way to
982 * skip through a subtree (especially for imbalanced
983 * trees leaning to right) but that's what we have right
984 * now. More effective solution would be traversing
985 * right-up for first non-NULL without calling
986 * css_next_descendant_pre afterwards.
987 */
988 prev_css = css_rightmost_descendant(next_css);
989 goto skip_node;
990 case VISIT:
991 if (css_tryget(&mem->css))
992 return mem;
993 else {
994 prev_css = next_css;
995 goto skip_node;
996 }
997 break;
Michal Hocko16248d82013-04-29 15:07:19 -0700998 }
999 }
1000
1001 return NULL;
1002}
1003
Johannes Weiner519ebea2013-07-03 15:04:51 -07001004static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
1005{
1006 /*
1007 * When a group in the hierarchy below root is destroyed, the
1008 * hierarchy iterator can no longer be trusted since it might
1009 * have pointed to the destroyed group. Invalidate it.
1010 */
1011 atomic_inc(&root->dead_count);
1012}
1013
1014static struct mem_cgroup *
1015mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
1016 struct mem_cgroup *root,
1017 int *sequence)
1018{
1019 struct mem_cgroup *position = NULL;
1020 /*
1021 * A cgroup destruction happens in two stages: offlining and
1022 * release. They are separated by a RCU grace period.
1023 *
1024 * If the iterator is valid, we may still race with an
1025 * offlining. The RCU lock ensures the object won't be
1026 * released, tryget will fail if we lost the race.
1027 */
1028 *sequence = atomic_read(&root->dead_count);
1029 if (iter->last_dead_count == *sequence) {
1030 smp_rmb();
1031 position = iter->last_visited;
1032 if (position && !css_tryget(&position->css))
1033 position = NULL;
1034 }
1035 return position;
1036}
1037
1038static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
1039 struct mem_cgroup *last_visited,
1040 struct mem_cgroup *new_position,
1041 int sequence)
1042{
1043 if (last_visited)
1044 css_put(&last_visited->css);
1045 /*
1046 * We store the sequence count from the time @last_visited was
1047 * loaded successfully instead of rereading it here so that we
1048 * don't lose destruction events in between. We could have
1049 * raced with the destruction of @new_position after all.
1050 */
1051 iter->last_visited = new_position;
1052 smp_wmb();
1053 iter->last_dead_count = sequence;
1054}
1055
Johannes Weiner56600482012-01-12 17:17:59 -08001056/**
1057 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1058 * @root: hierarchy root
1059 * @prev: previously returned memcg, NULL on first invocation
1060 * @reclaim: cookie for shared reclaim walks, NULL for full walks
Michal Hockode577802013-09-12 15:13:26 -07001061 * @cond: filter for visited nodes, NULL for no filter
Johannes Weiner56600482012-01-12 17:17:59 -08001062 *
1063 * Returns references to children of the hierarchy below @root, or
1064 * @root itself, or %NULL after a full round-trip.
1065 *
1066 * Caller must pass the return value in @prev on subsequent
1067 * invocations for reference counting, or use mem_cgroup_iter_break()
1068 * to cancel a hierarchy walk before the round-trip is complete.
1069 *
1070 * Reclaimers can specify a zone and a priority level in @reclaim to
1071 * divide up the memcgs in the hierarchy among all concurrent
1072 * reclaimers operating on the same zone and priority.
1073 */
Michal Hockode577802013-09-12 15:13:26 -07001074struct mem_cgroup *mem_cgroup_iter_cond(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -08001075 struct mem_cgroup *prev,
Michal Hockode577802013-09-12 15:13:26 -07001076 struct mem_cgroup_reclaim_cookie *reclaim,
1077 mem_cgroup_iter_filter cond)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001078{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001079 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001080 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001081
Michal Hockode577802013-09-12 15:13:26 -07001082 if (mem_cgroup_disabled()) {
1083 /* first call must return non-NULL, second return NULL */
1084 return (struct mem_cgroup *)(unsigned long)!prev;
1085 }
Johannes Weiner56600482012-01-12 17:17:59 -08001086
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001087 if (!root)
1088 root = root_mem_cgroup;
1089
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001090 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -07001091 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001092
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001093 if (!root->use_hierarchy && root != root_mem_cgroup) {
1094 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001095 goto out_css_put;
Michal Hockode577802013-09-12 15:13:26 -07001096 if (mem_cgroup_filter(root, root, cond) == VISIT)
1097 return root;
1098 return NULL;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001099 }
1100
Michal Hocko542f85f2013-04-29 15:07:15 -07001101 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001102 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001103 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001104 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001105
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001106 if (reclaim) {
1107 int nid = zone_to_nid(reclaim->zone);
1108 int zid = zone_idx(reclaim->zone);
1109 struct mem_cgroup_per_zone *mz;
1110
1111 mz = mem_cgroup_zoneinfo(root, nid, zid);
1112 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001113 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001114 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001115 goto out_unlock;
1116 }
Michal Hocko5f578162013-04-29 15:07:17 -07001117
Johannes Weiner519ebea2013-07-03 15:04:51 -07001118 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001119 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001120
Michal Hockode577802013-09-12 15:13:26 -07001121 memcg = __mem_cgroup_iter_next(root, last_visited, cond);
Michal Hocko542f85f2013-04-29 15:07:15 -07001122
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001123 if (reclaim) {
Johannes Weiner519ebea2013-07-03 15:04:51 -07001124 mem_cgroup_iter_update(iter, last_visited, memcg, seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001125
Michal Hocko19f39402013-04-29 15:07:18 -07001126 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001127 iter->generation++;
1128 else if (!prev && memcg)
1129 reclaim->generation = iter->generation;
1130 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001131
Michal Hockode577802013-09-12 15:13:26 -07001132 /*
1133 * We have finished the whole tree walk or no group has been
1134 * visited because filter told us to skip the root node.
1135 */
1136 if (!memcg && (prev || (cond && !last_visited)))
Michal Hocko542f85f2013-04-29 15:07:15 -07001137 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001138 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001139out_unlock:
1140 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001141out_css_put:
1142 if (prev && prev != root)
1143 css_put(&prev->css);
1144
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001145 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001146}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001147
Johannes Weiner56600482012-01-12 17:17:59 -08001148/**
1149 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1150 * @root: hierarchy root
1151 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1152 */
1153void mem_cgroup_iter_break(struct mem_cgroup *root,
1154 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001155{
1156 if (!root)
1157 root = root_mem_cgroup;
1158 if (prev && prev != root)
1159 css_put(&prev->css);
1160}
1161
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001162/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001163 * Iteration constructs for visiting all cgroups (under a tree). If
1164 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1165 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001166 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001167#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001168 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001169 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001170 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001171
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001172#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001173 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001174 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001175 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001176
David Rientjes68ae5642012-12-12 13:51:57 -08001177void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001178{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001179 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001180
Ying Han456f9982011-05-26 16:25:38 -07001181 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001182 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1183 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001184 goto out;
1185
1186 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001187 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001188 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1189 break;
1190 case PGMAJFAULT:
1191 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001192 break;
1193 default:
1194 BUG();
1195 }
1196out:
1197 rcu_read_unlock();
1198}
David Rientjes68ae5642012-12-12 13:51:57 -08001199EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001200
Johannes Weiner925b7672012-01-12 17:18:15 -08001201/**
1202 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1203 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001204 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001205 *
1206 * Returns the lru list vector holding pages for the given @zone and
1207 * @mem. This can be the global zone lruvec, if the memory controller
1208 * is disabled.
1209 */
1210struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1211 struct mem_cgroup *memcg)
1212{
1213 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001214 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001215
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001216 if (mem_cgroup_disabled()) {
1217 lruvec = &zone->lruvec;
1218 goto out;
1219 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001220
1221 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001222 lruvec = &mz->lruvec;
1223out:
1224 /*
1225 * Since a node can be onlined after the mem_cgroup was created,
1226 * we have to be prepared to initialize lruvec->zone here;
1227 * and if offlined then reonlined, we need to reinitialize it.
1228 */
1229 if (unlikely(lruvec->zone != zone))
1230 lruvec->zone = zone;
1231 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001232}
1233
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001234/*
1235 * Following LRU functions are allowed to be used without PCG_LOCK.
1236 * Operations are called by routine of global LRU independently from memcg.
1237 * What we have to take care of here is validness of pc->mem_cgroup.
1238 *
1239 * Changes to pc->mem_cgroup happens when
1240 * 1. charge
1241 * 2. moving account
1242 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1243 * It is added to LRU before charge.
1244 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1245 * When moving account, the page is not on LRU. It's isolated.
1246 */
1247
Johannes Weiner925b7672012-01-12 17:18:15 -08001248/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001249 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001250 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001251 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001252 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001253struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001254{
1255 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001256 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001257 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001258 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001259
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001260 if (mem_cgroup_disabled()) {
1261 lruvec = &zone->lruvec;
1262 goto out;
1263 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001264
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001265 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001266 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001267
1268 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001269 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001270 * an uncharged page off lru does nothing to secure
1271 * its former mem_cgroup from sudden removal.
1272 *
1273 * Our caller holds lru_lock, and PageCgroupUsed is updated
1274 * under page_cgroup lock: between them, they make all uses
1275 * of pc->mem_cgroup safe.
1276 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001277 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001278 pc->mem_cgroup = memcg = root_mem_cgroup;
1279
Johannes Weiner925b7672012-01-12 17:18:15 -08001280 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001281 lruvec = &mz->lruvec;
1282out:
1283 /*
1284 * Since a node can be onlined after the mem_cgroup was created,
1285 * we have to be prepared to initialize lruvec->zone here;
1286 * and if offlined then reonlined, we need to reinitialize it.
1287 */
1288 if (unlikely(lruvec->zone != zone))
1289 lruvec->zone = zone;
1290 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001291}
1292
1293/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001294 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1295 * @lruvec: mem_cgroup per zone lru vector
1296 * @lru: index of lru list the page is sitting on
1297 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001298 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001299 * This function must be called when a page is added to or removed from an
1300 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001301 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001302void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1303 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001304{
1305 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001306 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001307
1308 if (mem_cgroup_disabled())
1309 return;
1310
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001311 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1312 lru_size = mz->lru_size + lru;
1313 *lru_size += nr_pages;
1314 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001315}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001316
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001317/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001318 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001319 * hierarchy subtree
1320 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001321bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1322 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001323{
Johannes Weiner91c637342012-05-29 15:06:24 -07001324 if (root_memcg == memcg)
1325 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001326 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001327 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001328 return css_is_ancestor(&memcg->css, &root_memcg->css);
1329}
1330
1331static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1332 struct mem_cgroup *memcg)
1333{
1334 bool ret;
1335
Johannes Weiner91c637342012-05-29 15:06:24 -07001336 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001337 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001338 rcu_read_unlock();
1339 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001340}
1341
David Rientjesffbdccf2013-07-03 15:01:23 -07001342bool task_in_mem_cgroup(struct task_struct *task,
1343 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001344{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001345 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001346 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001347 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001348
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001349 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001350 if (p) {
1351 curr = try_get_mem_cgroup_from_mm(p->mm);
1352 task_unlock(p);
1353 } else {
1354 /*
1355 * All threads may have already detached their mm's, but the oom
1356 * killer still needs to detect if they have already been oom
1357 * killed to prevent needlessly killing additional tasks.
1358 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001359 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001360 curr = mem_cgroup_from_task(task);
1361 if (curr)
1362 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001363 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001364 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001365 if (!curr)
David Rientjesffbdccf2013-07-03 15:01:23 -07001366 return false;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001367 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001368 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001369 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001370 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1371 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001372 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001373 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001374 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001375 return ret;
1376}
1377
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001378int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001379{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001380 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001381 unsigned long inactive;
1382 unsigned long active;
1383 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001384
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001385 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1386 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001387
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001388 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1389 if (gb)
1390 inactive_ratio = int_sqrt(10 * gb);
1391 else
1392 inactive_ratio = 1;
1393
Johannes Weiner9b272972011-11-02 13:38:23 -07001394 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001395}
1396
Balbir Singh6d61ef42009-01-07 18:08:06 -08001397#define mem_cgroup_from_res_counter(counter, member) \
1398 container_of(counter, struct mem_cgroup, member)
1399
Johannes Weiner19942822011-02-01 15:52:43 -08001400/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001401 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001402 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001403 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001404 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001405 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001406 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001407static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001408{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001409 unsigned long long margin;
1410
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001411 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001412 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001413 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001414 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001415}
1416
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001417int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001418{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001419 /* root ? */
Tejun Heo63876982013-08-08 20:11:23 -04001420 if (!css_parent(&memcg->css))
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001421 return vm_swappiness;
1422
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001423 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001424}
1425
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001426/*
1427 * memcg->moving_account is used for checking possibility that some thread is
1428 * calling move_account(). When a thread on CPU-A starts moving pages under
1429 * a memcg, other threads should check memcg->moving_account under
1430 * rcu_read_lock(), like this:
1431 *
1432 * CPU-A CPU-B
1433 * rcu_read_lock()
1434 * memcg->moving_account+1 if (memcg->mocing_account)
1435 * take heavy locks.
1436 * synchronize_rcu() update something.
1437 * rcu_read_unlock()
1438 * start move here.
1439 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001440
1441/* for quick checking without looking up memcg */
1442atomic_t memcg_moving __read_mostly;
1443
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001444static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001445{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001446 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001447 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001448 synchronize_rcu();
1449}
1450
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001451static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001452{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001453 /*
1454 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1455 * We check NULL in callee rather than caller.
1456 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001457 if (memcg) {
1458 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001459 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001460 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001461}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001462
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001463/*
1464 * 2 routines for checking "mem" is under move_account() or not.
1465 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001466 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1467 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001468 * pc->mem_cgroup may be overwritten.
1469 *
1470 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1471 * under hierarchy of moving cgroups. This is for
1472 * waiting at hith-memory prressure caused by "move".
1473 */
1474
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001475static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001476{
1477 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001478 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001479}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001480
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001481static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001482{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001483 struct mem_cgroup *from;
1484 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001485 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001486 /*
1487 * Unlike task_move routines, we access mc.to, mc.from not under
1488 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1489 */
1490 spin_lock(&mc.lock);
1491 from = mc.from;
1492 to = mc.to;
1493 if (!from)
1494 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001495
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001496 ret = mem_cgroup_same_or_subtree(memcg, from)
1497 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001498unlock:
1499 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001500 return ret;
1501}
1502
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001503static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001504{
1505 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001506 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001507 DEFINE_WAIT(wait);
1508 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1509 /* moving charge context might have finished. */
1510 if (mc.moving_task)
1511 schedule();
1512 finish_wait(&mc.waitq, &wait);
1513 return true;
1514 }
1515 }
1516 return false;
1517}
1518
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001519/*
1520 * Take this lock when
1521 * - a code tries to modify page's memcg while it's USED.
1522 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001523 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001524 */
1525static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1526 unsigned long *flags)
1527{
1528 spin_lock_irqsave(&memcg->move_lock, *flags);
1529}
1530
1531static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1532 unsigned long *flags)
1533{
1534 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1535}
1536
Sha Zhengju58cf1882013-02-22 16:32:05 -08001537#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001538/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001539 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001540 * @memcg: The memory cgroup that went over limit
1541 * @p: Task that is going to be killed
1542 *
1543 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1544 * enabled
1545 */
1546void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1547{
1548 struct cgroup *task_cgrp;
1549 struct cgroup *mem_cgrp;
1550 /*
1551 * Need a buffer in BSS, can't rely on allocations. The code relies
1552 * on the assumption that OOM is serialized for memory controller.
1553 * If this assumption is broken, revisit this code.
1554 */
1555 static char memcg_name[PATH_MAX];
1556 int ret;
Sha Zhengju58cf1882013-02-22 16:32:05 -08001557 struct mem_cgroup *iter;
1558 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001559
Sha Zhengju58cf1882013-02-22 16:32:05 -08001560 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001561 return;
1562
Balbir Singhe2224322009-04-02 16:57:39 -07001563 rcu_read_lock();
1564
1565 mem_cgrp = memcg->css.cgroup;
1566 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1567
1568 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1569 if (ret < 0) {
1570 /*
1571 * Unfortunately, we are unable to convert to a useful name
1572 * But we'll still print out the usage information
1573 */
1574 rcu_read_unlock();
1575 goto done;
1576 }
1577 rcu_read_unlock();
1578
Andrew Mortond0451972013-02-22 16:32:06 -08001579 pr_info("Task in %s killed", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001580
1581 rcu_read_lock();
1582 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1583 if (ret < 0) {
1584 rcu_read_unlock();
1585 goto done;
1586 }
1587 rcu_read_unlock();
1588
1589 /*
1590 * Continues from above, so we don't need an KERN_ level
1591 */
Andrew Mortond0451972013-02-22 16:32:06 -08001592 pr_cont(" as a result of limit of %s\n", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001593done:
1594
Andrew Mortond0451972013-02-22 16:32:06 -08001595 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001596 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1597 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1598 res_counter_read_u64(&memcg->res, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001599 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001600 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1601 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1602 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001603 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
Glauber Costa510fc4e2012-12-18 14:21:47 -08001604 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1605 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1606 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Sha Zhengju58cf1882013-02-22 16:32:05 -08001607
1608 for_each_mem_cgroup_tree(iter, memcg) {
1609 pr_info("Memory cgroup stats");
1610
1611 rcu_read_lock();
1612 ret = cgroup_path(iter->css.cgroup, memcg_name, PATH_MAX);
1613 if (!ret)
1614 pr_cont(" for %s", memcg_name);
1615 rcu_read_unlock();
1616 pr_cont(":");
1617
1618 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1619 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1620 continue;
1621 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1622 K(mem_cgroup_read_stat(iter, i)));
1623 }
1624
1625 for (i = 0; i < NR_LRU_LISTS; i++)
1626 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1627 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1628
1629 pr_cont("\n");
1630 }
Balbir Singhe2224322009-04-02 16:57:39 -07001631}
1632
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001633/*
1634 * This function returns the number of memcg under hierarchy tree. Returns
1635 * 1(self count) if no children.
1636 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001637static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001638{
1639 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001640 struct mem_cgroup *iter;
1641
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001642 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001643 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001644 return num;
1645}
1646
Balbir Singh6d61ef42009-01-07 18:08:06 -08001647/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001648 * Return the memory (and swap, if configured) limit for a memcg.
1649 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001650static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001651{
1652 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001653
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001654 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001655
David Rientjesa63d83f2010-08-09 17:19:46 -07001656 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001657 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001658 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001659 if (mem_cgroup_swappiness(memcg)) {
1660 u64 memsw;
1661
1662 limit += total_swap_pages << PAGE_SHIFT;
1663 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1664
1665 /*
1666 * If memsw is finite and limits the amount of swap space
1667 * available to this memcg, return that limit.
1668 */
1669 limit = min(limit, memsw);
1670 }
1671
1672 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001673}
1674
David Rientjes19965462012-12-11 16:00:26 -08001675static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1676 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001677{
1678 struct mem_cgroup *iter;
1679 unsigned long chosen_points = 0;
1680 unsigned long totalpages;
1681 unsigned int points = 0;
1682 struct task_struct *chosen = NULL;
1683
David Rientjes876aafb2012-07-31 16:43:48 -07001684 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001685 * If current has a pending SIGKILL or is exiting, then automatically
1686 * select it. The goal is to allow it to allocate so that it may
1687 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001688 */
David Rientjes465adcf2013-04-29 15:08:45 -07001689 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001690 set_thread_flag(TIF_MEMDIE);
1691 return;
1692 }
1693
1694 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001695 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1696 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001697 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001698 struct task_struct *task;
1699
Tejun Heo72ec7022013-08-08 20:11:26 -04001700 css_task_iter_start(&iter->css, &it);
1701 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001702 switch (oom_scan_process_thread(task, totalpages, NULL,
1703 false)) {
1704 case OOM_SCAN_SELECT:
1705 if (chosen)
1706 put_task_struct(chosen);
1707 chosen = task;
1708 chosen_points = ULONG_MAX;
1709 get_task_struct(chosen);
1710 /* fall through */
1711 case OOM_SCAN_CONTINUE:
1712 continue;
1713 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001714 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001715 mem_cgroup_iter_break(memcg, iter);
1716 if (chosen)
1717 put_task_struct(chosen);
1718 return;
1719 case OOM_SCAN_OK:
1720 break;
1721 };
1722 points = oom_badness(task, memcg, NULL, totalpages);
1723 if (points > chosen_points) {
1724 if (chosen)
1725 put_task_struct(chosen);
1726 chosen = task;
1727 chosen_points = points;
1728 get_task_struct(chosen);
1729 }
1730 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001731 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001732 }
1733
1734 if (!chosen)
1735 return;
1736 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001737 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1738 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001739}
1740
Johannes Weiner56600482012-01-12 17:17:59 -08001741static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1742 gfp_t gfp_mask,
1743 unsigned long flags)
1744{
1745 unsigned long total = 0;
1746 bool noswap = false;
1747 int loop;
1748
1749 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1750 noswap = true;
1751 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1752 noswap = true;
1753
1754 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1755 if (loop)
1756 drain_all_stock_async(memcg);
1757 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1758 /*
1759 * Allow limit shrinkers, which are triggered directly
1760 * by userspace, to catch signals and stop reclaim
1761 * after minimal progress, regardless of the margin.
1762 */
1763 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1764 break;
1765 if (mem_cgroup_margin(memcg))
1766 break;
1767 /*
1768 * If nothing was reclaimed after two attempts, there
1769 * may be no reclaimable pages in this hierarchy.
1770 */
1771 if (loop && !total)
1772 break;
1773 }
1774 return total;
1775}
1776
Michal Hockoe8831102013-09-12 15:13:23 -07001777#if MAX_NUMNODES > 1
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001778/**
1779 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001780 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001781 * @nid: the node ID to be checked.
1782 * @noswap : specify true here if the user wants flle only information.
1783 *
1784 * This function returns whether the specified memcg contains any
1785 * reclaimable pages on a node. Returns true if there are any reclaimable
1786 * pages in the node.
1787 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001788static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001789 int nid, bool noswap)
1790{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001791 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001792 return true;
1793 if (noswap || !total_swap_pages)
1794 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001795 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001796 return true;
1797 return false;
1798
1799}
Ying Han889976d2011-05-26 16:25:33 -07001800
1801/*
1802 * Always updating the nodemask is not very good - even if we have an empty
1803 * list or the wrong list here, we can start from some node and traverse all
1804 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1805 *
1806 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001807static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001808{
1809 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001810 /*
1811 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1812 * pagein/pageout changes since the last update.
1813 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001814 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001815 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001816 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001817 return;
1818
Ying Han889976d2011-05-26 16:25:33 -07001819 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001820 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001821
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001822 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001823
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001824 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1825 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001826 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001827
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001828 atomic_set(&memcg->numainfo_events, 0);
1829 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001830}
1831
1832/*
1833 * Selecting a node where we start reclaim from. Because what we need is just
1834 * reducing usage counter, start from anywhere is O,K. Considering
1835 * memory reclaim from current node, there are pros. and cons.
1836 *
1837 * Freeing memory from current node means freeing memory from a node which
1838 * we'll use or we've used. So, it may make LRU bad. And if several threads
1839 * hit limits, it will see a contention on a node. But freeing from remote
1840 * node means more costs for memory reclaim because of memory latency.
1841 *
1842 * Now, we use round-robin. Better algorithm is welcomed.
1843 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001844int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001845{
1846 int node;
1847
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001848 mem_cgroup_may_update_nodemask(memcg);
1849 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001850
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001851 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001852 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001853 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001854 /*
1855 * We call this when we hit limit, not when pages are added to LRU.
1856 * No LRU may hold pages because all pages are UNEVICTABLE or
1857 * memcg is too small and all pages are not on LRU. In that case,
1858 * we use curret node.
1859 */
1860 if (unlikely(node == MAX_NUMNODES))
1861 node = numa_node_id();
1862
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001863 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001864 return node;
1865}
1866
1867#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001868int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001869{
1870 return 0;
1871}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001872
Ying Han889976d2011-05-26 16:25:33 -07001873#endif
1874
Michal Hocko3b387222013-09-12 15:13:21 -07001875/*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001876 * A group is eligible for the soft limit reclaim under the given root
1877 * hierarchy if
1878 * a) it is over its soft limit
Michal Hocko3b387222013-09-12 15:13:21 -07001879 * b) any parent up the hierarchy is over its soft limit
Michal Hocko7d910c02013-09-12 15:13:28 -07001880 *
1881 * If the given group doesn't have any children over the limit then it
1882 * doesn't make any sense to iterate its subtree.
Michal Hocko3b387222013-09-12 15:13:21 -07001883 */
Michal Hockode577802013-09-12 15:13:26 -07001884enum mem_cgroup_filter_t
1885mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg,
Michal Hockoa5b7c872013-09-12 15:13:25 -07001886 struct mem_cgroup *root)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001887{
Michal Hockoe839b6a2013-09-12 15:13:30 -07001888 struct mem_cgroup *parent;
1889
1890 if (!memcg)
1891 memcg = root_mem_cgroup;
1892 parent = memcg;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001893
Michal Hocko3b387222013-09-12 15:13:21 -07001894 if (res_counter_soft_limit_excess(&memcg->res))
Michal Hockode577802013-09-12 15:13:26 -07001895 return VISIT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001896
Michal Hocko3b387222013-09-12 15:13:21 -07001897 /*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001898 * If any parent up to the root in the hierarchy is over its soft limit
1899 * then we have to obey and reclaim from this group as well.
Michal Hocko3b387222013-09-12 15:13:21 -07001900 */
1901 while((parent = parent_mem_cgroup(parent))) {
1902 if (res_counter_soft_limit_excess(&parent->res))
Michal Hockode577802013-09-12 15:13:26 -07001903 return VISIT;
Michal Hockoa5b7c872013-09-12 15:13:25 -07001904 if (parent == root)
1905 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001906 }
Michal Hocko3b387222013-09-12 15:13:21 -07001907
Michal Hocko7d910c02013-09-12 15:13:28 -07001908 if (!atomic_read(&memcg->children_in_excess))
1909 return SKIP_TREE;
Michal Hockode577802013-09-12 15:13:26 -07001910 return SKIP;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001911}
1912
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001913/*
1914 * Check OOM-Killer is already running under our hierarchy.
1915 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001916 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001917 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001918static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001919{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001920 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001921
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001922 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001923 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001924 /*
1925 * this subtree of our hierarchy is already locked
1926 * so we cannot give a lock.
1927 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001928 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001929 mem_cgroup_iter_break(memcg, iter);
1930 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001931 } else
1932 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001933 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001934
Michal Hocko79dfdac2011-07-26 16:08:23 -07001935 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001936 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001937
1938 /*
1939 * OK, we failed to lock the whole subtree so we have to clean up
1940 * what we set up to the failing subtree
1941 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001942 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001943 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001944 mem_cgroup_iter_break(memcg, iter);
1945 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001946 }
1947 iter->oom_lock = false;
1948 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001949 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001950}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001951
Michal Hocko79dfdac2011-07-26 16:08:23 -07001952/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001953 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001954 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001955static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001956{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001957 struct mem_cgroup *iter;
1958
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001959 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001960 iter->oom_lock = false;
1961 return 0;
1962}
1963
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001964static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001965{
1966 struct mem_cgroup *iter;
1967
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001968 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001969 atomic_inc(&iter->under_oom);
1970}
1971
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001972static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001973{
1974 struct mem_cgroup *iter;
1975
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001976 /*
1977 * When a new child is created while the hierarchy is under oom,
1978 * mem_cgroup_oom_lock() may not be called. We have to use
1979 * atomic_add_unless() here.
1980 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001981 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001982 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001983}
1984
Michal Hocko1af8efe2011-07-26 16:08:24 -07001985static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001986static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1987
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001988struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001989 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001990 wait_queue_t wait;
1991};
1992
1993static int memcg_oom_wake_function(wait_queue_t *wait,
1994 unsigned mode, int sync, void *arg)
1995{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001996 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1997 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001998 struct oom_wait_info *oom_wait_info;
1999
2000 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002001 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002002
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002003 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002004 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002005 * Then we can use css_is_ancestor without taking care of RCU.
2006 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002007 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
2008 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002009 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002010 return autoremove_wake_function(wait, mode, sync, arg);
2011}
2012
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002013static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002014{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002015 /* for filtering, pass "memcg" as argument. */
2016 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002017}
2018
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002019static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002020{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002021 if (memcg && atomic_read(&memcg->under_oom))
2022 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002023}
2024
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002025/*
2026 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
2027 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07002028static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
2029 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002030{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002031 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002032 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002033
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002034 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002035 owait.wait.flags = 0;
2036 owait.wait.func = memcg_oom_wake_function;
2037 owait.wait.private = current;
2038 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002039 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002040 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07002041
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002042 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07002043 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002044 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002045 /*
2046 * Even if signal_pending(), we can't quit charge() loop without
2047 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
2048 * under OOM is always welcomed, use TASK_KILLABLE here.
2049 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002050 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002051 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002052 need_to_kill = false;
2053 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002054 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07002055 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002056
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002057 if (need_to_kill) {
2058 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07002059 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002060 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002061 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002062 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002063 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07002064 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07002065 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002066 mem_cgroup_oom_unlock(memcg);
2067 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07002068 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002069
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002070 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07002071
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002072 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
2073 return false;
2074 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07002075 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002076 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002077}
2078
Balbir Singhd69b0422009-06-17 16:26:34 -07002079/*
2080 * Currently used to update mapped file statistics, but the routine can be
2081 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002082 *
2083 * Notes: Race condition
2084 *
2085 * We usually use page_cgroup_lock() for accessing page_cgroup member but
2086 * it tends to be costly. But considering some conditions, we doesn't need
2087 * to do so _always_.
2088 *
2089 * Considering "charge", lock_page_cgroup() is not required because all
2090 * file-stat operations happen after a page is attached to radix-tree. There
2091 * are no race with "charge".
2092 *
2093 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2094 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2095 * if there are race with "uncharge". Statistics itself is properly handled
2096 * by flags.
2097 *
2098 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002099 * small, we check mm->moving_account and detect there are possibility of race
2100 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002101 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002102
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002103void __mem_cgroup_begin_update_page_stat(struct page *page,
2104 bool *locked, unsigned long *flags)
2105{
2106 struct mem_cgroup *memcg;
2107 struct page_cgroup *pc;
2108
2109 pc = lookup_page_cgroup(page);
2110again:
2111 memcg = pc->mem_cgroup;
2112 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2113 return;
2114 /*
2115 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002116 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002117 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002118 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002119 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002120 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002121 return;
2122
2123 move_lock_mem_cgroup(memcg, flags);
2124 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2125 move_unlock_mem_cgroup(memcg, flags);
2126 goto again;
2127 }
2128 *locked = true;
2129}
2130
2131void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2132{
2133 struct page_cgroup *pc = lookup_page_cgroup(page);
2134
2135 /*
2136 * It's guaranteed that pc->mem_cgroup never changes while
2137 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002138 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002139 */
2140 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2141}
2142
Greg Thelen2a7106f2011-01-13 15:47:37 -08002143void mem_cgroup_update_page_stat(struct page *page,
2144 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002145{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002146 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002147 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002148 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002149
Johannes Weinercfa44942012-01-12 17:18:38 -08002150 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002151 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002152
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002153 memcg = pc->mem_cgroup;
2154 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002155 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002156
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002157 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002158 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08002159 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002160 break;
2161 default:
2162 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002163 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002164
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002165 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002166}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002167
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002168/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002169 * size of first charge trial. "32" comes from vmscan.c's magic value.
2170 * TODO: maybe necessary to use big numbers in big irons.
2171 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002172#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002173struct memcg_stock_pcp {
2174 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002175 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002176 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002177 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002178#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002179};
2180static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002181static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002182
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002183/**
2184 * consume_stock: Try to consume stocked charge on this cpu.
2185 * @memcg: memcg to consume from.
2186 * @nr_pages: how many pages to charge.
2187 *
2188 * The charges will only happen if @memcg matches the current cpu's memcg
2189 * stock, and at least @nr_pages are available in that stock. Failure to
2190 * service an allocation will refill the stock.
2191 *
2192 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002193 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002194static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002195{
2196 struct memcg_stock_pcp *stock;
2197 bool ret = true;
2198
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002199 if (nr_pages > CHARGE_BATCH)
2200 return false;
2201
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002202 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002203 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2204 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002205 else /* need to call res_counter_charge */
2206 ret = false;
2207 put_cpu_var(memcg_stock);
2208 return ret;
2209}
2210
2211/*
2212 * Returns stocks cached in percpu to res_counter and reset cached information.
2213 */
2214static void drain_stock(struct memcg_stock_pcp *stock)
2215{
2216 struct mem_cgroup *old = stock->cached;
2217
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002218 if (stock->nr_pages) {
2219 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2220
2221 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002222 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002223 res_counter_uncharge(&old->memsw, bytes);
2224 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002225 }
2226 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002227}
2228
2229/*
2230 * This must be called under preempt disabled or must be called by
2231 * a thread which is pinned to local cpu.
2232 */
2233static void drain_local_stock(struct work_struct *dummy)
2234{
2235 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2236 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002237 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002238}
2239
Michal Hockoe4777492013-02-22 16:35:40 -08002240static void __init memcg_stock_init(void)
2241{
2242 int cpu;
2243
2244 for_each_possible_cpu(cpu) {
2245 struct memcg_stock_pcp *stock =
2246 &per_cpu(memcg_stock, cpu);
2247 INIT_WORK(&stock->work, drain_local_stock);
2248 }
2249}
2250
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002251/*
2252 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002253 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002254 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002255static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002256{
2257 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2258
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002259 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002260 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002261 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002262 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002263 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002264 put_cpu_var(memcg_stock);
2265}
2266
2267/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002268 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002269 * of the hierarchy under it. sync flag says whether we should block
2270 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002271 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002272static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002273{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002274 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002275
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002276 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002277 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002278 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002279 for_each_online_cpu(cpu) {
2280 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002281 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002282
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002283 memcg = stock->cached;
2284 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002285 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002286 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002287 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002288 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2289 if (cpu == curcpu)
2290 drain_local_stock(&stock->work);
2291 else
2292 schedule_work_on(cpu, &stock->work);
2293 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002294 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002295 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002296
2297 if (!sync)
2298 goto out;
2299
2300 for_each_online_cpu(cpu) {
2301 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002302 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002303 flush_work(&stock->work);
2304 }
2305out:
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002306 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002307}
2308
2309/*
2310 * Tries to drain stocked charges in other cpus. This function is asynchronous
2311 * and just put a work per cpu for draining localy on each cpu. Caller can
2312 * expects some charges will be back to res_counter later but cannot wait for
2313 * it.
2314 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002315static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002316{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002317 /*
2318 * If someone calls draining, avoid adding more kworker runs.
2319 */
2320 if (!mutex_trylock(&percpu_charge_mutex))
2321 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002322 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002323 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002324}
2325
2326/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002327static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002328{
2329 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002330 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002331 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002332 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002333}
2334
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002335/*
2336 * This function drains percpu counter value from DEAD cpu and
2337 * move it to local cpu. Note that this function can be preempted.
2338 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002339static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002340{
2341 int i;
2342
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002343 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002344 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002345 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002346
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002347 per_cpu(memcg->stat->count[i], cpu) = 0;
2348 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002349 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002350 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002351 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002352
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002353 per_cpu(memcg->stat->events[i], cpu) = 0;
2354 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002355 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002356 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002357}
2358
Paul Gortmaker0db06282013-06-19 14:53:51 -04002359static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002360 unsigned long action,
2361 void *hcpu)
2362{
2363 int cpu = (unsigned long)hcpu;
2364 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002365 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002366
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002367 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002368 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002369
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002370 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002371 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002372
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002373 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002374 mem_cgroup_drain_pcp_counter(iter, cpu);
2375
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002376 stock = &per_cpu(memcg_stock, cpu);
2377 drain_stock(stock);
2378 return NOTIFY_OK;
2379}
2380
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002381
2382/* See __mem_cgroup_try_charge() for details */
2383enum {
2384 CHARGE_OK, /* success */
2385 CHARGE_RETRY, /* need to retry but retry is not bad */
2386 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2387 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2388 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2389};
2390
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002391static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002392 unsigned int nr_pages, unsigned int min_pages,
2393 bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002394{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002395 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002396 struct mem_cgroup *mem_over_limit;
2397 struct res_counter *fail_res;
2398 unsigned long flags = 0;
2399 int ret;
2400
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002401 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002402
2403 if (likely(!ret)) {
2404 if (!do_swap_account)
2405 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002406 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002407 if (likely(!ret))
2408 return CHARGE_OK;
2409
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002410 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002411 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2412 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2413 } else
2414 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002415 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002416 * Never reclaim on behalf of optional batching, retry with a
2417 * single page instead.
2418 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002419 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002420 return CHARGE_RETRY;
2421
2422 if (!(gfp_mask & __GFP_WAIT))
2423 return CHARGE_WOULDBLOCK;
2424
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002425 if (gfp_mask & __GFP_NORETRY)
2426 return CHARGE_NOMEM;
2427
Johannes Weiner56600482012-01-12 17:17:59 -08002428 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002429 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002430 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002431 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002432 * Even though the limit is exceeded at this point, reclaim
2433 * may have been able to free some pages. Retry the charge
2434 * before killing the task.
2435 *
2436 * Only for regular pages, though: huge pages are rather
2437 * unlikely to succeed so close to the limit, and we fall back
2438 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002439 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002440 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002441 return CHARGE_RETRY;
2442
2443 /*
2444 * At task move, charge accounts can be doubly counted. So, it's
2445 * better to wait until the end of task_move if something is going on.
2446 */
2447 if (mem_cgroup_wait_acct_move(mem_over_limit))
2448 return CHARGE_RETRY;
2449
2450 /* If we don't need to call oom-killer at el, return immediately */
2451 if (!oom_check)
2452 return CHARGE_NOMEM;
2453 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002454 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002455 return CHARGE_OOM_DIE;
2456
2457 return CHARGE_RETRY;
2458}
2459
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002460/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002461 * __mem_cgroup_try_charge() does
2462 * 1. detect memcg to be charged against from passed *mm and *ptr,
2463 * 2. update res_counter
2464 * 3. call memory reclaim if necessary.
2465 *
2466 * In some special case, if the task is fatal, fatal_signal_pending() or
2467 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2468 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2469 * as possible without any hazards. 2: all pages should have a valid
2470 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2471 * pointer, that is treated as a charge to root_mem_cgroup.
2472 *
2473 * So __mem_cgroup_try_charge() will return
2474 * 0 ... on success, filling *ptr with a valid memcg pointer.
2475 * -ENOMEM ... charge failure because of resource limits.
2476 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2477 *
2478 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2479 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002480 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002481static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002482 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002483 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002484 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002485 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002486{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002487 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002488 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002489 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002490 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002491
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002492 /*
2493 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2494 * in system level. So, allow to go ahead dying process in addition to
2495 * MEMDIE process.
2496 */
2497 if (unlikely(test_thread_flag(TIF_MEMDIE)
2498 || fatal_signal_pending(current)))
2499 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002500
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002501 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002502 * We always charge the cgroup the mm_struct belongs to.
2503 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002504 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002505 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002506 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002507 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002508 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002509again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002510 if (*ptr) { /* css should be a valid one */
2511 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002512 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002513 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002514 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002515 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002516 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002517 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002518 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002519
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002520 rcu_read_lock();
2521 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002522 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002523 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002524 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002525 * race with swapoff. Then, we have small risk of mis-accouning.
2526 * But such kind of mis-account by race always happens because
2527 * we don't have cgroup_mutex(). It's overkill and we allo that
2528 * small race, here.
2529 * (*) swapoff at el will charge against mm-struct not against
2530 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002531 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002532 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002533 if (!memcg)
2534 memcg = root_mem_cgroup;
2535 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002536 rcu_read_unlock();
2537 goto done;
2538 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002539 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002540 /*
2541 * It seems dagerous to access memcg without css_get().
2542 * But considering how consume_stok works, it's not
2543 * necessary. If consume_stock success, some charges
2544 * from this memcg are cached on this cpu. So, we
2545 * don't need to call css_get()/css_tryget() before
2546 * calling consume_stock().
2547 */
2548 rcu_read_unlock();
2549 goto done;
2550 }
2551 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002552 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002553 rcu_read_unlock();
2554 goto again;
2555 }
2556 rcu_read_unlock();
2557 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002558
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002559 do {
2560 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002561
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002562 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002563 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002564 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002565 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002566 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002567
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002568 oom_check = false;
2569 if (oom && !nr_oom_retries) {
2570 oom_check = true;
2571 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2572 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002573
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002574 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, nr_pages,
2575 oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002576 switch (ret) {
2577 case CHARGE_OK:
2578 break;
2579 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002580 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002581 css_put(&memcg->css);
2582 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002583 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002584 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002585 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002586 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002587 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002588 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002589 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002590 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002591 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002592 /* If oom, we never return -ENOMEM */
2593 nr_oom_retries--;
2594 break;
2595 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002596 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002597 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002598 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002599 } while (ret != CHARGE_OK);
2600
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002601 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002602 refill_stock(memcg, batch - nr_pages);
2603 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002604done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002605 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002606 return 0;
2607nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002608 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002609 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002610bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002611 *ptr = root_mem_cgroup;
2612 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002613}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002614
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002615/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002616 * Somemtimes we have to undo a charge we got by try_charge().
2617 * This function is for that and do uncharge, put css's refcnt.
2618 * gotten by try_charge().
2619 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002620static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002621 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002622{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002623 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002624 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002625
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002626 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002627 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002628 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002629 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002630}
2631
2632/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002633 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2634 * This is useful when moving usage to parent cgroup.
2635 */
2636static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2637 unsigned int nr_pages)
2638{
2639 unsigned long bytes = nr_pages * PAGE_SIZE;
2640
2641 if (mem_cgroup_is_root(memcg))
2642 return;
2643
2644 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2645 if (do_swap_account)
2646 res_counter_uncharge_until(&memcg->memsw,
2647 memcg->memsw.parent, bytes);
2648}
2649
2650/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002651 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002652 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2653 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2654 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002655 */
2656static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2657{
2658 struct cgroup_subsys_state *css;
2659
2660 /* ID 0 is unused ID */
2661 if (!id)
2662 return NULL;
2663 css = css_lookup(&mem_cgroup_subsys, id);
2664 if (!css)
2665 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002666 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002667}
2668
Wu Fengguange42d9d52009-12-16 12:19:59 +01002669struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002670{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002671 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002672 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002673 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002674 swp_entry_t ent;
2675
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002676 VM_BUG_ON(!PageLocked(page));
2677
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002678 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002679 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002680 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002681 memcg = pc->mem_cgroup;
2682 if (memcg && !css_tryget(&memcg->css))
2683 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002684 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002685 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002686 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002687 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002688 memcg = mem_cgroup_lookup(id);
2689 if (memcg && !css_tryget(&memcg->css))
2690 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002691 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002692 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002693 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002694 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002695}
2696
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002697static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002698 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002699 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002700 enum charge_type ctype,
2701 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002702{
Johannes Weinerce587e62012-04-24 20:22:33 +02002703 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002704 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002705 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002706 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002707 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002708
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002709 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002710 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002711 /*
2712 * we don't need page_cgroup_lock about tail pages, becase they are not
2713 * accessed by any other context at this point.
2714 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002715
2716 /*
2717 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2718 * may already be on some other mem_cgroup's LRU. Take care of it.
2719 */
2720 if (lrucare) {
2721 zone = page_zone(page);
2722 spin_lock_irq(&zone->lru_lock);
2723 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002724 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002725 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002726 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002727 was_on_lru = true;
2728 }
2729 }
2730
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002731 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002732 /*
2733 * We access a page_cgroup asynchronously without lock_page_cgroup().
2734 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2735 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2736 * before USED bit, we need memory barrier here.
2737 * See mem_cgroup_add_lru_list(), etc.
2738 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002739 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002740 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002741
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002742 if (lrucare) {
2743 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002744 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002745 VM_BUG_ON(PageLRU(page));
2746 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002747 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002748 }
2749 spin_unlock_irq(&zone->lru_lock);
2750 }
2751
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002752 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002753 anon = true;
2754 else
2755 anon = false;
2756
David Rientjesb070e652013-05-07 16:18:09 -07002757 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002758 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002759
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002760 /*
Michal Hockoe8831102013-09-12 15:13:23 -07002761 * "charge_statistics" updated event counter.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002762 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002763 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002764}
2765
Glauber Costa7cf27982012-12-18 14:22:55 -08002766static DEFINE_MUTEX(set_limit_mutex);
2767
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002768#ifdef CONFIG_MEMCG_KMEM
2769static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2770{
2771 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2772 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2773}
2774
Glauber Costa1f458cb2012-12-18 14:22:50 -08002775/*
2776 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2777 * in the memcg_cache_params struct.
2778 */
2779static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2780{
2781 struct kmem_cache *cachep;
2782
2783 VM_BUG_ON(p->is_root_cache);
2784 cachep = p->root_cache;
2785 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2786}
2787
Glauber Costa749c5412012-12-18 14:23:01 -08002788#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002789static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2790 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002791{
Tejun Heo182446d2013-08-08 20:11:24 -04002792 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002793 struct memcg_cache_params *params;
2794
2795 if (!memcg_can_account_kmem(memcg))
2796 return -EIO;
2797
2798 print_slabinfo_header(m);
2799
2800 mutex_lock(&memcg->slab_caches_mutex);
2801 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2802 cache_show(memcg_params_to_cache(params), m);
2803 mutex_unlock(&memcg->slab_caches_mutex);
2804
2805 return 0;
2806}
2807#endif
2808
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002809static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2810{
2811 struct res_counter *fail_res;
2812 struct mem_cgroup *_memcg;
2813 int ret = 0;
2814 bool may_oom;
2815
2816 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2817 if (ret)
2818 return ret;
2819
2820 /*
2821 * Conditions under which we can wait for the oom_killer. Those are
2822 * the same conditions tested by the core page allocator
2823 */
2824 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2825
2826 _memcg = memcg;
2827 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2828 &_memcg, may_oom);
2829
2830 if (ret == -EINTR) {
2831 /*
2832 * __mem_cgroup_try_charge() chosed to bypass to root due to
2833 * OOM kill or fatal signal. Since our only options are to
2834 * either fail the allocation or charge it to this cgroup, do
2835 * it as a temporary condition. But we can't fail. From a
2836 * kmem/slab perspective, the cache has already been selected,
2837 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2838 * our minds.
2839 *
2840 * This condition will only trigger if the task entered
2841 * memcg_charge_kmem in a sane state, but was OOM-killed during
2842 * __mem_cgroup_try_charge() above. Tasks that were already
2843 * dying when the allocation triggers should have been already
2844 * directed to the root cgroup in memcontrol.h
2845 */
2846 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2847 if (do_swap_account)
2848 res_counter_charge_nofail(&memcg->memsw, size,
2849 &fail_res);
2850 ret = 0;
2851 } else if (ret)
2852 res_counter_uncharge(&memcg->kmem, size);
2853
2854 return ret;
2855}
2856
2857static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2858{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002859 res_counter_uncharge(&memcg->res, size);
2860 if (do_swap_account)
2861 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002862
2863 /* Not down to 0 */
2864 if (res_counter_uncharge(&memcg->kmem, size))
2865 return;
2866
Li Zefan10d5ebf2013-07-08 16:00:33 -07002867 /*
2868 * Releases a reference taken in kmem_cgroup_css_offline in case
2869 * this last uncharge is racing with the offlining code or it is
2870 * outliving the memcg existence.
2871 *
2872 * The memory barrier imposed by test&clear is paired with the
2873 * explicit one in memcg_kmem_mark_dead().
2874 */
Glauber Costa7de37682012-12-18 14:22:07 -08002875 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002876 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002877}
2878
Glauber Costa2633d7a2012-12-18 14:22:34 -08002879void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2880{
2881 if (!memcg)
2882 return;
2883
2884 mutex_lock(&memcg->slab_caches_mutex);
2885 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2886 mutex_unlock(&memcg->slab_caches_mutex);
2887}
2888
2889/*
2890 * helper for acessing a memcg's index. It will be used as an index in the
2891 * child cache array in kmem_cache, and also to derive its name. This function
2892 * will return -1 when this is not a kmem-limited memcg.
2893 */
2894int memcg_cache_id(struct mem_cgroup *memcg)
2895{
2896 return memcg ? memcg->kmemcg_id : -1;
2897}
2898
Glauber Costa55007d82012-12-18 14:22:38 -08002899/*
2900 * This ends up being protected by the set_limit mutex, during normal
2901 * operation, because that is its main call site.
2902 *
2903 * But when we create a new cache, we can call this as well if its parent
2904 * is kmem-limited. That will have to hold set_limit_mutex as well.
2905 */
2906int memcg_update_cache_sizes(struct mem_cgroup *memcg)
2907{
2908 int num, ret;
2909
2910 num = ida_simple_get(&kmem_limited_groups,
2911 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2912 if (num < 0)
2913 return num;
2914 /*
2915 * After this point, kmem_accounted (that we test atomically in
2916 * the beginning of this conditional), is no longer 0. This
2917 * guarantees only one process will set the following boolean
2918 * to true. We don't need test_and_set because we're protected
2919 * by the set_limit_mutex anyway.
2920 */
2921 memcg_kmem_set_activated(memcg);
2922
2923 ret = memcg_update_all_caches(num+1);
2924 if (ret) {
2925 ida_simple_remove(&kmem_limited_groups, num);
2926 memcg_kmem_clear_activated(memcg);
2927 return ret;
2928 }
2929
2930 memcg->kmemcg_id = num;
2931 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
2932 mutex_init(&memcg->slab_caches_mutex);
2933 return 0;
2934}
2935
2936static size_t memcg_caches_array_size(int num_groups)
2937{
2938 ssize_t size;
2939 if (num_groups <= 0)
2940 return 0;
2941
2942 size = 2 * num_groups;
2943 if (size < MEMCG_CACHES_MIN_SIZE)
2944 size = MEMCG_CACHES_MIN_SIZE;
2945 else if (size > MEMCG_CACHES_MAX_SIZE)
2946 size = MEMCG_CACHES_MAX_SIZE;
2947
2948 return size;
2949}
2950
2951/*
2952 * We should update the current array size iff all caches updates succeed. This
2953 * can only be done from the slab side. The slab mutex needs to be held when
2954 * calling this.
2955 */
2956void memcg_update_array_size(int num)
2957{
2958 if (num > memcg_limited_groups_array_size)
2959 memcg_limited_groups_array_size = memcg_caches_array_size(num);
2960}
2961
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08002962static void kmem_cache_destroy_work_func(struct work_struct *w);
2963
Glauber Costa55007d82012-12-18 14:22:38 -08002964int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
2965{
2966 struct memcg_cache_params *cur_params = s->memcg_params;
2967
2968 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
2969
2970 if (num_groups > memcg_limited_groups_array_size) {
2971 int i;
2972 ssize_t size = memcg_caches_array_size(num_groups);
2973
2974 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07002975 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08002976
2977 s->memcg_params = kzalloc(size, GFP_KERNEL);
2978 if (!s->memcg_params) {
2979 s->memcg_params = cur_params;
2980 return -ENOMEM;
2981 }
2982
2983 s->memcg_params->is_root_cache = true;
2984
2985 /*
2986 * There is the chance it will be bigger than
2987 * memcg_limited_groups_array_size, if we failed an allocation
2988 * in a cache, in which case all caches updated before it, will
2989 * have a bigger array.
2990 *
2991 * But if that is the case, the data after
2992 * memcg_limited_groups_array_size is certainly unused
2993 */
2994 for (i = 0; i < memcg_limited_groups_array_size; i++) {
2995 if (!cur_params->memcg_caches[i])
2996 continue;
2997 s->memcg_params->memcg_caches[i] =
2998 cur_params->memcg_caches[i];
2999 }
3000
3001 /*
3002 * Ideally, we would wait until all caches succeed, and only
3003 * then free the old one. But this is not worth the extra
3004 * pointer per-cache we'd have to have for this.
3005 *
3006 * It is not a big deal if some caches are left with a size
3007 * bigger than the others. And all updates will reset this
3008 * anyway.
3009 */
3010 kfree(cur_params);
3011 }
3012 return 0;
3013}
3014
Glauber Costa943a4512012-12-18 14:23:03 -08003015int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3016 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08003017{
Andrey Vagin90c7a792013-09-11 14:22:18 -07003018 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003019
3020 if (!memcg_kmem_enabled())
3021 return 0;
3022
Andrey Vagin90c7a792013-09-11 14:22:18 -07003023 if (!memcg) {
3024 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003025 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003026 } else
3027 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08003028
Glauber Costa2633d7a2012-12-18 14:22:34 -08003029 s->memcg_params = kzalloc(size, GFP_KERNEL);
3030 if (!s->memcg_params)
3031 return -ENOMEM;
3032
Glauber Costa943a4512012-12-18 14:23:03 -08003033 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08003034 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08003035 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07003036 INIT_WORK(&s->memcg_params->destroy,
3037 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08003038 } else
3039 s->memcg_params->is_root_cache = true;
3040
Glauber Costa2633d7a2012-12-18 14:22:34 -08003041 return 0;
3042}
3043
3044void memcg_release_cache(struct kmem_cache *s)
3045{
Glauber Costad7f25f82012-12-18 14:22:40 -08003046 struct kmem_cache *root;
3047 struct mem_cgroup *memcg;
3048 int id;
3049
3050 /*
3051 * This happens, for instance, when a root cache goes away before we
3052 * add any memcg.
3053 */
3054 if (!s->memcg_params)
3055 return;
3056
3057 if (s->memcg_params->is_root_cache)
3058 goto out;
3059
3060 memcg = s->memcg_params->memcg;
3061 id = memcg_cache_id(memcg);
3062
3063 root = s->memcg_params->root_cache;
3064 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08003065
3066 mutex_lock(&memcg->slab_caches_mutex);
3067 list_del(&s->memcg_params->list);
3068 mutex_unlock(&memcg->slab_caches_mutex);
3069
Li Zefan20f05312013-07-08 16:00:31 -07003070 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003071out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08003072 kfree(s->memcg_params);
3073}
3074
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003075/*
3076 * During the creation a new cache, we need to disable our accounting mechanism
3077 * altogether. This is true even if we are not creating, but rather just
3078 * enqueing new caches to be created.
3079 *
3080 * This is because that process will trigger allocations; some visible, like
3081 * explicit kmallocs to auxiliary data structures, name strings and internal
3082 * cache structures; some well concealed, like INIT_WORK() that can allocate
3083 * objects during debug.
3084 *
3085 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3086 * to it. This may not be a bounded recursion: since the first cache creation
3087 * failed to complete (waiting on the allocation), we'll just try to create the
3088 * cache again, failing at the same point.
3089 *
3090 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3091 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3092 * inside the following two functions.
3093 */
3094static inline void memcg_stop_kmem_account(void)
3095{
3096 VM_BUG_ON(!current->mm);
3097 current->memcg_kmem_skip_account++;
3098}
3099
3100static inline void memcg_resume_kmem_account(void)
3101{
3102 VM_BUG_ON(!current->mm);
3103 current->memcg_kmem_skip_account--;
3104}
3105
Glauber Costa1f458cb2012-12-18 14:22:50 -08003106static void kmem_cache_destroy_work_func(struct work_struct *w)
3107{
3108 struct kmem_cache *cachep;
3109 struct memcg_cache_params *p;
3110
3111 p = container_of(w, struct memcg_cache_params, destroy);
3112
3113 cachep = memcg_params_to_cache(p);
3114
Glauber Costa22933152012-12-18 14:22:59 -08003115 /*
3116 * If we get down to 0 after shrink, we could delete right away.
3117 * However, memcg_release_pages() already puts us back in the workqueue
3118 * in that case. If we proceed deleting, we'll get a dangling
3119 * reference, and removing the object from the workqueue in that case
3120 * is unnecessary complication. We are not a fast path.
3121 *
3122 * Note that this case is fundamentally different from racing with
3123 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3124 * kmem_cache_shrink, not only we would be reinserting a dead cache
3125 * into the queue, but doing so from inside the worker racing to
3126 * destroy it.
3127 *
3128 * So if we aren't down to zero, we'll just schedule a worker and try
3129 * again
3130 */
3131 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3132 kmem_cache_shrink(cachep);
3133 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3134 return;
3135 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003136 kmem_cache_destroy(cachep);
3137}
3138
3139void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3140{
3141 if (!cachep->memcg_params->dead)
3142 return;
3143
3144 /*
Glauber Costa22933152012-12-18 14:22:59 -08003145 * There are many ways in which we can get here.
3146 *
3147 * We can get to a memory-pressure situation while the delayed work is
3148 * still pending to run. The vmscan shrinkers can then release all
3149 * cache memory and get us to destruction. If this is the case, we'll
3150 * be executed twice, which is a bug (the second time will execute over
3151 * bogus data). In this case, cancelling the work should be fine.
3152 *
3153 * But we can also get here from the worker itself, if
3154 * kmem_cache_shrink is enough to shake all the remaining objects and
3155 * get the page count to 0. In this case, we'll deadlock if we try to
3156 * cancel the work (the worker runs with an internal lock held, which
3157 * is the same lock we would hold for cancel_work_sync().)
3158 *
3159 * Since we can't possibly know who got us here, just refrain from
3160 * running if there is already work pending
3161 */
3162 if (work_pending(&cachep->memcg_params->destroy))
3163 return;
3164 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003165 * We have to defer the actual destroying to a workqueue, because
3166 * we might currently be in a context that cannot sleep.
3167 */
3168 schedule_work(&cachep->memcg_params->destroy);
3169}
3170
Glauber Costad7f25f82012-12-18 14:22:40 -08003171/*
3172 * This lock protects updaters, not readers. We want readers to be as fast as
3173 * they can, and they will either see NULL or a valid cache value. Our model
3174 * allow them to see NULL, in which case the root memcg will be selected.
3175 *
3176 * We need this lock because multiple allocations to the same cache from a non
3177 * will span more than one worker. Only one of them can create the cache.
3178 */
3179static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003180
3181/*
3182 * Called with memcg_cache_mutex held
3183 */
3184static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3185 struct kmem_cache *s)
3186{
3187 struct kmem_cache *new;
3188 static char *tmp_name = NULL;
3189
3190 lockdep_assert_held(&memcg_cache_mutex);
3191
3192 /*
3193 * kmem_cache_create_memcg duplicates the given name and
3194 * cgroup_name for this name requires RCU context.
3195 * This static temporary buffer is used to prevent from
3196 * pointless shortliving allocation.
3197 */
3198 if (!tmp_name) {
3199 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3200 if (!tmp_name)
3201 return NULL;
3202 }
3203
3204 rcu_read_lock();
3205 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3206 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3207 rcu_read_unlock();
3208
3209 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3210 (s->flags & ~SLAB_PANIC), s->ctor, s);
3211
3212 if (new)
3213 new->allocflags |= __GFP_KMEMCG;
3214
3215 return new;
3216}
3217
Glauber Costad7f25f82012-12-18 14:22:40 -08003218static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3219 struct kmem_cache *cachep)
3220{
3221 struct kmem_cache *new_cachep;
3222 int idx;
3223
3224 BUG_ON(!memcg_can_account_kmem(memcg));
3225
3226 idx = memcg_cache_id(memcg);
3227
3228 mutex_lock(&memcg_cache_mutex);
3229 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003230 if (new_cachep) {
3231 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003232 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003233 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003234
3235 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003236 if (new_cachep == NULL) {
3237 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003238 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003239 goto out;
3240 }
3241
Glauber Costa1f458cb2012-12-18 14:22:50 -08003242 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003243
3244 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3245 /*
3246 * the readers won't lock, make sure everybody sees the updated value,
3247 * so they won't put stuff in the queue again for no reason
3248 */
3249 wmb();
3250out:
3251 mutex_unlock(&memcg_cache_mutex);
3252 return new_cachep;
3253}
3254
Glauber Costa7cf27982012-12-18 14:22:55 -08003255void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3256{
3257 struct kmem_cache *c;
3258 int i;
3259
3260 if (!s->memcg_params)
3261 return;
3262 if (!s->memcg_params->is_root_cache)
3263 return;
3264
3265 /*
3266 * If the cache is being destroyed, we trust that there is no one else
3267 * requesting objects from it. Even if there are, the sanity checks in
3268 * kmem_cache_destroy should caught this ill-case.
3269 *
3270 * Still, we don't want anyone else freeing memcg_caches under our
3271 * noses, which can happen if a new memcg comes to life. As usual,
3272 * we'll take the set_limit_mutex to protect ourselves against this.
3273 */
3274 mutex_lock(&set_limit_mutex);
3275 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3276 c = s->memcg_params->memcg_caches[i];
3277 if (!c)
3278 continue;
3279
3280 /*
3281 * We will now manually delete the caches, so to avoid races
3282 * we need to cancel all pending destruction workers and
3283 * proceed with destruction ourselves.
3284 *
3285 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3286 * and that could spawn the workers again: it is likely that
3287 * the cache still have active pages until this very moment.
3288 * This would lead us back to mem_cgroup_destroy_cache.
3289 *
3290 * But that will not execute at all if the "dead" flag is not
3291 * set, so flip it down to guarantee we are in control.
3292 */
3293 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003294 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003295 kmem_cache_destroy(c);
3296 }
3297 mutex_unlock(&set_limit_mutex);
3298}
3299
Glauber Costad7f25f82012-12-18 14:22:40 -08003300struct create_work {
3301 struct mem_cgroup *memcg;
3302 struct kmem_cache *cachep;
3303 struct work_struct work;
3304};
3305
Glauber Costa1f458cb2012-12-18 14:22:50 -08003306static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3307{
3308 struct kmem_cache *cachep;
3309 struct memcg_cache_params *params;
3310
3311 if (!memcg_kmem_is_active(memcg))
3312 return;
3313
3314 mutex_lock(&memcg->slab_caches_mutex);
3315 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3316 cachep = memcg_params_to_cache(params);
3317 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003318 schedule_work(&cachep->memcg_params->destroy);
3319 }
3320 mutex_unlock(&memcg->slab_caches_mutex);
3321}
3322
Glauber Costad7f25f82012-12-18 14:22:40 -08003323static void memcg_create_cache_work_func(struct work_struct *w)
3324{
3325 struct create_work *cw;
3326
3327 cw = container_of(w, struct create_work, work);
3328 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003329 kfree(cw);
3330}
3331
3332/*
3333 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003334 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003335static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3336 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003337{
3338 struct create_work *cw;
3339
3340 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003341 if (cw == NULL) {
3342 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003343 return;
3344 }
3345
3346 cw->memcg = memcg;
3347 cw->cachep = cachep;
3348
3349 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3350 schedule_work(&cw->work);
3351}
3352
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003353static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3354 struct kmem_cache *cachep)
3355{
3356 /*
3357 * We need to stop accounting when we kmalloc, because if the
3358 * corresponding kmalloc cache is not yet created, the first allocation
3359 * in __memcg_create_cache_enqueue will recurse.
3360 *
3361 * However, it is better to enclose the whole function. Depending on
3362 * the debugging options enabled, INIT_WORK(), for instance, can
3363 * trigger an allocation. This too, will make us recurse. Because at
3364 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3365 * the safest choice is to do it like this, wrapping the whole function.
3366 */
3367 memcg_stop_kmem_account();
3368 __memcg_create_cache_enqueue(memcg, cachep);
3369 memcg_resume_kmem_account();
3370}
Glauber Costad7f25f82012-12-18 14:22:40 -08003371/*
3372 * Return the kmem_cache we're supposed to use for a slab allocation.
3373 * We try to use the current memcg's version of the cache.
3374 *
3375 * If the cache does not exist yet, if we are the first user of it,
3376 * we either create it immediately, if possible, or create it asynchronously
3377 * in a workqueue.
3378 * In the latter case, we will let the current allocation go through with
3379 * the original cache.
3380 *
3381 * Can't be called in interrupt context or from kernel threads.
3382 * This function needs to be called with rcu_read_lock() held.
3383 */
3384struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3385 gfp_t gfp)
3386{
3387 struct mem_cgroup *memcg;
3388 int idx;
3389
3390 VM_BUG_ON(!cachep->memcg_params);
3391 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3392
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003393 if (!current->mm || current->memcg_kmem_skip_account)
3394 return cachep;
3395
Glauber Costad7f25f82012-12-18 14:22:40 -08003396 rcu_read_lock();
3397 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003398
3399 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003400 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003401
3402 idx = memcg_cache_id(memcg);
3403
3404 /*
3405 * barrier to mare sure we're always seeing the up to date value. The
3406 * code updating memcg_caches will issue a write barrier to match this.
3407 */
3408 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003409 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3410 cachep = cachep->memcg_params->memcg_caches[idx];
3411 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003412 }
3413
Li Zefanca0dde92013-04-29 15:08:57 -07003414 /* The corresponding put will be done in the workqueue. */
3415 if (!css_tryget(&memcg->css))
3416 goto out;
3417 rcu_read_unlock();
3418
3419 /*
3420 * If we are in a safe context (can wait, and not in interrupt
3421 * context), we could be be predictable and return right away.
3422 * This would guarantee that the allocation being performed
3423 * already belongs in the new cache.
3424 *
3425 * However, there are some clashes that can arrive from locking.
3426 * For instance, because we acquire the slab_mutex while doing
3427 * kmem_cache_dup, this means no further allocation could happen
3428 * with the slab_mutex held.
3429 *
3430 * Also, because cache creation issue get_online_cpus(), this
3431 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3432 * that ends up reversed during cpu hotplug. (cpuset allocates
3433 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3434 * better to defer everything.
3435 */
3436 memcg_create_cache_enqueue(memcg, cachep);
3437 return cachep;
3438out:
3439 rcu_read_unlock();
3440 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003441}
3442EXPORT_SYMBOL(__memcg_kmem_get_cache);
3443
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003444/*
3445 * We need to verify if the allocation against current->mm->owner's memcg is
3446 * possible for the given order. But the page is not allocated yet, so we'll
3447 * need a further commit step to do the final arrangements.
3448 *
3449 * It is possible for the task to switch cgroups in this mean time, so at
3450 * commit time, we can't rely on task conversion any longer. We'll then use
3451 * the handle argument to return to the caller which cgroup we should commit
3452 * against. We could also return the memcg directly and avoid the pointer
3453 * passing, but a boolean return value gives better semantics considering
3454 * the compiled-out case as well.
3455 *
3456 * Returning true means the allocation is possible.
3457 */
3458bool
3459__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3460{
3461 struct mem_cgroup *memcg;
3462 int ret;
3463
3464 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003465
3466 /*
3467 * Disabling accounting is only relevant for some specific memcg
3468 * internal allocations. Therefore we would initially not have such
3469 * check here, since direct calls to the page allocator that are marked
3470 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3471 * concerned with cache allocations, and by having this test at
3472 * memcg_kmem_get_cache, we are already able to relay the allocation to
3473 * the root cache and bypass the memcg cache altogether.
3474 *
3475 * There is one exception, though: the SLUB allocator does not create
3476 * large order caches, but rather service large kmallocs directly from
3477 * the page allocator. Therefore, the following sequence when backed by
3478 * the SLUB allocator:
3479 *
3480 * memcg_stop_kmem_account();
3481 * kmalloc(<large_number>)
3482 * memcg_resume_kmem_account();
3483 *
3484 * would effectively ignore the fact that we should skip accounting,
3485 * since it will drive us directly to this function without passing
3486 * through the cache selector memcg_kmem_get_cache. Such large
3487 * allocations are extremely rare but can happen, for instance, for the
3488 * cache arrays. We bring this test here.
3489 */
3490 if (!current->mm || current->memcg_kmem_skip_account)
3491 return true;
3492
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003493 memcg = try_get_mem_cgroup_from_mm(current->mm);
3494
3495 /*
3496 * very rare case described in mem_cgroup_from_task. Unfortunately there
3497 * isn't much we can do without complicating this too much, and it would
3498 * be gfp-dependent anyway. Just let it go
3499 */
3500 if (unlikely(!memcg))
3501 return true;
3502
3503 if (!memcg_can_account_kmem(memcg)) {
3504 css_put(&memcg->css);
3505 return true;
3506 }
3507
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003508 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3509 if (!ret)
3510 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003511
3512 css_put(&memcg->css);
3513 return (ret == 0);
3514}
3515
3516void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3517 int order)
3518{
3519 struct page_cgroup *pc;
3520
3521 VM_BUG_ON(mem_cgroup_is_root(memcg));
3522
3523 /* The page allocation failed. Revert */
3524 if (!page) {
3525 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003526 return;
3527 }
3528
3529 pc = lookup_page_cgroup(page);
3530 lock_page_cgroup(pc);
3531 pc->mem_cgroup = memcg;
3532 SetPageCgroupUsed(pc);
3533 unlock_page_cgroup(pc);
3534}
3535
3536void __memcg_kmem_uncharge_pages(struct page *page, int order)
3537{
3538 struct mem_cgroup *memcg = NULL;
3539 struct page_cgroup *pc;
3540
3541
3542 pc = lookup_page_cgroup(page);
3543 /*
3544 * Fast unlocked return. Theoretically might have changed, have to
3545 * check again after locking.
3546 */
3547 if (!PageCgroupUsed(pc))
3548 return;
3549
3550 lock_page_cgroup(pc);
3551 if (PageCgroupUsed(pc)) {
3552 memcg = pc->mem_cgroup;
3553 ClearPageCgroupUsed(pc);
3554 }
3555 unlock_page_cgroup(pc);
3556
3557 /*
3558 * We trust that only if there is a memcg associated with the page, it
3559 * is a valid allocation
3560 */
3561 if (!memcg)
3562 return;
3563
3564 VM_BUG_ON(mem_cgroup_is_root(memcg));
3565 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003566}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003567#else
3568static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3569{
3570}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003571#endif /* CONFIG_MEMCG_KMEM */
3572
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003573#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3574
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003575#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003576/*
3577 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003578 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3579 * charge/uncharge will be never happen and move_account() is done under
3580 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003581 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003582void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003583{
3584 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003585 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003586 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003587 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003588
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003589 if (mem_cgroup_disabled())
3590 return;
David Rientjesb070e652013-05-07 16:18:09 -07003591
3592 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003593 for (i = 1; i < HPAGE_PMD_NR; i++) {
3594 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003595 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003596 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003597 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3598 }
David Rientjesb070e652013-05-07 16:18:09 -07003599 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3600 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003601}
Hugh Dickins12d27102012-01-12 17:19:52 -08003602#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003603
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003604/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003605 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003606 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003607 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003608 * @pc: page_cgroup of the page.
3609 * @from: mem_cgroup which the page is moved from.
3610 * @to: mem_cgroup which the page is moved to. @from != @to.
3611 *
3612 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003613 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003614 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003615 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003616 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3617 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003618 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003619static int mem_cgroup_move_account(struct page *page,
3620 unsigned int nr_pages,
3621 struct page_cgroup *pc,
3622 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003623 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003624{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003625 unsigned long flags;
3626 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003627 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003628
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003629 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003630 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003631 /*
3632 * The page is isolated from LRU. So, collapse function
3633 * will not handle this page. But page splitting can happen.
3634 * Do this check under compound_page_lock(). The caller should
3635 * hold it.
3636 */
3637 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003638 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003639 goto out;
3640
3641 lock_page_cgroup(pc);
3642
3643 ret = -EINVAL;
3644 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3645 goto unlock;
3646
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003647 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003648
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003649 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08003650 /* Update mapped_file data for mem_cgroup */
3651 preempt_disable();
3652 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3653 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3654 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07003655 }
David Rientjesb070e652013-05-07 16:18:09 -07003656 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003657
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003658 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003659 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003660 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003661 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003662 ret = 0;
3663unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003664 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003665 /*
3666 * check events
3667 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003668 memcg_check_events(to, page);
3669 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003670out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003671 return ret;
3672}
3673
Michal Hocko2ef37d32012-10-26 13:37:30 +02003674/**
3675 * mem_cgroup_move_parent - moves page to the parent group
3676 * @page: the page to move
3677 * @pc: page_cgroup of the page
3678 * @child: page's cgroup
3679 *
3680 * move charges to its parent or the root cgroup if the group has no
3681 * parent (aka use_hierarchy==0).
3682 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3683 * mem_cgroup_move_account fails) the failure is always temporary and
3684 * it signals a race with a page removal/uncharge or migration. In the
3685 * first case the page is on the way out and it will vanish from the LRU
3686 * on the next attempt and the call should be retried later.
3687 * Isolation from the LRU fails only if page has been isolated from
3688 * the LRU since we looked at it and that usually means either global
3689 * reclaim or migration going on. The page will either get back to the
3690 * LRU or vanish.
3691 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3692 * (!PageCgroupUsed) or moved to a different group. The page will
3693 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003694 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003695static int mem_cgroup_move_parent(struct page *page,
3696 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003697 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003698{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003699 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003700 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003701 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003702 int ret;
3703
Michal Hockod8423012012-10-26 13:37:29 +02003704 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003705
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003706 ret = -EBUSY;
3707 if (!get_page_unless_zero(page))
3708 goto out;
3709 if (isolate_lru_page(page))
3710 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003711
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003712 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003713
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003714 parent = parent_mem_cgroup(child);
3715 /*
3716 * If no parent, move charges to root cgroup.
3717 */
3718 if (!parent)
3719 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003720
Michal Hocko2ef37d32012-10-26 13:37:30 +02003721 if (nr_pages > 1) {
3722 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003723 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003724 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003725
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003726 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003727 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003728 if (!ret)
3729 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003730
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003731 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003732 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003733 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003734put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003735 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003736out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003737 return ret;
3738}
3739
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003740/*
3741 * Charge the memory controller for page usage.
3742 * Return
3743 * 0 if the charge was successful
3744 * < 0 if the cgroup is over its limit
3745 */
3746static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003747 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003748{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003749 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003750 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003751 bool oom = true;
3752 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003753
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003754 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003755 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003756 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003757 /*
3758 * Never OOM-kill a process for a huge page. The
3759 * fault handler will fall back to regular pages.
3760 */
3761 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003762 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003763
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003764 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003765 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003766 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003767 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003768 return 0;
3769}
3770
3771int mem_cgroup_newpage_charge(struct page *page,
3772 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003773{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003774 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003775 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003776 VM_BUG_ON(page_mapped(page));
3777 VM_BUG_ON(page->mapping && !PageAnon(page));
3778 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003779 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003780 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003781}
3782
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003783/*
3784 * While swap-in, try_charge -> commit or cancel, the page is locked.
3785 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003786 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003787 * "commit()" or removed by "cancel()"
3788 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003789static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3790 struct page *page,
3791 gfp_t mask,
3792 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003793{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003794 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003795 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003796 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003797
Johannes Weiner90deb782012-07-31 16:45:47 -07003798 pc = lookup_page_cgroup(page);
3799 /*
3800 * Every swap fault against a single page tries to charge the
3801 * page, bail as early as possible. shmem_unuse() encounters
3802 * already charged pages, too. The USED bit is protected by
3803 * the page lock, which serializes swap cache removal, which
3804 * in turn serializes uncharging.
3805 */
3806 if (PageCgroupUsed(pc))
3807 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003808 if (!do_swap_account)
3809 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003810 memcg = try_get_mem_cgroup_from_page(page);
3811 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003812 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003813 *memcgp = memcg;
3814 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003815 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003816 if (ret == -EINTR)
3817 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003818 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003819charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003820 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3821 if (ret == -EINTR)
3822 ret = 0;
3823 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003824}
3825
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003826int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3827 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3828{
3829 *memcgp = NULL;
3830 if (mem_cgroup_disabled())
3831 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07003832 /*
3833 * A racing thread's fault, or swapoff, may have already
3834 * updated the pte, and even removed page from swap cache: in
3835 * those cases unuse_pte()'s pte_same() test will fail; but
3836 * there's also a KSM case which does need to charge the page.
3837 */
3838 if (!PageSwapCache(page)) {
3839 int ret;
3840
3841 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3842 if (ret == -EINTR)
3843 ret = 0;
3844 return ret;
3845 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003846 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3847}
3848
Johannes Weiner827a03d2012-07-31 16:45:36 -07003849void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3850{
3851 if (mem_cgroup_disabled())
3852 return;
3853 if (!memcg)
3854 return;
3855 __mem_cgroup_cancel_charge(memcg, 1);
3856}
3857
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003858static void
Johannes Weiner72835c82012-01-12 17:18:32 -08003859__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003860 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003861{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003862 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003863 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08003864 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003865 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07003866
Johannes Weinerce587e62012-04-24 20:22:33 +02003867 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003868 /*
3869 * Now swap is on-memory. This means this page may be
3870 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003871 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3872 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3873 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003874 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003875 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003876 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07003877 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003878 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003879}
3880
Johannes Weiner72835c82012-01-12 17:18:32 -08003881void mem_cgroup_commit_charge_swapin(struct page *page,
3882 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003883{
Johannes Weiner72835c82012-01-12 17:18:32 -08003884 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003885 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003886}
3887
Johannes Weiner827a03d2012-07-31 16:45:36 -07003888int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3889 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003890{
Johannes Weiner827a03d2012-07-31 16:45:36 -07003891 struct mem_cgroup *memcg = NULL;
3892 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3893 int ret;
3894
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003895 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07003896 return 0;
3897 if (PageCompound(page))
3898 return 0;
3899
Johannes Weiner827a03d2012-07-31 16:45:36 -07003900 if (!PageSwapCache(page))
3901 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3902 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003903 ret = __mem_cgroup_try_charge_swapin(mm, page,
3904 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07003905 if (!ret)
3906 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3907 }
3908 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003909}
3910
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003911static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003912 unsigned int nr_pages,
3913 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003914{
3915 struct memcg_batch_info *batch = NULL;
3916 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003917
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003918 /* If swapout, usage of swap doesn't decrease */
3919 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3920 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003921
3922 batch = &current->memcg_batch;
3923 /*
3924 * In usual, we do css_get() when we remember memcg pointer.
3925 * But in this case, we keep res->usage until end of a series of
3926 * uncharges. Then, it's ok to ignore memcg's refcnt.
3927 */
3928 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003929 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003930 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003931 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003932 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003933 * the same cgroup and we have chance to coalesce uncharges.
3934 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3935 * because we want to do uncharge as soon as possible.
3936 */
3937
3938 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
3939 goto direct_uncharge;
3940
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003941 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08003942 goto direct_uncharge;
3943
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003944 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003945 * In typical case, batch->memcg == mem. This means we can
3946 * merge a series of uncharges to an uncharge of res_counter.
3947 * If not, we uncharge res_counter ony by one.
3948 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003949 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003950 goto direct_uncharge;
3951 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003952 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003953 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003954 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003955 return;
3956direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003957 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003958 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003959 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
3960 if (unlikely(batch->memcg != memcg))
3961 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003962}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003963
Balbir Singh8697d332008-02-07 00:13:59 -08003964/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003965 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003966 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003967static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07003968__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
3969 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003970{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003971 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003972 unsigned int nr_pages = 1;
3973 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003974 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003975
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003976 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003977 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07003978
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003979 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003980 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003981 VM_BUG_ON(!PageTransHuge(page));
3982 }
Balbir Singh8697d332008-02-07 00:13:59 -08003983 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003984 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003985 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003986 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003987 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003988 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003989
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003990 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003991
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003992 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003993
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003994 if (!PageCgroupUsed(pc))
3995 goto unlock_out;
3996
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003997 anon = PageAnon(page);
3998
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003999 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004000 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07004001 /*
4002 * Generally PageAnon tells if it's the anon statistics to be
4003 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4004 * used before page reached the stage of being marked PageAnon.
4005 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004006 anon = true;
4007 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004008 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004009 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07004010 if (page_mapped(page))
4011 goto unlock_out;
4012 /*
4013 * Pages under migration may not be uncharged. But
4014 * end_migration() /must/ be the one uncharging the
4015 * unused post-migration page and so it has to call
4016 * here with the migration bit still set. See the
4017 * res_counter handling below.
4018 */
4019 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004020 goto unlock_out;
4021 break;
4022 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4023 if (!PageAnon(page)) { /* Shared memory */
4024 if (page->mapping && !page_is_file_cache(page))
4025 goto unlock_out;
4026 } else if (page_mapped(page)) /* Anon */
4027 goto unlock_out;
4028 break;
4029 default:
4030 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004031 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004032
David Rientjesb070e652013-05-07 16:18:09 -07004033 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004034
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004035 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08004036 /*
4037 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4038 * freed from LRU. This is safe because uncharged page is expected not
4039 * to be reused (freed soon). Exception is SwapCache, it's handled by
4040 * special functions.
4041 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004042
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004043 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004044 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004045 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07004046 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004047 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004048 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004049 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004050 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07004051 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004052 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004053 /*
4054 * Migration does not charge the res_counter for the
4055 * replacement page, so leave it alone when phasing out the
4056 * page that is unused after the migration.
4057 */
4058 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004059 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004060
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004061 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004062
4063unlock_out:
4064 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004065 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08004066}
4067
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004068void mem_cgroup_uncharge_page(struct page *page)
4069{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004070 /* early check. */
4071 if (page_mapped(page))
4072 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08004073 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07004074 /*
4075 * If the page is in swap cache, uncharge should be deferred
4076 * to the swap path, which also properly accounts swap usage
4077 * and handles memcg lifetime.
4078 *
4079 * Note that this check is not stable and reclaim may add the
4080 * page to swap cache at any time after this. However, if the
4081 * page is not in swap cache by the time page->mapcount hits
4082 * 0, there won't be any page table references to the swap
4083 * slot, and reclaim will free it and not actually write the
4084 * page to disk.
4085 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07004086 if (PageSwapCache(page))
4087 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07004088 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004089}
4090
4091void mem_cgroup_uncharge_cache_page(struct page *page)
4092{
4093 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07004094 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07004095 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004096}
4097
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004098/*
4099 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4100 * In that cases, pages are freed continuously and we can expect pages
4101 * are in the same memcg. All these calls itself limits the number of
4102 * pages freed at once, then uncharge_start/end() is called properly.
4103 * This may be called prural(2) times in a context,
4104 */
4105
4106void mem_cgroup_uncharge_start(void)
4107{
4108 current->memcg_batch.do_batch++;
4109 /* We can do nest. */
4110 if (current->memcg_batch.do_batch == 1) {
4111 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004112 current->memcg_batch.nr_pages = 0;
4113 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004114 }
4115}
4116
4117void mem_cgroup_uncharge_end(void)
4118{
4119 struct memcg_batch_info *batch = &current->memcg_batch;
4120
4121 if (!batch->do_batch)
4122 return;
4123
4124 batch->do_batch--;
4125 if (batch->do_batch) /* If stacked, do nothing. */
4126 return;
4127
4128 if (!batch->memcg)
4129 return;
4130 /*
4131 * This "batch->memcg" is valid without any css_get/put etc...
4132 * bacause we hide charges behind us.
4133 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004134 if (batch->nr_pages)
4135 res_counter_uncharge(&batch->memcg->res,
4136 batch->nr_pages * PAGE_SIZE);
4137 if (batch->memsw_nr_pages)
4138 res_counter_uncharge(&batch->memcg->memsw,
4139 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004140 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004141 /* forget this pointer (for sanity check) */
4142 batch->memcg = NULL;
4143}
4144
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004145#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004146/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004147 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004148 * memcg information is recorded to swap_cgroup of "ent"
4149 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004150void
4151mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004152{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004153 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004154 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004155
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004156 if (!swapout) /* this was a swap cache but the swap is unused ! */
4157 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4158
Johannes Weiner0030f532012-07-31 16:45:25 -07004159 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004160
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004161 /*
4162 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004163 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004164 */
4165 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004166 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004167}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004168#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004169
Andrew Mortonc255a452012-07-31 16:43:02 -07004170#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004171/*
4172 * called from swap_entry_free(). remove record in swap_cgroup and
4173 * uncharge "memsw" account.
4174 */
4175void mem_cgroup_uncharge_swap(swp_entry_t ent)
4176{
4177 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004178 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004179
4180 if (!do_swap_account)
4181 return;
4182
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004183 id = swap_cgroup_record(ent, 0);
4184 rcu_read_lock();
4185 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004186 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004187 /*
4188 * We uncharge this because swap is freed.
4189 * This memcg can be obsolete one. We avoid calling css_tryget
4190 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004191 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004192 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004193 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004194 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004195 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004196 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004197}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004198
4199/**
4200 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4201 * @entry: swap entry to be moved
4202 * @from: mem_cgroup which the entry is moved from
4203 * @to: mem_cgroup which the entry is moved to
4204 *
4205 * It succeeds only when the swap_cgroup's record for this entry is the same
4206 * as the mem_cgroup's id of @from.
4207 *
4208 * Returns 0 on success, -EINVAL on failure.
4209 *
4210 * The caller must have charged to @to, IOW, called res_counter_charge() about
4211 * both res and memsw, and called css_get().
4212 */
4213static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004214 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004215{
4216 unsigned short old_id, new_id;
4217
4218 old_id = css_id(&from->css);
4219 new_id = css_id(&to->css);
4220
4221 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004222 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004223 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004224 /*
4225 * This function is only called from task migration context now.
4226 * It postpones res_counter and refcount handling till the end
4227 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004228 * improvement. But we cannot postpone css_get(to) because if
4229 * the process that has been moved to @to does swap-in, the
4230 * refcount of @to might be decreased to 0.
4231 *
4232 * We are in attach() phase, so the cgroup is guaranteed to be
4233 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004234 */
Li Zefan40503772013-07-08 16:00:34 -07004235 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004236 return 0;
4237 }
4238 return -EINVAL;
4239}
4240#else
4241static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004242 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004243{
4244 return -EINVAL;
4245}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004246#endif
4247
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004248/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004249 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4250 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004251 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004252void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4253 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004254{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004255 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004256 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004257 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004258 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004259
Johannes Weiner72835c82012-01-12 17:18:32 -08004260 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004261
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004262 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004263 return;
Balbir Singh40779602008-04-04 14:29:59 -07004264
Mel Gormanb32967f2012-11-19 12:35:47 +00004265 if (PageTransHuge(page))
4266 nr_pages <<= compound_order(page);
4267
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004268 pc = lookup_page_cgroup(page);
4269 lock_page_cgroup(pc);
4270 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004271 memcg = pc->mem_cgroup;
4272 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004273 /*
4274 * At migrating an anonymous page, its mapcount goes down
4275 * to 0 and uncharge() will be called. But, even if it's fully
4276 * unmapped, migration may fail and this page has to be
4277 * charged again. We set MIGRATION flag here and delay uncharge
4278 * until end_migration() is called
4279 *
4280 * Corner Case Thinking
4281 * A)
4282 * When the old page was mapped as Anon and it's unmap-and-freed
4283 * while migration was ongoing.
4284 * If unmap finds the old page, uncharge() of it will be delayed
4285 * until end_migration(). If unmap finds a new page, it's
4286 * uncharged when it make mapcount to be 1->0. If unmap code
4287 * finds swap_migration_entry, the new page will not be mapped
4288 * and end_migration() will find it(mapcount==0).
4289 *
4290 * B)
4291 * When the old page was mapped but migraion fails, the kernel
4292 * remaps it. A charge for it is kept by MIGRATION flag even
4293 * if mapcount goes down to 0. We can do remap successfully
4294 * without charging it again.
4295 *
4296 * C)
4297 * The "old" page is under lock_page() until the end of
4298 * migration, so, the old page itself will not be swapped-out.
4299 * If the new page is swapped out before end_migraton, our
4300 * hook to usual swap-out path will catch the event.
4301 */
4302 if (PageAnon(page))
4303 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004304 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004305 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004306 /*
4307 * If the page is not charged at this point,
4308 * we return here.
4309 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004310 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004311 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004312
Johannes Weiner72835c82012-01-12 17:18:32 -08004313 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004314 /*
4315 * We charge new page before it's used/mapped. So, even if unlock_page()
4316 * is called before end_migration, we can catch all events on this new
4317 * page. In the case new page is migrated but not remapped, new page's
4318 * mapcount will be finally 0 and we call uncharge in end_migration().
4319 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004320 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004321 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004322 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004323 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004324 /*
4325 * The page is committed to the memcg, but it's not actually
4326 * charged to the res_counter since we plan on replacing the
4327 * old one and only one page is going to be left afterwards.
4328 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004329 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004330}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004331
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004332/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004333void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004334 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004335{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004336 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004337 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004338 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004339
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004340 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004341 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004342
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004343 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004344 used = oldpage;
4345 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004346 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004347 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004348 unused = oldpage;
4349 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004350 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004351 __mem_cgroup_uncharge_common(unused,
4352 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4353 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4354 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004355 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004356 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004357 * We disallowed uncharge of pages under migration because mapcount
4358 * of the page goes down to zero, temporarly.
4359 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004360 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004361 pc = lookup_page_cgroup(oldpage);
4362 lock_page_cgroup(pc);
4363 ClearPageCgroupMigration(pc);
4364 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004365
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004366 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004367 * If a page is a file cache, radix-tree replacement is very atomic
4368 * and we can skip this check. When it was an Anon page, its mapcount
4369 * goes down to 0. But because we added MIGRATION flage, it's not
4370 * uncharged yet. There are several case but page->mapcount check
4371 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4372 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004373 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004374 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004375 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004376}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004377
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004378/*
4379 * At replace page cache, newpage is not under any memcg but it's on
4380 * LRU. So, this function doesn't touch res_counter but handles LRU
4381 * in correct way. Both pages are locked so we cannot race with uncharge.
4382 */
4383void mem_cgroup_replace_page_cache(struct page *oldpage,
4384 struct page *newpage)
4385{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004386 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004387 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004388 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004389
4390 if (mem_cgroup_disabled())
4391 return;
4392
4393 pc = lookup_page_cgroup(oldpage);
4394 /* fix accounting on old pages */
4395 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004396 if (PageCgroupUsed(pc)) {
4397 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004398 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004399 ClearPageCgroupUsed(pc);
4400 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004401 unlock_page_cgroup(pc);
4402
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004403 /*
4404 * When called from shmem_replace_page(), in some cases the
4405 * oldpage has already been charged, and in some cases not.
4406 */
4407 if (!memcg)
4408 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004409 /*
4410 * Even if newpage->mapping was NULL before starting replacement,
4411 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4412 * LRU while we overwrite pc->mem_cgroup.
4413 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004414 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004415}
4416
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004417#ifdef CONFIG_DEBUG_VM
4418static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4419{
4420 struct page_cgroup *pc;
4421
4422 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004423 /*
4424 * Can be NULL while feeding pages into the page allocator for
4425 * the first time, i.e. during boot or memory hotplug;
4426 * or when mem_cgroup_disabled().
4427 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004428 if (likely(pc) && PageCgroupUsed(pc))
4429 return pc;
4430 return NULL;
4431}
4432
4433bool mem_cgroup_bad_page_check(struct page *page)
4434{
4435 if (mem_cgroup_disabled())
4436 return false;
4437
4438 return lookup_page_cgroup_used(page) != NULL;
4439}
4440
4441void mem_cgroup_print_bad_page(struct page *page)
4442{
4443 struct page_cgroup *pc;
4444
4445 pc = lookup_page_cgroup_used(page);
4446 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004447 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4448 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004449 }
4450}
4451#endif
4452
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004453static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004454 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004455{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004456 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004457 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004458 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004459 int children = mem_cgroup_count_children(memcg);
4460 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004461 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004462
4463 /*
4464 * For keeping hierarchical_reclaim simple, how long we should retry
4465 * is depends on callers. We set our retry-count to be function
4466 * of # of children which we should visit in this loop.
4467 */
4468 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4469
4470 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004471
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004472 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004473 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004474 if (signal_pending(current)) {
4475 ret = -EINTR;
4476 break;
4477 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004478 /*
4479 * Rather than hide all in some function, I do this in
4480 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004481 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004482 */
4483 mutex_lock(&set_limit_mutex);
4484 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4485 if (memswlimit < val) {
4486 ret = -EINVAL;
4487 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004488 break;
4489 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004490
4491 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4492 if (memlimit < val)
4493 enlarge = 1;
4494
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004495 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004496 if (!ret) {
4497 if (memswlimit == val)
4498 memcg->memsw_is_minimum = true;
4499 else
4500 memcg->memsw_is_minimum = false;
4501 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004502 mutex_unlock(&set_limit_mutex);
4503
4504 if (!ret)
4505 break;
4506
Johannes Weiner56600482012-01-12 17:17:59 -08004507 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4508 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004509 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4510 /* Usage is reduced ? */
4511 if (curusage >= oldusage)
4512 retry_count--;
4513 else
4514 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004515 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004516 if (!ret && enlarge)
4517 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004518
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004519 return ret;
4520}
4521
Li Zefan338c8432009-06-17 16:27:15 -07004522static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4523 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004524{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004525 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004526 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004527 int children = mem_cgroup_count_children(memcg);
4528 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004529 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004530
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004531 /* see mem_cgroup_resize_res_limit */
4532 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
4533 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004534 while (retry_count) {
4535 if (signal_pending(current)) {
4536 ret = -EINTR;
4537 break;
4538 }
4539 /*
4540 * Rather than hide all in some function, I do this in
4541 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004542 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004543 */
4544 mutex_lock(&set_limit_mutex);
4545 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4546 if (memlimit > val) {
4547 ret = -EINVAL;
4548 mutex_unlock(&set_limit_mutex);
4549 break;
4550 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004551 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4552 if (memswlimit < val)
4553 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004554 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004555 if (!ret) {
4556 if (memlimit == val)
4557 memcg->memsw_is_minimum = true;
4558 else
4559 memcg->memsw_is_minimum = false;
4560 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004561 mutex_unlock(&set_limit_mutex);
4562
4563 if (!ret)
4564 break;
4565
Johannes Weiner56600482012-01-12 17:17:59 -08004566 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4567 MEM_CGROUP_RECLAIM_NOSWAP |
4568 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004569 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004570 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004571 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004572 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004573 else
4574 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004575 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004576 if (!ret && enlarge)
4577 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004578 return ret;
4579}
4580
Michal Hocko2ef37d32012-10-26 13:37:30 +02004581/**
4582 * mem_cgroup_force_empty_list - clears LRU of a group
4583 * @memcg: group to clear
4584 * @node: NUMA node
4585 * @zid: zone id
4586 * @lru: lru to to clear
4587 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004588 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004589 * reclaim the pages page themselves - pages are moved to the parent (or root)
4590 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004591 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004592static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004593 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004594{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004595 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004596 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004597 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004598 struct page *busy;
4599 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004600
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004601 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004602 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4603 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004604
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004605 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004606 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004607 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004608 struct page *page;
4609
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004610 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004611 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004612 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004613 break;
4614 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004615 page = list_entry(list->prev, struct page, lru);
4616 if (busy == page) {
4617 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004618 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004619 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004620 continue;
4621 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004622 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004623
Johannes Weiner925b7672012-01-12 17:18:15 -08004624 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004625
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004626 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004627 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004628 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004629 cond_resched();
4630 } else
4631 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004632 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004633}
4634
4635/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004636 * make mem_cgroup's charge to be 0 if there is no task by moving
4637 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004638 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004639 *
4640 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004641 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004642static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004643{
Michal Hockoc26251f2012-10-26 13:37:28 +02004644 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004645 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004646
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004647 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004648 /* This is for making all *used* pages to be on LRU. */
4649 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004650 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004651 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004652 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004653 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004654 enum lru_list lru;
4655 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004656 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004657 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004658 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004659 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004660 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004661 mem_cgroup_end_move(memcg);
4662 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004663 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004664
Michal Hocko2ef37d32012-10-26 13:37:30 +02004665 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004666 * Kernel memory may not necessarily be trackable to a specific
4667 * process. So they are not migrated, and therefore we can't
4668 * expect their value to drop to 0 here.
4669 * Having res filled up with kmem only is enough.
4670 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004671 * This is a safety check because mem_cgroup_force_empty_list
4672 * could have raced with mem_cgroup_replace_page_cache callers
4673 * so the lru seemed empty but the page could have been added
4674 * right after the check. RES_USAGE should be safe as we always
4675 * charge before adding to the LRU.
4676 */
Glauber Costabea207c2012-12-18 14:22:11 -08004677 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4678 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4679 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004680}
4681
4682/*
Glauber Costab5f99b52013-02-22 16:34:53 -08004683 * This mainly exists for tests during the setting of set of use_hierarchy.
4684 * Since this is the very setting we are changing, the current hierarchy value
4685 * is meaningless
4686 */
4687static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4688{
Tejun Heo492eb212013-08-08 20:11:25 -04004689 struct cgroup_subsys_state *pos;
Glauber Costab5f99b52013-02-22 16:34:53 -08004690
4691 /* bounce at first found */
Tejun Heo492eb212013-08-08 20:11:25 -04004692 css_for_each_child(pos, &memcg->css)
Glauber Costab5f99b52013-02-22 16:34:53 -08004693 return true;
4694 return false;
4695}
4696
4697/*
Glauber Costa09998212013-02-22 16:34:55 -08004698 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4699 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
Glauber Costab5f99b52013-02-22 16:34:53 -08004700 * from mem_cgroup_count_children(), in the sense that we don't really care how
4701 * many children we have; we only need to know if we have any. It also counts
4702 * any memcg without hierarchy as infertile.
4703 */
4704static inline bool memcg_has_children(struct mem_cgroup *memcg)
4705{
4706 return memcg->use_hierarchy && __memcg_has_children(memcg);
4707}
4708
4709/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004710 * Reclaims as many pages from the given memcg as possible and moves
4711 * the rest to the parent.
4712 *
4713 * Caller is responsible for holding css reference for memcg.
4714 */
4715static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4716{
4717 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4718 struct cgroup *cgrp = memcg->css.cgroup;
4719
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004720 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004721 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4722 return -EBUSY;
4723
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004724 /* we call try-to-free pages for make this cgroup empty */
4725 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004726 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004727 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004728 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004729
Michal Hockoc26251f2012-10-26 13:37:28 +02004730 if (signal_pending(current))
4731 return -EINTR;
4732
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004733 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004734 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004735 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004736 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004737 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004738 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004739 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004740
4741 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004742 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02004743 mem_cgroup_reparent_charges(memcg);
4744
4745 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004746}
4747
Tejun Heo182446d2013-08-08 20:11:24 -04004748static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
4749 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004750{
Tejun Heo182446d2013-08-08 20:11:24 -04004751 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02004752
Michal Hockod8423012012-10-26 13:37:29 +02004753 if (mem_cgroup_is_root(memcg))
4754 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07004755 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004756}
4757
Tejun Heo182446d2013-08-08 20:11:24 -04004758static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
4759 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004760{
Tejun Heo182446d2013-08-08 20:11:24 -04004761 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004762}
4763
Tejun Heo182446d2013-08-08 20:11:24 -04004764static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
4765 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004766{
4767 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04004768 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04004769 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08004770
Glauber Costa09998212013-02-22 16:34:55 -08004771 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07004772
4773 if (memcg->use_hierarchy == val)
4774 goto out;
4775
Balbir Singh18f59ea2009-01-07 18:08:07 -08004776 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004777 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08004778 * in the child subtrees. If it is unset, then the change can
4779 * occur, provided the current cgroup has no children.
4780 *
4781 * For the root cgroup, parent_mem is NULL, we allow value to be
4782 * set if there are no children.
4783 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004784 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08004785 (val == 1 || val == 0)) {
Glauber Costab5f99b52013-02-22 16:34:53 -08004786 if (!__memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004787 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004788 else
4789 retval = -EBUSY;
4790 } else
4791 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07004792
4793out:
Glauber Costa09998212013-02-22 16:34:55 -08004794 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004795
4796 return retval;
4797}
4798
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004799
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004800static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004801 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004802{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004803 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004804 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004805
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004806 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004807 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004808 val += mem_cgroup_read_stat(iter, idx);
4809
4810 if (val < 0) /* race ? */
4811 val = 0;
4812 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004813}
4814
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004815static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004816{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004817 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004818
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004819 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004820 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00004821 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004822 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00004823 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004824 }
4825
David Rientjesb070e652013-05-07 16:18:09 -07004826 /*
4827 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4828 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4829 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004830 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4831 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004832
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004833 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004834 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004835
4836 return val << PAGE_SHIFT;
4837}
4838
Tejun Heo182446d2013-08-08 20:11:24 -04004839static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
4840 struct cftype *cft, struct file *file,
4841 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004842{
Tejun Heo182446d2013-08-08 20:11:24 -04004843 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07004844 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004845 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004846 int name, len;
4847 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004848
4849 type = MEMFILE_TYPE(cft->private);
4850 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004851
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004852 switch (type) {
4853 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004854 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004855 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004856 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004857 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004858 break;
4859 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004860 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004861 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004862 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004863 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004864 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004865 case _KMEM:
4866 val = res_counter_read_u64(&memcg->kmem, name);
4867 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004868 default:
4869 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004870 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004871
4872 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4873 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004874}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004875
Tejun Heo182446d2013-08-08 20:11:24 -04004876static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004877{
4878 int ret = -EINVAL;
4879#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04004880 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004881 /*
4882 * For simplicity, we won't allow this to be disabled. It also can't
4883 * be changed if the cgroup has children already, or if tasks had
4884 * already joined.
4885 *
4886 * If tasks join before we set the limit, a person looking at
4887 * kmem.usage_in_bytes will have no way to determine when it took
4888 * place, which makes the value quite meaningless.
4889 *
4890 * After it first became limited, changes in the value of the limit are
4891 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004892 */
Glauber Costa09998212013-02-22 16:34:55 -08004893 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004894 mutex_lock(&set_limit_mutex);
4895 if (!memcg->kmem_account_flags && val != RESOURCE_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04004896 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08004897 ret = -EBUSY;
4898 goto out;
4899 }
4900 ret = res_counter_set_limit(&memcg->kmem, val);
4901 VM_BUG_ON(ret);
4902
Glauber Costa55007d82012-12-18 14:22:38 -08004903 ret = memcg_update_cache_sizes(memcg);
4904 if (ret) {
4905 res_counter_set_limit(&memcg->kmem, RESOURCE_MAX);
4906 goto out;
4907 }
Glauber Costa692e89a2013-02-22 16:34:56 -08004908 static_key_slow_inc(&memcg_kmem_enabled_key);
4909 /*
4910 * setting the active bit after the inc will guarantee no one
4911 * starts accounting before all call sites are patched
4912 */
4913 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004914 } else
4915 ret = res_counter_set_limit(&memcg->kmem, val);
4916out:
4917 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08004918 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004919#endif
4920 return ret;
4921}
4922
Hugh Dickins6d0439902013-02-22 16:35:50 -08004923#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08004924static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004925{
Glauber Costa55007d82012-12-18 14:22:38 -08004926 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004927 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4928 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08004929 goto out;
4930
Glauber Costa510fc4e2012-12-18 14:21:47 -08004931 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08004932 /*
4933 * When that happen, we need to disable the static branch only on those
4934 * memcgs that enabled it. To achieve this, we would be forced to
4935 * complicate the code by keeping track of which memcgs were the ones
4936 * that actually enabled limits, and which ones got it from its
4937 * parents.
4938 *
4939 * It is a lot simpler just to do static_key_slow_inc() on every child
4940 * that is accounted.
4941 */
Glauber Costa55007d82012-12-18 14:22:38 -08004942 if (!memcg_kmem_is_active(memcg))
4943 goto out;
4944
4945 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07004946 * __mem_cgroup_free() will issue static_key_slow_dec() because this
4947 * memcg is active already. If the later initialization fails then the
4948 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08004949 */
Glauber Costa55007d82012-12-18 14:22:38 -08004950 static_key_slow_inc(&memcg_kmem_enabled_key);
4951
4952 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07004953 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08004954 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07004955 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08004956 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08004957out:
4958 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004959}
Hugh Dickins6d0439902013-02-22 16:35:50 -08004960#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08004961
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004962/*
4963 * The user of this function is...
4964 * RES_LIMIT.
4965 */
Tejun Heo182446d2013-08-08 20:11:24 -04004966static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07004967 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004968{
Tejun Heo182446d2013-08-08 20:11:24 -04004969 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08004970 enum res_type type;
4971 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004972 unsigned long long val;
4973 int ret;
4974
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004975 type = MEMFILE_TYPE(cft->private);
4976 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004977
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004978 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004979 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07004980 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
4981 ret = -EINVAL;
4982 break;
4983 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004984 /* This function does all necessary parse...reuse it */
4985 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004986 if (ret)
4987 break;
4988 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004989 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004990 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004991 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004992 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04004993 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004994 else
4995 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004996 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07004997 case RES_SOFT_LIMIT:
4998 ret = res_counter_memparse_write_strategy(buffer, &val);
4999 if (ret)
5000 break;
5001 /*
5002 * For memsw, soft limits are hard to implement in terms
5003 * of semantics, for now, we support soft limits for
5004 * control without swap
5005 */
5006 if (type == _MEM)
5007 ret = res_counter_set_soft_limit(&memcg->res, val);
5008 else
5009 ret = -EINVAL;
5010 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005011 default:
5012 ret = -EINVAL; /* should be BUG() ? */
5013 break;
5014 }
5015 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005016}
5017
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005018static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5019 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5020{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005021 unsigned long long min_limit, min_memsw_limit, tmp;
5022
5023 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5024 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005025 if (!memcg->use_hierarchy)
5026 goto out;
5027
Tejun Heo63876982013-08-08 20:11:23 -04005028 while (css_parent(&memcg->css)) {
5029 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005030 if (!memcg->use_hierarchy)
5031 break;
5032 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5033 min_limit = min(min_limit, tmp);
5034 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5035 min_memsw_limit = min(min_memsw_limit, tmp);
5036 }
5037out:
5038 *mem_limit = min_limit;
5039 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005040}
5041
Tejun Heo182446d2013-08-08 20:11:24 -04005042static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005043{
Tejun Heo182446d2013-08-08 20:11:24 -04005044 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005045 int name;
5046 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005047
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005048 type = MEMFILE_TYPE(event);
5049 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07005050
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005051 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005052 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005053 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005054 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005055 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005056 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005057 else if (type == _KMEM)
5058 res_counter_reset_max(&memcg->kmem);
5059 else
5060 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005061 break;
5062 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005063 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005064 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005065 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005066 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005067 else if (type == _KMEM)
5068 res_counter_reset_failcnt(&memcg->kmem);
5069 else
5070 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005071 break;
5072 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07005073
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07005074 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005075}
5076
Tejun Heo182446d2013-08-08 20:11:24 -04005077static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005078 struct cftype *cft)
5079{
Tejun Heo182446d2013-08-08 20:11:24 -04005080 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005081}
5082
Daisuke Nishimura02491442010-03-10 15:22:17 -08005083#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04005084static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005085 struct cftype *cft, u64 val)
5086{
Tejun Heo182446d2013-08-08 20:11:24 -04005087 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005088
5089 if (val >= (1 << NR_MOVE_TYPE))
5090 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005091
Glauber Costaee5e8472013-02-22 16:34:50 -08005092 /*
5093 * No kind of locking is needed in here, because ->can_attach() will
5094 * check this value once in the beginning of the process, and then carry
5095 * on with stale data. This means that changes to this value will only
5096 * affect task migrations starting after the change.
5097 */
5098 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005099 return 0;
5100}
Daisuke Nishimura02491442010-03-10 15:22:17 -08005101#else
Tejun Heo182446d2013-08-08 20:11:24 -04005102static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005103 struct cftype *cft, u64 val)
5104{
5105 return -ENOSYS;
5106}
5107#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005108
Ying Han406eb0c2011-05-26 16:25:37 -07005109#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04005110static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
5111 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07005112{
5113 int nid;
5114 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5115 unsigned long node_nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005116 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005117
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005118 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005119 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005120 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005121 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005122 seq_printf(m, " N%d=%lu", nid, node_nr);
5123 }
5124 seq_putc(m, '\n');
5125
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005126 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005127 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005128 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005129 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005130 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005131 seq_printf(m, " N%d=%lu", nid, node_nr);
5132 }
5133 seq_putc(m, '\n');
5134
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005135 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005136 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005137 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005138 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005139 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005140 seq_printf(m, " N%d=%lu", nid, node_nr);
5141 }
5142 seq_putc(m, '\n');
5143
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005144 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005145 seq_printf(m, "unevictable=%lu", unevictable_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005146 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005147 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005148 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005149 seq_printf(m, " N%d=%lu", nid, node_nr);
5150 }
5151 seq_putc(m, '\n');
5152 return 0;
5153}
5154#endif /* CONFIG_NUMA */
5155
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005156static inline void mem_cgroup_lru_names_not_uptodate(void)
5157{
5158 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5159}
5160
Tejun Heo182446d2013-08-08 20:11:24 -04005161static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005162 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005163{
Tejun Heo182446d2013-08-08 20:11:24 -04005164 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005165 struct mem_cgroup *mi;
5166 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005167
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005168 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005169 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005170 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005171 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5172 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005173 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005174
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005175 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5176 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5177 mem_cgroup_read_events(memcg, i));
5178
5179 for (i = 0; i < NR_LRU_LISTS; i++)
5180 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5181 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5182
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005183 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005184 {
5185 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005186 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005187 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005188 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005189 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5190 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005191 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005192
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005193 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5194 long long val = 0;
5195
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005196 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005197 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005198 for_each_mem_cgroup_tree(mi, memcg)
5199 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5200 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5201 }
5202
5203 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5204 unsigned long long val = 0;
5205
5206 for_each_mem_cgroup_tree(mi, memcg)
5207 val += mem_cgroup_read_events(mi, i);
5208 seq_printf(m, "total_%s %llu\n",
5209 mem_cgroup_events_names[i], val);
5210 }
5211
5212 for (i = 0; i < NR_LRU_LISTS; i++) {
5213 unsigned long long val = 0;
5214
5215 for_each_mem_cgroup_tree(mi, memcg)
5216 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5217 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005218 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005219
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005220#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005221 {
5222 int nid, zid;
5223 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005224 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005225 unsigned long recent_rotated[2] = {0, 0};
5226 unsigned long recent_scanned[2] = {0, 0};
5227
5228 for_each_online_node(nid)
5229 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005230 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005231 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005232
Hugh Dickins89abfab2012-05-29 15:06:53 -07005233 recent_rotated[0] += rstat->recent_rotated[0];
5234 recent_rotated[1] += rstat->recent_rotated[1];
5235 recent_scanned[0] += rstat->recent_scanned[0];
5236 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005237 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005238 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5239 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5240 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5241 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005242 }
5243#endif
5244
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005245 return 0;
5246}
5247
Tejun Heo182446d2013-08-08 20:11:24 -04005248static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5249 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005250{
Tejun Heo182446d2013-08-08 20:11:24 -04005251 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005252
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005253 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005254}
5255
Tejun Heo182446d2013-08-08 20:11:24 -04005256static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5257 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005258{
Tejun Heo182446d2013-08-08 20:11:24 -04005259 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005260 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005261
Tejun Heo63876982013-08-08 20:11:23 -04005262 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005263 return -EINVAL;
5264
Glauber Costa09998212013-02-22 16:34:55 -08005265 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005266
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005267 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005268 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005269 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005270 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005271 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005272
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005273 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005274
Glauber Costa09998212013-02-22 16:34:55 -08005275 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005276
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005277 return 0;
5278}
5279
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005280static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5281{
5282 struct mem_cgroup_threshold_ary *t;
5283 u64 usage;
5284 int i;
5285
5286 rcu_read_lock();
5287 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005288 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005289 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005290 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005291
5292 if (!t)
5293 goto unlock;
5294
5295 usage = mem_cgroup_usage(memcg, swap);
5296
5297 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005298 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005299 * If it's not true, a threshold was crossed after last
5300 * call of __mem_cgroup_threshold().
5301 */
Phil Carmody5407a562010-05-26 14:42:42 -07005302 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005303
5304 /*
5305 * Iterate backward over array of thresholds starting from
5306 * current_threshold and check if a threshold is crossed.
5307 * If none of thresholds below usage is crossed, we read
5308 * only one element of the array here.
5309 */
5310 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5311 eventfd_signal(t->entries[i].eventfd, 1);
5312
5313 /* i = current_threshold + 1 */
5314 i++;
5315
5316 /*
5317 * Iterate forward over array of thresholds starting from
5318 * current_threshold+1 and check if a threshold is crossed.
5319 * If none of thresholds above usage is crossed, we read
5320 * only one element of the array here.
5321 */
5322 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5323 eventfd_signal(t->entries[i].eventfd, 1);
5324
5325 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005326 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005327unlock:
5328 rcu_read_unlock();
5329}
5330
5331static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5332{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005333 while (memcg) {
5334 __mem_cgroup_threshold(memcg, false);
5335 if (do_swap_account)
5336 __mem_cgroup_threshold(memcg, true);
5337
5338 memcg = parent_mem_cgroup(memcg);
5339 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005340}
5341
5342static int compare_thresholds(const void *a, const void *b)
5343{
5344 const struct mem_cgroup_threshold *_a = a;
5345 const struct mem_cgroup_threshold *_b = b;
5346
Greg Thelen2bff24a2013-09-11 14:23:08 -07005347 if (_a->threshold > _b->threshold)
5348 return 1;
5349
5350 if (_a->threshold < _b->threshold)
5351 return -1;
5352
5353 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005354}
5355
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005356static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005357{
5358 struct mem_cgroup_eventfd_list *ev;
5359
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005360 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005361 eventfd_signal(ev->eventfd, 1);
5362 return 0;
5363}
5364
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005365static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005366{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005367 struct mem_cgroup *iter;
5368
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005369 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005370 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005371}
5372
Tejun Heo81eeaf02013-08-08 20:11:26 -04005373static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005374 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005375{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005376 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005377 struct mem_cgroup_thresholds *thresholds;
5378 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005379 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005380 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005381 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005382
5383 ret = res_counter_memparse_write_strategy(args, &threshold);
5384 if (ret)
5385 return ret;
5386
5387 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005388
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005389 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005390 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005391 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005392 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005393 else
5394 BUG();
5395
5396 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5397
5398 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005399 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005400 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5401
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005402 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005403
5404 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005405 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005406 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005407 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005408 ret = -ENOMEM;
5409 goto unlock;
5410 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005411 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005412
5413 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005414 if (thresholds->primary) {
5415 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005416 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005417 }
5418
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005419 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005420 new->entries[size - 1].eventfd = eventfd;
5421 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005422
5423 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005424 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005425 compare_thresholds, NULL);
5426
5427 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005428 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005429 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005430 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005431 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005432 * new->current_threshold will not be used until
5433 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005434 * it here.
5435 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005436 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005437 } else
5438 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005439 }
5440
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005441 /* Free old spare buffer and save old primary buffer as spare */
5442 kfree(thresholds->spare);
5443 thresholds->spare = thresholds->primary;
5444
5445 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005446
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005447 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005448 synchronize_rcu();
5449
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005450unlock:
5451 mutex_unlock(&memcg->thresholds_lock);
5452
5453 return ret;
5454}
5455
Tejun Heo81eeaf02013-08-08 20:11:26 -04005456static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005457 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005458{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005459 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005460 struct mem_cgroup_thresholds *thresholds;
5461 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005462 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005463 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005464 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005465
5466 mutex_lock(&memcg->thresholds_lock);
5467 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005468 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005469 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005470 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005471 else
5472 BUG();
5473
Anton Vorontsov371528c2012-02-24 05:14:46 +04005474 if (!thresholds->primary)
5475 goto unlock;
5476
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005477 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5478
5479 /* Check if a threshold crossed before removing */
5480 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5481
5482 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005483 size = 0;
5484 for (i = 0; i < thresholds->primary->size; i++) {
5485 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005486 size++;
5487 }
5488
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005489 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005490
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005491 /* Set thresholds array to NULL if we don't have thresholds */
5492 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005493 kfree(new);
5494 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005495 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005496 }
5497
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005498 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005499
5500 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005501 new->current_threshold = -1;
5502 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5503 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005504 continue;
5505
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005506 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005507 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005508 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005509 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005510 * until rcu_assign_pointer(), so it's safe to increment
5511 * it here.
5512 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005513 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005514 }
5515 j++;
5516 }
5517
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005518swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005519 /* Swap primary and spare array */
5520 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005521 /* If all events are unregistered, free the spare array */
5522 if (!new) {
5523 kfree(thresholds->spare);
5524 thresholds->spare = NULL;
5525 }
5526
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005527 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005528
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005529 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005530 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005531unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005532 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005533}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005534
Tejun Heo81eeaf02013-08-08 20:11:26 -04005535static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005536 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5537{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005538 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005539 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005540 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005541
5542 BUG_ON(type != _OOM_TYPE);
5543 event = kmalloc(sizeof(*event), GFP_KERNEL);
5544 if (!event)
5545 return -ENOMEM;
5546
Michal Hocko1af8efe2011-07-26 16:08:24 -07005547 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005548
5549 event->eventfd = eventfd;
5550 list_add(&event->list, &memcg->oom_notify);
5551
5552 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005553 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005554 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005555 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005556
5557 return 0;
5558}
5559
Tejun Heo81eeaf02013-08-08 20:11:26 -04005560static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005561 struct cftype *cft, struct eventfd_ctx *eventfd)
5562{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005563 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005564 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005565 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005566
5567 BUG_ON(type != _OOM_TYPE);
5568
Michal Hocko1af8efe2011-07-26 16:08:24 -07005569 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005570
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005571 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005572 if (ev->eventfd == eventfd) {
5573 list_del(&ev->list);
5574 kfree(ev);
5575 }
5576 }
5577
Michal Hocko1af8efe2011-07-26 16:08:24 -07005578 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005579}
5580
Tejun Heo182446d2013-08-08 20:11:24 -04005581static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005582 struct cftype *cft, struct cgroup_map_cb *cb)
5583{
Tejun Heo182446d2013-08-08 20:11:24 -04005584 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005585
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005586 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005587
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005588 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005589 cb->fill(cb, "under_oom", 1);
5590 else
5591 cb->fill(cb, "under_oom", 0);
5592 return 0;
5593}
5594
Tejun Heo182446d2013-08-08 20:11:24 -04005595static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005596 struct cftype *cft, u64 val)
5597{
Tejun Heo182446d2013-08-08 20:11:24 -04005598 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005599 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005600
5601 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005602 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005603 return -EINVAL;
5604
Glauber Costa09998212013-02-22 16:34:55 -08005605 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005606 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005607 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005608 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005609 return -EINVAL;
5610 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005611 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005612 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005613 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005614 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005615 return 0;
5616}
5617
Andrew Mortonc255a452012-07-31 16:43:02 -07005618#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005619static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005620{
Glauber Costa55007d82012-12-18 14:22:38 -08005621 int ret;
5622
Glauber Costa2633d7a2012-12-18 14:22:34 -08005623 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005624 ret = memcg_propagate_kmem(memcg);
5625 if (ret)
5626 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005627
Glauber Costa1d62e432012-04-09 19:36:33 -03005628 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005629}
Glauber Costae5671df2011-12-11 21:47:01 +00005630
Li Zefan10d5ebf2013-07-08 16:00:33 -07005631static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005632{
Glauber Costa1d62e432012-04-09 19:36:33 -03005633 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005634}
5635
5636static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5637{
5638 if (!memcg_kmem_is_active(memcg))
5639 return;
5640
5641 /*
5642 * kmem charges can outlive the cgroup. In the case of slab
5643 * pages, for instance, a page contain objects from various
5644 * processes. As we prevent from taking a reference for every
5645 * such allocation we have to be careful when doing uncharge
5646 * (see memcg_uncharge_kmem) and here during offlining.
5647 *
5648 * The idea is that that only the _last_ uncharge which sees
5649 * the dead memcg will drop the last reference. An additional
5650 * reference is taken here before the group is marked dead
5651 * which is then paired with css_put during uncharge resp. here.
5652 *
5653 * Although this might sound strange as this path is called from
5654 * css_offline() when the referencemight have dropped down to 0
5655 * and shouldn't be incremented anymore (css_tryget would fail)
5656 * we do not have other options because of the kmem allocations
5657 * lifetime.
5658 */
5659 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005660
5661 memcg_kmem_mark_dead(memcg);
5662
5663 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5664 return;
5665
Glauber Costa7de37682012-12-18 14:22:07 -08005666 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005667 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005668}
Glauber Costae5671df2011-12-11 21:47:01 +00005669#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005670static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005671{
5672 return 0;
5673}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005674
Li Zefan10d5ebf2013-07-08 16:00:33 -07005675static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5676{
5677}
5678
5679static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005680{
5681}
Glauber Costae5671df2011-12-11 21:47:01 +00005682#endif
5683
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005684static struct cftype mem_cgroup_files[] = {
5685 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005686 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005687 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005688 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005689 .register_event = mem_cgroup_usage_register_event,
5690 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005691 },
5692 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005693 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005694 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005695 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005696 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005697 },
5698 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005699 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005700 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005701 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005702 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005703 },
5704 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005705 .name = "soft_limit_in_bytes",
5706 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5707 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005708 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005709 },
5710 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005711 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005712 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005713 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005714 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005715 },
Balbir Singh8697d332008-02-07 00:13:59 -08005716 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005717 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005718 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005719 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005720 {
5721 .name = "force_empty",
5722 .trigger = mem_cgroup_force_empty_write,
5723 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005724 {
5725 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005726 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005727 .write_u64 = mem_cgroup_hierarchy_write,
5728 .read_u64 = mem_cgroup_hierarchy_read,
5729 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005730 {
5731 .name = "swappiness",
5732 .read_u64 = mem_cgroup_swappiness_read,
5733 .write_u64 = mem_cgroup_swappiness_write,
5734 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005735 {
5736 .name = "move_charge_at_immigrate",
5737 .read_u64 = mem_cgroup_move_charge_read,
5738 .write_u64 = mem_cgroup_move_charge_write,
5739 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005740 {
5741 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005742 .read_map = mem_cgroup_oom_control_read,
5743 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005744 .register_event = mem_cgroup_oom_register_event,
5745 .unregister_event = mem_cgroup_oom_unregister_event,
5746 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5747 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005748 {
5749 .name = "pressure_level",
5750 .register_event = vmpressure_register_event,
5751 .unregister_event = vmpressure_unregister_event,
5752 },
Ying Han406eb0c2011-05-26 16:25:37 -07005753#ifdef CONFIG_NUMA
5754 {
5755 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005756 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005757 },
5758#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005759#ifdef CONFIG_MEMCG_KMEM
5760 {
5761 .name = "kmem.limit_in_bytes",
5762 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5763 .write_string = mem_cgroup_write,
5764 .read = mem_cgroup_read,
5765 },
5766 {
5767 .name = "kmem.usage_in_bytes",
5768 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5769 .read = mem_cgroup_read,
5770 },
5771 {
5772 .name = "kmem.failcnt",
5773 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5774 .trigger = mem_cgroup_reset,
5775 .read = mem_cgroup_read,
5776 },
5777 {
5778 .name = "kmem.max_usage_in_bytes",
5779 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5780 .trigger = mem_cgroup_reset,
5781 .read = mem_cgroup_read,
5782 },
Glauber Costa749c5412012-12-18 14:23:01 -08005783#ifdef CONFIG_SLABINFO
5784 {
5785 .name = "kmem.slabinfo",
5786 .read_seq_string = mem_cgroup_slabinfo_read,
5787 },
5788#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005789#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005790 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005791};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005792
Michal Hocko2d110852013-02-22 16:34:43 -08005793#ifdef CONFIG_MEMCG_SWAP
5794static struct cftype memsw_cgroup_files[] = {
5795 {
5796 .name = "memsw.usage_in_bytes",
5797 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5798 .read = mem_cgroup_read,
5799 .register_event = mem_cgroup_usage_register_event,
5800 .unregister_event = mem_cgroup_usage_unregister_event,
5801 },
5802 {
5803 .name = "memsw.max_usage_in_bytes",
5804 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5805 .trigger = mem_cgroup_reset,
5806 .read = mem_cgroup_read,
5807 },
5808 {
5809 .name = "memsw.limit_in_bytes",
5810 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5811 .write_string = mem_cgroup_write,
5812 .read = mem_cgroup_read,
5813 },
5814 {
5815 .name = "memsw.failcnt",
5816 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5817 .trigger = mem_cgroup_reset,
5818 .read = mem_cgroup_read,
5819 },
5820 { }, /* terminate */
5821};
5822#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005823static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005824{
5825 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005826 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005827 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005828 /*
5829 * This routine is called against possible nodes.
5830 * But it's BUG to call kmalloc() against offline node.
5831 *
5832 * TODO: this routine can waste much memory for nodes which will
5833 * never be onlined. It's better to use memory hotplug callback
5834 * function.
5835 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005836 if (!node_state(node, N_NORMAL_MEMORY))
5837 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005838 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005839 if (!pn)
5840 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005841
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005842 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5843 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005844 lruvec_init(&mz->lruvec);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005845 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005846 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005847 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005848 return 0;
5849}
5850
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005851static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005852{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005853 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005854}
5855
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005856static struct mem_cgroup *mem_cgroup_alloc(void)
5857{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005858 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005859 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005860
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005861 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08005862 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005863 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005864 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005865 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005866
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005867 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005868 return NULL;
5869
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005870 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5871 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005872 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005873 spin_lock_init(&memcg->pcp_counter_lock);
5874 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005875
5876out_free:
5877 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005878 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005879 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005880 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005881 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005882}
5883
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005884/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005885 * At destroying mem_cgroup, references from swap_cgroup can remain.
5886 * (scanning all at force_empty is too costly...)
5887 *
5888 * Instead of clearing all references at force_empty, we remember
5889 * the number of reference from swap_cgroup and free mem_cgroup when
5890 * it goes down to 0.
5891 *
5892 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005893 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005894
5895static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005896{
Glauber Costac8b2a362012-12-18 14:22:13 -08005897 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005898 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07005899
Glauber Costac8b2a362012-12-18 14:22:13 -08005900 free_css_id(&mem_cgroup_subsys, &memcg->css);
5901
5902 for_each_node(node)
5903 free_mem_cgroup_per_zone_info(memcg, node);
5904
5905 free_percpu(memcg->stat);
5906
Glauber Costa3f134612012-05-29 15:07:11 -07005907 /*
5908 * We need to make sure that (at least for now), the jump label
5909 * destruction code runs outside of the cgroup lock. This is because
5910 * get_online_cpus(), which is called from the static_branch update,
5911 * can't be called inside the cgroup_lock. cpusets are the ones
5912 * enforcing this dependency, so if they ever change, we might as well.
5913 *
5914 * schedule_work() will guarantee this happens. Be careful if you need
5915 * to move this code around, and make sure it is outside
5916 * the cgroup_lock.
5917 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005918 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07005919 if (size < PAGE_SIZE)
5920 kfree(memcg);
5921 else
5922 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005923}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005924
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005925/*
5926 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5927 */
Glauber Costae1aab162011-12-11 21:47:03 +00005928struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005929{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005930 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005931 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005932 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005933}
Glauber Costae1aab162011-12-11 21:47:03 +00005934EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005935
Li Zefan0eb253e2009-01-15 13:51:25 -08005936static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04005937mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005938{
Glauber Costad142e3e2013-02-22 16:34:52 -08005939 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005940 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005941 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005942
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005943 memcg = mem_cgroup_alloc();
5944 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005945 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005946
Bob Liu3ed28fa2012-01-12 17:19:04 -08005947 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005948 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005949 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005950
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005951 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04005952 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08005953 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08005954 res_counter_init(&memcg->res, NULL);
5955 res_counter_init(&memcg->memsw, NULL);
5956 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005957 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005958
Glauber Costad142e3e2013-02-22 16:34:52 -08005959 memcg->last_scanned_node = MAX_NUMNODES;
5960 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08005961 memcg->move_charge_at_immigrate = 0;
5962 mutex_init(&memcg->thresholds_lock);
5963 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005964 vmpressure_init(&memcg->vmpressure);
Michal Hocko7d910c02013-09-12 15:13:28 -07005965 spin_lock_init(&memcg->soft_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08005966
5967 return &memcg->css;
5968
5969free_out:
5970 __mem_cgroup_free(memcg);
5971 return ERR_PTR(error);
5972}
5973
5974static int
Tejun Heoeb954192013-08-08 20:11:23 -04005975mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08005976{
Tejun Heoeb954192013-08-08 20:11:23 -04005977 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5978 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08005979 int error = 0;
5980
Tejun Heo63876982013-08-08 20:11:23 -04005981 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08005982 return 0;
5983
Glauber Costa09998212013-02-22 16:34:55 -08005984 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08005985
5986 memcg->use_hierarchy = parent->use_hierarchy;
5987 memcg->oom_kill_disable = parent->oom_kill_disable;
5988 memcg->swappiness = mem_cgroup_swappiness(parent);
5989
5990 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005991 res_counter_init(&memcg->res, &parent->res);
5992 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005993 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08005994
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005995 /*
Li Zefan8d76a972013-07-08 16:00:36 -07005996 * No need to take a reference to the parent because cgroup
5997 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005998 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08005999 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006000 res_counter_init(&memcg->res, NULL);
6001 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006002 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006003 /*
6004 * Deeper hierachy with use_hierarchy == false doesn't make
6005 * much sense so let cgroup subsystem know about this
6006 * unfortunate state in our controller.
6007 */
Glauber Costad142e3e2013-02-22 16:34:52 -08006008 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006009 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08006010 }
Glauber Costacbe128e32012-04-09 19:36:34 -03006011
6012 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08006013 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006014 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006015}
6016
Michal Hocko5f578162013-04-29 15:07:17 -07006017/*
6018 * Announce all parents that a group from their hierarchy is gone.
6019 */
6020static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
6021{
6022 struct mem_cgroup *parent = memcg;
6023
6024 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07006025 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07006026
6027 /*
6028 * if the root memcg is not hierarchical we have to check it
6029 * explicitely.
6030 */
6031 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07006032 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07006033}
6034
Tejun Heoeb954192013-08-08 20:11:23 -04006035static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006036{
Tejun Heoeb954192013-08-08 20:11:23 -04006037 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07006038
Li Zefan10d5ebf2013-07-08 16:00:33 -07006039 kmem_cgroup_css_offline(memcg);
6040
Michal Hocko5f578162013-04-29 15:07:17 -07006041 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02006042 mem_cgroup_reparent_charges(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -07006043 if (memcg->soft_contributed) {
6044 while ((memcg = parent_mem_cgroup(memcg)))
6045 atomic_dec(&memcg->children_in_excess);
6046 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08006047 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07006048 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006049}
6050
Tejun Heoeb954192013-08-08 20:11:23 -04006051static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006052{
Tejun Heoeb954192013-08-08 20:11:23 -04006053 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08006054
Li Zefan10d5ebf2013-07-08 16:00:33 -07006055 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07006056 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006057}
6058
Daisuke Nishimura02491442010-03-10 15:22:17 -08006059#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006060/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006061#define PRECHARGE_COUNT_AT_ONCE 256
6062static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006063{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006064 int ret = 0;
6065 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006066 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006067
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006068 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006069 mc.precharge += count;
6070 /* we don't need css_get for root */
6071 return ret;
6072 }
6073 /* try to charge at once */
6074 if (count > 1) {
6075 struct res_counter *dummy;
6076 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006077 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006078 * by cgroup_lock_live_cgroup() that it is not removed and we
6079 * are still under the same cgroup_mutex. So we can postpone
6080 * css_get().
6081 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006082 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006083 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006084 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006085 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006086 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006087 goto one_by_one;
6088 }
6089 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006090 return ret;
6091 }
6092one_by_one:
6093 /* fall back to one by one charge */
6094 while (count--) {
6095 if (signal_pending(current)) {
6096 ret = -EINTR;
6097 break;
6098 }
6099 if (!batch_count--) {
6100 batch_count = PRECHARGE_COUNT_AT_ONCE;
6101 cond_resched();
6102 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006103 ret = __mem_cgroup_try_charge(NULL,
6104 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006105 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006106 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006107 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006108 mc.precharge++;
6109 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006110 return ret;
6111}
6112
6113/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006114 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006115 * @vma: the vma the pte to be checked belongs
6116 * @addr: the address corresponding to the pte to be checked
6117 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08006118 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006119 *
6120 * Returns
6121 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6122 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6123 * move charge. if @target is not NULL, the page is stored in target->page
6124 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006125 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6126 * target for charge migration. if @target is not NULL, the entry is stored
6127 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006128 *
6129 * Called with pte lock held.
6130 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006131union mc_target {
6132 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006133 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006134};
6135
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006136enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006137 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006138 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006139 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006140};
6141
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006142static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6143 unsigned long addr, pte_t ptent)
6144{
6145 struct page *page = vm_normal_page(vma, addr, ptent);
6146
6147 if (!page || !page_mapped(page))
6148 return NULL;
6149 if (PageAnon(page)) {
6150 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006151 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006152 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006153 } else if (!move_file())
6154 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006155 return NULL;
6156 if (!get_page_unless_zero(page))
6157 return NULL;
6158
6159 return page;
6160}
6161
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006162#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006163static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6164 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6165{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006166 struct page *page = NULL;
6167 swp_entry_t ent = pte_to_swp_entry(ptent);
6168
6169 if (!move_anon() || non_swap_entry(ent))
6170 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006171 /*
6172 * Because lookup_swap_cache() updates some statistics counter,
6173 * we call find_get_page() with swapper_space directly.
6174 */
Shaohua Li33806f02013-02-22 16:34:37 -08006175 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006176 if (do_swap_account)
6177 entry->val = ent.val;
6178
6179 return page;
6180}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006181#else
6182static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6183 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6184{
6185 return NULL;
6186}
6187#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006188
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006189static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6190 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6191{
6192 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006193 struct address_space *mapping;
6194 pgoff_t pgoff;
6195
6196 if (!vma->vm_file) /* anonymous vma */
6197 return NULL;
6198 if (!move_file())
6199 return NULL;
6200
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006201 mapping = vma->vm_file->f_mapping;
6202 if (pte_none(ptent))
6203 pgoff = linear_page_index(vma, addr);
6204 else /* pte_file(ptent) is true */
6205 pgoff = pte_to_pgoff(ptent);
6206
6207 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006208 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006209
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006210#ifdef CONFIG_SWAP
6211 /* shmem/tmpfs may report page out on swap: account for that too. */
6212 if (radix_tree_exceptional_entry(page)) {
6213 swp_entry_t swap = radix_to_swp_entry(page);
6214 if (do_swap_account)
6215 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006216 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006217 }
6218#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006219 return page;
6220}
6221
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006222static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006223 unsigned long addr, pte_t ptent, union mc_target *target)
6224{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006225 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006226 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006227 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006228 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006229
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006230 if (pte_present(ptent))
6231 page = mc_handle_present_pte(vma, addr, ptent);
6232 else if (is_swap_pte(ptent))
6233 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006234 else if (pte_none(ptent) || pte_file(ptent))
6235 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006236
6237 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006238 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006239 if (page) {
6240 pc = lookup_page_cgroup(page);
6241 /*
6242 * Do only loose check w/o page_cgroup lock.
6243 * mem_cgroup_move_account() checks the pc is valid or not under
6244 * the lock.
6245 */
6246 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6247 ret = MC_TARGET_PAGE;
6248 if (target)
6249 target->page = page;
6250 }
6251 if (!ret || !target)
6252 put_page(page);
6253 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006254 /* There is a swap entry and a page doesn't exist or isn't charged */
6255 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08006256 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006257 ret = MC_TARGET_SWAP;
6258 if (target)
6259 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006260 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006261 return ret;
6262}
6263
Naoya Horiguchi12724852012-03-21 16:34:28 -07006264#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6265/*
6266 * We don't consider swapping or file mapped pages because THP does not
6267 * support them for now.
6268 * Caller should make sure that pmd_trans_huge(pmd) is true.
6269 */
6270static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6271 unsigned long addr, pmd_t pmd, union mc_target *target)
6272{
6273 struct page *page = NULL;
6274 struct page_cgroup *pc;
6275 enum mc_target_type ret = MC_TARGET_NONE;
6276
6277 page = pmd_page(pmd);
6278 VM_BUG_ON(!page || !PageHead(page));
6279 if (!move_anon())
6280 return ret;
6281 pc = lookup_page_cgroup(page);
6282 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6283 ret = MC_TARGET_PAGE;
6284 if (target) {
6285 get_page(page);
6286 target->page = page;
6287 }
6288 }
6289 return ret;
6290}
6291#else
6292static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6293 unsigned long addr, pmd_t pmd, union mc_target *target)
6294{
6295 return MC_TARGET_NONE;
6296}
6297#endif
6298
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006299static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6300 unsigned long addr, unsigned long end,
6301 struct mm_walk *walk)
6302{
6303 struct vm_area_struct *vma = walk->private;
6304 pte_t *pte;
6305 spinlock_t *ptl;
6306
Naoya Horiguchi12724852012-03-21 16:34:28 -07006307 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6308 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6309 mc.precharge += HPAGE_PMD_NR;
6310 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006311 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006312 }
Dave Hansen03319322011-03-22 16:32:56 -07006313
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006314 if (pmd_trans_unstable(pmd))
6315 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006316 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6317 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006318 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006319 mc.precharge++; /* increment precharge temporarily */
6320 pte_unmap_unlock(pte - 1, ptl);
6321 cond_resched();
6322
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006323 return 0;
6324}
6325
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006326static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6327{
6328 unsigned long precharge;
6329 struct vm_area_struct *vma;
6330
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006331 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006332 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6333 struct mm_walk mem_cgroup_count_precharge_walk = {
6334 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6335 .mm = mm,
6336 .private = vma,
6337 };
6338 if (is_vm_hugetlb_page(vma))
6339 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006340 walk_page_range(vma->vm_start, vma->vm_end,
6341 &mem_cgroup_count_precharge_walk);
6342 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006343 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006344
6345 precharge = mc.precharge;
6346 mc.precharge = 0;
6347
6348 return precharge;
6349}
6350
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006351static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6352{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006353 unsigned long precharge = mem_cgroup_count_precharge(mm);
6354
6355 VM_BUG_ON(mc.moving_task);
6356 mc.moving_task = current;
6357 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006358}
6359
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006360/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6361static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006362{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006363 struct mem_cgroup *from = mc.from;
6364 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006365 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006366
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006367 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006368 if (mc.precharge) {
6369 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6370 mc.precharge = 0;
6371 }
6372 /*
6373 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6374 * we must uncharge here.
6375 */
6376 if (mc.moved_charge) {
6377 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6378 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006379 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006380 /* we must fixup refcnts and charges */
6381 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006382 /* uncharge swap account from the old cgroup */
6383 if (!mem_cgroup_is_root(mc.from))
6384 res_counter_uncharge(&mc.from->memsw,
6385 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006386
6387 for (i = 0; i < mc.moved_swap; i++)
6388 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006389
6390 if (!mem_cgroup_is_root(mc.to)) {
6391 /*
6392 * we charged both to->res and to->memsw, so we should
6393 * uncharge to->res.
6394 */
6395 res_counter_uncharge(&mc.to->res,
6396 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006397 }
Li Zefan40503772013-07-08 16:00:34 -07006398 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006399 mc.moved_swap = 0;
6400 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006401 memcg_oom_recover(from);
6402 memcg_oom_recover(to);
6403 wake_up_all(&mc.waitq);
6404}
6405
6406static void mem_cgroup_clear_mc(void)
6407{
6408 struct mem_cgroup *from = mc.from;
6409
6410 /*
6411 * we must clear moving_task before waking up waiters at the end of
6412 * task migration.
6413 */
6414 mc.moving_task = NULL;
6415 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006416 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006417 mc.from = NULL;
6418 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006419 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006420 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006421}
6422
Tejun Heoeb954192013-08-08 20:11:23 -04006423static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006424 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006425{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006426 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006427 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006428 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006429 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006430
Glauber Costaee5e8472013-02-22 16:34:50 -08006431 /*
6432 * We are now commited to this value whatever it is. Changes in this
6433 * tunable will only affect upcoming migrations, not the current one.
6434 * So we need to save it, and keep it going.
6435 */
6436 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6437 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006438 struct mm_struct *mm;
6439 struct mem_cgroup *from = mem_cgroup_from_task(p);
6440
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006441 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006442
6443 mm = get_task_mm(p);
6444 if (!mm)
6445 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006446 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006447 if (mm->owner == p) {
6448 VM_BUG_ON(mc.from);
6449 VM_BUG_ON(mc.to);
6450 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006451 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006452 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006453 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006454 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006455 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006456 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006457 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006458 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006459 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006460
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006461 ret = mem_cgroup_precharge_mc(mm);
6462 if (ret)
6463 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006464 }
6465 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006466 }
6467 return ret;
6468}
6469
Tejun Heoeb954192013-08-08 20:11:23 -04006470static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006471 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006472{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006473 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006474}
6475
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006476static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6477 unsigned long addr, unsigned long end,
6478 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006479{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006480 int ret = 0;
6481 struct vm_area_struct *vma = walk->private;
6482 pte_t *pte;
6483 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006484 enum mc_target_type target_type;
6485 union mc_target target;
6486 struct page *page;
6487 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006488
Naoya Horiguchi12724852012-03-21 16:34:28 -07006489 /*
6490 * We don't take compound_lock() here but no race with splitting thp
6491 * happens because:
6492 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6493 * under splitting, which means there's no concurrent thp split,
6494 * - if another thread runs into split_huge_page() just after we
6495 * entered this if-block, the thread must wait for page table lock
6496 * to be unlocked in __split_huge_page_splitting(), where the main
6497 * part of thp split is not executed yet.
6498 */
6499 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006500 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006501 spin_unlock(&vma->vm_mm->page_table_lock);
6502 return 0;
6503 }
6504 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6505 if (target_type == MC_TARGET_PAGE) {
6506 page = target.page;
6507 if (!isolate_lru_page(page)) {
6508 pc = lookup_page_cgroup(page);
6509 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006510 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006511 mc.precharge -= HPAGE_PMD_NR;
6512 mc.moved_charge += HPAGE_PMD_NR;
6513 }
6514 putback_lru_page(page);
6515 }
6516 put_page(page);
6517 }
6518 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006519 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006520 }
6521
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006522 if (pmd_trans_unstable(pmd))
6523 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006524retry:
6525 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6526 for (; addr != end; addr += PAGE_SIZE) {
6527 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006528 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006529
6530 if (!mc.precharge)
6531 break;
6532
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006533 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006534 case MC_TARGET_PAGE:
6535 page = target.page;
6536 if (isolate_lru_page(page))
6537 goto put;
6538 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006539 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006540 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006541 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006542 /* we uncharge from mc.from later. */
6543 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006544 }
6545 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006546put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006547 put_page(page);
6548 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006549 case MC_TARGET_SWAP:
6550 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006551 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006552 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006553 /* we fixup refcnts and charges later. */
6554 mc.moved_swap++;
6555 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006556 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006557 default:
6558 break;
6559 }
6560 }
6561 pte_unmap_unlock(pte - 1, ptl);
6562 cond_resched();
6563
6564 if (addr != end) {
6565 /*
6566 * We have consumed all precharges we got in can_attach().
6567 * We try charge one by one, but don't do any additional
6568 * charges to mc.to if we have failed in charge once in attach()
6569 * phase.
6570 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006571 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006572 if (!ret)
6573 goto retry;
6574 }
6575
6576 return ret;
6577}
6578
6579static void mem_cgroup_move_charge(struct mm_struct *mm)
6580{
6581 struct vm_area_struct *vma;
6582
6583 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006584retry:
6585 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6586 /*
6587 * Someone who are holding the mmap_sem might be waiting in
6588 * waitq. So we cancel all extra charges, wake up all waiters,
6589 * and retry. Because we cancel precharges, we might not be able
6590 * to move enough charges, but moving charge is a best-effort
6591 * feature anyway, so it wouldn't be a big problem.
6592 */
6593 __mem_cgroup_clear_mc();
6594 cond_resched();
6595 goto retry;
6596 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006597 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6598 int ret;
6599 struct mm_walk mem_cgroup_move_charge_walk = {
6600 .pmd_entry = mem_cgroup_move_charge_pte_range,
6601 .mm = mm,
6602 .private = vma,
6603 };
6604 if (is_vm_hugetlb_page(vma))
6605 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006606 ret = walk_page_range(vma->vm_start, vma->vm_end,
6607 &mem_cgroup_move_charge_walk);
6608 if (ret)
6609 /*
6610 * means we have consumed all precharges and failed in
6611 * doing additional charge. Just abandon here.
6612 */
6613 break;
6614 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006615 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006616}
6617
Tejun Heoeb954192013-08-08 20:11:23 -04006618static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006619 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006620{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006621 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006622 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006623
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006624 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006625 if (mc.to)
6626 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006627 mmput(mm);
6628 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006629 if (mc.to)
6630 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006631}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006632#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006633static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006634 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006635{
6636 return 0;
6637}
Tejun Heoeb954192013-08-08 20:11:23 -04006638static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006639 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006640{
6641}
Tejun Heoeb954192013-08-08 20:11:23 -04006642static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006643 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006644{
6645}
6646#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006647
Tejun Heof00baae2013-04-15 13:41:15 -07006648/*
6649 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6650 * to verify sane_behavior flag on each mount attempt.
6651 */
Tejun Heoeb954192013-08-08 20:11:23 -04006652static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006653{
6654 /*
6655 * use_hierarchy is forced with sane_behavior. cgroup core
6656 * guarantees that @root doesn't have any children, so turning it
6657 * on for the root memcg is enough.
6658 */
Tejun Heoeb954192013-08-08 20:11:23 -04006659 if (cgroup_sane_behavior(root_css->cgroup))
6660 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006661}
6662
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006663struct cgroup_subsys mem_cgroup_subsys = {
6664 .name = "memory",
6665 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006666 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006667 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006668 .css_offline = mem_cgroup_css_offline,
6669 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006670 .can_attach = mem_cgroup_can_attach,
6671 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006672 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006673 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006674 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006675 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006676 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006677};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006678
Andrew Mortonc255a452012-07-31 16:43:02 -07006679#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006680static int __init enable_swap_account(char *s)
6681{
Michal Hockoa2c89902011-05-24 17:12:50 -07006682 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006683 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006684 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006685 really_do_swap_account = 0;
6686 return 1;
6687}
Michal Hockoa2c89902011-05-24 17:12:50 -07006688__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006689
Michal Hocko2d110852013-02-22 16:34:43 -08006690static void __init memsw_file_init(void)
6691{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006692 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006693}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006694
6695static void __init enable_swap_cgroup(void)
6696{
6697 if (!mem_cgroup_disabled() && really_do_swap_account) {
6698 do_swap_account = 1;
6699 memsw_file_init();
6700 }
6701}
6702
Michal Hocko2d110852013-02-22 16:34:43 -08006703#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006704static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006705{
6706}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006707#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006708
6709/*
Michal Hocko10813122013-02-22 16:35:41 -08006710 * subsys_initcall() for memory controller.
6711 *
6712 * Some parts like hotcpu_notifier() have to be initialized from this context
6713 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6714 * everything that doesn't depend on a specific mem_cgroup structure should
6715 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006716 */
6717static int __init mem_cgroup_init(void)
6718{
6719 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006720 enable_swap_cgroup();
Michal Hockoe4777492013-02-22 16:35:40 -08006721 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006722 return 0;
6723}
6724subsys_initcall(mem_cgroup_init);