blob: c4524458b7d03bd4c15ca8ff66ee2758aecf1bf9 [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 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700282 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
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700327 * when it got over the soft limit.
Michal Hocko7d910c02013-09-12 15:13:28 -0700328 * 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/*
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700838 * Called from rate-limited memcg_check_events when enough
Michal Hocko7d910c02013-09-12 15:13:28 -0700839 * MEM_CGROUP_TARGET_SOFTLIMIT events are accumulated and it makes sure
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700840 * that all the parents up the hierarchy will be notified that this group
Michal Hocko7d910c02013-09-12 15:13:28 -0700841 * 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
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700843 * the other.
Michal Hocko7d910c02013-09-12 15:13:28 -0700844 */
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.
Michal Hocko1be171d2013-09-12 15:13:32 -0700867 * We track children even outside the hierarchy for the root
868 * cgroup because tree walk starting at root should visit
869 * all cgroups and we want to prevent from pointless tree
870 * walk if no children is below the limit.
Michal Hocko7d910c02013-09-12 15:13:28 -0700871 */
872 while (delta && (parent = parent_mem_cgroup(parent)))
873 atomic_add(delta, &parent->children_in_excess);
Michal Hocko1be171d2013-09-12 15:13:32 -0700874 if (memcg != root_mem_cgroup && !root_mem_cgroup->use_hierarchy)
875 atomic_add(delta, &root_mem_cgroup->children_in_excess);
Michal Hocko7d910c02013-09-12 15:13:28 -0700876 spin_unlock(&memcg->soft_lock);
877}
878
879/*
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800880 * Check events in order.
881 *
882 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700883static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800884{
Steven Rostedt47994012011-11-02 13:38:33 -0700885 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800886 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800887 if (unlikely(mem_cgroup_event_ratelimit(memcg,
888 MEM_CGROUP_TARGET_THRESH))) {
Michal Hocko7d910c02013-09-12 15:13:28 -0700889 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800890 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800891
Michal Hocko7d910c02013-09-12 15:13:28 -0700892 do_softlimit = mem_cgroup_event_ratelimit(memcg,
893 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700894#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800895 do_numainfo = mem_cgroup_event_ratelimit(memcg,
896 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700897#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800898 preempt_enable();
899
900 mem_cgroup_threshold(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -0700901 if (unlikely(do_softlimit))
902 mem_cgroup_update_soft_limit(memcg);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800903#if MAX_NUMNODES > 1
904 if (unlikely(do_numainfo))
905 atomic_inc(&memcg->numainfo_events);
906#endif
907 } else
908 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800909}
910
Balbir Singhcf475ad2008-04-29 01:00:16 -0700911struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800912{
Balbir Singh31a78f22008-09-28 23:09:31 +0100913 /*
914 * mm_update_next_owner() may clear mm->owner to NULL
915 * if it races with swapoff, page migration, etc.
916 * So this can be called with p == NULL.
917 */
918 if (unlikely(!p))
919 return NULL;
920
Tejun Heo8af01f52013-08-08 20:11:22 -0400921 return mem_cgroup_from_css(task_css(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800922}
923
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700924struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800925{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700926 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700927
928 if (!mm)
929 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800930 /*
931 * Because we have no locks, mm->owner's may be being moved to other
932 * cgroup. We use css_tryget() here even if this looks
933 * pessimistic (rather than adding locks here).
934 */
935 rcu_read_lock();
936 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700937 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
938 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800939 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700940 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800941 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700942 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800943}
944
Michal Hockode577802013-09-12 15:13:26 -0700945static enum mem_cgroup_filter_t
946mem_cgroup_filter(struct mem_cgroup *memcg, struct mem_cgroup *root,
947 mem_cgroup_iter_filter cond)
948{
949 if (!cond)
950 return VISIT;
951 return cond(memcg, root);
952}
953
Michal Hocko16248d82013-04-29 15:07:19 -0700954/*
955 * Returns a next (in a pre-order walk) alive memcg (with elevated css
956 * ref. count) or NULL if the whole root's subtree has been visited.
957 *
958 * helper function to be used by mem_cgroup_iter
959 */
960static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
Michal Hockode577802013-09-12 15:13:26 -0700961 struct mem_cgroup *last_visited, mem_cgroup_iter_filter cond)
Michal Hocko16248d82013-04-29 15:07:19 -0700962{
Tejun Heo492eb212013-08-08 20:11:25 -0400963 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700964
Tejun Heobd8815a2013-08-08 20:11:27 -0400965 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -0700966skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -0400967 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -0700968
969 /*
970 * Even if we found a group we have to make sure it is
971 * alive. css && !memcg means that the groups should be
972 * skipped and we should continue the tree walk.
973 * last_visited css is safe to use because it is
974 * protected by css_get and the tree walk is rcu safe.
975 */
Tejun Heo492eb212013-08-08 20:11:25 -0400976 if (next_css) {
977 struct mem_cgroup *mem = mem_cgroup_from_css(next_css);
978
Michal Hockode577802013-09-12 15:13:26 -0700979 switch (mem_cgroup_filter(mem, root, cond)) {
980 case SKIP:
Tejun Heo492eb212013-08-08 20:11:25 -0400981 prev_css = next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700982 goto skip_node;
Michal Hockode577802013-09-12 15:13:26 -0700983 case SKIP_TREE:
984 if (mem == root)
985 return NULL;
986 /*
987 * css_rightmost_descendant is not an optimal way to
988 * skip through a subtree (especially for imbalanced
989 * trees leaning to right) but that's what we have right
990 * now. More effective solution would be traversing
991 * right-up for first non-NULL without calling
992 * css_next_descendant_pre afterwards.
993 */
994 prev_css = css_rightmost_descendant(next_css);
995 goto skip_node;
996 case VISIT:
997 if (css_tryget(&mem->css))
998 return mem;
999 else {
1000 prev_css = next_css;
1001 goto skip_node;
1002 }
1003 break;
Michal Hocko16248d82013-04-29 15:07:19 -07001004 }
1005 }
1006
1007 return NULL;
1008}
1009
Johannes Weiner519ebea2013-07-03 15:04:51 -07001010static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
1011{
1012 /*
1013 * When a group in the hierarchy below root is destroyed, the
1014 * hierarchy iterator can no longer be trusted since it might
1015 * have pointed to the destroyed group. Invalidate it.
1016 */
1017 atomic_inc(&root->dead_count);
1018}
1019
1020static struct mem_cgroup *
1021mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
1022 struct mem_cgroup *root,
1023 int *sequence)
1024{
1025 struct mem_cgroup *position = NULL;
1026 /*
1027 * A cgroup destruction happens in two stages: offlining and
1028 * release. They are separated by a RCU grace period.
1029 *
1030 * If the iterator is valid, we may still race with an
1031 * offlining. The RCU lock ensures the object won't be
1032 * released, tryget will fail if we lost the race.
1033 */
1034 *sequence = atomic_read(&root->dead_count);
1035 if (iter->last_dead_count == *sequence) {
1036 smp_rmb();
1037 position = iter->last_visited;
1038 if (position && !css_tryget(&position->css))
1039 position = NULL;
1040 }
1041 return position;
1042}
1043
1044static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
1045 struct mem_cgroup *last_visited,
1046 struct mem_cgroup *new_position,
1047 int sequence)
1048{
1049 if (last_visited)
1050 css_put(&last_visited->css);
1051 /*
1052 * We store the sequence count from the time @last_visited was
1053 * loaded successfully instead of rereading it here so that we
1054 * don't lose destruction events in between. We could have
1055 * raced with the destruction of @new_position after all.
1056 */
1057 iter->last_visited = new_position;
1058 smp_wmb();
1059 iter->last_dead_count = sequence;
1060}
1061
Johannes Weiner56600482012-01-12 17:17:59 -08001062/**
1063 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1064 * @root: hierarchy root
1065 * @prev: previously returned memcg, NULL on first invocation
1066 * @reclaim: cookie for shared reclaim walks, NULL for full walks
Michal Hockode577802013-09-12 15:13:26 -07001067 * @cond: filter for visited nodes, NULL for no filter
Johannes Weiner56600482012-01-12 17:17:59 -08001068 *
1069 * Returns references to children of the hierarchy below @root, or
1070 * @root itself, or %NULL after a full round-trip.
1071 *
1072 * Caller must pass the return value in @prev on subsequent
1073 * invocations for reference counting, or use mem_cgroup_iter_break()
1074 * to cancel a hierarchy walk before the round-trip is complete.
1075 *
1076 * Reclaimers can specify a zone and a priority level in @reclaim to
1077 * divide up the memcgs in the hierarchy among all concurrent
1078 * reclaimers operating on the same zone and priority.
1079 */
Michal Hockode577802013-09-12 15:13:26 -07001080struct mem_cgroup *mem_cgroup_iter_cond(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -08001081 struct mem_cgroup *prev,
Michal Hockode577802013-09-12 15:13:26 -07001082 struct mem_cgroup_reclaim_cookie *reclaim,
1083 mem_cgroup_iter_filter cond)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001084{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001085 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001086 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001087
Michal Hockode577802013-09-12 15:13:26 -07001088 if (mem_cgroup_disabled()) {
1089 /* first call must return non-NULL, second return NULL */
1090 return (struct mem_cgroup *)(unsigned long)!prev;
1091 }
Johannes Weiner56600482012-01-12 17:17:59 -08001092
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001093 if (!root)
1094 root = root_mem_cgroup;
1095
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001096 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -07001097 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001098
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001099 if (!root->use_hierarchy && root != root_mem_cgroup) {
1100 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001101 goto out_css_put;
Michal Hockode577802013-09-12 15:13:26 -07001102 if (mem_cgroup_filter(root, root, cond) == VISIT)
1103 return root;
1104 return NULL;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001105 }
1106
Michal Hocko542f85f2013-04-29 15:07:15 -07001107 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001108 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001109 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001110 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001111
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001112 if (reclaim) {
1113 int nid = zone_to_nid(reclaim->zone);
1114 int zid = zone_idx(reclaim->zone);
1115 struct mem_cgroup_per_zone *mz;
1116
1117 mz = mem_cgroup_zoneinfo(root, nid, zid);
1118 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001119 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001120 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001121 goto out_unlock;
1122 }
Michal Hocko5f578162013-04-29 15:07:17 -07001123
Johannes Weiner519ebea2013-07-03 15:04:51 -07001124 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001125 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001126
Michal Hockode577802013-09-12 15:13:26 -07001127 memcg = __mem_cgroup_iter_next(root, last_visited, cond);
Michal Hocko542f85f2013-04-29 15:07:15 -07001128
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001129 if (reclaim) {
Johannes Weiner519ebea2013-07-03 15:04:51 -07001130 mem_cgroup_iter_update(iter, last_visited, memcg, seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001131
Michal Hocko19f39402013-04-29 15:07:18 -07001132 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001133 iter->generation++;
1134 else if (!prev && memcg)
1135 reclaim->generation = iter->generation;
1136 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001137
Michal Hockode577802013-09-12 15:13:26 -07001138 /*
1139 * We have finished the whole tree walk or no group has been
1140 * visited because filter told us to skip the root node.
1141 */
1142 if (!memcg && (prev || (cond && !last_visited)))
Michal Hocko542f85f2013-04-29 15:07:15 -07001143 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001144 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001145out_unlock:
1146 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001147out_css_put:
1148 if (prev && prev != root)
1149 css_put(&prev->css);
1150
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001151 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001152}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001153
Johannes Weiner56600482012-01-12 17:17:59 -08001154/**
1155 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1156 * @root: hierarchy root
1157 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1158 */
1159void mem_cgroup_iter_break(struct mem_cgroup *root,
1160 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001161{
1162 if (!root)
1163 root = root_mem_cgroup;
1164 if (prev && prev != root)
1165 css_put(&prev->css);
1166}
1167
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001168/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001169 * Iteration constructs for visiting all cgroups (under a tree). If
1170 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1171 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001172 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001173#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001174 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001175 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001176 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001177
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001178#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001179 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001180 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001181 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001182
David Rientjes68ae5642012-12-12 13:51:57 -08001183void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001184{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001185 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001186
Ying Han456f9982011-05-26 16:25:38 -07001187 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001188 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1189 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001190 goto out;
1191
1192 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001193 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001194 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1195 break;
1196 case PGMAJFAULT:
1197 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001198 break;
1199 default:
1200 BUG();
1201 }
1202out:
1203 rcu_read_unlock();
1204}
David Rientjes68ae5642012-12-12 13:51:57 -08001205EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001206
Johannes Weiner925b7672012-01-12 17:18:15 -08001207/**
1208 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1209 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001210 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001211 *
1212 * Returns the lru list vector holding pages for the given @zone and
1213 * @mem. This can be the global zone lruvec, if the memory controller
1214 * is disabled.
1215 */
1216struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1217 struct mem_cgroup *memcg)
1218{
1219 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001220 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001221
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001222 if (mem_cgroup_disabled()) {
1223 lruvec = &zone->lruvec;
1224 goto out;
1225 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001226
1227 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001228 lruvec = &mz->lruvec;
1229out:
1230 /*
1231 * Since a node can be onlined after the mem_cgroup was created,
1232 * we have to be prepared to initialize lruvec->zone here;
1233 * and if offlined then reonlined, we need to reinitialize it.
1234 */
1235 if (unlikely(lruvec->zone != zone))
1236 lruvec->zone = zone;
1237 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001238}
1239
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001240/*
1241 * Following LRU functions are allowed to be used without PCG_LOCK.
1242 * Operations are called by routine of global LRU independently from memcg.
1243 * What we have to take care of here is validness of pc->mem_cgroup.
1244 *
1245 * Changes to pc->mem_cgroup happens when
1246 * 1. charge
1247 * 2. moving account
1248 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1249 * It is added to LRU before charge.
1250 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1251 * When moving account, the page is not on LRU. It's isolated.
1252 */
1253
Johannes Weiner925b7672012-01-12 17:18:15 -08001254/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001255 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001256 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001257 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001258 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001259struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001260{
1261 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001262 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001263 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001264 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001265
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001266 if (mem_cgroup_disabled()) {
1267 lruvec = &zone->lruvec;
1268 goto out;
1269 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001270
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001271 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001272 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001273
1274 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001275 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001276 * an uncharged page off lru does nothing to secure
1277 * its former mem_cgroup from sudden removal.
1278 *
1279 * Our caller holds lru_lock, and PageCgroupUsed is updated
1280 * under page_cgroup lock: between them, they make all uses
1281 * of pc->mem_cgroup safe.
1282 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001283 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001284 pc->mem_cgroup = memcg = root_mem_cgroup;
1285
Johannes Weiner925b7672012-01-12 17:18:15 -08001286 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001287 lruvec = &mz->lruvec;
1288out:
1289 /*
1290 * Since a node can be onlined after the mem_cgroup was created,
1291 * we have to be prepared to initialize lruvec->zone here;
1292 * and if offlined then reonlined, we need to reinitialize it.
1293 */
1294 if (unlikely(lruvec->zone != zone))
1295 lruvec->zone = zone;
1296 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001297}
1298
1299/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001300 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1301 * @lruvec: mem_cgroup per zone lru vector
1302 * @lru: index of lru list the page is sitting on
1303 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001304 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001305 * This function must be called when a page is added to or removed from an
1306 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001307 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001308void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1309 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001310{
1311 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001312 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001313
1314 if (mem_cgroup_disabled())
1315 return;
1316
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001317 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1318 lru_size = mz->lru_size + lru;
1319 *lru_size += nr_pages;
1320 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001321}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001322
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001323/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001324 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001325 * hierarchy subtree
1326 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001327bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1328 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001329{
Johannes Weiner91c637342012-05-29 15:06:24 -07001330 if (root_memcg == memcg)
1331 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001332 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001333 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001334 return css_is_ancestor(&memcg->css, &root_memcg->css);
1335}
1336
1337static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1338 struct mem_cgroup *memcg)
1339{
1340 bool ret;
1341
Johannes Weiner91c637342012-05-29 15:06:24 -07001342 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001343 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001344 rcu_read_unlock();
1345 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001346}
1347
David Rientjesffbdccf2013-07-03 15:01:23 -07001348bool task_in_mem_cgroup(struct task_struct *task,
1349 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001350{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001351 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001352 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001353 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001354
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001355 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001356 if (p) {
1357 curr = try_get_mem_cgroup_from_mm(p->mm);
1358 task_unlock(p);
1359 } else {
1360 /*
1361 * All threads may have already detached their mm's, but the oom
1362 * killer still needs to detect if they have already been oom
1363 * killed to prevent needlessly killing additional tasks.
1364 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001365 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001366 curr = mem_cgroup_from_task(task);
1367 if (curr)
1368 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001369 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001370 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001371 if (!curr)
David Rientjesffbdccf2013-07-03 15:01:23 -07001372 return false;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001373 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001374 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001375 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001376 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1377 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001378 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001379 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001380 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001381 return ret;
1382}
1383
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001384int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001385{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001386 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001387 unsigned long inactive;
1388 unsigned long active;
1389 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001390
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001391 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1392 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001393
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001394 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1395 if (gb)
1396 inactive_ratio = int_sqrt(10 * gb);
1397 else
1398 inactive_ratio = 1;
1399
Johannes Weiner9b272972011-11-02 13:38:23 -07001400 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001401}
1402
Balbir Singh6d61ef42009-01-07 18:08:06 -08001403#define mem_cgroup_from_res_counter(counter, member) \
1404 container_of(counter, struct mem_cgroup, member)
1405
Johannes Weiner19942822011-02-01 15:52:43 -08001406/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001407 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001408 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001409 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001410 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001411 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001412 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001413static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001414{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001415 unsigned long long margin;
1416
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001417 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001418 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001419 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001420 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001421}
1422
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001423int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001424{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001425 /* root ? */
Tejun Heo63876982013-08-08 20:11:23 -04001426 if (!css_parent(&memcg->css))
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001427 return vm_swappiness;
1428
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001429 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001430}
1431
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001432/*
1433 * memcg->moving_account is used for checking possibility that some thread is
1434 * calling move_account(). When a thread on CPU-A starts moving pages under
1435 * a memcg, other threads should check memcg->moving_account under
1436 * rcu_read_lock(), like this:
1437 *
1438 * CPU-A CPU-B
1439 * rcu_read_lock()
1440 * memcg->moving_account+1 if (memcg->mocing_account)
1441 * take heavy locks.
1442 * synchronize_rcu() update something.
1443 * rcu_read_unlock()
1444 * start move here.
1445 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001446
1447/* for quick checking without looking up memcg */
1448atomic_t memcg_moving __read_mostly;
1449
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001450static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001451{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001452 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001453 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001454 synchronize_rcu();
1455}
1456
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001457static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001458{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001459 /*
1460 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1461 * We check NULL in callee rather than caller.
1462 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001463 if (memcg) {
1464 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001465 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001466 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001467}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001468
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001469/*
1470 * 2 routines for checking "mem" is under move_account() or not.
1471 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001472 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1473 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001474 * pc->mem_cgroup may be overwritten.
1475 *
1476 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1477 * under hierarchy of moving cgroups. This is for
1478 * waiting at hith-memory prressure caused by "move".
1479 */
1480
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001481static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001482{
1483 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001484 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001485}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001486
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001487static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001488{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001489 struct mem_cgroup *from;
1490 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001491 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001492 /*
1493 * Unlike task_move routines, we access mc.to, mc.from not under
1494 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1495 */
1496 spin_lock(&mc.lock);
1497 from = mc.from;
1498 to = mc.to;
1499 if (!from)
1500 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001501
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001502 ret = mem_cgroup_same_or_subtree(memcg, from)
1503 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001504unlock:
1505 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001506 return ret;
1507}
1508
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001509static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001510{
1511 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001512 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001513 DEFINE_WAIT(wait);
1514 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1515 /* moving charge context might have finished. */
1516 if (mc.moving_task)
1517 schedule();
1518 finish_wait(&mc.waitq, &wait);
1519 return true;
1520 }
1521 }
1522 return false;
1523}
1524
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001525/*
1526 * Take this lock when
1527 * - a code tries to modify page's memcg while it's USED.
1528 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001529 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001530 */
1531static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1532 unsigned long *flags)
1533{
1534 spin_lock_irqsave(&memcg->move_lock, *flags);
1535}
1536
1537static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1538 unsigned long *flags)
1539{
1540 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1541}
1542
Sha Zhengju58cf1882013-02-22 16:32:05 -08001543#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001544/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001545 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001546 * @memcg: The memory cgroup that went over limit
1547 * @p: Task that is going to be killed
1548 *
1549 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1550 * enabled
1551 */
1552void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1553{
1554 struct cgroup *task_cgrp;
1555 struct cgroup *mem_cgrp;
1556 /*
1557 * Need a buffer in BSS, can't rely on allocations. The code relies
1558 * on the assumption that OOM is serialized for memory controller.
1559 * If this assumption is broken, revisit this code.
1560 */
1561 static char memcg_name[PATH_MAX];
1562 int ret;
Sha Zhengju58cf1882013-02-22 16:32:05 -08001563 struct mem_cgroup *iter;
1564 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001565
Sha Zhengju58cf1882013-02-22 16:32:05 -08001566 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001567 return;
1568
Balbir Singhe2224322009-04-02 16:57:39 -07001569 rcu_read_lock();
1570
1571 mem_cgrp = memcg->css.cgroup;
1572 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1573
1574 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1575 if (ret < 0) {
1576 /*
1577 * Unfortunately, we are unable to convert to a useful name
1578 * But we'll still print out the usage information
1579 */
1580 rcu_read_unlock();
1581 goto done;
1582 }
1583 rcu_read_unlock();
1584
Andrew Mortond0451972013-02-22 16:32:06 -08001585 pr_info("Task in %s killed", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001586
1587 rcu_read_lock();
1588 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1589 if (ret < 0) {
1590 rcu_read_unlock();
1591 goto done;
1592 }
1593 rcu_read_unlock();
1594
1595 /*
1596 * Continues from above, so we don't need an KERN_ level
1597 */
Andrew Mortond0451972013-02-22 16:32:06 -08001598 pr_cont(" as a result of limit of %s\n", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001599done:
1600
Andrew Mortond0451972013-02-22 16:32:06 -08001601 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001602 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1603 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1604 res_counter_read_u64(&memcg->res, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001605 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001606 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1607 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1608 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001609 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
Glauber Costa510fc4e2012-12-18 14:21:47 -08001610 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1611 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1612 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Sha Zhengju58cf1882013-02-22 16:32:05 -08001613
1614 for_each_mem_cgroup_tree(iter, memcg) {
1615 pr_info("Memory cgroup stats");
1616
1617 rcu_read_lock();
1618 ret = cgroup_path(iter->css.cgroup, memcg_name, PATH_MAX);
1619 if (!ret)
1620 pr_cont(" for %s", memcg_name);
1621 rcu_read_unlock();
1622 pr_cont(":");
1623
1624 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1625 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1626 continue;
1627 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1628 K(mem_cgroup_read_stat(iter, i)));
1629 }
1630
1631 for (i = 0; i < NR_LRU_LISTS; i++)
1632 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1633 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1634
1635 pr_cont("\n");
1636 }
Balbir Singhe2224322009-04-02 16:57:39 -07001637}
1638
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001639/*
1640 * This function returns the number of memcg under hierarchy tree. Returns
1641 * 1(self count) if no children.
1642 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001643static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001644{
1645 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001646 struct mem_cgroup *iter;
1647
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001648 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001649 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001650 return num;
1651}
1652
Balbir Singh6d61ef42009-01-07 18:08:06 -08001653/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001654 * Return the memory (and swap, if configured) limit for a memcg.
1655 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001656static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001657{
1658 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001659
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001660 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001661
David Rientjesa63d83f2010-08-09 17:19:46 -07001662 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001663 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001664 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001665 if (mem_cgroup_swappiness(memcg)) {
1666 u64 memsw;
1667
1668 limit += total_swap_pages << PAGE_SHIFT;
1669 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1670
1671 /*
1672 * If memsw is finite and limits the amount of swap space
1673 * available to this memcg, return that limit.
1674 */
1675 limit = min(limit, memsw);
1676 }
1677
1678 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001679}
1680
David Rientjes19965462012-12-11 16:00:26 -08001681static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1682 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001683{
1684 struct mem_cgroup *iter;
1685 unsigned long chosen_points = 0;
1686 unsigned long totalpages;
1687 unsigned int points = 0;
1688 struct task_struct *chosen = NULL;
1689
David Rientjes876aafb2012-07-31 16:43:48 -07001690 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001691 * If current has a pending SIGKILL or is exiting, then automatically
1692 * select it. The goal is to allow it to allocate so that it may
1693 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001694 */
David Rientjes465adcf2013-04-29 15:08:45 -07001695 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001696 set_thread_flag(TIF_MEMDIE);
1697 return;
1698 }
1699
1700 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001701 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1702 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001703 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001704 struct task_struct *task;
1705
Tejun Heo72ec7022013-08-08 20:11:26 -04001706 css_task_iter_start(&iter->css, &it);
1707 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001708 switch (oom_scan_process_thread(task, totalpages, NULL,
1709 false)) {
1710 case OOM_SCAN_SELECT:
1711 if (chosen)
1712 put_task_struct(chosen);
1713 chosen = task;
1714 chosen_points = ULONG_MAX;
1715 get_task_struct(chosen);
1716 /* fall through */
1717 case OOM_SCAN_CONTINUE:
1718 continue;
1719 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001720 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001721 mem_cgroup_iter_break(memcg, iter);
1722 if (chosen)
1723 put_task_struct(chosen);
1724 return;
1725 case OOM_SCAN_OK:
1726 break;
1727 };
1728 points = oom_badness(task, memcg, NULL, totalpages);
1729 if (points > chosen_points) {
1730 if (chosen)
1731 put_task_struct(chosen);
1732 chosen = task;
1733 chosen_points = points;
1734 get_task_struct(chosen);
1735 }
1736 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001737 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001738 }
1739
1740 if (!chosen)
1741 return;
1742 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001743 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1744 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001745}
1746
Johannes Weiner56600482012-01-12 17:17:59 -08001747static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1748 gfp_t gfp_mask,
1749 unsigned long flags)
1750{
1751 unsigned long total = 0;
1752 bool noswap = false;
1753 int loop;
1754
1755 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1756 noswap = true;
1757 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1758 noswap = true;
1759
1760 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1761 if (loop)
1762 drain_all_stock_async(memcg);
1763 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1764 /*
1765 * Allow limit shrinkers, which are triggered directly
1766 * by userspace, to catch signals and stop reclaim
1767 * after minimal progress, regardless of the margin.
1768 */
1769 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1770 break;
1771 if (mem_cgroup_margin(memcg))
1772 break;
1773 /*
1774 * If nothing was reclaimed after two attempts, there
1775 * may be no reclaimable pages in this hierarchy.
1776 */
1777 if (loop && !total)
1778 break;
1779 }
1780 return total;
1781}
1782
Michal Hockoe8831102013-09-12 15:13:23 -07001783#if MAX_NUMNODES > 1
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001784/**
1785 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001786 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001787 * @nid: the node ID to be checked.
1788 * @noswap : specify true here if the user wants flle only information.
1789 *
1790 * This function returns whether the specified memcg contains any
1791 * reclaimable pages on a node. Returns true if there are any reclaimable
1792 * pages in the node.
1793 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001794static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001795 int nid, bool noswap)
1796{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001797 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001798 return true;
1799 if (noswap || !total_swap_pages)
1800 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001801 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001802 return true;
1803 return false;
1804
1805}
Ying Han889976d2011-05-26 16:25:33 -07001806
1807/*
1808 * Always updating the nodemask is not very good - even if we have an empty
1809 * list or the wrong list here, we can start from some node and traverse all
1810 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1811 *
1812 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001813static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001814{
1815 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001816 /*
1817 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1818 * pagein/pageout changes since the last update.
1819 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001820 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001821 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001822 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001823 return;
1824
Ying Han889976d2011-05-26 16:25:33 -07001825 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001826 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001827
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001828 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001829
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001830 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1831 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001832 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001833
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001834 atomic_set(&memcg->numainfo_events, 0);
1835 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001836}
1837
1838/*
1839 * Selecting a node where we start reclaim from. Because what we need is just
1840 * reducing usage counter, start from anywhere is O,K. Considering
1841 * memory reclaim from current node, there are pros. and cons.
1842 *
1843 * Freeing memory from current node means freeing memory from a node which
1844 * we'll use or we've used. So, it may make LRU bad. And if several threads
1845 * hit limits, it will see a contention on a node. But freeing from remote
1846 * node means more costs for memory reclaim because of memory latency.
1847 *
1848 * Now, we use round-robin. Better algorithm is welcomed.
1849 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001850int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001851{
1852 int node;
1853
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001854 mem_cgroup_may_update_nodemask(memcg);
1855 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001856
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001857 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001858 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001859 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001860 /*
1861 * We call this when we hit limit, not when pages are added to LRU.
1862 * No LRU may hold pages because all pages are UNEVICTABLE or
1863 * memcg is too small and all pages are not on LRU. In that case,
1864 * we use curret node.
1865 */
1866 if (unlikely(node == MAX_NUMNODES))
1867 node = numa_node_id();
1868
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001869 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001870 return node;
1871}
1872
1873#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001874int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001875{
1876 return 0;
1877}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001878
Ying Han889976d2011-05-26 16:25:33 -07001879#endif
1880
Michal Hocko3b387222013-09-12 15:13:21 -07001881/*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001882 * A group is eligible for the soft limit reclaim under the given root
1883 * hierarchy if
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001884 * a) it is over its soft limit
1885 * b) any parent up the hierarchy is over its soft limit
Michal Hocko7d910c02013-09-12 15:13:28 -07001886 *
1887 * If the given group doesn't have any children over the limit then it
1888 * doesn't make any sense to iterate its subtree.
Michal Hocko3b387222013-09-12 15:13:21 -07001889 */
Michal Hockode577802013-09-12 15:13:26 -07001890enum mem_cgroup_filter_t
1891mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg,
Michal Hockoa5b7c872013-09-12 15:13:25 -07001892 struct mem_cgroup *root)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001893{
Michal Hockoe839b6a2013-09-12 15:13:30 -07001894 struct mem_cgroup *parent;
1895
1896 if (!memcg)
1897 memcg = root_mem_cgroup;
1898 parent = memcg;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001899
Michal Hocko3b387222013-09-12 15:13:21 -07001900 if (res_counter_soft_limit_excess(&memcg->res))
Michal Hockode577802013-09-12 15:13:26 -07001901 return VISIT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001902
Michal Hocko3b387222013-09-12 15:13:21 -07001903 /*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001904 * If any parent up to the root in the hierarchy is over its soft limit
1905 * then we have to obey and reclaim from this group as well.
Michal Hocko3b387222013-09-12 15:13:21 -07001906 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001907 while ((parent = parent_mem_cgroup(parent))) {
Michal Hocko3b387222013-09-12 15:13:21 -07001908 if (res_counter_soft_limit_excess(&parent->res))
Michal Hockode577802013-09-12 15:13:26 -07001909 return VISIT;
Michal Hockoa5b7c872013-09-12 15:13:25 -07001910 if (parent == root)
1911 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001912 }
Michal Hocko3b387222013-09-12 15:13:21 -07001913
Michal Hocko7d910c02013-09-12 15:13:28 -07001914 if (!atomic_read(&memcg->children_in_excess))
1915 return SKIP_TREE;
Michal Hockode577802013-09-12 15:13:26 -07001916 return SKIP;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001917}
1918
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001919/*
1920 * Check OOM-Killer is already running under our hierarchy.
1921 * If someone is running, return false.
Michal Hocko1af8efe2011-07-26 16:08:24 -07001922 * Has to be called with memcg_oom_lock
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001923 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001924static bool mem_cgroup_oom_lock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001925{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001926 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001927
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001928 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001929 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001930 /*
1931 * this subtree of our hierarchy is already locked
1932 * so we cannot give a lock.
1933 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001934 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001935 mem_cgroup_iter_break(memcg, iter);
1936 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001937 } else
1938 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001939 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001940
Michal Hocko79dfdac2011-07-26 16:08:23 -07001941 if (!failed)
Johannes Weiner23751be2011-08-25 15:59:16 -07001942 return true;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001943
1944 /*
1945 * OK, we failed to lock the whole subtree so we have to clean up
1946 * what we set up to the failing subtree
1947 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001948 for_each_mem_cgroup_tree(iter, memcg) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001949 if (iter == failed) {
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001950 mem_cgroup_iter_break(memcg, iter);
1951 break;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001952 }
1953 iter->oom_lock = false;
1954 }
Johannes Weiner23751be2011-08-25 15:59:16 -07001955 return false;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001956}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001957
Michal Hocko79dfdac2011-07-26 16:08:23 -07001958/*
Michal Hocko1af8efe2011-07-26 16:08:24 -07001959 * Has to be called with memcg_oom_lock
Michal Hocko79dfdac2011-07-26 16:08:23 -07001960 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001961static int mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001962{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001963 struct mem_cgroup *iter;
1964
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001965 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001966 iter->oom_lock = false;
1967 return 0;
1968}
1969
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001970static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001971{
1972 struct mem_cgroup *iter;
1973
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001974 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001975 atomic_inc(&iter->under_oom);
1976}
1977
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001978static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001979{
1980 struct mem_cgroup *iter;
1981
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001982 /*
1983 * When a new child is created while the hierarchy is under oom,
1984 * mem_cgroup_oom_lock() may not be called. We have to use
1985 * atomic_add_unless() here.
1986 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001987 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001988 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001989}
1990
Michal Hocko1af8efe2011-07-26 16:08:24 -07001991static DEFINE_SPINLOCK(memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001992static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1993
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001994struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001995 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001996 wait_queue_t wait;
1997};
1998
1999static int memcg_oom_wake_function(wait_queue_t *wait,
2000 unsigned mode, int sync, void *arg)
2001{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002002 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
2003 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002004 struct oom_wait_info *oom_wait_info;
2005
2006 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002007 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002008
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002009 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002010 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002011 * Then we can use css_is_ancestor without taking care of RCU.
2012 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002013 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
2014 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002015 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002016 return autoremove_wake_function(wait, mode, sync, arg);
2017}
2018
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002019static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002020{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002021 /* for filtering, pass "memcg" as argument. */
2022 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002023}
2024
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002025static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002026{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002027 if (memcg && atomic_read(&memcg->under_oom))
2028 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002029}
2030
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002031/*
2032 * try to call OOM killer. returns false if we should exit memory-reclaim loop.
2033 */
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -07002034static bool mem_cgroup_handle_oom(struct mem_cgroup *memcg, gfp_t mask,
2035 int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002036{
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002037 struct oom_wait_info owait;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002038 bool locked, need_to_kill;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002039
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002040 owait.memcg = memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002041 owait.wait.flags = 0;
2042 owait.wait.func = memcg_oom_wake_function;
2043 owait.wait.private = current;
2044 INIT_LIST_HEAD(&owait.wait.task_list);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002045 need_to_kill = true;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002046 mem_cgroup_mark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07002047
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002048 /* At first, try to OOM lock hierarchy under memcg.*/
Michal Hocko1af8efe2011-07-26 16:08:24 -07002049 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002050 locked = mem_cgroup_oom_lock(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002051 /*
2052 * Even if signal_pending(), we can't quit charge() loop without
2053 * accounting. So, UNINTERRUPTIBLE is appropriate. But SIGKILL
2054 * under OOM is always welcomed, use TASK_KILLABLE here.
2055 */
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002056 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002057 if (!locked || memcg->oom_kill_disable)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002058 need_to_kill = false;
2059 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002060 mem_cgroup_oom_notify(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07002061 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002062
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002063 if (need_to_kill) {
2064 finish_wait(&memcg_oom_waitq, &owait.wait);
David Rientjese845e192012-03-21 16:34:10 -07002065 mem_cgroup_out_of_memory(memcg, mask, order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002066 } else {
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002067 schedule();
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002068 finish_wait(&memcg_oom_waitq, &owait.wait);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002069 }
Michal Hocko1af8efe2011-07-26 16:08:24 -07002070 spin_lock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07002071 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002072 mem_cgroup_oom_unlock(memcg);
2073 memcg_wakeup_oom(memcg);
Michal Hocko1af8efe2011-07-26 16:08:24 -07002074 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002075
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002076 mem_cgroup_unmark_under_oom(memcg);
Michal Hocko79dfdac2011-07-26 16:08:23 -07002077
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002078 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
2079 return false;
2080 /* Give chance to dying process */
KAMEZAWA Hiroyuki715a5ee2011-11-02 13:38:18 -07002081 schedule_timeout_uninterruptible(1);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002082 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002083}
2084
Balbir Singhd69b0422009-06-17 16:26:34 -07002085/*
2086 * Currently used to update mapped file statistics, but the routine can be
2087 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002088 *
2089 * Notes: Race condition
2090 *
2091 * We usually use page_cgroup_lock() for accessing page_cgroup member but
2092 * it tends to be costly. But considering some conditions, we doesn't need
2093 * to do so _always_.
2094 *
2095 * Considering "charge", lock_page_cgroup() is not required because all
2096 * file-stat operations happen after a page is attached to radix-tree. There
2097 * are no race with "charge".
2098 *
2099 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2100 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2101 * if there are race with "uncharge". Statistics itself is properly handled
2102 * by flags.
2103 *
2104 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002105 * small, we check mm->moving_account and detect there are possibility of race
2106 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002107 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002108
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002109void __mem_cgroup_begin_update_page_stat(struct page *page,
2110 bool *locked, unsigned long *flags)
2111{
2112 struct mem_cgroup *memcg;
2113 struct page_cgroup *pc;
2114
2115 pc = lookup_page_cgroup(page);
2116again:
2117 memcg = pc->mem_cgroup;
2118 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2119 return;
2120 /*
2121 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002122 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002123 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002124 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002125 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002126 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002127 return;
2128
2129 move_lock_mem_cgroup(memcg, flags);
2130 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2131 move_unlock_mem_cgroup(memcg, flags);
2132 goto again;
2133 }
2134 *locked = true;
2135}
2136
2137void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2138{
2139 struct page_cgroup *pc = lookup_page_cgroup(page);
2140
2141 /*
2142 * It's guaranteed that pc->mem_cgroup never changes while
2143 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002144 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002145 */
2146 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2147}
2148
Greg Thelen2a7106f2011-01-13 15:47:37 -08002149void mem_cgroup_update_page_stat(struct page *page,
2150 enum mem_cgroup_page_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002151{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002152 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002153 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002154 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002155
Johannes Weinercfa44942012-01-12 17:18:38 -08002156 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002157 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002158
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002159 memcg = pc->mem_cgroup;
2160 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002161 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002162
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002163 switch (idx) {
Greg Thelen2a7106f2011-01-13 15:47:37 -08002164 case MEMCG_NR_FILE_MAPPED:
Greg Thelen2a7106f2011-01-13 15:47:37 -08002165 idx = MEM_CGROUP_STAT_FILE_MAPPED;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002166 break;
2167 default:
2168 BUG();
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -07002169 }
Balbir Singhd69b0422009-06-17 16:26:34 -07002170
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002171 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002172}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002173
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002174/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002175 * size of first charge trial. "32" comes from vmscan.c's magic value.
2176 * TODO: maybe necessary to use big numbers in big irons.
2177 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002178#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002179struct memcg_stock_pcp {
2180 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002181 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002182 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002183 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002184#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002185};
2186static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002187static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002188
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002189/**
2190 * consume_stock: Try to consume stocked charge on this cpu.
2191 * @memcg: memcg to consume from.
2192 * @nr_pages: how many pages to charge.
2193 *
2194 * The charges will only happen if @memcg matches the current cpu's memcg
2195 * stock, and at least @nr_pages are available in that stock. Failure to
2196 * service an allocation will refill the stock.
2197 *
2198 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002199 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002200static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002201{
2202 struct memcg_stock_pcp *stock;
2203 bool ret = true;
2204
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002205 if (nr_pages > CHARGE_BATCH)
2206 return false;
2207
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002208 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002209 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2210 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002211 else /* need to call res_counter_charge */
2212 ret = false;
2213 put_cpu_var(memcg_stock);
2214 return ret;
2215}
2216
2217/*
2218 * Returns stocks cached in percpu to res_counter and reset cached information.
2219 */
2220static void drain_stock(struct memcg_stock_pcp *stock)
2221{
2222 struct mem_cgroup *old = stock->cached;
2223
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002224 if (stock->nr_pages) {
2225 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2226
2227 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002228 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002229 res_counter_uncharge(&old->memsw, bytes);
2230 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002231 }
2232 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002233}
2234
2235/*
2236 * This must be called under preempt disabled or must be called by
2237 * a thread which is pinned to local cpu.
2238 */
2239static void drain_local_stock(struct work_struct *dummy)
2240{
2241 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2242 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002243 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002244}
2245
Michal Hockoe4777492013-02-22 16:35:40 -08002246static void __init memcg_stock_init(void)
2247{
2248 int cpu;
2249
2250 for_each_possible_cpu(cpu) {
2251 struct memcg_stock_pcp *stock =
2252 &per_cpu(memcg_stock, cpu);
2253 INIT_WORK(&stock->work, drain_local_stock);
2254 }
2255}
2256
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002257/*
2258 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002259 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002260 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002261static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002262{
2263 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2264
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002265 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002266 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002267 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002268 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002269 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002270 put_cpu_var(memcg_stock);
2271}
2272
2273/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002274 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002275 * of the hierarchy under it. sync flag says whether we should block
2276 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002277 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002278static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002279{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002280 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002281
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002282 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002283 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002284 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002285 for_each_online_cpu(cpu) {
2286 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002287 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002288
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002289 memcg = stock->cached;
2290 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002291 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002292 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002293 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002294 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2295 if (cpu == curcpu)
2296 drain_local_stock(&stock->work);
2297 else
2298 schedule_work_on(cpu, &stock->work);
2299 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002300 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002301 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002302
2303 if (!sync)
2304 goto out;
2305
2306 for_each_online_cpu(cpu) {
2307 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002308 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002309 flush_work(&stock->work);
2310 }
2311out:
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002312 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002313}
2314
2315/*
2316 * Tries to drain stocked charges in other cpus. This function is asynchronous
2317 * and just put a work per cpu for draining localy on each cpu. Caller can
2318 * expects some charges will be back to res_counter later but cannot wait for
2319 * it.
2320 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002321static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002322{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002323 /*
2324 * If someone calls draining, avoid adding more kworker runs.
2325 */
2326 if (!mutex_trylock(&percpu_charge_mutex))
2327 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002328 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002329 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002330}
2331
2332/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002333static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002334{
2335 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002336 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002337 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002338 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002339}
2340
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002341/*
2342 * This function drains percpu counter value from DEAD cpu and
2343 * move it to local cpu. Note that this function can be preempted.
2344 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002345static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002346{
2347 int i;
2348
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002349 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002350 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002351 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002352
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002353 per_cpu(memcg->stat->count[i], cpu) = 0;
2354 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002355 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002356 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002357 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002358
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002359 per_cpu(memcg->stat->events[i], cpu) = 0;
2360 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002361 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002362 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002363}
2364
Paul Gortmaker0db06282013-06-19 14:53:51 -04002365static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002366 unsigned long action,
2367 void *hcpu)
2368{
2369 int cpu = (unsigned long)hcpu;
2370 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002371 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002372
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002373 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002374 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002375
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002376 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002377 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002378
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002379 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002380 mem_cgroup_drain_pcp_counter(iter, cpu);
2381
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002382 stock = &per_cpu(memcg_stock, cpu);
2383 drain_stock(stock);
2384 return NOTIFY_OK;
2385}
2386
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002387
2388/* See __mem_cgroup_try_charge() for details */
2389enum {
2390 CHARGE_OK, /* success */
2391 CHARGE_RETRY, /* need to retry but retry is not bad */
2392 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2393 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
2394 CHARGE_OOM_DIE, /* the current is killed because of OOM */
2395};
2396
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002397static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002398 unsigned int nr_pages, unsigned int min_pages,
2399 bool oom_check)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002400{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002401 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002402 struct mem_cgroup *mem_over_limit;
2403 struct res_counter *fail_res;
2404 unsigned long flags = 0;
2405 int ret;
2406
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002407 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002408
2409 if (likely(!ret)) {
2410 if (!do_swap_account)
2411 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002412 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002413 if (likely(!ret))
2414 return CHARGE_OK;
2415
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002416 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002417 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2418 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2419 } else
2420 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002421 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002422 * Never reclaim on behalf of optional batching, retry with a
2423 * single page instead.
2424 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002425 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002426 return CHARGE_RETRY;
2427
2428 if (!(gfp_mask & __GFP_WAIT))
2429 return CHARGE_WOULDBLOCK;
2430
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002431 if (gfp_mask & __GFP_NORETRY)
2432 return CHARGE_NOMEM;
2433
Johannes Weiner56600482012-01-12 17:17:59 -08002434 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002435 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002436 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002437 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002438 * Even though the limit is exceeded at this point, reclaim
2439 * may have been able to free some pages. Retry the charge
2440 * before killing the task.
2441 *
2442 * Only for regular pages, though: huge pages are rather
2443 * unlikely to succeed so close to the limit, and we fall back
2444 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002445 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002446 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002447 return CHARGE_RETRY;
2448
2449 /*
2450 * At task move, charge accounts can be doubly counted. So, it's
2451 * better to wait until the end of task_move if something is going on.
2452 */
2453 if (mem_cgroup_wait_acct_move(mem_over_limit))
2454 return CHARGE_RETRY;
2455
2456 /* If we don't need to call oom-killer at el, return immediately */
2457 if (!oom_check)
2458 return CHARGE_NOMEM;
2459 /* check OOM */
David Rientjese845e192012-03-21 16:34:10 -07002460 if (!mem_cgroup_handle_oom(mem_over_limit, gfp_mask, get_order(csize)))
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002461 return CHARGE_OOM_DIE;
2462
2463 return CHARGE_RETRY;
2464}
2465
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002466/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002467 * __mem_cgroup_try_charge() does
2468 * 1. detect memcg to be charged against from passed *mm and *ptr,
2469 * 2. update res_counter
2470 * 3. call memory reclaim if necessary.
2471 *
2472 * In some special case, if the task is fatal, fatal_signal_pending() or
2473 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2474 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2475 * as possible without any hazards. 2: all pages should have a valid
2476 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2477 * pointer, that is treated as a charge to root_mem_cgroup.
2478 *
2479 * So __mem_cgroup_try_charge() will return
2480 * 0 ... on success, filling *ptr with a valid memcg pointer.
2481 * -ENOMEM ... charge failure because of resource limits.
2482 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2483 *
2484 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2485 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002486 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002487static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002488 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002489 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002490 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002491 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002492{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002493 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002494 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002495 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002496 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002497
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002498 /*
2499 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2500 * in system level. So, allow to go ahead dying process in addition to
2501 * MEMDIE process.
2502 */
2503 if (unlikely(test_thread_flag(TIF_MEMDIE)
2504 || fatal_signal_pending(current)))
2505 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002506
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002507 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002508 * We always charge the cgroup the mm_struct belongs to.
2509 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002510 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002511 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002512 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002513 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002514 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002515again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002516 if (*ptr) { /* css should be a valid one */
2517 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002518 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002519 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002520 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002521 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002522 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002523 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002524 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002525
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002526 rcu_read_lock();
2527 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002528 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002529 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002530 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002531 * race with swapoff. Then, we have small risk of mis-accouning.
2532 * But such kind of mis-account by race always happens because
2533 * we don't have cgroup_mutex(). It's overkill and we allo that
2534 * small race, here.
2535 * (*) swapoff at el will charge against mm-struct not against
2536 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002537 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002538 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002539 if (!memcg)
2540 memcg = root_mem_cgroup;
2541 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002542 rcu_read_unlock();
2543 goto done;
2544 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002545 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002546 /*
2547 * It seems dagerous to access memcg without css_get().
2548 * But considering how consume_stok works, it's not
2549 * necessary. If consume_stock success, some charges
2550 * from this memcg are cached on this cpu. So, we
2551 * don't need to call css_get()/css_tryget() before
2552 * calling consume_stock().
2553 */
2554 rcu_read_unlock();
2555 goto done;
2556 }
2557 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002558 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002559 rcu_read_unlock();
2560 goto again;
2561 }
2562 rcu_read_unlock();
2563 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002564
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002565 do {
2566 bool oom_check;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002567
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002568 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002569 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002570 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002571 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002572 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002573
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002574 oom_check = false;
2575 if (oom && !nr_oom_retries) {
2576 oom_check = true;
2577 nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
2578 }
Balbir Singh6d61ef42009-01-07 18:08:06 -08002579
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002580 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch, nr_pages,
2581 oom_check);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002582 switch (ret) {
2583 case CHARGE_OK:
2584 break;
2585 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002586 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002587 css_put(&memcg->css);
2588 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002589 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002590 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002591 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002592 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002593 case CHARGE_NOMEM: /* OOM routine works */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002594 if (!oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002595 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002596 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002597 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002598 /* If oom, we never return -ENOMEM */
2599 nr_oom_retries--;
2600 break;
2601 case CHARGE_OOM_DIE: /* Killed by OOM Killer */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002602 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002603 goto bypass;
Balbir Singh66e17072008-02-07 00:13:56 -08002604 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002605 } while (ret != CHARGE_OK);
2606
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002607 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002608 refill_stock(memcg, batch - nr_pages);
2609 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002610done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002611 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002612 return 0;
2613nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002614 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002615 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002616bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002617 *ptr = root_mem_cgroup;
2618 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002619}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002620
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002621/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002622 * Somemtimes we have to undo a charge we got by try_charge().
2623 * This function is for that and do uncharge, put css's refcnt.
2624 * gotten by try_charge().
2625 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002626static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002627 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002628{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002629 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002630 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002631
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002632 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002633 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002634 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002635 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002636}
2637
2638/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002639 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2640 * This is useful when moving usage to parent cgroup.
2641 */
2642static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2643 unsigned int nr_pages)
2644{
2645 unsigned long bytes = nr_pages * PAGE_SIZE;
2646
2647 if (mem_cgroup_is_root(memcg))
2648 return;
2649
2650 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2651 if (do_swap_account)
2652 res_counter_uncharge_until(&memcg->memsw,
2653 memcg->memsw.parent, bytes);
2654}
2655
2656/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002657 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002658 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2659 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2660 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002661 */
2662static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2663{
2664 struct cgroup_subsys_state *css;
2665
2666 /* ID 0 is unused ID */
2667 if (!id)
2668 return NULL;
2669 css = css_lookup(&mem_cgroup_subsys, id);
2670 if (!css)
2671 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002672 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002673}
2674
Wu Fengguange42d9d52009-12-16 12:19:59 +01002675struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002676{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002677 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002678 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002679 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002680 swp_entry_t ent;
2681
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002682 VM_BUG_ON(!PageLocked(page));
2683
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002684 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002685 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002686 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002687 memcg = pc->mem_cgroup;
2688 if (memcg && !css_tryget(&memcg->css))
2689 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002690 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002691 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002692 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002693 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002694 memcg = mem_cgroup_lookup(id);
2695 if (memcg && !css_tryget(&memcg->css))
2696 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002697 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002698 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002699 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002700 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002701}
2702
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002703static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002704 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002705 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002706 enum charge_type ctype,
2707 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002708{
Johannes Weinerce587e62012-04-24 20:22:33 +02002709 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002710 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002711 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002712 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002713 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002714
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002715 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002716 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002717 /*
2718 * we don't need page_cgroup_lock about tail pages, becase they are not
2719 * accessed by any other context at this point.
2720 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002721
2722 /*
2723 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2724 * may already be on some other mem_cgroup's LRU. Take care of it.
2725 */
2726 if (lrucare) {
2727 zone = page_zone(page);
2728 spin_lock_irq(&zone->lru_lock);
2729 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002730 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002731 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002732 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002733 was_on_lru = true;
2734 }
2735 }
2736
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002737 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002738 /*
2739 * We access a page_cgroup asynchronously without lock_page_cgroup().
2740 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2741 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2742 * before USED bit, we need memory barrier here.
2743 * See mem_cgroup_add_lru_list(), etc.
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002744 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002745 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002746 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002747
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002748 if (lrucare) {
2749 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002750 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002751 VM_BUG_ON(PageLRU(page));
2752 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002753 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002754 }
2755 spin_unlock_irq(&zone->lru_lock);
2756 }
2757
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002758 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002759 anon = true;
2760 else
2761 anon = false;
2762
David Rientjesb070e652013-05-07 16:18:09 -07002763 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002764 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002765
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002766 /*
Michal Hockoe8831102013-09-12 15:13:23 -07002767 * "charge_statistics" updated event counter.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002768 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002769 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002770}
2771
Glauber Costa7cf27982012-12-18 14:22:55 -08002772static DEFINE_MUTEX(set_limit_mutex);
2773
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002774#ifdef CONFIG_MEMCG_KMEM
2775static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2776{
2777 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2778 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2779}
2780
Glauber Costa1f458cb2012-12-18 14:22:50 -08002781/*
2782 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2783 * in the memcg_cache_params struct.
2784 */
2785static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2786{
2787 struct kmem_cache *cachep;
2788
2789 VM_BUG_ON(p->is_root_cache);
2790 cachep = p->root_cache;
2791 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2792}
2793
Glauber Costa749c5412012-12-18 14:23:01 -08002794#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002795static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2796 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002797{
Tejun Heo182446d2013-08-08 20:11:24 -04002798 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002799 struct memcg_cache_params *params;
2800
2801 if (!memcg_can_account_kmem(memcg))
2802 return -EIO;
2803
2804 print_slabinfo_header(m);
2805
2806 mutex_lock(&memcg->slab_caches_mutex);
2807 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2808 cache_show(memcg_params_to_cache(params), m);
2809 mutex_unlock(&memcg->slab_caches_mutex);
2810
2811 return 0;
2812}
2813#endif
2814
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002815static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2816{
2817 struct res_counter *fail_res;
2818 struct mem_cgroup *_memcg;
2819 int ret = 0;
2820 bool may_oom;
2821
2822 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2823 if (ret)
2824 return ret;
2825
2826 /*
2827 * Conditions under which we can wait for the oom_killer. Those are
2828 * the same conditions tested by the core page allocator
2829 */
2830 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2831
2832 _memcg = memcg;
2833 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2834 &_memcg, may_oom);
2835
2836 if (ret == -EINTR) {
2837 /*
2838 * __mem_cgroup_try_charge() chosed to bypass to root due to
2839 * OOM kill or fatal signal. Since our only options are to
2840 * either fail the allocation or charge it to this cgroup, do
2841 * it as a temporary condition. But we can't fail. From a
2842 * kmem/slab perspective, the cache has already been selected,
2843 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2844 * our minds.
2845 *
2846 * This condition will only trigger if the task entered
2847 * memcg_charge_kmem in a sane state, but was OOM-killed during
2848 * __mem_cgroup_try_charge() above. Tasks that were already
2849 * dying when the allocation triggers should have been already
2850 * directed to the root cgroup in memcontrol.h
2851 */
2852 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2853 if (do_swap_account)
2854 res_counter_charge_nofail(&memcg->memsw, size,
2855 &fail_res);
2856 ret = 0;
2857 } else if (ret)
2858 res_counter_uncharge(&memcg->kmem, size);
2859
2860 return ret;
2861}
2862
2863static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2864{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002865 res_counter_uncharge(&memcg->res, size);
2866 if (do_swap_account)
2867 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002868
2869 /* Not down to 0 */
2870 if (res_counter_uncharge(&memcg->kmem, size))
2871 return;
2872
Li Zefan10d5ebf2013-07-08 16:00:33 -07002873 /*
2874 * Releases a reference taken in kmem_cgroup_css_offline in case
2875 * this last uncharge is racing with the offlining code or it is
2876 * outliving the memcg existence.
2877 *
2878 * The memory barrier imposed by test&clear is paired with the
2879 * explicit one in memcg_kmem_mark_dead().
2880 */
Glauber Costa7de37682012-12-18 14:22:07 -08002881 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002882 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002883}
2884
Glauber Costa2633d7a2012-12-18 14:22:34 -08002885void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2886{
2887 if (!memcg)
2888 return;
2889
2890 mutex_lock(&memcg->slab_caches_mutex);
2891 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2892 mutex_unlock(&memcg->slab_caches_mutex);
2893}
2894
2895/*
2896 * helper for acessing a memcg's index. It will be used as an index in the
2897 * child cache array in kmem_cache, and also to derive its name. This function
2898 * will return -1 when this is not a kmem-limited memcg.
2899 */
2900int memcg_cache_id(struct mem_cgroup *memcg)
2901{
2902 return memcg ? memcg->kmemcg_id : -1;
2903}
2904
Glauber Costa55007d82012-12-18 14:22:38 -08002905/*
2906 * This ends up being protected by the set_limit mutex, during normal
2907 * operation, because that is its main call site.
2908 *
2909 * But when we create a new cache, we can call this as well if its parent
2910 * is kmem-limited. That will have to hold set_limit_mutex as well.
2911 */
2912int memcg_update_cache_sizes(struct mem_cgroup *memcg)
2913{
2914 int num, ret;
2915
2916 num = ida_simple_get(&kmem_limited_groups,
2917 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2918 if (num < 0)
2919 return num;
2920 /*
2921 * After this point, kmem_accounted (that we test atomically in
2922 * the beginning of this conditional), is no longer 0. This
2923 * guarantees only one process will set the following boolean
2924 * to true. We don't need test_and_set because we're protected
2925 * by the set_limit_mutex anyway.
2926 */
2927 memcg_kmem_set_activated(memcg);
2928
2929 ret = memcg_update_all_caches(num+1);
2930 if (ret) {
2931 ida_simple_remove(&kmem_limited_groups, num);
2932 memcg_kmem_clear_activated(memcg);
2933 return ret;
2934 }
2935
2936 memcg->kmemcg_id = num;
2937 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
2938 mutex_init(&memcg->slab_caches_mutex);
2939 return 0;
2940}
2941
2942static size_t memcg_caches_array_size(int num_groups)
2943{
2944 ssize_t size;
2945 if (num_groups <= 0)
2946 return 0;
2947
2948 size = 2 * num_groups;
2949 if (size < MEMCG_CACHES_MIN_SIZE)
2950 size = MEMCG_CACHES_MIN_SIZE;
2951 else if (size > MEMCG_CACHES_MAX_SIZE)
2952 size = MEMCG_CACHES_MAX_SIZE;
2953
2954 return size;
2955}
2956
2957/*
2958 * We should update the current array size iff all caches updates succeed. This
2959 * can only be done from the slab side. The slab mutex needs to be held when
2960 * calling this.
2961 */
2962void memcg_update_array_size(int num)
2963{
2964 if (num > memcg_limited_groups_array_size)
2965 memcg_limited_groups_array_size = memcg_caches_array_size(num);
2966}
2967
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08002968static void kmem_cache_destroy_work_func(struct work_struct *w);
2969
Glauber Costa55007d82012-12-18 14:22:38 -08002970int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
2971{
2972 struct memcg_cache_params *cur_params = s->memcg_params;
2973
2974 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
2975
2976 if (num_groups > memcg_limited_groups_array_size) {
2977 int i;
2978 ssize_t size = memcg_caches_array_size(num_groups);
2979
2980 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07002981 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08002982
2983 s->memcg_params = kzalloc(size, GFP_KERNEL);
2984 if (!s->memcg_params) {
2985 s->memcg_params = cur_params;
2986 return -ENOMEM;
2987 }
2988
2989 s->memcg_params->is_root_cache = true;
2990
2991 /*
2992 * There is the chance it will be bigger than
2993 * memcg_limited_groups_array_size, if we failed an allocation
2994 * in a cache, in which case all caches updated before it, will
2995 * have a bigger array.
2996 *
2997 * But if that is the case, the data after
2998 * memcg_limited_groups_array_size is certainly unused
2999 */
3000 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3001 if (!cur_params->memcg_caches[i])
3002 continue;
3003 s->memcg_params->memcg_caches[i] =
3004 cur_params->memcg_caches[i];
3005 }
3006
3007 /*
3008 * Ideally, we would wait until all caches succeed, and only
3009 * then free the old one. But this is not worth the extra
3010 * pointer per-cache we'd have to have for this.
3011 *
3012 * It is not a big deal if some caches are left with a size
3013 * bigger than the others. And all updates will reset this
3014 * anyway.
3015 */
3016 kfree(cur_params);
3017 }
3018 return 0;
3019}
3020
Glauber Costa943a4512012-12-18 14:23:03 -08003021int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3022 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08003023{
Andrey Vagin90c7a792013-09-11 14:22:18 -07003024 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003025
3026 if (!memcg_kmem_enabled())
3027 return 0;
3028
Andrey Vagin90c7a792013-09-11 14:22:18 -07003029 if (!memcg) {
3030 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003031 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003032 } else
3033 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08003034
Glauber Costa2633d7a2012-12-18 14:22:34 -08003035 s->memcg_params = kzalloc(size, GFP_KERNEL);
3036 if (!s->memcg_params)
3037 return -ENOMEM;
3038
Glauber Costa943a4512012-12-18 14:23:03 -08003039 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08003040 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08003041 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07003042 INIT_WORK(&s->memcg_params->destroy,
3043 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08003044 } else
3045 s->memcg_params->is_root_cache = true;
3046
Glauber Costa2633d7a2012-12-18 14:22:34 -08003047 return 0;
3048}
3049
3050void memcg_release_cache(struct kmem_cache *s)
3051{
Glauber Costad7f25f82012-12-18 14:22:40 -08003052 struct kmem_cache *root;
3053 struct mem_cgroup *memcg;
3054 int id;
3055
3056 /*
3057 * This happens, for instance, when a root cache goes away before we
3058 * add any memcg.
3059 */
3060 if (!s->memcg_params)
3061 return;
3062
3063 if (s->memcg_params->is_root_cache)
3064 goto out;
3065
3066 memcg = s->memcg_params->memcg;
3067 id = memcg_cache_id(memcg);
3068
3069 root = s->memcg_params->root_cache;
3070 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08003071
3072 mutex_lock(&memcg->slab_caches_mutex);
3073 list_del(&s->memcg_params->list);
3074 mutex_unlock(&memcg->slab_caches_mutex);
3075
Li Zefan20f05312013-07-08 16:00:31 -07003076 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003077out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08003078 kfree(s->memcg_params);
3079}
3080
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003081/*
3082 * During the creation a new cache, we need to disable our accounting mechanism
3083 * altogether. This is true even if we are not creating, but rather just
3084 * enqueing new caches to be created.
3085 *
3086 * This is because that process will trigger allocations; some visible, like
3087 * explicit kmallocs to auxiliary data structures, name strings and internal
3088 * cache structures; some well concealed, like INIT_WORK() that can allocate
3089 * objects during debug.
3090 *
3091 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3092 * to it. This may not be a bounded recursion: since the first cache creation
3093 * failed to complete (waiting on the allocation), we'll just try to create the
3094 * cache again, failing at the same point.
3095 *
3096 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3097 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3098 * inside the following two functions.
3099 */
3100static inline void memcg_stop_kmem_account(void)
3101{
3102 VM_BUG_ON(!current->mm);
3103 current->memcg_kmem_skip_account++;
3104}
3105
3106static inline void memcg_resume_kmem_account(void)
3107{
3108 VM_BUG_ON(!current->mm);
3109 current->memcg_kmem_skip_account--;
3110}
3111
Glauber Costa1f458cb2012-12-18 14:22:50 -08003112static void kmem_cache_destroy_work_func(struct work_struct *w)
3113{
3114 struct kmem_cache *cachep;
3115 struct memcg_cache_params *p;
3116
3117 p = container_of(w, struct memcg_cache_params, destroy);
3118
3119 cachep = memcg_params_to_cache(p);
3120
Glauber Costa22933152012-12-18 14:22:59 -08003121 /*
3122 * If we get down to 0 after shrink, we could delete right away.
3123 * However, memcg_release_pages() already puts us back in the workqueue
3124 * in that case. If we proceed deleting, we'll get a dangling
3125 * reference, and removing the object from the workqueue in that case
3126 * is unnecessary complication. We are not a fast path.
3127 *
3128 * Note that this case is fundamentally different from racing with
3129 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3130 * kmem_cache_shrink, not only we would be reinserting a dead cache
3131 * into the queue, but doing so from inside the worker racing to
3132 * destroy it.
3133 *
3134 * So if we aren't down to zero, we'll just schedule a worker and try
3135 * again
3136 */
3137 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3138 kmem_cache_shrink(cachep);
3139 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3140 return;
3141 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003142 kmem_cache_destroy(cachep);
3143}
3144
3145void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3146{
3147 if (!cachep->memcg_params->dead)
3148 return;
3149
3150 /*
Glauber Costa22933152012-12-18 14:22:59 -08003151 * There are many ways in which we can get here.
3152 *
3153 * We can get to a memory-pressure situation while the delayed work is
3154 * still pending to run. The vmscan shrinkers can then release all
3155 * cache memory and get us to destruction. If this is the case, we'll
3156 * be executed twice, which is a bug (the second time will execute over
3157 * bogus data). In this case, cancelling the work should be fine.
3158 *
3159 * But we can also get here from the worker itself, if
3160 * kmem_cache_shrink is enough to shake all the remaining objects and
3161 * get the page count to 0. In this case, we'll deadlock if we try to
3162 * cancel the work (the worker runs with an internal lock held, which
3163 * is the same lock we would hold for cancel_work_sync().)
3164 *
3165 * Since we can't possibly know who got us here, just refrain from
3166 * running if there is already work pending
3167 */
3168 if (work_pending(&cachep->memcg_params->destroy))
3169 return;
3170 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003171 * We have to defer the actual destroying to a workqueue, because
3172 * we might currently be in a context that cannot sleep.
3173 */
3174 schedule_work(&cachep->memcg_params->destroy);
3175}
3176
Glauber Costad7f25f82012-12-18 14:22:40 -08003177/*
3178 * This lock protects updaters, not readers. We want readers to be as fast as
3179 * they can, and they will either see NULL or a valid cache value. Our model
3180 * allow them to see NULL, in which case the root memcg will be selected.
3181 *
3182 * We need this lock because multiple allocations to the same cache from a non
3183 * will span more than one worker. Only one of them can create the cache.
3184 */
3185static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003186
3187/*
3188 * Called with memcg_cache_mutex held
3189 */
3190static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3191 struct kmem_cache *s)
3192{
3193 struct kmem_cache *new;
3194 static char *tmp_name = NULL;
3195
3196 lockdep_assert_held(&memcg_cache_mutex);
3197
3198 /*
3199 * kmem_cache_create_memcg duplicates the given name and
3200 * cgroup_name for this name requires RCU context.
3201 * This static temporary buffer is used to prevent from
3202 * pointless shortliving allocation.
3203 */
3204 if (!tmp_name) {
3205 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3206 if (!tmp_name)
3207 return NULL;
3208 }
3209
3210 rcu_read_lock();
3211 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3212 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3213 rcu_read_unlock();
3214
3215 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3216 (s->flags & ~SLAB_PANIC), s->ctor, s);
3217
3218 if (new)
3219 new->allocflags |= __GFP_KMEMCG;
3220
3221 return new;
3222}
3223
Glauber Costad7f25f82012-12-18 14:22:40 -08003224static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3225 struct kmem_cache *cachep)
3226{
3227 struct kmem_cache *new_cachep;
3228 int idx;
3229
3230 BUG_ON(!memcg_can_account_kmem(memcg));
3231
3232 idx = memcg_cache_id(memcg);
3233
3234 mutex_lock(&memcg_cache_mutex);
3235 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003236 if (new_cachep) {
3237 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003238 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003239 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003240
3241 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003242 if (new_cachep == NULL) {
3243 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003244 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003245 goto out;
3246 }
3247
Glauber Costa1f458cb2012-12-18 14:22:50 -08003248 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003249
3250 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3251 /*
3252 * the readers won't lock, make sure everybody sees the updated value,
3253 * so they won't put stuff in the queue again for no reason
3254 */
3255 wmb();
3256out:
3257 mutex_unlock(&memcg_cache_mutex);
3258 return new_cachep;
3259}
3260
Glauber Costa7cf27982012-12-18 14:22:55 -08003261void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3262{
3263 struct kmem_cache *c;
3264 int i;
3265
3266 if (!s->memcg_params)
3267 return;
3268 if (!s->memcg_params->is_root_cache)
3269 return;
3270
3271 /*
3272 * If the cache is being destroyed, we trust that there is no one else
3273 * requesting objects from it. Even if there are, the sanity checks in
3274 * kmem_cache_destroy should caught this ill-case.
3275 *
3276 * Still, we don't want anyone else freeing memcg_caches under our
3277 * noses, which can happen if a new memcg comes to life. As usual,
3278 * we'll take the set_limit_mutex to protect ourselves against this.
3279 */
3280 mutex_lock(&set_limit_mutex);
3281 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3282 c = s->memcg_params->memcg_caches[i];
3283 if (!c)
3284 continue;
3285
3286 /*
3287 * We will now manually delete the caches, so to avoid races
3288 * we need to cancel all pending destruction workers and
3289 * proceed with destruction ourselves.
3290 *
3291 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3292 * and that could spawn the workers again: it is likely that
3293 * the cache still have active pages until this very moment.
3294 * This would lead us back to mem_cgroup_destroy_cache.
3295 *
3296 * But that will not execute at all if the "dead" flag is not
3297 * set, so flip it down to guarantee we are in control.
3298 */
3299 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003300 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003301 kmem_cache_destroy(c);
3302 }
3303 mutex_unlock(&set_limit_mutex);
3304}
3305
Glauber Costad7f25f82012-12-18 14:22:40 -08003306struct create_work {
3307 struct mem_cgroup *memcg;
3308 struct kmem_cache *cachep;
3309 struct work_struct work;
3310};
3311
Glauber Costa1f458cb2012-12-18 14:22:50 -08003312static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3313{
3314 struct kmem_cache *cachep;
3315 struct memcg_cache_params *params;
3316
3317 if (!memcg_kmem_is_active(memcg))
3318 return;
3319
3320 mutex_lock(&memcg->slab_caches_mutex);
3321 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3322 cachep = memcg_params_to_cache(params);
3323 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003324 schedule_work(&cachep->memcg_params->destroy);
3325 }
3326 mutex_unlock(&memcg->slab_caches_mutex);
3327}
3328
Glauber Costad7f25f82012-12-18 14:22:40 -08003329static void memcg_create_cache_work_func(struct work_struct *w)
3330{
3331 struct create_work *cw;
3332
3333 cw = container_of(w, struct create_work, work);
3334 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003335 kfree(cw);
3336}
3337
3338/*
3339 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003340 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003341static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3342 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003343{
3344 struct create_work *cw;
3345
3346 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003347 if (cw == NULL) {
3348 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003349 return;
3350 }
3351
3352 cw->memcg = memcg;
3353 cw->cachep = cachep;
3354
3355 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3356 schedule_work(&cw->work);
3357}
3358
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003359static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3360 struct kmem_cache *cachep)
3361{
3362 /*
3363 * We need to stop accounting when we kmalloc, because if the
3364 * corresponding kmalloc cache is not yet created, the first allocation
3365 * in __memcg_create_cache_enqueue will recurse.
3366 *
3367 * However, it is better to enclose the whole function. Depending on
3368 * the debugging options enabled, INIT_WORK(), for instance, can
3369 * trigger an allocation. This too, will make us recurse. Because at
3370 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3371 * the safest choice is to do it like this, wrapping the whole function.
3372 */
3373 memcg_stop_kmem_account();
3374 __memcg_create_cache_enqueue(memcg, cachep);
3375 memcg_resume_kmem_account();
3376}
Glauber Costad7f25f82012-12-18 14:22:40 -08003377/*
3378 * Return the kmem_cache we're supposed to use for a slab allocation.
3379 * We try to use the current memcg's version of the cache.
3380 *
3381 * If the cache does not exist yet, if we are the first user of it,
3382 * we either create it immediately, if possible, or create it asynchronously
3383 * in a workqueue.
3384 * In the latter case, we will let the current allocation go through with
3385 * the original cache.
3386 *
3387 * Can't be called in interrupt context or from kernel threads.
3388 * This function needs to be called with rcu_read_lock() held.
3389 */
3390struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3391 gfp_t gfp)
3392{
3393 struct mem_cgroup *memcg;
3394 int idx;
3395
3396 VM_BUG_ON(!cachep->memcg_params);
3397 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3398
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003399 if (!current->mm || current->memcg_kmem_skip_account)
3400 return cachep;
3401
Glauber Costad7f25f82012-12-18 14:22:40 -08003402 rcu_read_lock();
3403 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003404
3405 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003406 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003407
3408 idx = memcg_cache_id(memcg);
3409
3410 /*
3411 * barrier to mare sure we're always seeing the up to date value. The
3412 * code updating memcg_caches will issue a write barrier to match this.
3413 */
3414 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003415 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3416 cachep = cachep->memcg_params->memcg_caches[idx];
3417 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003418 }
3419
Li Zefanca0dde92013-04-29 15:08:57 -07003420 /* The corresponding put will be done in the workqueue. */
3421 if (!css_tryget(&memcg->css))
3422 goto out;
3423 rcu_read_unlock();
3424
3425 /*
3426 * If we are in a safe context (can wait, and not in interrupt
3427 * context), we could be be predictable and return right away.
3428 * This would guarantee that the allocation being performed
3429 * already belongs in the new cache.
3430 *
3431 * However, there are some clashes that can arrive from locking.
3432 * For instance, because we acquire the slab_mutex while doing
3433 * kmem_cache_dup, this means no further allocation could happen
3434 * with the slab_mutex held.
3435 *
3436 * Also, because cache creation issue get_online_cpus(), this
3437 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3438 * that ends up reversed during cpu hotplug. (cpuset allocates
3439 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3440 * better to defer everything.
3441 */
3442 memcg_create_cache_enqueue(memcg, cachep);
3443 return cachep;
3444out:
3445 rcu_read_unlock();
3446 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003447}
3448EXPORT_SYMBOL(__memcg_kmem_get_cache);
3449
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003450/*
3451 * We need to verify if the allocation against current->mm->owner's memcg is
3452 * possible for the given order. But the page is not allocated yet, so we'll
3453 * need a further commit step to do the final arrangements.
3454 *
3455 * It is possible for the task to switch cgroups in this mean time, so at
3456 * commit time, we can't rely on task conversion any longer. We'll then use
3457 * the handle argument to return to the caller which cgroup we should commit
3458 * against. We could also return the memcg directly and avoid the pointer
3459 * passing, but a boolean return value gives better semantics considering
3460 * the compiled-out case as well.
3461 *
3462 * Returning true means the allocation is possible.
3463 */
3464bool
3465__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3466{
3467 struct mem_cgroup *memcg;
3468 int ret;
3469
3470 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003471
3472 /*
3473 * Disabling accounting is only relevant for some specific memcg
3474 * internal allocations. Therefore we would initially not have such
3475 * check here, since direct calls to the page allocator that are marked
3476 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3477 * concerned with cache allocations, and by having this test at
3478 * memcg_kmem_get_cache, we are already able to relay the allocation to
3479 * the root cache and bypass the memcg cache altogether.
3480 *
3481 * There is one exception, though: the SLUB allocator does not create
3482 * large order caches, but rather service large kmallocs directly from
3483 * the page allocator. Therefore, the following sequence when backed by
3484 * the SLUB allocator:
3485 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003486 * memcg_stop_kmem_account();
3487 * kmalloc(<large_number>)
3488 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003489 *
3490 * would effectively ignore the fact that we should skip accounting,
3491 * since it will drive us directly to this function without passing
3492 * through the cache selector memcg_kmem_get_cache. Such large
3493 * allocations are extremely rare but can happen, for instance, for the
3494 * cache arrays. We bring this test here.
3495 */
3496 if (!current->mm || current->memcg_kmem_skip_account)
3497 return true;
3498
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003499 memcg = try_get_mem_cgroup_from_mm(current->mm);
3500
3501 /*
3502 * very rare case described in mem_cgroup_from_task. Unfortunately there
3503 * isn't much we can do without complicating this too much, and it would
3504 * be gfp-dependent anyway. Just let it go
3505 */
3506 if (unlikely(!memcg))
3507 return true;
3508
3509 if (!memcg_can_account_kmem(memcg)) {
3510 css_put(&memcg->css);
3511 return true;
3512 }
3513
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003514 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3515 if (!ret)
3516 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003517
3518 css_put(&memcg->css);
3519 return (ret == 0);
3520}
3521
3522void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3523 int order)
3524{
3525 struct page_cgroup *pc;
3526
3527 VM_BUG_ON(mem_cgroup_is_root(memcg));
3528
3529 /* The page allocation failed. Revert */
3530 if (!page) {
3531 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003532 return;
3533 }
3534
3535 pc = lookup_page_cgroup(page);
3536 lock_page_cgroup(pc);
3537 pc->mem_cgroup = memcg;
3538 SetPageCgroupUsed(pc);
3539 unlock_page_cgroup(pc);
3540}
3541
3542void __memcg_kmem_uncharge_pages(struct page *page, int order)
3543{
3544 struct mem_cgroup *memcg = NULL;
3545 struct page_cgroup *pc;
3546
3547
3548 pc = lookup_page_cgroup(page);
3549 /*
3550 * Fast unlocked return. Theoretically might have changed, have to
3551 * check again after locking.
3552 */
3553 if (!PageCgroupUsed(pc))
3554 return;
3555
3556 lock_page_cgroup(pc);
3557 if (PageCgroupUsed(pc)) {
3558 memcg = pc->mem_cgroup;
3559 ClearPageCgroupUsed(pc);
3560 }
3561 unlock_page_cgroup(pc);
3562
3563 /*
3564 * We trust that only if there is a memcg associated with the page, it
3565 * is a valid allocation
3566 */
3567 if (!memcg)
3568 return;
3569
3570 VM_BUG_ON(mem_cgroup_is_root(memcg));
3571 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003572}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003573#else
3574static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3575{
3576}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003577#endif /* CONFIG_MEMCG_KMEM */
3578
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003579#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3580
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003581#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003582/*
3583 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003584 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3585 * charge/uncharge will be never happen and move_account() is done under
3586 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003587 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003588void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003589{
3590 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003591 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003592 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003593 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003594
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003595 if (mem_cgroup_disabled())
3596 return;
David Rientjesb070e652013-05-07 16:18:09 -07003597
3598 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003599 for (i = 1; i < HPAGE_PMD_NR; i++) {
3600 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003601 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003602 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003603 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3604 }
David Rientjesb070e652013-05-07 16:18:09 -07003605 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3606 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003607}
Hugh Dickins12d27102012-01-12 17:19:52 -08003608#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003609
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003610/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003611 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003612 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003613 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003614 * @pc: page_cgroup of the page.
3615 * @from: mem_cgroup which the page is moved from.
3616 * @to: mem_cgroup which the page is moved to. @from != @to.
3617 *
3618 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003619 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003620 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003621 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003622 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3623 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003624 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003625static int mem_cgroup_move_account(struct page *page,
3626 unsigned int nr_pages,
3627 struct page_cgroup *pc,
3628 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003629 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003630{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003631 unsigned long flags;
3632 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003633 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003634
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003635 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003636 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003637 /*
3638 * The page is isolated from LRU. So, collapse function
3639 * will not handle this page. But page splitting can happen.
3640 * Do this check under compound_page_lock(). The caller should
3641 * hold it.
3642 */
3643 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003644 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003645 goto out;
3646
3647 lock_page_cgroup(pc);
3648
3649 ret = -EINVAL;
3650 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3651 goto unlock;
3652
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003653 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003654
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003655 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08003656 /* Update mapped_file data for mem_cgroup */
3657 preempt_disable();
3658 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3659 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3660 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07003661 }
David Rientjesb070e652013-05-07 16:18:09 -07003662 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003663
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003664 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003665 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003666 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003667 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003668 ret = 0;
3669unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003670 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003671 /*
3672 * check events
3673 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003674 memcg_check_events(to, page);
3675 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003676out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003677 return ret;
3678}
3679
Michal Hocko2ef37d32012-10-26 13:37:30 +02003680/**
3681 * mem_cgroup_move_parent - moves page to the parent group
3682 * @page: the page to move
3683 * @pc: page_cgroup of the page
3684 * @child: page's cgroup
3685 *
3686 * move charges to its parent or the root cgroup if the group has no
3687 * parent (aka use_hierarchy==0).
3688 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3689 * mem_cgroup_move_account fails) the failure is always temporary and
3690 * it signals a race with a page removal/uncharge or migration. In the
3691 * first case the page is on the way out and it will vanish from the LRU
3692 * on the next attempt and the call should be retried later.
3693 * Isolation from the LRU fails only if page has been isolated from
3694 * the LRU since we looked at it and that usually means either global
3695 * reclaim or migration going on. The page will either get back to the
3696 * LRU or vanish.
3697 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3698 * (!PageCgroupUsed) or moved to a different group. The page will
3699 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003700 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003701static int mem_cgroup_move_parent(struct page *page,
3702 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003703 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003704{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003705 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003706 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003707 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003708 int ret;
3709
Michal Hockod8423012012-10-26 13:37:29 +02003710 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003711
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003712 ret = -EBUSY;
3713 if (!get_page_unless_zero(page))
3714 goto out;
3715 if (isolate_lru_page(page))
3716 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003717
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003718 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003719
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003720 parent = parent_mem_cgroup(child);
3721 /*
3722 * If no parent, move charges to root cgroup.
3723 */
3724 if (!parent)
3725 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003726
Michal Hocko2ef37d32012-10-26 13:37:30 +02003727 if (nr_pages > 1) {
3728 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003729 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003730 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003731
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003732 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003733 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003734 if (!ret)
3735 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003736
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003737 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003738 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003739 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003740put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003741 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003742out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003743 return ret;
3744}
3745
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003746/*
3747 * Charge the memory controller for page usage.
3748 * Return
3749 * 0 if the charge was successful
3750 * < 0 if the cgroup is over its limit
3751 */
3752static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003753 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003754{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003755 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003756 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003757 bool oom = true;
3758 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003759
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003760 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003761 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003762 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003763 /*
3764 * Never OOM-kill a process for a huge page. The
3765 * fault handler will fall back to regular pages.
3766 */
3767 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003768 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003769
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003770 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003771 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003772 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003773 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003774 return 0;
3775}
3776
3777int mem_cgroup_newpage_charge(struct page *page,
3778 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003779{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003780 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003781 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003782 VM_BUG_ON(page_mapped(page));
3783 VM_BUG_ON(page->mapping && !PageAnon(page));
3784 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003785 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003786 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003787}
3788
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003789/*
3790 * While swap-in, try_charge -> commit or cancel, the page is locked.
3791 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003792 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003793 * "commit()" or removed by "cancel()"
3794 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003795static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3796 struct page *page,
3797 gfp_t mask,
3798 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003799{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003800 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003801 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003802 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003803
Johannes Weiner90deb782012-07-31 16:45:47 -07003804 pc = lookup_page_cgroup(page);
3805 /*
3806 * Every swap fault against a single page tries to charge the
3807 * page, bail as early as possible. shmem_unuse() encounters
3808 * already charged pages, too. The USED bit is protected by
3809 * the page lock, which serializes swap cache removal, which
3810 * in turn serializes uncharging.
3811 */
3812 if (PageCgroupUsed(pc))
3813 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003814 if (!do_swap_account)
3815 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003816 memcg = try_get_mem_cgroup_from_page(page);
3817 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003818 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003819 *memcgp = memcg;
3820 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003821 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003822 if (ret == -EINTR)
3823 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003824 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003825charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003826 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3827 if (ret == -EINTR)
3828 ret = 0;
3829 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003830}
3831
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003832int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3833 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3834{
3835 *memcgp = NULL;
3836 if (mem_cgroup_disabled())
3837 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07003838 /*
3839 * A racing thread's fault, or swapoff, may have already
3840 * updated the pte, and even removed page from swap cache: in
3841 * those cases unuse_pte()'s pte_same() test will fail; but
3842 * there's also a KSM case which does need to charge the page.
3843 */
3844 if (!PageSwapCache(page)) {
3845 int ret;
3846
3847 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3848 if (ret == -EINTR)
3849 ret = 0;
3850 return ret;
3851 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003852 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3853}
3854
Johannes Weiner827a03d2012-07-31 16:45:36 -07003855void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3856{
3857 if (mem_cgroup_disabled())
3858 return;
3859 if (!memcg)
3860 return;
3861 __mem_cgroup_cancel_charge(memcg, 1);
3862}
3863
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003864static void
Johannes Weiner72835c82012-01-12 17:18:32 -08003865__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003866 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003867{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003868 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003869 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08003870 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003871 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07003872
Johannes Weinerce587e62012-04-24 20:22:33 +02003873 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003874 /*
3875 * Now swap is on-memory. This means this page may be
3876 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003877 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3878 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3879 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003880 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003881 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003882 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07003883 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003884 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003885}
3886
Johannes Weiner72835c82012-01-12 17:18:32 -08003887void mem_cgroup_commit_charge_swapin(struct page *page,
3888 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003889{
Johannes Weiner72835c82012-01-12 17:18:32 -08003890 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003891 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003892}
3893
Johannes Weiner827a03d2012-07-31 16:45:36 -07003894int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3895 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003896{
Johannes Weiner827a03d2012-07-31 16:45:36 -07003897 struct mem_cgroup *memcg = NULL;
3898 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3899 int ret;
3900
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003901 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07003902 return 0;
3903 if (PageCompound(page))
3904 return 0;
3905
Johannes Weiner827a03d2012-07-31 16:45:36 -07003906 if (!PageSwapCache(page))
3907 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3908 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003909 ret = __mem_cgroup_try_charge_swapin(mm, page,
3910 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07003911 if (!ret)
3912 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3913 }
3914 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003915}
3916
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003917static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003918 unsigned int nr_pages,
3919 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003920{
3921 struct memcg_batch_info *batch = NULL;
3922 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003923
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003924 /* If swapout, usage of swap doesn't decrease */
3925 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3926 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003927
3928 batch = &current->memcg_batch;
3929 /*
3930 * In usual, we do css_get() when we remember memcg pointer.
3931 * But in this case, we keep res->usage until end of a series of
3932 * uncharges. Then, it's ok to ignore memcg's refcnt.
3933 */
3934 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003935 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003936 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003937 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003938 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003939 * the same cgroup and we have chance to coalesce uncharges.
3940 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3941 * because we want to do uncharge as soon as possible.
3942 */
3943
3944 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
3945 goto direct_uncharge;
3946
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003947 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08003948 goto direct_uncharge;
3949
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003950 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003951 * In typical case, batch->memcg == mem. This means we can
3952 * merge a series of uncharges to an uncharge of res_counter.
3953 * If not, we uncharge res_counter ony by one.
3954 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003955 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003956 goto direct_uncharge;
3957 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003958 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003959 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07003960 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003961 return;
3962direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003963 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003964 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003965 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
3966 if (unlikely(batch->memcg != memcg))
3967 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003968}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003969
Balbir Singh8697d332008-02-07 00:13:59 -08003970/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07003971 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003972 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003973static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07003974__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
3975 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003976{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003977 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003978 unsigned int nr_pages = 1;
3979 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003980 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003981
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003982 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003983 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07003984
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003985 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003986 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003987 VM_BUG_ON(!PageTransHuge(page));
3988 }
Balbir Singh8697d332008-02-07 00:13:59 -08003989 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08003990 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08003991 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003992 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08003993 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003994 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003995
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07003996 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08003997
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003998 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003999
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004000 if (!PageCgroupUsed(pc))
4001 goto unlock_out;
4002
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004003 anon = PageAnon(page);
4004
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004005 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004006 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07004007 /*
4008 * Generally PageAnon tells if it's the anon statistics to be
4009 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4010 * used before page reached the stage of being marked PageAnon.
4011 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004012 anon = true;
4013 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004014 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004015 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07004016 if (page_mapped(page))
4017 goto unlock_out;
4018 /*
4019 * Pages under migration may not be uncharged. But
4020 * end_migration() /must/ be the one uncharging the
4021 * unused post-migration page and so it has to call
4022 * here with the migration bit still set. See the
4023 * res_counter handling below.
4024 */
4025 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004026 goto unlock_out;
4027 break;
4028 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4029 if (!PageAnon(page)) { /* Shared memory */
4030 if (page->mapping && !page_is_file_cache(page))
4031 goto unlock_out;
4032 } else if (page_mapped(page)) /* Anon */
4033 goto unlock_out;
4034 break;
4035 default:
4036 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004037 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004038
David Rientjesb070e652013-05-07 16:18:09 -07004039 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004040
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004041 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08004042 /*
4043 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4044 * freed from LRU. This is safe because uncharged page is expected not
4045 * to be reused (freed soon). Exception is SwapCache, it's handled by
4046 * special functions.
4047 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004048
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004049 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004050 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004051 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07004052 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004053 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004054 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004055 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004056 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07004057 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004058 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004059 /*
4060 * Migration does not charge the res_counter for the
4061 * replacement page, so leave it alone when phasing out the
4062 * page that is unused after the migration.
4063 */
4064 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004065 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004066
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004067 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004068
4069unlock_out:
4070 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004071 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08004072}
4073
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004074void mem_cgroup_uncharge_page(struct page *page)
4075{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004076 /* early check. */
4077 if (page_mapped(page))
4078 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08004079 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07004080 /*
4081 * If the page is in swap cache, uncharge should be deferred
4082 * to the swap path, which also properly accounts swap usage
4083 * and handles memcg lifetime.
4084 *
4085 * Note that this check is not stable and reclaim may add the
4086 * page to swap cache at any time after this. However, if the
4087 * page is not in swap cache by the time page->mapcount hits
4088 * 0, there won't be any page table references to the swap
4089 * slot, and reclaim will free it and not actually write the
4090 * page to disk.
4091 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07004092 if (PageSwapCache(page))
4093 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07004094 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004095}
4096
4097void mem_cgroup_uncharge_cache_page(struct page *page)
4098{
4099 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07004100 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07004101 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004102}
4103
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004104/*
4105 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4106 * In that cases, pages are freed continuously and we can expect pages
4107 * are in the same memcg. All these calls itself limits the number of
4108 * pages freed at once, then uncharge_start/end() is called properly.
4109 * This may be called prural(2) times in a context,
4110 */
4111
4112void mem_cgroup_uncharge_start(void)
4113{
4114 current->memcg_batch.do_batch++;
4115 /* We can do nest. */
4116 if (current->memcg_batch.do_batch == 1) {
4117 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004118 current->memcg_batch.nr_pages = 0;
4119 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004120 }
4121}
4122
4123void mem_cgroup_uncharge_end(void)
4124{
4125 struct memcg_batch_info *batch = &current->memcg_batch;
4126
4127 if (!batch->do_batch)
4128 return;
4129
4130 batch->do_batch--;
4131 if (batch->do_batch) /* If stacked, do nothing. */
4132 return;
4133
4134 if (!batch->memcg)
4135 return;
4136 /*
4137 * This "batch->memcg" is valid without any css_get/put etc...
4138 * bacause we hide charges behind us.
4139 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004140 if (batch->nr_pages)
4141 res_counter_uncharge(&batch->memcg->res,
4142 batch->nr_pages * PAGE_SIZE);
4143 if (batch->memsw_nr_pages)
4144 res_counter_uncharge(&batch->memcg->memsw,
4145 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004146 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004147 /* forget this pointer (for sanity check) */
4148 batch->memcg = NULL;
4149}
4150
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004151#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004152/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004153 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004154 * memcg information is recorded to swap_cgroup of "ent"
4155 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004156void
4157mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004158{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004159 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004160 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004161
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004162 if (!swapout) /* this was a swap cache but the swap is unused ! */
4163 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4164
Johannes Weiner0030f532012-07-31 16:45:25 -07004165 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004166
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004167 /*
4168 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004169 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004170 */
4171 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004172 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004173}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004174#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004175
Andrew Mortonc255a452012-07-31 16:43:02 -07004176#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004177/*
4178 * called from swap_entry_free(). remove record in swap_cgroup and
4179 * uncharge "memsw" account.
4180 */
4181void mem_cgroup_uncharge_swap(swp_entry_t ent)
4182{
4183 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004184 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004185
4186 if (!do_swap_account)
4187 return;
4188
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004189 id = swap_cgroup_record(ent, 0);
4190 rcu_read_lock();
4191 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004192 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004193 /*
4194 * We uncharge this because swap is freed.
4195 * This memcg can be obsolete one. We avoid calling css_tryget
4196 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004197 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004198 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004199 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004200 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004201 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004202 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004203}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004204
4205/**
4206 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4207 * @entry: swap entry to be moved
4208 * @from: mem_cgroup which the entry is moved from
4209 * @to: mem_cgroup which the entry is moved to
4210 *
4211 * It succeeds only when the swap_cgroup's record for this entry is the same
4212 * as the mem_cgroup's id of @from.
4213 *
4214 * Returns 0 on success, -EINVAL on failure.
4215 *
4216 * The caller must have charged to @to, IOW, called res_counter_charge() about
4217 * both res and memsw, and called css_get().
4218 */
4219static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004220 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004221{
4222 unsigned short old_id, new_id;
4223
4224 old_id = css_id(&from->css);
4225 new_id = css_id(&to->css);
4226
4227 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004228 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004229 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004230 /*
4231 * This function is only called from task migration context now.
4232 * It postpones res_counter and refcount handling till the end
4233 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004234 * improvement. But we cannot postpone css_get(to) because if
4235 * the process that has been moved to @to does swap-in, the
4236 * refcount of @to might be decreased to 0.
4237 *
4238 * We are in attach() phase, so the cgroup is guaranteed to be
4239 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004240 */
Li Zefan40503772013-07-08 16:00:34 -07004241 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004242 return 0;
4243 }
4244 return -EINVAL;
4245}
4246#else
4247static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004248 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004249{
4250 return -EINVAL;
4251}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004252#endif
4253
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004254/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004255 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4256 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004257 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004258void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4259 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004260{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004261 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004262 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004263 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004264 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004265
Johannes Weiner72835c82012-01-12 17:18:32 -08004266 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004267
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004268 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004269 return;
Balbir Singh40779602008-04-04 14:29:59 -07004270
Mel Gormanb32967f2012-11-19 12:35:47 +00004271 if (PageTransHuge(page))
4272 nr_pages <<= compound_order(page);
4273
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004274 pc = lookup_page_cgroup(page);
4275 lock_page_cgroup(pc);
4276 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004277 memcg = pc->mem_cgroup;
4278 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004279 /*
4280 * At migrating an anonymous page, its mapcount goes down
4281 * to 0 and uncharge() will be called. But, even if it's fully
4282 * unmapped, migration may fail and this page has to be
4283 * charged again. We set MIGRATION flag here and delay uncharge
4284 * until end_migration() is called
4285 *
4286 * Corner Case Thinking
4287 * A)
4288 * When the old page was mapped as Anon and it's unmap-and-freed
4289 * while migration was ongoing.
4290 * If unmap finds the old page, uncharge() of it will be delayed
4291 * until end_migration(). If unmap finds a new page, it's
4292 * uncharged when it make mapcount to be 1->0. If unmap code
4293 * finds swap_migration_entry, the new page will not be mapped
4294 * and end_migration() will find it(mapcount==0).
4295 *
4296 * B)
4297 * When the old page was mapped but migraion fails, the kernel
4298 * remaps it. A charge for it is kept by MIGRATION flag even
4299 * if mapcount goes down to 0. We can do remap successfully
4300 * without charging it again.
4301 *
4302 * C)
4303 * The "old" page is under lock_page() until the end of
4304 * migration, so, the old page itself will not be swapped-out.
4305 * If the new page is swapped out before end_migraton, our
4306 * hook to usual swap-out path will catch the event.
4307 */
4308 if (PageAnon(page))
4309 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004310 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004311 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004312 /*
4313 * If the page is not charged at this point,
4314 * we return here.
4315 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004316 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004317 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004318
Johannes Weiner72835c82012-01-12 17:18:32 -08004319 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004320 /*
4321 * We charge new page before it's used/mapped. So, even if unlock_page()
4322 * is called before end_migration, we can catch all events on this new
4323 * page. In the case new page is migrated but not remapped, new page's
4324 * mapcount will be finally 0 and we call uncharge in end_migration().
4325 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004326 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004327 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004328 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004329 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004330 /*
4331 * The page is committed to the memcg, but it's not actually
4332 * charged to the res_counter since we plan on replacing the
4333 * old one and only one page is going to be left afterwards.
4334 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004335 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004336}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004337
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004338/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004339void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004340 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004341{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004342 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004343 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004344 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004345
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004346 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004347 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004348
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004349 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004350 used = oldpage;
4351 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004352 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004353 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004354 unused = oldpage;
4355 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004356 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004357 __mem_cgroup_uncharge_common(unused,
4358 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4359 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4360 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004361 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004362 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004363 * We disallowed uncharge of pages under migration because mapcount
4364 * of the page goes down to zero, temporarly.
4365 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004366 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004367 pc = lookup_page_cgroup(oldpage);
4368 lock_page_cgroup(pc);
4369 ClearPageCgroupMigration(pc);
4370 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004371
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004372 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004373 * If a page is a file cache, radix-tree replacement is very atomic
4374 * and we can skip this check. When it was an Anon page, its mapcount
4375 * goes down to 0. But because we added MIGRATION flage, it's not
4376 * uncharged yet. There are several case but page->mapcount check
4377 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4378 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004379 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004380 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004381 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004382}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004383
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004384/*
4385 * At replace page cache, newpage is not under any memcg but it's on
4386 * LRU. So, this function doesn't touch res_counter but handles LRU
4387 * in correct way. Both pages are locked so we cannot race with uncharge.
4388 */
4389void mem_cgroup_replace_page_cache(struct page *oldpage,
4390 struct page *newpage)
4391{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004392 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004393 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004394 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004395
4396 if (mem_cgroup_disabled())
4397 return;
4398
4399 pc = lookup_page_cgroup(oldpage);
4400 /* fix accounting on old pages */
4401 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004402 if (PageCgroupUsed(pc)) {
4403 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004404 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004405 ClearPageCgroupUsed(pc);
4406 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004407 unlock_page_cgroup(pc);
4408
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004409 /*
4410 * When called from shmem_replace_page(), in some cases the
4411 * oldpage has already been charged, and in some cases not.
4412 */
4413 if (!memcg)
4414 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004415 /*
4416 * Even if newpage->mapping was NULL before starting replacement,
4417 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4418 * LRU while we overwrite pc->mem_cgroup.
4419 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004420 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004421}
4422
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004423#ifdef CONFIG_DEBUG_VM
4424static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4425{
4426 struct page_cgroup *pc;
4427
4428 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004429 /*
4430 * Can be NULL while feeding pages into the page allocator for
4431 * the first time, i.e. during boot or memory hotplug;
4432 * or when mem_cgroup_disabled().
4433 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004434 if (likely(pc) && PageCgroupUsed(pc))
4435 return pc;
4436 return NULL;
4437}
4438
4439bool mem_cgroup_bad_page_check(struct page *page)
4440{
4441 if (mem_cgroup_disabled())
4442 return false;
4443
4444 return lookup_page_cgroup_used(page) != NULL;
4445}
4446
4447void mem_cgroup_print_bad_page(struct page *page)
4448{
4449 struct page_cgroup *pc;
4450
4451 pc = lookup_page_cgroup_used(page);
4452 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004453 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4454 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004455 }
4456}
4457#endif
4458
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004459static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004460 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004461{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004462 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004463 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004464 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004465 int children = mem_cgroup_count_children(memcg);
4466 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004467 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004468
4469 /*
4470 * For keeping hierarchical_reclaim simple, how long we should retry
4471 * is depends on callers. We set our retry-count to be function
4472 * of # of children which we should visit in this loop.
4473 */
4474 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4475
4476 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004477
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004478 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004479 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004480 if (signal_pending(current)) {
4481 ret = -EINTR;
4482 break;
4483 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004484 /*
4485 * Rather than hide all in some function, I do this in
4486 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004487 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004488 */
4489 mutex_lock(&set_limit_mutex);
4490 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4491 if (memswlimit < val) {
4492 ret = -EINVAL;
4493 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004494 break;
4495 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004496
4497 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4498 if (memlimit < val)
4499 enlarge = 1;
4500
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004501 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004502 if (!ret) {
4503 if (memswlimit == val)
4504 memcg->memsw_is_minimum = true;
4505 else
4506 memcg->memsw_is_minimum = false;
4507 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004508 mutex_unlock(&set_limit_mutex);
4509
4510 if (!ret)
4511 break;
4512
Johannes Weiner56600482012-01-12 17:17:59 -08004513 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4514 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004515 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4516 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004517 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004518 retry_count--;
4519 else
4520 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004521 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004522 if (!ret && enlarge)
4523 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004524
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004525 return ret;
4526}
4527
Li Zefan338c8432009-06-17 16:27:15 -07004528static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4529 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004530{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004531 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004532 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004533 int children = mem_cgroup_count_children(memcg);
4534 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004535 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004536
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004537 /* see mem_cgroup_resize_res_limit */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004538 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004539 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004540 while (retry_count) {
4541 if (signal_pending(current)) {
4542 ret = -EINTR;
4543 break;
4544 }
4545 /*
4546 * Rather than hide all in some function, I do this in
4547 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004548 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004549 */
4550 mutex_lock(&set_limit_mutex);
4551 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4552 if (memlimit > val) {
4553 ret = -EINVAL;
4554 mutex_unlock(&set_limit_mutex);
4555 break;
4556 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004557 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4558 if (memswlimit < val)
4559 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004560 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004561 if (!ret) {
4562 if (memlimit == val)
4563 memcg->memsw_is_minimum = true;
4564 else
4565 memcg->memsw_is_minimum = false;
4566 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004567 mutex_unlock(&set_limit_mutex);
4568
4569 if (!ret)
4570 break;
4571
Johannes Weiner56600482012-01-12 17:17:59 -08004572 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4573 MEM_CGROUP_RECLAIM_NOSWAP |
4574 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004575 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004576 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004577 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004578 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004579 else
4580 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004581 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004582 if (!ret && enlarge)
4583 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004584 return ret;
4585}
4586
Michal Hocko2ef37d32012-10-26 13:37:30 +02004587/**
4588 * mem_cgroup_force_empty_list - clears LRU of a group
4589 * @memcg: group to clear
4590 * @node: NUMA node
4591 * @zid: zone id
4592 * @lru: lru to to clear
4593 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004594 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004595 * reclaim the pages page themselves - pages are moved to the parent (or root)
4596 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004597 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004598static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004599 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004600{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004601 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004602 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004603 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004604 struct page *busy;
4605 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004606
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004607 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004608 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4609 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004610
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004611 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004612 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004613 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004614 struct page *page;
4615
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004616 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004617 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004618 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004619 break;
4620 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004621 page = list_entry(list->prev, struct page, lru);
4622 if (busy == page) {
4623 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004624 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004625 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004626 continue;
4627 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004628 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004629
Johannes Weiner925b7672012-01-12 17:18:15 -08004630 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004631
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004632 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004633 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004634 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004635 cond_resched();
4636 } else
4637 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004638 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004639}
4640
4641/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004642 * make mem_cgroup's charge to be 0 if there is no task by moving
4643 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004644 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004645 *
4646 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004647 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004648static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004649{
Michal Hockoc26251f2012-10-26 13:37:28 +02004650 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004651 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004652
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004653 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004654 /* This is for making all *used* pages to be on LRU. */
4655 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004656 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004657 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004658 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004659 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004660 enum lru_list lru;
4661 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004662 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004663 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004664 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004665 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004666 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004667 mem_cgroup_end_move(memcg);
4668 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004669 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004670
Michal Hocko2ef37d32012-10-26 13:37:30 +02004671 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004672 * Kernel memory may not necessarily be trackable to a specific
4673 * process. So they are not migrated, and therefore we can't
4674 * expect their value to drop to 0 here.
4675 * Having res filled up with kmem only is enough.
4676 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004677 * This is a safety check because mem_cgroup_force_empty_list
4678 * could have raced with mem_cgroup_replace_page_cache callers
4679 * so the lru seemed empty but the page could have been added
4680 * right after the check. RES_USAGE should be safe as we always
4681 * charge before adding to the LRU.
4682 */
Glauber Costabea207c2012-12-18 14:22:11 -08004683 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4684 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4685 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004686}
4687
4688/*
Glauber Costab5f99b52013-02-22 16:34:53 -08004689 * This mainly exists for tests during the setting of set of use_hierarchy.
4690 * Since this is the very setting we are changing, the current hierarchy value
4691 * is meaningless
4692 */
4693static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4694{
Tejun Heo492eb212013-08-08 20:11:25 -04004695 struct cgroup_subsys_state *pos;
Glauber Costab5f99b52013-02-22 16:34:53 -08004696
4697 /* bounce at first found */
Tejun Heo492eb212013-08-08 20:11:25 -04004698 css_for_each_child(pos, &memcg->css)
Glauber Costab5f99b52013-02-22 16:34:53 -08004699 return true;
4700 return false;
4701}
4702
4703/*
Glauber Costa09998212013-02-22 16:34:55 -08004704 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4705 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
Glauber Costab5f99b52013-02-22 16:34:53 -08004706 * from mem_cgroup_count_children(), in the sense that we don't really care how
4707 * many children we have; we only need to know if we have any. It also counts
4708 * any memcg without hierarchy as infertile.
4709 */
4710static inline bool memcg_has_children(struct mem_cgroup *memcg)
4711{
4712 return memcg->use_hierarchy && __memcg_has_children(memcg);
4713}
4714
4715/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004716 * Reclaims as many pages from the given memcg as possible and moves
4717 * the rest to the parent.
4718 *
4719 * Caller is responsible for holding css reference for memcg.
4720 */
4721static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4722{
4723 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4724 struct cgroup *cgrp = memcg->css.cgroup;
4725
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004726 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004727 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4728 return -EBUSY;
4729
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004730 /* we call try-to-free pages for make this cgroup empty */
4731 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004732 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004733 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004734 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004735
Michal Hockoc26251f2012-10-26 13:37:28 +02004736 if (signal_pending(current))
4737 return -EINTR;
4738
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004739 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004740 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004741 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004742 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004743 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004744 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004745 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004746
4747 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004748 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02004749 mem_cgroup_reparent_charges(memcg);
4750
4751 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004752}
4753
Tejun Heo182446d2013-08-08 20:11:24 -04004754static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
4755 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004756{
Tejun Heo182446d2013-08-08 20:11:24 -04004757 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02004758
Michal Hockod8423012012-10-26 13:37:29 +02004759 if (mem_cgroup_is_root(memcg))
4760 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07004761 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004762}
4763
Tejun Heo182446d2013-08-08 20:11:24 -04004764static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
4765 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004766{
Tejun Heo182446d2013-08-08 20:11:24 -04004767 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004768}
4769
Tejun Heo182446d2013-08-08 20:11:24 -04004770static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
4771 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004772{
4773 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04004774 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04004775 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08004776
Glauber Costa09998212013-02-22 16:34:55 -08004777 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07004778
4779 if (memcg->use_hierarchy == val)
4780 goto out;
4781
Balbir Singh18f59ea2009-01-07 18:08:07 -08004782 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004783 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08004784 * in the child subtrees. If it is unset, then the change can
4785 * occur, provided the current cgroup has no children.
4786 *
4787 * For the root cgroup, parent_mem is NULL, we allow value to be
4788 * set if there are no children.
4789 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004790 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08004791 (val == 1 || val == 0)) {
Glauber Costab5f99b52013-02-22 16:34:53 -08004792 if (!__memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004793 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004794 else
4795 retval = -EBUSY;
4796 } else
4797 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07004798
4799out:
Glauber Costa09998212013-02-22 16:34:55 -08004800 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004801
4802 return retval;
4803}
4804
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004805
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004806static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004807 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004808{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004809 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004810 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004811
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004812 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004813 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004814 val += mem_cgroup_read_stat(iter, idx);
4815
4816 if (val < 0) /* race ? */
4817 val = 0;
4818 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004819}
4820
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004821static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004822{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004823 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004824
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004825 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004826 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00004827 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004828 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00004829 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004830 }
4831
David Rientjesb070e652013-05-07 16:18:09 -07004832 /*
4833 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4834 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4835 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004836 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4837 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004838
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004839 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004840 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004841
4842 return val << PAGE_SHIFT;
4843}
4844
Tejun Heo182446d2013-08-08 20:11:24 -04004845static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
4846 struct cftype *cft, struct file *file,
4847 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004848{
Tejun Heo182446d2013-08-08 20:11:24 -04004849 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07004850 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004851 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004852 int name, len;
4853 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004854
4855 type = MEMFILE_TYPE(cft->private);
4856 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004857
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004858 switch (type) {
4859 case _MEM:
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, false);
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->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004864 break;
4865 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004866 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004867 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004868 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004869 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004870 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004871 case _KMEM:
4872 val = res_counter_read_u64(&memcg->kmem, name);
4873 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004874 default:
4875 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004876 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004877
4878 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4879 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004880}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004881
Tejun Heo182446d2013-08-08 20:11:24 -04004882static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004883{
4884 int ret = -EINVAL;
4885#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04004886 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004887 /*
4888 * For simplicity, we won't allow this to be disabled. It also can't
4889 * be changed if the cgroup has children already, or if tasks had
4890 * already joined.
4891 *
4892 * If tasks join before we set the limit, a person looking at
4893 * kmem.usage_in_bytes will have no way to determine when it took
4894 * place, which makes the value quite meaningless.
4895 *
4896 * After it first became limited, changes in the value of the limit are
4897 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004898 */
Glauber Costa09998212013-02-22 16:34:55 -08004899 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004900 mutex_lock(&set_limit_mutex);
4901 if (!memcg->kmem_account_flags && val != RESOURCE_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04004902 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08004903 ret = -EBUSY;
4904 goto out;
4905 }
4906 ret = res_counter_set_limit(&memcg->kmem, val);
4907 VM_BUG_ON(ret);
4908
Glauber Costa55007d82012-12-18 14:22:38 -08004909 ret = memcg_update_cache_sizes(memcg);
4910 if (ret) {
4911 res_counter_set_limit(&memcg->kmem, RESOURCE_MAX);
4912 goto out;
4913 }
Glauber Costa692e89a2013-02-22 16:34:56 -08004914 static_key_slow_inc(&memcg_kmem_enabled_key);
4915 /*
4916 * setting the active bit after the inc will guarantee no one
4917 * starts accounting before all call sites are patched
4918 */
4919 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004920 } else
4921 ret = res_counter_set_limit(&memcg->kmem, val);
4922out:
4923 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08004924 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004925#endif
4926 return ret;
4927}
4928
Hugh Dickins6d0439902013-02-22 16:35:50 -08004929#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08004930static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004931{
Glauber Costa55007d82012-12-18 14:22:38 -08004932 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004933 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4934 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08004935 goto out;
4936
Glauber Costa510fc4e2012-12-18 14:21:47 -08004937 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08004938 /*
4939 * When that happen, we need to disable the static branch only on those
4940 * memcgs that enabled it. To achieve this, we would be forced to
4941 * complicate the code by keeping track of which memcgs were the ones
4942 * that actually enabled limits, and which ones got it from its
4943 * parents.
4944 *
4945 * It is a lot simpler just to do static_key_slow_inc() on every child
4946 * that is accounted.
4947 */
Glauber Costa55007d82012-12-18 14:22:38 -08004948 if (!memcg_kmem_is_active(memcg))
4949 goto out;
4950
4951 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07004952 * __mem_cgroup_free() will issue static_key_slow_dec() because this
4953 * memcg is active already. If the later initialization fails then the
4954 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08004955 */
Glauber Costa55007d82012-12-18 14:22:38 -08004956 static_key_slow_inc(&memcg_kmem_enabled_key);
4957
4958 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07004959 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08004960 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07004961 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08004962 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08004963out:
4964 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004965}
Hugh Dickins6d0439902013-02-22 16:35:50 -08004966#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08004967
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004968/*
4969 * The user of this function is...
4970 * RES_LIMIT.
4971 */
Tejun Heo182446d2013-08-08 20:11:24 -04004972static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07004973 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004974{
Tejun Heo182446d2013-08-08 20:11:24 -04004975 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08004976 enum res_type type;
4977 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004978 unsigned long long val;
4979 int ret;
4980
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004981 type = MEMFILE_TYPE(cft->private);
4982 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004983
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004984 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004985 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07004986 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
4987 ret = -EINVAL;
4988 break;
4989 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004990 /* This function does all necessary parse...reuse it */
4991 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004992 if (ret)
4993 break;
4994 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004995 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004996 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004997 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004998 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04004999 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005000 else
5001 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005002 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07005003 case RES_SOFT_LIMIT:
5004 ret = res_counter_memparse_write_strategy(buffer, &val);
5005 if (ret)
5006 break;
5007 /*
5008 * For memsw, soft limits are hard to implement in terms
5009 * of semantics, for now, we support soft limits for
5010 * control without swap
5011 */
5012 if (type == _MEM)
5013 ret = res_counter_set_soft_limit(&memcg->res, val);
5014 else
5015 ret = -EINVAL;
5016 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005017 default:
5018 ret = -EINVAL; /* should be BUG() ? */
5019 break;
5020 }
5021 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005022}
5023
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005024static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5025 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5026{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005027 unsigned long long min_limit, min_memsw_limit, tmp;
5028
5029 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5030 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005031 if (!memcg->use_hierarchy)
5032 goto out;
5033
Tejun Heo63876982013-08-08 20:11:23 -04005034 while (css_parent(&memcg->css)) {
5035 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005036 if (!memcg->use_hierarchy)
5037 break;
5038 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5039 min_limit = min(min_limit, tmp);
5040 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5041 min_memsw_limit = min(min_memsw_limit, tmp);
5042 }
5043out:
5044 *mem_limit = min_limit;
5045 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005046}
5047
Tejun Heo182446d2013-08-08 20:11:24 -04005048static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005049{
Tejun Heo182446d2013-08-08 20:11:24 -04005050 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005051 int name;
5052 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005053
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005054 type = MEMFILE_TYPE(event);
5055 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07005056
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005057 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005058 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005059 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005060 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005061 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005062 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005063 else if (type == _KMEM)
5064 res_counter_reset_max(&memcg->kmem);
5065 else
5066 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005067 break;
5068 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005069 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005070 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005071 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005072 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005073 else if (type == _KMEM)
5074 res_counter_reset_failcnt(&memcg->kmem);
5075 else
5076 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005077 break;
5078 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07005079
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07005080 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005081}
5082
Tejun Heo182446d2013-08-08 20:11:24 -04005083static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005084 struct cftype *cft)
5085{
Tejun Heo182446d2013-08-08 20:11:24 -04005086 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005087}
5088
Daisuke Nishimura02491442010-03-10 15:22:17 -08005089#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04005090static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005091 struct cftype *cft, u64 val)
5092{
Tejun Heo182446d2013-08-08 20:11:24 -04005093 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005094
5095 if (val >= (1 << NR_MOVE_TYPE))
5096 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005097
Glauber Costaee5e8472013-02-22 16:34:50 -08005098 /*
5099 * No kind of locking is needed in here, because ->can_attach() will
5100 * check this value once in the beginning of the process, and then carry
5101 * on with stale data. This means that changes to this value will only
5102 * affect task migrations starting after the change.
5103 */
5104 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005105 return 0;
5106}
Daisuke Nishimura02491442010-03-10 15:22:17 -08005107#else
Tejun Heo182446d2013-08-08 20:11:24 -04005108static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005109 struct cftype *cft, u64 val)
5110{
5111 return -ENOSYS;
5112}
5113#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005114
Ying Han406eb0c2011-05-26 16:25:37 -07005115#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04005116static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
5117 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07005118{
5119 int nid;
5120 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5121 unsigned long node_nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005122 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005123
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005124 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005125 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005126 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005127 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005128 seq_printf(m, " N%d=%lu", nid, node_nr);
5129 }
5130 seq_putc(m, '\n');
5131
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005132 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005133 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005134 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005135 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005136 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005137 seq_printf(m, " N%d=%lu", nid, node_nr);
5138 }
5139 seq_putc(m, '\n');
5140
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005141 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005142 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005143 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005144 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005145 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005146 seq_printf(m, " N%d=%lu", nid, node_nr);
5147 }
5148 seq_putc(m, '\n');
5149
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005150 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005151 seq_printf(m, "unevictable=%lu", unevictable_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005152 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005153 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005154 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005155 seq_printf(m, " N%d=%lu", nid, node_nr);
5156 }
5157 seq_putc(m, '\n');
5158 return 0;
5159}
5160#endif /* CONFIG_NUMA */
5161
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005162static inline void mem_cgroup_lru_names_not_uptodate(void)
5163{
5164 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5165}
5166
Tejun Heo182446d2013-08-08 20:11:24 -04005167static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005168 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005169{
Tejun Heo182446d2013-08-08 20:11:24 -04005170 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005171 struct mem_cgroup *mi;
5172 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005173
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005174 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005175 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005176 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005177 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5178 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005179 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005180
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005181 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5182 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5183 mem_cgroup_read_events(memcg, i));
5184
5185 for (i = 0; i < NR_LRU_LISTS; i++)
5186 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5187 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5188
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005189 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005190 {
5191 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005192 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005193 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005194 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005195 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5196 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005197 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005198
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005199 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5200 long long val = 0;
5201
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005202 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005203 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005204 for_each_mem_cgroup_tree(mi, memcg)
5205 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5206 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5207 }
5208
5209 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5210 unsigned long long val = 0;
5211
5212 for_each_mem_cgroup_tree(mi, memcg)
5213 val += mem_cgroup_read_events(mi, i);
5214 seq_printf(m, "total_%s %llu\n",
5215 mem_cgroup_events_names[i], val);
5216 }
5217
5218 for (i = 0; i < NR_LRU_LISTS; i++) {
5219 unsigned long long val = 0;
5220
5221 for_each_mem_cgroup_tree(mi, memcg)
5222 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5223 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005224 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005225
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005226#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005227 {
5228 int nid, zid;
5229 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005230 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005231 unsigned long recent_rotated[2] = {0, 0};
5232 unsigned long recent_scanned[2] = {0, 0};
5233
5234 for_each_online_node(nid)
5235 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005236 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005237 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005238
Hugh Dickins89abfab2012-05-29 15:06:53 -07005239 recent_rotated[0] += rstat->recent_rotated[0];
5240 recent_rotated[1] += rstat->recent_rotated[1];
5241 recent_scanned[0] += rstat->recent_scanned[0];
5242 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005243 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005244 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5245 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5246 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5247 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005248 }
5249#endif
5250
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005251 return 0;
5252}
5253
Tejun Heo182446d2013-08-08 20:11:24 -04005254static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5255 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005256{
Tejun Heo182446d2013-08-08 20:11:24 -04005257 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005258
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005259 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005260}
5261
Tejun Heo182446d2013-08-08 20:11:24 -04005262static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5263 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005264{
Tejun Heo182446d2013-08-08 20:11:24 -04005265 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005266 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005267
Tejun Heo63876982013-08-08 20:11:23 -04005268 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005269 return -EINVAL;
5270
Glauber Costa09998212013-02-22 16:34:55 -08005271 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005272
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005273 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005274 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005275 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005276 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005277 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005278
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005279 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005280
Glauber Costa09998212013-02-22 16:34:55 -08005281 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005282
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005283 return 0;
5284}
5285
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005286static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5287{
5288 struct mem_cgroup_threshold_ary *t;
5289 u64 usage;
5290 int i;
5291
5292 rcu_read_lock();
5293 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005294 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005295 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005296 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005297
5298 if (!t)
5299 goto unlock;
5300
5301 usage = mem_cgroup_usage(memcg, swap);
5302
5303 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005304 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005305 * If it's not true, a threshold was crossed after last
5306 * call of __mem_cgroup_threshold().
5307 */
Phil Carmody5407a562010-05-26 14:42:42 -07005308 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005309
5310 /*
5311 * Iterate backward over array of thresholds starting from
5312 * current_threshold and check if a threshold is crossed.
5313 * If none of thresholds below usage is crossed, we read
5314 * only one element of the array here.
5315 */
5316 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5317 eventfd_signal(t->entries[i].eventfd, 1);
5318
5319 /* i = current_threshold + 1 */
5320 i++;
5321
5322 /*
5323 * Iterate forward over array of thresholds starting from
5324 * current_threshold+1 and check if a threshold is crossed.
5325 * If none of thresholds above usage is crossed, we read
5326 * only one element of the array here.
5327 */
5328 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5329 eventfd_signal(t->entries[i].eventfd, 1);
5330
5331 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005332 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005333unlock:
5334 rcu_read_unlock();
5335}
5336
5337static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5338{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005339 while (memcg) {
5340 __mem_cgroup_threshold(memcg, false);
5341 if (do_swap_account)
5342 __mem_cgroup_threshold(memcg, true);
5343
5344 memcg = parent_mem_cgroup(memcg);
5345 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005346}
5347
5348static int compare_thresholds(const void *a, const void *b)
5349{
5350 const struct mem_cgroup_threshold *_a = a;
5351 const struct mem_cgroup_threshold *_b = b;
5352
Greg Thelen2bff24a2013-09-11 14:23:08 -07005353 if (_a->threshold > _b->threshold)
5354 return 1;
5355
5356 if (_a->threshold < _b->threshold)
5357 return -1;
5358
5359 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005360}
5361
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005362static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005363{
5364 struct mem_cgroup_eventfd_list *ev;
5365
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005366 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005367 eventfd_signal(ev->eventfd, 1);
5368 return 0;
5369}
5370
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005371static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005372{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005373 struct mem_cgroup *iter;
5374
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005375 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005376 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005377}
5378
Tejun Heo81eeaf02013-08-08 20:11:26 -04005379static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005380 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005381{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005382 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005383 struct mem_cgroup_thresholds *thresholds;
5384 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005385 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005386 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005387 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005388
5389 ret = res_counter_memparse_write_strategy(args, &threshold);
5390 if (ret)
5391 return ret;
5392
5393 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005394
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005395 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005396 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005397 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005398 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005399 else
5400 BUG();
5401
5402 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5403
5404 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005405 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005406 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5407
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005408 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005409
5410 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005411 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005412 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005413 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005414 ret = -ENOMEM;
5415 goto unlock;
5416 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005417 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005418
5419 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005420 if (thresholds->primary) {
5421 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005422 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005423 }
5424
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005425 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005426 new->entries[size - 1].eventfd = eventfd;
5427 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005428
5429 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005430 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005431 compare_thresholds, NULL);
5432
5433 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005434 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005435 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005436 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005437 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005438 * new->current_threshold will not be used until
5439 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005440 * it here.
5441 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005442 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005443 } else
5444 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005445 }
5446
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005447 /* Free old spare buffer and save old primary buffer as spare */
5448 kfree(thresholds->spare);
5449 thresholds->spare = thresholds->primary;
5450
5451 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005452
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005453 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005454 synchronize_rcu();
5455
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005456unlock:
5457 mutex_unlock(&memcg->thresholds_lock);
5458
5459 return ret;
5460}
5461
Tejun Heo81eeaf02013-08-08 20:11:26 -04005462static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005463 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005464{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005465 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005466 struct mem_cgroup_thresholds *thresholds;
5467 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005468 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005469 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005470 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005471
5472 mutex_lock(&memcg->thresholds_lock);
5473 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005474 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005475 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005476 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005477 else
5478 BUG();
5479
Anton Vorontsov371528c2012-02-24 05:14:46 +04005480 if (!thresholds->primary)
5481 goto unlock;
5482
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005483 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5484
5485 /* Check if a threshold crossed before removing */
5486 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5487
5488 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005489 size = 0;
5490 for (i = 0; i < thresholds->primary->size; i++) {
5491 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005492 size++;
5493 }
5494
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005495 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005496
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005497 /* Set thresholds array to NULL if we don't have thresholds */
5498 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005499 kfree(new);
5500 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005501 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005502 }
5503
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005504 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005505
5506 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005507 new->current_threshold = -1;
5508 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5509 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005510 continue;
5511
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005512 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005513 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005514 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005515 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005516 * until rcu_assign_pointer(), so it's safe to increment
5517 * it here.
5518 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005519 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005520 }
5521 j++;
5522 }
5523
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005524swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005525 /* Swap primary and spare array */
5526 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005527 /* If all events are unregistered, free the spare array */
5528 if (!new) {
5529 kfree(thresholds->spare);
5530 thresholds->spare = NULL;
5531 }
5532
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005533 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005534
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005535 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005536 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005537unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005538 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005539}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005540
Tejun Heo81eeaf02013-08-08 20:11:26 -04005541static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005542 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5543{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005544 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005545 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005546 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005547
5548 BUG_ON(type != _OOM_TYPE);
5549 event = kmalloc(sizeof(*event), GFP_KERNEL);
5550 if (!event)
5551 return -ENOMEM;
5552
Michal Hocko1af8efe2011-07-26 16:08:24 -07005553 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005554
5555 event->eventfd = eventfd;
5556 list_add(&event->list, &memcg->oom_notify);
5557
5558 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005559 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005560 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005561 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005562
5563 return 0;
5564}
5565
Tejun Heo81eeaf02013-08-08 20:11:26 -04005566static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005567 struct cftype *cft, struct eventfd_ctx *eventfd)
5568{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005569 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005570 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005571 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005572
5573 BUG_ON(type != _OOM_TYPE);
5574
Michal Hocko1af8efe2011-07-26 16:08:24 -07005575 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005576
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005577 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005578 if (ev->eventfd == eventfd) {
5579 list_del(&ev->list);
5580 kfree(ev);
5581 }
5582 }
5583
Michal Hocko1af8efe2011-07-26 16:08:24 -07005584 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005585}
5586
Tejun Heo182446d2013-08-08 20:11:24 -04005587static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005588 struct cftype *cft, struct cgroup_map_cb *cb)
5589{
Tejun Heo182446d2013-08-08 20:11:24 -04005590 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005591
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005592 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005593
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005594 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005595 cb->fill(cb, "under_oom", 1);
5596 else
5597 cb->fill(cb, "under_oom", 0);
5598 return 0;
5599}
5600
Tejun Heo182446d2013-08-08 20:11:24 -04005601static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005602 struct cftype *cft, u64 val)
5603{
Tejun Heo182446d2013-08-08 20:11:24 -04005604 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005605 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005606
5607 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005608 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005609 return -EINVAL;
5610
Glauber Costa09998212013-02-22 16:34:55 -08005611 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005612 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005613 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005614 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005615 return -EINVAL;
5616 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005617 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005618 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005619 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005620 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005621 return 0;
5622}
5623
Andrew Mortonc255a452012-07-31 16:43:02 -07005624#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005625static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005626{
Glauber Costa55007d82012-12-18 14:22:38 -08005627 int ret;
5628
Glauber Costa2633d7a2012-12-18 14:22:34 -08005629 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005630 ret = memcg_propagate_kmem(memcg);
5631 if (ret)
5632 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005633
Glauber Costa1d62e432012-04-09 19:36:33 -03005634 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005635}
Glauber Costae5671df2011-12-11 21:47:01 +00005636
Li Zefan10d5ebf2013-07-08 16:00:33 -07005637static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005638{
Glauber Costa1d62e432012-04-09 19:36:33 -03005639 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005640}
5641
5642static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5643{
5644 if (!memcg_kmem_is_active(memcg))
5645 return;
5646
5647 /*
5648 * kmem charges can outlive the cgroup. In the case of slab
5649 * pages, for instance, a page contain objects from various
5650 * processes. As we prevent from taking a reference for every
5651 * such allocation we have to be careful when doing uncharge
5652 * (see memcg_uncharge_kmem) and here during offlining.
5653 *
5654 * The idea is that that only the _last_ uncharge which sees
5655 * the dead memcg will drop the last reference. An additional
5656 * reference is taken here before the group is marked dead
5657 * which is then paired with css_put during uncharge resp. here.
5658 *
5659 * Although this might sound strange as this path is called from
5660 * css_offline() when the referencemight have dropped down to 0
5661 * and shouldn't be incremented anymore (css_tryget would fail)
5662 * we do not have other options because of the kmem allocations
5663 * lifetime.
5664 */
5665 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005666
5667 memcg_kmem_mark_dead(memcg);
5668
5669 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5670 return;
5671
Glauber Costa7de37682012-12-18 14:22:07 -08005672 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005673 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005674}
Glauber Costae5671df2011-12-11 21:47:01 +00005675#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005676static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005677{
5678 return 0;
5679}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005680
Li Zefan10d5ebf2013-07-08 16:00:33 -07005681static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5682{
5683}
5684
5685static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005686{
5687}
Glauber Costae5671df2011-12-11 21:47:01 +00005688#endif
5689
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005690static struct cftype mem_cgroup_files[] = {
5691 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005692 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005693 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005694 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005695 .register_event = mem_cgroup_usage_register_event,
5696 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005697 },
5698 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005699 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005700 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005701 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005702 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005703 },
5704 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005705 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005706 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005707 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005708 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005709 },
5710 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005711 .name = "soft_limit_in_bytes",
5712 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5713 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005714 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005715 },
5716 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005717 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005718 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005719 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005720 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005721 },
Balbir Singh8697d332008-02-07 00:13:59 -08005722 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005723 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005724 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005725 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005726 {
5727 .name = "force_empty",
5728 .trigger = mem_cgroup_force_empty_write,
5729 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005730 {
5731 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005732 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005733 .write_u64 = mem_cgroup_hierarchy_write,
5734 .read_u64 = mem_cgroup_hierarchy_read,
5735 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005736 {
5737 .name = "swappiness",
5738 .read_u64 = mem_cgroup_swappiness_read,
5739 .write_u64 = mem_cgroup_swappiness_write,
5740 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005741 {
5742 .name = "move_charge_at_immigrate",
5743 .read_u64 = mem_cgroup_move_charge_read,
5744 .write_u64 = mem_cgroup_move_charge_write,
5745 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005746 {
5747 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005748 .read_map = mem_cgroup_oom_control_read,
5749 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005750 .register_event = mem_cgroup_oom_register_event,
5751 .unregister_event = mem_cgroup_oom_unregister_event,
5752 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5753 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005754 {
5755 .name = "pressure_level",
5756 .register_event = vmpressure_register_event,
5757 .unregister_event = vmpressure_unregister_event,
5758 },
Ying Han406eb0c2011-05-26 16:25:37 -07005759#ifdef CONFIG_NUMA
5760 {
5761 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005762 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005763 },
5764#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005765#ifdef CONFIG_MEMCG_KMEM
5766 {
5767 .name = "kmem.limit_in_bytes",
5768 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5769 .write_string = mem_cgroup_write,
5770 .read = mem_cgroup_read,
5771 },
5772 {
5773 .name = "kmem.usage_in_bytes",
5774 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5775 .read = mem_cgroup_read,
5776 },
5777 {
5778 .name = "kmem.failcnt",
5779 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5780 .trigger = mem_cgroup_reset,
5781 .read = mem_cgroup_read,
5782 },
5783 {
5784 .name = "kmem.max_usage_in_bytes",
5785 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5786 .trigger = mem_cgroup_reset,
5787 .read = mem_cgroup_read,
5788 },
Glauber Costa749c5412012-12-18 14:23:01 -08005789#ifdef CONFIG_SLABINFO
5790 {
5791 .name = "kmem.slabinfo",
5792 .read_seq_string = mem_cgroup_slabinfo_read,
5793 },
5794#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005795#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005796 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005797};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005798
Michal Hocko2d110852013-02-22 16:34:43 -08005799#ifdef CONFIG_MEMCG_SWAP
5800static struct cftype memsw_cgroup_files[] = {
5801 {
5802 .name = "memsw.usage_in_bytes",
5803 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5804 .read = mem_cgroup_read,
5805 .register_event = mem_cgroup_usage_register_event,
5806 .unregister_event = mem_cgroup_usage_unregister_event,
5807 },
5808 {
5809 .name = "memsw.max_usage_in_bytes",
5810 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5811 .trigger = mem_cgroup_reset,
5812 .read = mem_cgroup_read,
5813 },
5814 {
5815 .name = "memsw.limit_in_bytes",
5816 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5817 .write_string = mem_cgroup_write,
5818 .read = mem_cgroup_read,
5819 },
5820 {
5821 .name = "memsw.failcnt",
5822 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5823 .trigger = mem_cgroup_reset,
5824 .read = mem_cgroup_read,
5825 },
5826 { }, /* terminate */
5827};
5828#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005829static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005830{
5831 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005832 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005833 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005834 /*
5835 * This routine is called against possible nodes.
5836 * But it's BUG to call kmalloc() against offline node.
5837 *
5838 * TODO: this routine can waste much memory for nodes which will
5839 * never be onlined. It's better to use memory hotplug callback
5840 * function.
5841 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005842 if (!node_state(node, N_NORMAL_MEMORY))
5843 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005844 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005845 if (!pn)
5846 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005847
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005848 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5849 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005850 lruvec_init(&mz->lruvec);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005851 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005852 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005853 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005854 return 0;
5855}
5856
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005857static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005858{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005859 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005860}
5861
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005862static struct mem_cgroup *mem_cgroup_alloc(void)
5863{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005864 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005865 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005866
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005867 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08005868 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005869 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005870 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005871 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005872
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005873 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005874 return NULL;
5875
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005876 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5877 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005878 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005879 spin_lock_init(&memcg->pcp_counter_lock);
5880 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005881
5882out_free:
5883 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005884 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005885 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005886 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005887 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005888}
5889
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005890/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005891 * At destroying mem_cgroup, references from swap_cgroup can remain.
5892 * (scanning all at force_empty is too costly...)
5893 *
5894 * Instead of clearing all references at force_empty, we remember
5895 * the number of reference from swap_cgroup and free mem_cgroup when
5896 * it goes down to 0.
5897 *
5898 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005899 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005900
5901static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005902{
Glauber Costac8b2a362012-12-18 14:22:13 -08005903 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005904 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07005905
Glauber Costac8b2a362012-12-18 14:22:13 -08005906 free_css_id(&mem_cgroup_subsys, &memcg->css);
5907
5908 for_each_node(node)
5909 free_mem_cgroup_per_zone_info(memcg, node);
5910
5911 free_percpu(memcg->stat);
5912
Glauber Costa3f134612012-05-29 15:07:11 -07005913 /*
5914 * We need to make sure that (at least for now), the jump label
5915 * destruction code runs outside of the cgroup lock. This is because
5916 * get_online_cpus(), which is called from the static_branch update,
5917 * can't be called inside the cgroup_lock. cpusets are the ones
5918 * enforcing this dependency, so if they ever change, we might as well.
5919 *
5920 * schedule_work() will guarantee this happens. Be careful if you need
5921 * to move this code around, and make sure it is outside
5922 * the cgroup_lock.
5923 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005924 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07005925 if (size < PAGE_SIZE)
5926 kfree(memcg);
5927 else
5928 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005929}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005930
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005931/*
5932 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5933 */
Glauber Costae1aab162011-12-11 21:47:03 +00005934struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005935{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005936 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005937 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005938 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005939}
Glauber Costae1aab162011-12-11 21:47:03 +00005940EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005941
Li Zefan0eb253e2009-01-15 13:51:25 -08005942static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04005943mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005944{
Glauber Costad142e3e2013-02-22 16:34:52 -08005945 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005946 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005947 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005948
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005949 memcg = mem_cgroup_alloc();
5950 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005951 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005952
Bob Liu3ed28fa2012-01-12 17:19:04 -08005953 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005954 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005955 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005956
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08005957 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04005958 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08005959 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08005960 res_counter_init(&memcg->res, NULL);
5961 res_counter_init(&memcg->memsw, NULL);
5962 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005963 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005964
Glauber Costad142e3e2013-02-22 16:34:52 -08005965 memcg->last_scanned_node = MAX_NUMNODES;
5966 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08005967 memcg->move_charge_at_immigrate = 0;
5968 mutex_init(&memcg->thresholds_lock);
5969 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005970 vmpressure_init(&memcg->vmpressure);
Michal Hocko7d910c02013-09-12 15:13:28 -07005971 spin_lock_init(&memcg->soft_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08005972
5973 return &memcg->css;
5974
5975free_out:
5976 __mem_cgroup_free(memcg);
5977 return ERR_PTR(error);
5978}
5979
5980static int
Tejun Heoeb954192013-08-08 20:11:23 -04005981mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08005982{
Tejun Heoeb954192013-08-08 20:11:23 -04005983 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5984 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08005985 int error = 0;
5986
Tejun Heo63876982013-08-08 20:11:23 -04005987 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08005988 return 0;
5989
Glauber Costa09998212013-02-22 16:34:55 -08005990 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08005991
5992 memcg->use_hierarchy = parent->use_hierarchy;
5993 memcg->oom_kill_disable = parent->oom_kill_disable;
5994 memcg->swappiness = mem_cgroup_swappiness(parent);
5995
5996 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005997 res_counter_init(&memcg->res, &parent->res);
5998 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005999 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08006000
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006001 /*
Li Zefan8d76a972013-07-08 16:00:36 -07006002 * No need to take a reference to the parent because cgroup
6003 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006004 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08006005 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006006 res_counter_init(&memcg->res, NULL);
6007 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006008 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006009 /*
6010 * Deeper hierachy with use_hierarchy == false doesn't make
6011 * much sense so let cgroup subsystem know about this
6012 * unfortunate state in our controller.
6013 */
Glauber Costad142e3e2013-02-22 16:34:52 -08006014 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006015 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08006016 }
Glauber Costacbe128e32012-04-09 19:36:34 -03006017
6018 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08006019 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006020 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006021}
6022
Michal Hocko5f578162013-04-29 15:07:17 -07006023/*
6024 * Announce all parents that a group from their hierarchy is gone.
6025 */
6026static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
6027{
6028 struct mem_cgroup *parent = memcg;
6029
6030 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07006031 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07006032
6033 /*
6034 * if the root memcg is not hierarchical we have to check it
6035 * explicitely.
6036 */
6037 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07006038 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07006039}
6040
Tejun Heoeb954192013-08-08 20:11:23 -04006041static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006042{
Tejun Heoeb954192013-08-08 20:11:23 -04006043 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07006044
Li Zefan10d5ebf2013-07-08 16:00:33 -07006045 kmem_cgroup_css_offline(memcg);
6046
Michal Hocko5f578162013-04-29 15:07:17 -07006047 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02006048 mem_cgroup_reparent_charges(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -07006049 if (memcg->soft_contributed) {
6050 while ((memcg = parent_mem_cgroup(memcg)))
6051 atomic_dec(&memcg->children_in_excess);
Michal Hocko1be171d2013-09-12 15:13:32 -07006052
6053 if (memcg != root_mem_cgroup && !root_mem_cgroup->use_hierarchy)
6054 atomic_dec(&root_mem_cgroup->children_in_excess);
Michal Hocko7d910c02013-09-12 15:13:28 -07006055 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08006056 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07006057 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006058}
6059
Tejun Heoeb954192013-08-08 20:11:23 -04006060static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006061{
Tejun Heoeb954192013-08-08 20:11:23 -04006062 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08006063
Li Zefan10d5ebf2013-07-08 16:00:33 -07006064 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07006065 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006066}
6067
Daisuke Nishimura02491442010-03-10 15:22:17 -08006068#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006069/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006070#define PRECHARGE_COUNT_AT_ONCE 256
6071static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006072{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006073 int ret = 0;
6074 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006075 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006076
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006077 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006078 mc.precharge += count;
6079 /* we don't need css_get for root */
6080 return ret;
6081 }
6082 /* try to charge at once */
6083 if (count > 1) {
6084 struct res_counter *dummy;
6085 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006086 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006087 * by cgroup_lock_live_cgroup() that it is not removed and we
6088 * are still under the same cgroup_mutex. So we can postpone
6089 * css_get().
6090 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006091 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006092 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006093 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006094 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006095 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006096 goto one_by_one;
6097 }
6098 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006099 return ret;
6100 }
6101one_by_one:
6102 /* fall back to one by one charge */
6103 while (count--) {
6104 if (signal_pending(current)) {
6105 ret = -EINTR;
6106 break;
6107 }
6108 if (!batch_count--) {
6109 batch_count = PRECHARGE_COUNT_AT_ONCE;
6110 cond_resched();
6111 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006112 ret = __mem_cgroup_try_charge(NULL,
6113 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006114 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006115 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006116 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006117 mc.precharge++;
6118 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006119 return ret;
6120}
6121
6122/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006123 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006124 * @vma: the vma the pte to be checked belongs
6125 * @addr: the address corresponding to the pte to be checked
6126 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08006127 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006128 *
6129 * Returns
6130 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6131 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6132 * move charge. if @target is not NULL, the page is stored in target->page
6133 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006134 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6135 * target for charge migration. if @target is not NULL, the entry is stored
6136 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006137 *
6138 * Called with pte lock held.
6139 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006140union mc_target {
6141 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006142 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006143};
6144
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006145enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006146 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006147 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006148 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006149};
6150
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006151static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6152 unsigned long addr, pte_t ptent)
6153{
6154 struct page *page = vm_normal_page(vma, addr, ptent);
6155
6156 if (!page || !page_mapped(page))
6157 return NULL;
6158 if (PageAnon(page)) {
6159 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006160 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006161 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006162 } else if (!move_file())
6163 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006164 return NULL;
6165 if (!get_page_unless_zero(page))
6166 return NULL;
6167
6168 return page;
6169}
6170
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006171#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006172static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6173 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6174{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006175 struct page *page = NULL;
6176 swp_entry_t ent = pte_to_swp_entry(ptent);
6177
6178 if (!move_anon() || non_swap_entry(ent))
6179 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006180 /*
6181 * Because lookup_swap_cache() updates some statistics counter,
6182 * we call find_get_page() with swapper_space directly.
6183 */
Shaohua Li33806f02013-02-22 16:34:37 -08006184 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006185 if (do_swap_account)
6186 entry->val = ent.val;
6187
6188 return page;
6189}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006190#else
6191static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6192 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6193{
6194 return NULL;
6195}
6196#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006197
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006198static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6199 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6200{
6201 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006202 struct address_space *mapping;
6203 pgoff_t pgoff;
6204
6205 if (!vma->vm_file) /* anonymous vma */
6206 return NULL;
6207 if (!move_file())
6208 return NULL;
6209
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006210 mapping = vma->vm_file->f_mapping;
6211 if (pte_none(ptent))
6212 pgoff = linear_page_index(vma, addr);
6213 else /* pte_file(ptent) is true */
6214 pgoff = pte_to_pgoff(ptent);
6215
6216 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006217 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006218
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006219#ifdef CONFIG_SWAP
6220 /* shmem/tmpfs may report page out on swap: account for that too. */
6221 if (radix_tree_exceptional_entry(page)) {
6222 swp_entry_t swap = radix_to_swp_entry(page);
6223 if (do_swap_account)
6224 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006225 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006226 }
6227#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006228 return page;
6229}
6230
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006231static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006232 unsigned long addr, pte_t ptent, union mc_target *target)
6233{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006234 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006235 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006236 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006237 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006238
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006239 if (pte_present(ptent))
6240 page = mc_handle_present_pte(vma, addr, ptent);
6241 else if (is_swap_pte(ptent))
6242 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006243 else if (pte_none(ptent) || pte_file(ptent))
6244 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006245
6246 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006247 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006248 if (page) {
6249 pc = lookup_page_cgroup(page);
6250 /*
6251 * Do only loose check w/o page_cgroup lock.
6252 * mem_cgroup_move_account() checks the pc is valid or not under
6253 * the lock.
6254 */
6255 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6256 ret = MC_TARGET_PAGE;
6257 if (target)
6258 target->page = page;
6259 }
6260 if (!ret || !target)
6261 put_page(page);
6262 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006263 /* There is a swap entry and a page doesn't exist or isn't charged */
6264 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08006265 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006266 ret = MC_TARGET_SWAP;
6267 if (target)
6268 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006269 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006270 return ret;
6271}
6272
Naoya Horiguchi12724852012-03-21 16:34:28 -07006273#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6274/*
6275 * We don't consider swapping or file mapped pages because THP does not
6276 * support them for now.
6277 * Caller should make sure that pmd_trans_huge(pmd) is true.
6278 */
6279static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6280 unsigned long addr, pmd_t pmd, union mc_target *target)
6281{
6282 struct page *page = NULL;
6283 struct page_cgroup *pc;
6284 enum mc_target_type ret = MC_TARGET_NONE;
6285
6286 page = pmd_page(pmd);
6287 VM_BUG_ON(!page || !PageHead(page));
6288 if (!move_anon())
6289 return ret;
6290 pc = lookup_page_cgroup(page);
6291 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6292 ret = MC_TARGET_PAGE;
6293 if (target) {
6294 get_page(page);
6295 target->page = page;
6296 }
6297 }
6298 return ret;
6299}
6300#else
6301static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6302 unsigned long addr, pmd_t pmd, union mc_target *target)
6303{
6304 return MC_TARGET_NONE;
6305}
6306#endif
6307
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006308static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6309 unsigned long addr, unsigned long end,
6310 struct mm_walk *walk)
6311{
6312 struct vm_area_struct *vma = walk->private;
6313 pte_t *pte;
6314 spinlock_t *ptl;
6315
Naoya Horiguchi12724852012-03-21 16:34:28 -07006316 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6317 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6318 mc.precharge += HPAGE_PMD_NR;
6319 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006320 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006321 }
Dave Hansen03319322011-03-22 16:32:56 -07006322
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006323 if (pmd_trans_unstable(pmd))
6324 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006325 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6326 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006327 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006328 mc.precharge++; /* increment precharge temporarily */
6329 pte_unmap_unlock(pte - 1, ptl);
6330 cond_resched();
6331
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006332 return 0;
6333}
6334
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006335static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6336{
6337 unsigned long precharge;
6338 struct vm_area_struct *vma;
6339
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006340 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006341 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6342 struct mm_walk mem_cgroup_count_precharge_walk = {
6343 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6344 .mm = mm,
6345 .private = vma,
6346 };
6347 if (is_vm_hugetlb_page(vma))
6348 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006349 walk_page_range(vma->vm_start, vma->vm_end,
6350 &mem_cgroup_count_precharge_walk);
6351 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006352 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006353
6354 precharge = mc.precharge;
6355 mc.precharge = 0;
6356
6357 return precharge;
6358}
6359
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006360static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6361{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006362 unsigned long precharge = mem_cgroup_count_precharge(mm);
6363
6364 VM_BUG_ON(mc.moving_task);
6365 mc.moving_task = current;
6366 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006367}
6368
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006369/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6370static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006371{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006372 struct mem_cgroup *from = mc.from;
6373 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006374 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006375
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006376 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006377 if (mc.precharge) {
6378 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6379 mc.precharge = 0;
6380 }
6381 /*
6382 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6383 * we must uncharge here.
6384 */
6385 if (mc.moved_charge) {
6386 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6387 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006388 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006389 /* we must fixup refcnts and charges */
6390 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006391 /* uncharge swap account from the old cgroup */
6392 if (!mem_cgroup_is_root(mc.from))
6393 res_counter_uncharge(&mc.from->memsw,
6394 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006395
6396 for (i = 0; i < mc.moved_swap; i++)
6397 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006398
6399 if (!mem_cgroup_is_root(mc.to)) {
6400 /*
6401 * we charged both to->res and to->memsw, so we should
6402 * uncharge to->res.
6403 */
6404 res_counter_uncharge(&mc.to->res,
6405 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006406 }
Li Zefan40503772013-07-08 16:00:34 -07006407 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006408 mc.moved_swap = 0;
6409 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006410 memcg_oom_recover(from);
6411 memcg_oom_recover(to);
6412 wake_up_all(&mc.waitq);
6413}
6414
6415static void mem_cgroup_clear_mc(void)
6416{
6417 struct mem_cgroup *from = mc.from;
6418
6419 /*
6420 * we must clear moving_task before waking up waiters at the end of
6421 * task migration.
6422 */
6423 mc.moving_task = NULL;
6424 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006425 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006426 mc.from = NULL;
6427 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006428 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006429 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006430}
6431
Tejun Heoeb954192013-08-08 20:11:23 -04006432static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006433 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006434{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006435 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006436 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006437 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006438 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006439
Glauber Costaee5e8472013-02-22 16:34:50 -08006440 /*
6441 * We are now commited to this value whatever it is. Changes in this
6442 * tunable will only affect upcoming migrations, not the current one.
6443 * So we need to save it, and keep it going.
6444 */
6445 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6446 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006447 struct mm_struct *mm;
6448 struct mem_cgroup *from = mem_cgroup_from_task(p);
6449
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006450 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006451
6452 mm = get_task_mm(p);
6453 if (!mm)
6454 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006455 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006456 if (mm->owner == p) {
6457 VM_BUG_ON(mc.from);
6458 VM_BUG_ON(mc.to);
6459 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006460 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006461 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006462 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006463 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006464 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006465 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006466 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006467 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006468 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006469
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006470 ret = mem_cgroup_precharge_mc(mm);
6471 if (ret)
6472 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006473 }
6474 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006475 }
6476 return ret;
6477}
6478
Tejun Heoeb954192013-08-08 20:11:23 -04006479static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006480 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006481{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006482 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006483}
6484
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006485static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6486 unsigned long addr, unsigned long end,
6487 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006488{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006489 int ret = 0;
6490 struct vm_area_struct *vma = walk->private;
6491 pte_t *pte;
6492 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006493 enum mc_target_type target_type;
6494 union mc_target target;
6495 struct page *page;
6496 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006497
Naoya Horiguchi12724852012-03-21 16:34:28 -07006498 /*
6499 * We don't take compound_lock() here but no race with splitting thp
6500 * happens because:
6501 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6502 * under splitting, which means there's no concurrent thp split,
6503 * - if another thread runs into split_huge_page() just after we
6504 * entered this if-block, the thread must wait for page table lock
6505 * to be unlocked in __split_huge_page_splitting(), where the main
6506 * part of thp split is not executed yet.
6507 */
6508 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006509 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006510 spin_unlock(&vma->vm_mm->page_table_lock);
6511 return 0;
6512 }
6513 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6514 if (target_type == MC_TARGET_PAGE) {
6515 page = target.page;
6516 if (!isolate_lru_page(page)) {
6517 pc = lookup_page_cgroup(page);
6518 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006519 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006520 mc.precharge -= HPAGE_PMD_NR;
6521 mc.moved_charge += HPAGE_PMD_NR;
6522 }
6523 putback_lru_page(page);
6524 }
6525 put_page(page);
6526 }
6527 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006528 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006529 }
6530
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006531 if (pmd_trans_unstable(pmd))
6532 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006533retry:
6534 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6535 for (; addr != end; addr += PAGE_SIZE) {
6536 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006537 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006538
6539 if (!mc.precharge)
6540 break;
6541
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006542 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006543 case MC_TARGET_PAGE:
6544 page = target.page;
6545 if (isolate_lru_page(page))
6546 goto put;
6547 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006548 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006549 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006550 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006551 /* we uncharge from mc.from later. */
6552 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006553 }
6554 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006555put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006556 put_page(page);
6557 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006558 case MC_TARGET_SWAP:
6559 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006560 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006561 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006562 /* we fixup refcnts and charges later. */
6563 mc.moved_swap++;
6564 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006565 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006566 default:
6567 break;
6568 }
6569 }
6570 pte_unmap_unlock(pte - 1, ptl);
6571 cond_resched();
6572
6573 if (addr != end) {
6574 /*
6575 * We have consumed all precharges we got in can_attach().
6576 * We try charge one by one, but don't do any additional
6577 * charges to mc.to if we have failed in charge once in attach()
6578 * phase.
6579 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006580 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006581 if (!ret)
6582 goto retry;
6583 }
6584
6585 return ret;
6586}
6587
6588static void mem_cgroup_move_charge(struct mm_struct *mm)
6589{
6590 struct vm_area_struct *vma;
6591
6592 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006593retry:
6594 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6595 /*
6596 * Someone who are holding the mmap_sem might be waiting in
6597 * waitq. So we cancel all extra charges, wake up all waiters,
6598 * and retry. Because we cancel precharges, we might not be able
6599 * to move enough charges, but moving charge is a best-effort
6600 * feature anyway, so it wouldn't be a big problem.
6601 */
6602 __mem_cgroup_clear_mc();
6603 cond_resched();
6604 goto retry;
6605 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006606 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6607 int ret;
6608 struct mm_walk mem_cgroup_move_charge_walk = {
6609 .pmd_entry = mem_cgroup_move_charge_pte_range,
6610 .mm = mm,
6611 .private = vma,
6612 };
6613 if (is_vm_hugetlb_page(vma))
6614 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006615 ret = walk_page_range(vma->vm_start, vma->vm_end,
6616 &mem_cgroup_move_charge_walk);
6617 if (ret)
6618 /*
6619 * means we have consumed all precharges and failed in
6620 * doing additional charge. Just abandon here.
6621 */
6622 break;
6623 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006624 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006625}
6626
Tejun Heoeb954192013-08-08 20:11:23 -04006627static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006628 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006629{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006630 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006631 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006632
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006633 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006634 if (mc.to)
6635 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006636 mmput(mm);
6637 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006638 if (mc.to)
6639 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006640}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006641#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006642static int mem_cgroup_can_attach(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 return 0;
6646}
Tejun Heoeb954192013-08-08 20:11:23 -04006647static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006648 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006649{
6650}
Tejun Heoeb954192013-08-08 20:11:23 -04006651static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006652 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006653{
6654}
6655#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006656
Tejun Heof00baae2013-04-15 13:41:15 -07006657/*
6658 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6659 * to verify sane_behavior flag on each mount attempt.
6660 */
Tejun Heoeb954192013-08-08 20:11:23 -04006661static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006662{
6663 /*
6664 * use_hierarchy is forced with sane_behavior. cgroup core
6665 * guarantees that @root doesn't have any children, so turning it
6666 * on for the root memcg is enough.
6667 */
Tejun Heoeb954192013-08-08 20:11:23 -04006668 if (cgroup_sane_behavior(root_css->cgroup))
6669 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006670}
6671
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006672struct cgroup_subsys mem_cgroup_subsys = {
6673 .name = "memory",
6674 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006675 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006676 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006677 .css_offline = mem_cgroup_css_offline,
6678 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006679 .can_attach = mem_cgroup_can_attach,
6680 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006681 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006682 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006683 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006684 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006685 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006686};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006687
Andrew Mortonc255a452012-07-31 16:43:02 -07006688#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006689static int __init enable_swap_account(char *s)
6690{
Michal Hockoa2c89902011-05-24 17:12:50 -07006691 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006692 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006693 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006694 really_do_swap_account = 0;
6695 return 1;
6696}
Michal Hockoa2c89902011-05-24 17:12:50 -07006697__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006698
Michal Hocko2d110852013-02-22 16:34:43 -08006699static void __init memsw_file_init(void)
6700{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006701 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006702}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006703
6704static void __init enable_swap_cgroup(void)
6705{
6706 if (!mem_cgroup_disabled() && really_do_swap_account) {
6707 do_swap_account = 1;
6708 memsw_file_init();
6709 }
6710}
6711
Michal Hocko2d110852013-02-22 16:34:43 -08006712#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006713static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006714{
6715}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006716#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006717
6718/*
Michal Hocko10813122013-02-22 16:35:41 -08006719 * subsys_initcall() for memory controller.
6720 *
6721 * Some parts like hotcpu_notifier() have to be initialized from this context
6722 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6723 * everything that doesn't depend on a specific mem_cgroup structure should
6724 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006725 */
6726static int __init mem_cgroup_init(void)
6727{
6728 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006729 enable_swap_cgroup();
Michal Hockoe4777492013-02-22 16:35:40 -08006730 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006731 return 0;
6732}
6733subsys_initcall(mem_cgroup_init);