blob: 3d28d5a61efd6aaffb87507987621cb856001c3c [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08009 * Memory thresholds
10 * Copyright (C) 2009 Nokia Corporation
11 * Author: Kirill A. Shutemov
12 *
Glauber Costa7ae1e1d2012-12-18 14:21:56 -080013 * Kernel Memory Controller
14 * Copyright (C) 2012 Parallels Inc. and Google Inc.
15 * Authors: Glauber Costa and Suleiman Souhlal
16 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -080017 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 */
27
28#include <linux/res_counter.h>
29#include <linux/memcontrol.h>
30#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080031#include <linux/mm.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080032#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080033#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080034#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080035#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080036#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080037#include <linux/bit_spinlock.h>
38#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070039#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040040#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080041#include <linux/mutex.h>
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -070042#include <linux/rbtree.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070043#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080044#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080045#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080046#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080047#include <linux/eventfd.h>
48#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080049#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080050#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070051#include <linux/vmalloc.h>
Anton Vorontsov70ddf632013-04-29 15:08:31 -070052#include <linux/vmpressure.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070053#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070054#include <linux/page_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080055#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070056#include <linux/oom.h>
Johannes Weiner0056f4e2013-10-31 16:34:14 -070057#include <linux/lockdep.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080058#include "internal.h"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000059#include <net/sock.h>
Michal Hocko4bd2c1e2012-10-08 16:33:10 -070060#include <net/ip.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +000061#include <net/tcp_memcontrol.h>
Qiang Huangf35c3a82013-11-12 15:08:22 -080062#include "slab.h"
Balbir Singh8cdea7c2008-02-07 00:13:50 -080063
Balbir Singh8697d332008-02-07 00:13:59 -080064#include <asm/uaccess.h>
65
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070066#include <trace/events/vmscan.h>
67
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070068struct cgroup_subsys mem_cgroup_subsys __read_mostly;
David Rientjes68ae5642012-12-12 13:51:57 -080069EXPORT_SYMBOL(mem_cgroup_subsys);
70
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070071#define MEM_CGROUP_RECLAIM_RETRIES 5
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -070072static struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080073
Andrew Mortonc255a452012-07-31 16:43:02 -070074#ifdef CONFIG_MEMCG_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070075/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080076int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080077
78/* for remember boot option*/
Andrew Mortonc255a452012-07-31 16:43:02 -070079#ifdef CONFIG_MEMCG_SWAP_ENABLED
Michal Hockoa42c3902010-11-24 12:57:08 -080080static int really_do_swap_account __initdata = 1;
81#else
82static int really_do_swap_account __initdata = 0;
83#endif
84
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080085#else
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -070086#define do_swap_account 0
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080087#endif
88
89
Johannes Weineraf7c4b02012-05-29 15:07:08 -070090static const char * const mem_cgroup_stat_names[] = {
91 "cache",
92 "rss",
David Rientjesb070e652013-05-07 16:18:09 -070093 "rss_huge",
Johannes Weineraf7c4b02012-05-29 15:07:08 -070094 "mapped_file",
Sha Zhengju3ea67d02013-09-12 15:13:53 -070095 "writeback",
Johannes Weineraf7c4b02012-05-29 15:07:08 -070096 "swap",
97};
98
Johannes Weinere9f89742011-03-23 16:42:37 -070099enum mem_cgroup_events_index {
100 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
101 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -0700102 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
103 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700104 MEM_CGROUP_EVENTS_NSTATS,
105};
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700106
107static const char * const mem_cgroup_events_names[] = {
108 "pgpgin",
109 "pgpgout",
110 "pgfault",
111 "pgmajfault",
112};
113
Sha Zhengju58cf1882013-02-22 16:32:05 -0800114static const char * const mem_cgroup_lru_names[] = {
115 "inactive_anon",
116 "active_anon",
117 "inactive_file",
118 "active_file",
119 "unevictable",
120};
121
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700122/*
123 * Per memcg event counter is incremented at every pagein/pageout. With THP,
124 * it will be incremated by the number of pages. This counter is used for
125 * for trigger some periodic events. This is straightforward and better
126 * than using jiffies etc. to handle periodic memcg event.
127 */
128enum mem_cgroup_events_target {
129 MEM_CGROUP_TARGET_THRESH,
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700130 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700131 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700132 MEM_CGROUP_NTARGETS,
133};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700134#define THRESHOLDS_EVENTS_TARGET 128
135#define SOFTLIMIT_EVENTS_TARGET 1024
136#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700137
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800138struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700139 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700140 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700141 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700142 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800143};
144
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800145struct mem_cgroup_reclaim_iter {
Michal Hocko5f578162013-04-29 15:07:17 -0700146 /*
147 * last scanned hierarchy member. Valid only if last_dead_count
148 * matches memcg->dead_count of the hierarchy root group.
149 */
Michal Hocko542f85f2013-04-29 15:07:15 -0700150 struct mem_cgroup *last_visited;
Michal Hocko5f578162013-04-29 15:07:17 -0700151 unsigned long last_dead_count;
152
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800153 /* scan generation, increased every round-trip */
154 unsigned int generation;
155};
156
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800157/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800158 * per-zone information in memory controller.
159 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800160struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800161 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700162 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800163
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800164 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
165
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700166 struct rb_node tree_node; /* RB tree node */
167 unsigned long long usage_in_excess;/* Set to the value by which */
168 /* the soft limit is exceeded*/
169 bool on_tree;
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700170 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700171 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800172};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800173
174struct mem_cgroup_per_node {
175 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
176};
177
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700178/*
179 * Cgroups above their limits are maintained in a RB-Tree, independent of
180 * their hierarchy representation
181 */
182
183struct mem_cgroup_tree_per_zone {
184 struct rb_root rb_root;
185 spinlock_t lock;
186};
187
188struct mem_cgroup_tree_per_node {
189 struct mem_cgroup_tree_per_zone rb_tree_per_zone[MAX_NR_ZONES];
190};
191
192struct mem_cgroup_tree {
193 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
194};
195
196static struct mem_cgroup_tree soft_limit_tree __read_mostly;
197
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800198struct mem_cgroup_threshold {
199 struct eventfd_ctx *eventfd;
200 u64 threshold;
201};
202
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700203/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800204struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700205 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700206 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800207 /* Size of entries[] */
208 unsigned int size;
209 /* Array of thresholds */
210 struct mem_cgroup_threshold entries[0];
211};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700212
213struct mem_cgroup_thresholds {
214 /* Primary thresholds array */
215 struct mem_cgroup_threshold_ary *primary;
216 /*
217 * Spare threshold array.
218 * This is needed to make mem_cgroup_unregister_event() "never fail".
219 * It must be able to store at least primary->size - 1 entries.
220 */
221 struct mem_cgroup_threshold_ary *spare;
222};
223
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700224/* for OOM */
225struct mem_cgroup_eventfd_list {
226 struct list_head list;
227 struct eventfd_ctx *eventfd;
228};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800229
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700230static void mem_cgroup_threshold(struct mem_cgroup *memcg);
231static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800232
Balbir Singhf64c3f52009-09-23 15:56:37 -0700233/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800234 * The memory controller data structure. The memory controller controls both
235 * page cache and RSS per cgroup. We would eventually like to provide
236 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
237 * to help the administrator determine what knobs to tune.
238 *
239 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800240 * we hit the water mark. May be even add a low water mark, such that
241 * no reclaim occurs from a cgroup at it's low water mark, this is
242 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800243 */
244struct mem_cgroup {
245 struct cgroup_subsys_state css;
246 /*
247 * the counter to account for memory usage
248 */
249 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700250
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700251 /* vmpressure notifications */
252 struct vmpressure vmpressure;
253
Li Zefan465939a2013-07-08 16:00:38 -0700254 /*
255 * the counter to account for mem+swap usage.
256 */
257 struct res_counter memsw;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700258
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800259 /*
Glauber Costa510fc4e2012-12-18 14:21:47 -0800260 * the counter to account for kernel memory usage.
261 */
262 struct res_counter kmem;
263 /*
Balbir Singh18f59ea2009-01-07 18:08:07 -0800264 * Should the accounting and control be hierarchical, per subtree?
265 */
266 bool use_hierarchy;
Glauber Costa510fc4e2012-12-18 14:21:47 -0800267 unsigned long kmem_account_flags; /* See KMEM_ACCOUNTED_*, below */
Michal Hocko79dfdac2011-07-26 16:08:23 -0700268
269 bool oom_lock;
270 atomic_t under_oom;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700271 atomic_t oom_wakeups;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700272
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700273 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700274 /* OOM-Killer disable */
275 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800276
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700277 /* set when res.limit == memsw.limit */
278 bool memsw_is_minimum;
279
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800280 /* protect arrays of thresholds */
281 struct mutex thresholds_lock;
282
283 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700284 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700285
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800286 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700287 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700288
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700289 /* For oom notifier event fd */
290 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700291
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800292 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800293 * Should we move charges of a task when a task is moved into this
294 * mem_cgroup ? And what type of charges should we move ?
295 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700296 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800297 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700298 * set > 0 if pages under this cgroup are moving to other cgroup.
299 */
300 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700301 /* taken only while moving_account > 0 */
302 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700303 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800304 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800305 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700306 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700307 /*
308 * used when a cpu is offlined or other synchronizations
309 * See mem_cgroup_read_stat().
310 */
311 struct mem_cgroup_stat_cpu nocpu_base;
312 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000313
Michal Hocko5f578162013-04-29 15:07:17 -0700314 atomic_t dead_count;
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700315#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000316 struct tcp_memcontrol tcp_mem;
317#endif
Glauber Costa2633d7a2012-12-18 14:22:34 -0800318#if defined(CONFIG_MEMCG_KMEM)
319 /* analogous to slab_common's slab_caches list. per-memcg */
320 struct list_head memcg_slab_caches;
321 /* Not a spinlock, we can take a lot of time walking the list */
322 struct mutex slab_caches_mutex;
323 /* Index in the kmem_cache->memcg_params->memcg_caches array */
324 int kmemcg_id;
325#endif
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800326
327 int last_scanned_node;
328#if MAX_NUMNODES > 1
329 nodemask_t scan_nodes;
330 atomic_t numainfo_events;
331 atomic_t numainfo_updating;
332#endif
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700333
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700334 struct mem_cgroup_per_node *nodeinfo[0];
335 /* WARNING: nodeinfo must be the last member here */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800336};
337
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800338static size_t memcg_size(void)
339{
340 return sizeof(struct mem_cgroup) +
341 nr_node_ids * sizeof(struct mem_cgroup_per_node);
342}
343
Glauber Costa510fc4e2012-12-18 14:21:47 -0800344/* internal only representation about the status of kmem accounting. */
345enum {
346 KMEM_ACCOUNTED_ACTIVE = 0, /* accounted by this cgroup itself */
Glauber Costaa8964b92012-12-18 14:22:09 -0800347 KMEM_ACCOUNTED_ACTIVATED, /* static key enabled. */
Glauber Costa7de37682012-12-18 14:22:07 -0800348 KMEM_ACCOUNTED_DEAD, /* dead memcg with pending kmem charges */
Glauber Costa510fc4e2012-12-18 14:21:47 -0800349};
350
Glauber Costaa8964b92012-12-18 14:22:09 -0800351/* We account when limit is on, but only after call sites are patched */
352#define KMEM_ACCOUNTED_MASK \
353 ((1 << KMEM_ACCOUNTED_ACTIVE) | (1 << KMEM_ACCOUNTED_ACTIVATED))
Glauber Costa510fc4e2012-12-18 14:21:47 -0800354
355#ifdef CONFIG_MEMCG_KMEM
356static inline void memcg_kmem_set_active(struct mem_cgroup *memcg)
357{
358 set_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
359}
Glauber Costa7de37682012-12-18 14:22:07 -0800360
361static bool memcg_kmem_is_active(struct mem_cgroup *memcg)
362{
363 return test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
364}
365
Glauber Costaa8964b92012-12-18 14:22:09 -0800366static void memcg_kmem_set_activated(struct mem_cgroup *memcg)
367{
368 set_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
369}
370
Glauber Costa55007d82012-12-18 14:22:38 -0800371static void memcg_kmem_clear_activated(struct mem_cgroup *memcg)
372{
373 clear_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
374}
375
Glauber Costa7de37682012-12-18 14:22:07 -0800376static void memcg_kmem_mark_dead(struct mem_cgroup *memcg)
377{
Li Zefan10d5ebf2013-07-08 16:00:33 -0700378 /*
379 * Our caller must use css_get() first, because memcg_uncharge_kmem()
380 * will call css_put() if it sees the memcg is dead.
381 */
382 smp_wmb();
Glauber Costa7de37682012-12-18 14:22:07 -0800383 if (test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags))
384 set_bit(KMEM_ACCOUNTED_DEAD, &memcg->kmem_account_flags);
385}
386
387static bool memcg_kmem_test_and_clear_dead(struct mem_cgroup *memcg)
388{
389 return test_and_clear_bit(KMEM_ACCOUNTED_DEAD,
390 &memcg->kmem_account_flags);
391}
Glauber Costa510fc4e2012-12-18 14:21:47 -0800392#endif
393
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800394/* Stuffs for move charges at task migration. */
395/*
Glauber Costaee5e8472013-02-22 16:34:50 -0800396 * Types of charges to be moved. "move_charge_at_immitgrate" and
397 * "immigrate_flags" are treated as a left-shifted bitmap of these types.
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800398 */
399enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800400 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700401 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800402 NR_MOVE_TYPE,
403};
404
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800405/* "mc" and its members are protected by cgroup_mutex */
406static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800407 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800408 struct mem_cgroup *from;
409 struct mem_cgroup *to;
Glauber Costaee5e8472013-02-22 16:34:50 -0800410 unsigned long immigrate_flags;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800411 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800412 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800413 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800414 struct task_struct *moving_task; /* a task moving charges */
415 wait_queue_head_t waitq; /* a waitq for other context */
416} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700417 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800418 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
419};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800420
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700421static bool move_anon(void)
422{
Glauber Costaee5e8472013-02-22 16:34:50 -0800423 return test_bit(MOVE_CHARGE_TYPE_ANON, &mc.immigrate_flags);
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700424}
425
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700426static bool move_file(void)
427{
Glauber Costaee5e8472013-02-22 16:34:50 -0800428 return test_bit(MOVE_CHARGE_TYPE_FILE, &mc.immigrate_flags);
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700429}
430
Balbir Singh4e416952009-09-23 15:56:39 -0700431/*
432 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
433 * limit reclaim to prevent infinite loops, if they ever occur.
434 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700435#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700436#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700437
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800438enum charge_type {
439 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700440 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800441 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700442 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700443 NR_CHARGE_TYPE,
444};
445
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800446/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800447enum res_type {
448 _MEM,
449 _MEMSWAP,
450 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800451 _KMEM,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800452};
453
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700454#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
455#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800456#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700457/* Used for OOM nofiier */
458#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800459
Balbir Singh75822b42009-09-23 15:56:38 -0700460/*
461 * Reclaim flags for mem_cgroup_hierarchical_reclaim
462 */
463#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
464#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
465#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
466#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
467
Glauber Costa09998212013-02-22 16:34:55 -0800468/*
469 * The memcg_create_mutex will be held whenever a new cgroup is created.
470 * As a consequence, any change that needs to protect against new child cgroups
471 * appearing has to hold it as well.
472 */
473static DEFINE_MUTEX(memcg_create_mutex);
474
Wanpeng Lib2145142012-07-31 16:46:01 -0700475struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
476{
Tejun Heoa7c6d552013-08-08 20:11:23 -0400477 return s ? container_of(s, struct mem_cgroup, css) : NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -0700478}
479
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700480/* Some nice accessors for the vmpressure. */
481struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
482{
483 if (!memcg)
484 memcg = root_mem_cgroup;
485 return &memcg->vmpressure;
486}
487
488struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr)
489{
490 return &container_of(vmpr, struct mem_cgroup, vmpressure)->css;
491}
492
493struct vmpressure *css_to_vmpressure(struct cgroup_subsys_state *css)
494{
495 return &mem_cgroup_from_css(css)->vmpressure;
496}
497
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700498static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
499{
500 return (memcg == root_mem_cgroup);
501}
502
Glauber Costae1aab162011-12-11 21:47:03 +0000503/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700504#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000505
Glauber Costae1aab162011-12-11 21:47:03 +0000506void sock_update_memcg(struct sock *sk)
507{
Glauber Costa376be5f2012-01-20 04:57:14 +0000508 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000509 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700510 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000511
512 BUG_ON(!sk->sk_prot->proto_cgroup);
513
Glauber Costaf3f511e2012-01-05 20:16:39 +0000514 /* Socket cloning can throw us here with sk_cgrp already
515 * filled. It won't however, necessarily happen from
516 * process context. So the test for root memcg given
517 * the current task's memcg won't help us in this case.
518 *
519 * Respecting the original socket's memcg is a better
520 * decision in this case.
521 */
522 if (sk->sk_cgrp) {
523 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700524 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000525 return;
526 }
527
Glauber Costae1aab162011-12-11 21:47:03 +0000528 rcu_read_lock();
529 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700530 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Li Zefan5347e5a2013-07-08 16:00:30 -0700531 if (!mem_cgroup_is_root(memcg) &&
532 memcg_proto_active(cg_proto) && css_tryget(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700533 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000534 }
535 rcu_read_unlock();
536 }
537}
538EXPORT_SYMBOL(sock_update_memcg);
539
540void sock_release_memcg(struct sock *sk)
541{
Glauber Costa376be5f2012-01-20 04:57:14 +0000542 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000543 struct mem_cgroup *memcg;
544 WARN_ON(!sk->sk_cgrp->memcg);
545 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700546 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000547 }
548}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000549
550struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
551{
552 if (!memcg || mem_cgroup_is_root(memcg))
553 return NULL;
554
555 return &memcg->tcp_mem.cg_proto;
556}
557EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000558
Glauber Costa3f134612012-05-29 15:07:11 -0700559static void disarm_sock_keys(struct mem_cgroup *memcg)
560{
561 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
562 return;
563 static_key_slow_dec(&memcg_socket_limit_enabled);
564}
565#else
566static void disarm_sock_keys(struct mem_cgroup *memcg)
567{
568}
569#endif
570
Glauber Costaa8964b92012-12-18 14:22:09 -0800571#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800572/*
573 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
574 * There are two main reasons for not using the css_id for this:
575 * 1) this works better in sparse environments, where we have a lot of memcgs,
576 * but only a few kmem-limited. Or also, if we have, for instance, 200
577 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
578 * 200 entry array for that.
579 *
580 * 2) In order not to violate the cgroup API, we would like to do all memory
581 * allocation in ->create(). At that point, we haven't yet allocated the
582 * css_id. Having a separate index prevents us from messing with the cgroup
583 * core for this
584 *
585 * The current size of the caches array is stored in
586 * memcg_limited_groups_array_size. It will double each time we have to
587 * increase it.
588 */
589static DEFINE_IDA(kmem_limited_groups);
Glauber Costa749c5412012-12-18 14:23:01 -0800590int memcg_limited_groups_array_size;
591
Glauber Costa55007d82012-12-18 14:22:38 -0800592/*
593 * MIN_SIZE is different than 1, because we would like to avoid going through
594 * the alloc/free process all the time. In a small machine, 4 kmem-limited
595 * cgroups is a reasonable guess. In the future, it could be a parameter or
596 * tunable, but that is strictly not necessary.
597 *
598 * MAX_SIZE should be as large as the number of css_ids. Ideally, we could get
599 * this constant directly from cgroup, but it is understandable that this is
600 * better kept as an internal representation in cgroup.c. In any case, the
601 * css_id space is not getting any smaller, and we don't have to necessarily
602 * increase ours as well if it increases.
603 */
604#define MEMCG_CACHES_MIN_SIZE 4
605#define MEMCG_CACHES_MAX_SIZE 65535
606
Glauber Costad7f25f82012-12-18 14:22:40 -0800607/*
608 * A lot of the calls to the cache allocation functions are expected to be
609 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
610 * conditional to this static branch, we'll have to allow modules that does
611 * kmem_cache_alloc and the such to see this symbol as well
612 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800613struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800614EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800615
616static void disarm_kmem_keys(struct mem_cgroup *memcg)
617{
Glauber Costa55007d82012-12-18 14:22:38 -0800618 if (memcg_kmem_is_active(memcg)) {
Glauber Costaa8964b92012-12-18 14:22:09 -0800619 static_key_slow_dec(&memcg_kmem_enabled_key);
Glauber Costa55007d82012-12-18 14:22:38 -0800620 ida_simple_remove(&kmem_limited_groups, memcg->kmemcg_id);
621 }
Glauber Costabea207c2012-12-18 14:22:11 -0800622 /*
623 * This check can't live in kmem destruction function,
624 * since the charges will outlive the cgroup
625 */
626 WARN_ON(res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0);
Glauber Costaa8964b92012-12-18 14:22:09 -0800627}
628#else
629static void disarm_kmem_keys(struct mem_cgroup *memcg)
630{
631}
632#endif /* CONFIG_MEMCG_KMEM */
633
634static void disarm_static_keys(struct mem_cgroup *memcg)
635{
636 disarm_sock_keys(memcg);
637 disarm_kmem_keys(memcg);
638}
639
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700640static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800641
Balbir Singhf64c3f52009-09-23 15:56:37 -0700642static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700643mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700644{
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800645 VM_BUG_ON((unsigned)nid >= nr_node_ids);
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700646 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700647}
648
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700649struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100650{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700651 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100652}
653
Balbir Singhf64c3f52009-09-23 15:56:37 -0700654static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700655page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700656{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700657 int nid = page_to_nid(page);
658 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700659
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700660 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700661}
662
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700663static struct mem_cgroup_tree_per_zone *
664soft_limit_tree_node_zone(int nid, int zid)
665{
666 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
667}
668
669static struct mem_cgroup_tree_per_zone *
670soft_limit_tree_from_page(struct page *page)
671{
672 int nid = page_to_nid(page);
673 int zid = page_zonenum(page);
674
675 return &soft_limit_tree.rb_tree_per_node[nid]->rb_tree_per_zone[zid];
676}
677
678static void
679__mem_cgroup_insert_exceeded(struct mem_cgroup *memcg,
680 struct mem_cgroup_per_zone *mz,
681 struct mem_cgroup_tree_per_zone *mctz,
682 unsigned long long new_usage_in_excess)
683{
684 struct rb_node **p = &mctz->rb_root.rb_node;
685 struct rb_node *parent = NULL;
686 struct mem_cgroup_per_zone *mz_node;
687
688 if (mz->on_tree)
689 return;
690
691 mz->usage_in_excess = new_usage_in_excess;
692 if (!mz->usage_in_excess)
693 return;
694 while (*p) {
695 parent = *p;
696 mz_node = rb_entry(parent, struct mem_cgroup_per_zone,
697 tree_node);
698 if (mz->usage_in_excess < mz_node->usage_in_excess)
699 p = &(*p)->rb_left;
700 /*
701 * We can't avoid mem cgroups that are over their soft
702 * limit by the same amount
703 */
704 else if (mz->usage_in_excess >= mz_node->usage_in_excess)
705 p = &(*p)->rb_right;
706 }
707 rb_link_node(&mz->tree_node, parent, p);
708 rb_insert_color(&mz->tree_node, &mctz->rb_root);
709 mz->on_tree = true;
710}
711
712static void
713__mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
714 struct mem_cgroup_per_zone *mz,
715 struct mem_cgroup_tree_per_zone *mctz)
716{
717 if (!mz->on_tree)
718 return;
719 rb_erase(&mz->tree_node, &mctz->rb_root);
720 mz->on_tree = false;
721}
722
723static void
724mem_cgroup_remove_exceeded(struct mem_cgroup *memcg,
725 struct mem_cgroup_per_zone *mz,
726 struct mem_cgroup_tree_per_zone *mctz)
727{
728 spin_lock(&mctz->lock);
729 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
730 spin_unlock(&mctz->lock);
731}
732
733
734static void mem_cgroup_update_tree(struct mem_cgroup *memcg, struct page *page)
735{
736 unsigned long long excess;
737 struct mem_cgroup_per_zone *mz;
738 struct mem_cgroup_tree_per_zone *mctz;
739 int nid = page_to_nid(page);
740 int zid = page_zonenum(page);
741 mctz = soft_limit_tree_from_page(page);
742
743 /*
744 * Necessary to update all ancestors when hierarchy is used.
745 * because their event counter is not touched.
746 */
747 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
748 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
749 excess = res_counter_soft_limit_excess(&memcg->res);
750 /*
751 * We have to update the tree if mz is on RB-tree or
752 * mem is over its softlimit.
753 */
754 if (excess || mz->on_tree) {
755 spin_lock(&mctz->lock);
756 /* if on-tree, remove it */
757 if (mz->on_tree)
758 __mem_cgroup_remove_exceeded(memcg, mz, mctz);
759 /*
760 * Insert again. mz->usage_in_excess will be updated.
761 * If excess is 0, no tree ops.
762 */
763 __mem_cgroup_insert_exceeded(memcg, mz, mctz, excess);
764 spin_unlock(&mctz->lock);
765 }
766 }
767}
768
769static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
770{
771 int node, zone;
772 struct mem_cgroup_per_zone *mz;
773 struct mem_cgroup_tree_per_zone *mctz;
774
775 for_each_node(node) {
776 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
777 mz = mem_cgroup_zoneinfo(memcg, node, zone);
778 mctz = soft_limit_tree_node_zone(node, zone);
779 mem_cgroup_remove_exceeded(memcg, mz, mctz);
780 }
781 }
782}
783
784static struct mem_cgroup_per_zone *
785__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
786{
787 struct rb_node *rightmost = NULL;
788 struct mem_cgroup_per_zone *mz;
789
790retry:
791 mz = NULL;
792 rightmost = rb_last(&mctz->rb_root);
793 if (!rightmost)
794 goto done; /* Nothing to reclaim from */
795
796 mz = rb_entry(rightmost, struct mem_cgroup_per_zone, tree_node);
797 /*
798 * Remove the node now but someone else can add it back,
799 * we will to add it back at the end of reclaim to its correct
800 * position in the tree.
801 */
802 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
803 if (!res_counter_soft_limit_excess(&mz->memcg->res) ||
804 !css_tryget(&mz->memcg->css))
805 goto retry;
806done:
807 return mz;
808}
809
810static struct mem_cgroup_per_zone *
811mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_zone *mctz)
812{
813 struct mem_cgroup_per_zone *mz;
814
815 spin_lock(&mctz->lock);
816 mz = __mem_cgroup_largest_soft_limit_node(mctz);
817 spin_unlock(&mctz->lock);
818 return mz;
819}
820
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700821/*
822 * Implementation Note: reading percpu statistics for memcg.
823 *
824 * Both of vmstat[] and percpu_counter has threshold and do periodic
825 * synchronization to implement "quick" read. There are trade-off between
826 * reading cost and precision of value. Then, we may have a chance to implement
827 * a periodic synchronizion of counter in memcg's counter.
828 *
829 * But this _read() function is used for user interface now. The user accounts
830 * memory usage by memory cgroup and he _always_ requires exact value because
831 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
832 * have to visit all online cpus and make sum. So, for now, unnecessary
833 * synchronization is not implemented. (just implemented for cpu hotplug)
834 *
835 * If there are kernel internal actions which can make use of some not-exact
836 * value, and reading all cpu value can be performance bottleneck in some
837 * common workload, threashold and synchonization as vmstat[] should be
838 * implemented.
839 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700840static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700841 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800842{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700843 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800844 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800845
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700846 get_online_cpus();
847 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700848 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700849#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700850 spin_lock(&memcg->pcp_counter_lock);
851 val += memcg->nocpu_base.count[idx];
852 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700853#endif
854 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800855 return val;
856}
857
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700858static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700859 bool charge)
860{
861 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700862 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700863}
864
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700865static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700866 enum mem_cgroup_events_index idx)
867{
868 unsigned long val = 0;
869 int cpu;
870
David Rientjes9c567512013-10-16 13:46:43 -0700871 get_online_cpus();
Johannes Weinere9f89742011-03-23 16:42:37 -0700872 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700873 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700874#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700875 spin_lock(&memcg->pcp_counter_lock);
876 val += memcg->nocpu_base.events[idx];
877 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700878#endif
David Rientjes9c567512013-10-16 13:46:43 -0700879 put_online_cpus();
Johannes Weinere9f89742011-03-23 16:42:37 -0700880 return val;
881}
882
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700883static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700884 struct page *page,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700885 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800886{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800887 preempt_disable();
888
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700889 /*
890 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
891 * counted as CACHE even if it's on ANON LRU.
892 */
893 if (anon)
894 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700895 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800896 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700897 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700898 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700899
David Rientjesb070e652013-05-07 16:18:09 -0700900 if (PageTransHuge(page))
901 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
902 nr_pages);
903
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800904 /* pagein of a big page is an event. So, ignore page size */
905 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700906 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800907 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700908 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800909 nr_pages = -nr_pages; /* for event */
910 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800911
Johannes Weiner13114712012-05-29 15:07:07 -0700912 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800913
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800914 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800915}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800916
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700917unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700918mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700919{
920 struct mem_cgroup_per_zone *mz;
921
922 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
923 return mz->lru_size[lru];
924}
925
926static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700927mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700928 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700929{
930 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700931 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700932 unsigned long ret = 0;
933
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700934 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700935
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700936 for_each_lru(lru) {
937 if (BIT(lru) & lru_mask)
938 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700939 }
940 return ret;
941}
942
943static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700944mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700945 int nid, unsigned int lru_mask)
946{
Ying Han889976d2011-05-26 16:25:33 -0700947 u64 total = 0;
948 int zid;
949
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700950 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700951 total += mem_cgroup_zone_nr_lru_pages(memcg,
952 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700953
Ying Han889976d2011-05-26 16:25:33 -0700954 return total;
955}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700956
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700957static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700958 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800959{
Ying Han889976d2011-05-26 16:25:33 -0700960 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800961 u64 total = 0;
962
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800963 for_each_node_state(nid, N_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700964 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800965 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800966}
967
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800968static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
969 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800970{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700971 unsigned long val, next;
972
Johannes Weiner13114712012-05-29 15:07:07 -0700973 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700974 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700975 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800976 if ((long)next - (long)val < 0) {
977 switch (target) {
978 case MEM_CGROUP_TARGET_THRESH:
979 next = val + THRESHOLDS_EVENTS_TARGET;
980 break;
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -0700981 case MEM_CGROUP_TARGET_SOFTLIMIT:
982 next = val + SOFTLIMIT_EVENTS_TARGET;
983 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800984 case MEM_CGROUP_TARGET_NUMAINFO:
985 next = val + NUMAINFO_EVENTS_TARGET;
986 break;
987 default:
988 break;
989 }
990 __this_cpu_write(memcg->stat->targets[target], next);
991 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700992 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800993 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800994}
995
996/*
997 * Check events in order.
998 *
999 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001000static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08001001{
Steven Rostedt47994012011-11-02 13:38:33 -07001002 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08001003 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001004 if (unlikely(mem_cgroup_event_ratelimit(memcg,
1005 MEM_CGROUP_TARGET_THRESH))) {
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001006 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -08001007 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001008
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001009 do_softlimit = mem_cgroup_event_ratelimit(memcg,
1010 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001011#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001012 do_numainfo = mem_cgroup_event_ratelimit(memcg,
1013 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001014#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001015 preempt_enable();
1016
1017 mem_cgroup_threshold(memcg);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001018 if (unlikely(do_softlimit))
1019 mem_cgroup_update_tree(memcg, page);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -08001020#if MAX_NUMNODES > 1
1021 if (unlikely(do_numainfo))
1022 atomic_inc(&memcg->numainfo_events);
1023#endif
1024 } else
1025 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08001026}
1027
Balbir Singhcf475ad2008-04-29 01:00:16 -07001028struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001029{
Balbir Singh31a78f22008-09-28 23:09:31 +01001030 /*
1031 * mm_update_next_owner() may clear mm->owner to NULL
1032 * if it races with swapoff, page migration, etc.
1033 * So this can be called with p == NULL.
1034 */
1035 if (unlikely(!p))
1036 return NULL;
1037
Tejun Heo8af01f52013-08-08 20:11:22 -04001038 return mem_cgroup_from_css(task_css(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001039}
1040
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07001041struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001042{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001043 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001044
1045 if (!mm)
1046 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001047 /*
1048 * Because we have no locks, mm->owner's may be being moved to other
1049 * cgroup. We use css_tryget() here even if this looks
1050 * pessimistic (rather than adding locks here).
1051 */
1052 rcu_read_lock();
1053 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001054 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1055 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001056 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001057 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001058 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001059 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08001060}
1061
Michal Hocko16248d82013-04-29 15:07:19 -07001062/*
1063 * Returns a next (in a pre-order walk) alive memcg (with elevated css
1064 * ref. count) or NULL if the whole root's subtree has been visited.
1065 *
1066 * helper function to be used by mem_cgroup_iter
1067 */
1068static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
Andrew Morton694fbc02013-09-24 15:27:37 -07001069 struct mem_cgroup *last_visited)
Michal Hocko16248d82013-04-29 15:07:19 -07001070{
Tejun Heo492eb212013-08-08 20:11:25 -04001071 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -07001072
Tejun Heobd8815a2013-08-08 20:11:27 -04001073 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -07001074skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -04001075 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -07001076
1077 /*
1078 * Even if we found a group we have to make sure it is
1079 * alive. css && !memcg means that the groups should be
1080 * skipped and we should continue the tree walk.
1081 * last_visited css is safe to use because it is
1082 * protected by css_get and the tree walk is rcu safe.
1083 */
Tejun Heo492eb212013-08-08 20:11:25 -04001084 if (next_css) {
1085 struct mem_cgroup *mem = mem_cgroup_from_css(next_css);
1086
Andrew Morton694fbc02013-09-24 15:27:37 -07001087 if (css_tryget(&mem->css))
1088 return mem;
1089 else {
Tejun Heo492eb212013-08-08 20:11:25 -04001090 prev_css = next_css;
Michal Hocko16248d82013-04-29 15:07:19 -07001091 goto skip_node;
1092 }
1093 }
1094
1095 return NULL;
1096}
1097
Johannes Weiner519ebea2013-07-03 15:04:51 -07001098static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
1099{
1100 /*
1101 * When a group in the hierarchy below root is destroyed, the
1102 * hierarchy iterator can no longer be trusted since it might
1103 * have pointed to the destroyed group. Invalidate it.
1104 */
1105 atomic_inc(&root->dead_count);
1106}
1107
1108static struct mem_cgroup *
1109mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
1110 struct mem_cgroup *root,
1111 int *sequence)
1112{
1113 struct mem_cgroup *position = NULL;
1114 /*
1115 * A cgroup destruction happens in two stages: offlining and
1116 * release. They are separated by a RCU grace period.
1117 *
1118 * If the iterator is valid, we may still race with an
1119 * offlining. The RCU lock ensures the object won't be
1120 * released, tryget will fail if we lost the race.
1121 */
1122 *sequence = atomic_read(&root->dead_count);
1123 if (iter->last_dead_count == *sequence) {
1124 smp_rmb();
1125 position = iter->last_visited;
1126 if (position && !css_tryget(&position->css))
1127 position = NULL;
1128 }
1129 return position;
1130}
1131
1132static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
1133 struct mem_cgroup *last_visited,
1134 struct mem_cgroup *new_position,
1135 int sequence)
1136{
1137 if (last_visited)
1138 css_put(&last_visited->css);
1139 /*
1140 * We store the sequence count from the time @last_visited was
1141 * loaded successfully instead of rereading it here so that we
1142 * don't lose destruction events in between. We could have
1143 * raced with the destruction of @new_position after all.
1144 */
1145 iter->last_visited = new_position;
1146 smp_wmb();
1147 iter->last_dead_count = sequence;
1148}
1149
Johannes Weiner56600482012-01-12 17:17:59 -08001150/**
1151 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1152 * @root: hierarchy root
1153 * @prev: previously returned memcg, NULL on first invocation
1154 * @reclaim: cookie for shared reclaim walks, NULL for full walks
1155 *
1156 * Returns references to children of the hierarchy below @root, or
1157 * @root itself, or %NULL after a full round-trip.
1158 *
1159 * Caller must pass the return value in @prev on subsequent
1160 * invocations for reference counting, or use mem_cgroup_iter_break()
1161 * to cancel a hierarchy walk before the round-trip is complete.
1162 *
1163 * Reclaimers can specify a zone and a priority level in @reclaim to
1164 * divide up the memcgs in the hierarchy among all concurrent
1165 * reclaimers operating on the same zone and priority.
1166 */
Andrew Morton694fbc02013-09-24 15:27:37 -07001167struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -08001168 struct mem_cgroup *prev,
Andrew Morton694fbc02013-09-24 15:27:37 -07001169 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001170{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001171 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001172 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001173
Andrew Morton694fbc02013-09-24 15:27:37 -07001174 if (mem_cgroup_disabled())
1175 return NULL;
Johannes Weiner56600482012-01-12 17:17:59 -08001176
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001177 if (!root)
1178 root = root_mem_cgroup;
1179
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001180 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -07001181 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001182
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001183 if (!root->use_hierarchy && root != root_mem_cgroup) {
1184 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001185 goto out_css_put;
Andrew Morton694fbc02013-09-24 15:27:37 -07001186 return root;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001187 }
1188
Michal Hocko542f85f2013-04-29 15:07:15 -07001189 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001190 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001191 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001192 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001193
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001194 if (reclaim) {
1195 int nid = zone_to_nid(reclaim->zone);
1196 int zid = zone_idx(reclaim->zone);
1197 struct mem_cgroup_per_zone *mz;
1198
1199 mz = mem_cgroup_zoneinfo(root, nid, zid);
1200 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001201 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001202 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001203 goto out_unlock;
1204 }
Michal Hocko5f578162013-04-29 15:07:17 -07001205
Johannes Weiner519ebea2013-07-03 15:04:51 -07001206 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001207 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001208
Andrew Morton694fbc02013-09-24 15:27:37 -07001209 memcg = __mem_cgroup_iter_next(root, last_visited);
Michal Hocko542f85f2013-04-29 15:07:15 -07001210
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001211 if (reclaim) {
Johannes Weiner519ebea2013-07-03 15:04:51 -07001212 mem_cgroup_iter_update(iter, last_visited, memcg, seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001213
Michal Hocko19f39402013-04-29 15:07:18 -07001214 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001215 iter->generation++;
1216 else if (!prev && memcg)
1217 reclaim->generation = iter->generation;
1218 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001219
Andrew Morton694fbc02013-09-24 15:27:37 -07001220 if (prev && !memcg)
Michal Hocko542f85f2013-04-29 15:07:15 -07001221 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001222 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001223out_unlock:
1224 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001225out_css_put:
1226 if (prev && prev != root)
1227 css_put(&prev->css);
1228
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001229 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001230}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001231
Johannes Weiner56600482012-01-12 17:17:59 -08001232/**
1233 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1234 * @root: hierarchy root
1235 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1236 */
1237void mem_cgroup_iter_break(struct mem_cgroup *root,
1238 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001239{
1240 if (!root)
1241 root = root_mem_cgroup;
1242 if (prev && prev != root)
1243 css_put(&prev->css);
1244}
1245
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001246/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001247 * Iteration constructs for visiting all cgroups (under a tree). If
1248 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1249 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001250 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001251#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001252 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001253 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001254 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001255
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001256#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001257 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001258 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001259 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001260
David Rientjes68ae5642012-12-12 13:51:57 -08001261void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001262{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001263 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001264
Ying Han456f9982011-05-26 16:25:38 -07001265 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001266 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1267 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001268 goto out;
1269
1270 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001271 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001272 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1273 break;
1274 case PGMAJFAULT:
1275 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001276 break;
1277 default:
1278 BUG();
1279 }
1280out:
1281 rcu_read_unlock();
1282}
David Rientjes68ae5642012-12-12 13:51:57 -08001283EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001284
Johannes Weiner925b7672012-01-12 17:18:15 -08001285/**
1286 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1287 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001288 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001289 *
1290 * Returns the lru list vector holding pages for the given @zone and
1291 * @mem. This can be the global zone lruvec, if the memory controller
1292 * is disabled.
1293 */
1294struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1295 struct mem_cgroup *memcg)
1296{
1297 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001298 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001299
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001300 if (mem_cgroup_disabled()) {
1301 lruvec = &zone->lruvec;
1302 goto out;
1303 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001304
1305 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001306 lruvec = &mz->lruvec;
1307out:
1308 /*
1309 * Since a node can be onlined after the mem_cgroup was created,
1310 * we have to be prepared to initialize lruvec->zone here;
1311 * and if offlined then reonlined, we need to reinitialize it.
1312 */
1313 if (unlikely(lruvec->zone != zone))
1314 lruvec->zone = zone;
1315 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001316}
1317
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001318/*
1319 * Following LRU functions are allowed to be used without PCG_LOCK.
1320 * Operations are called by routine of global LRU independently from memcg.
1321 * What we have to take care of here is validness of pc->mem_cgroup.
1322 *
1323 * Changes to pc->mem_cgroup happens when
1324 * 1. charge
1325 * 2. moving account
1326 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1327 * It is added to LRU before charge.
1328 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1329 * When moving account, the page is not on LRU. It's isolated.
1330 */
1331
Johannes Weiner925b7672012-01-12 17:18:15 -08001332/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001333 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001334 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001335 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001336 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001337struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001338{
1339 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001340 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001341 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001342 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001343
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001344 if (mem_cgroup_disabled()) {
1345 lruvec = &zone->lruvec;
1346 goto out;
1347 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001348
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001349 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001350 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001351
1352 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001353 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001354 * an uncharged page off lru does nothing to secure
1355 * its former mem_cgroup from sudden removal.
1356 *
1357 * Our caller holds lru_lock, and PageCgroupUsed is updated
1358 * under page_cgroup lock: between them, they make all uses
1359 * of pc->mem_cgroup safe.
1360 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001361 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001362 pc->mem_cgroup = memcg = root_mem_cgroup;
1363
Johannes Weiner925b7672012-01-12 17:18:15 -08001364 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001365 lruvec = &mz->lruvec;
1366out:
1367 /*
1368 * Since a node can be onlined after the mem_cgroup was created,
1369 * we have to be prepared to initialize lruvec->zone here;
1370 * and if offlined then reonlined, we need to reinitialize it.
1371 */
1372 if (unlikely(lruvec->zone != zone))
1373 lruvec->zone = zone;
1374 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001375}
1376
1377/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001378 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1379 * @lruvec: mem_cgroup per zone lru vector
1380 * @lru: index of lru list the page is sitting on
1381 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001382 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001383 * This function must be called when a page is added to or removed from an
1384 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001385 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001386void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1387 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001388{
1389 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001390 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001391
1392 if (mem_cgroup_disabled())
1393 return;
1394
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001395 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1396 lru_size = mz->lru_size + lru;
1397 *lru_size += nr_pages;
1398 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001399}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001400
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001401/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001402 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001403 * hierarchy subtree
1404 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001405bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1406 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001407{
Johannes Weiner91c637342012-05-29 15:06:24 -07001408 if (root_memcg == memcg)
1409 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001410 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001411 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001412 return css_is_ancestor(&memcg->css, &root_memcg->css);
1413}
1414
1415static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1416 struct mem_cgroup *memcg)
1417{
1418 bool ret;
1419
Johannes Weiner91c637342012-05-29 15:06:24 -07001420 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001421 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001422 rcu_read_unlock();
1423 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001424}
1425
David Rientjesffbdccf2013-07-03 15:01:23 -07001426bool task_in_mem_cgroup(struct task_struct *task,
1427 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001428{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001429 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001430 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001431 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001432
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001433 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001434 if (p) {
1435 curr = try_get_mem_cgroup_from_mm(p->mm);
1436 task_unlock(p);
1437 } else {
1438 /*
1439 * All threads may have already detached their mm's, but the oom
1440 * killer still needs to detect if they have already been oom
1441 * killed to prevent needlessly killing additional tasks.
1442 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001443 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001444 curr = mem_cgroup_from_task(task);
1445 if (curr)
1446 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001447 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001448 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001449 if (!curr)
David Rientjesffbdccf2013-07-03 15:01:23 -07001450 return false;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001451 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001452 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001453 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001454 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1455 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001456 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001457 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001458 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001459 return ret;
1460}
1461
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001462int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001463{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001464 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001465 unsigned long inactive;
1466 unsigned long active;
1467 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001468
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001469 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1470 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001471
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001472 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1473 if (gb)
1474 inactive_ratio = int_sqrt(10 * gb);
1475 else
1476 inactive_ratio = 1;
1477
Johannes Weiner9b272972011-11-02 13:38:23 -07001478 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001479}
1480
Balbir Singh6d61ef42009-01-07 18:08:06 -08001481#define mem_cgroup_from_res_counter(counter, member) \
1482 container_of(counter, struct mem_cgroup, member)
1483
Johannes Weiner19942822011-02-01 15:52:43 -08001484/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001485 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001486 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001487 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001488 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001489 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001490 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001491static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001492{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001493 unsigned long long margin;
1494
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001495 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001496 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001497 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001498 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001499}
1500
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001501int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001502{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001503 /* root ? */
Tejun Heo63876982013-08-08 20:11:23 -04001504 if (!css_parent(&memcg->css))
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001505 return vm_swappiness;
1506
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001507 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001508}
1509
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001510/*
1511 * memcg->moving_account is used for checking possibility that some thread is
1512 * calling move_account(). When a thread on CPU-A starts moving pages under
1513 * a memcg, other threads should check memcg->moving_account under
1514 * rcu_read_lock(), like this:
1515 *
1516 * CPU-A CPU-B
1517 * rcu_read_lock()
1518 * memcg->moving_account+1 if (memcg->mocing_account)
1519 * take heavy locks.
1520 * synchronize_rcu() update something.
1521 * rcu_read_unlock()
1522 * start move here.
1523 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001524
1525/* for quick checking without looking up memcg */
1526atomic_t memcg_moving __read_mostly;
1527
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001528static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001529{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001530 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001531 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001532 synchronize_rcu();
1533}
1534
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001535static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001536{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001537 /*
1538 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1539 * We check NULL in callee rather than caller.
1540 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001541 if (memcg) {
1542 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001543 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001544 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001545}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001546
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001547/*
1548 * 2 routines for checking "mem" is under move_account() or not.
1549 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001550 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1551 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001552 * pc->mem_cgroup may be overwritten.
1553 *
1554 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1555 * under hierarchy of moving cgroups. This is for
1556 * waiting at hith-memory prressure caused by "move".
1557 */
1558
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001559static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001560{
1561 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001562 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001563}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001564
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001565static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001566{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001567 struct mem_cgroup *from;
1568 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001569 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001570 /*
1571 * Unlike task_move routines, we access mc.to, mc.from not under
1572 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1573 */
1574 spin_lock(&mc.lock);
1575 from = mc.from;
1576 to = mc.to;
1577 if (!from)
1578 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001579
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001580 ret = mem_cgroup_same_or_subtree(memcg, from)
1581 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001582unlock:
1583 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001584 return ret;
1585}
1586
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001587static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001588{
1589 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001590 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001591 DEFINE_WAIT(wait);
1592 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1593 /* moving charge context might have finished. */
1594 if (mc.moving_task)
1595 schedule();
1596 finish_wait(&mc.waitq, &wait);
1597 return true;
1598 }
1599 }
1600 return false;
1601}
1602
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001603/*
1604 * Take this lock when
1605 * - a code tries to modify page's memcg while it's USED.
1606 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001607 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001608 */
1609static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1610 unsigned long *flags)
1611{
1612 spin_lock_irqsave(&memcg->move_lock, *flags);
1613}
1614
1615static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1616 unsigned long *flags)
1617{
1618 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1619}
1620
Sha Zhengju58cf1882013-02-22 16:32:05 -08001621#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001622/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001623 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001624 * @memcg: The memory cgroup that went over limit
1625 * @p: Task that is going to be killed
1626 *
1627 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1628 * enabled
1629 */
1630void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1631{
1632 struct cgroup *task_cgrp;
1633 struct cgroup *mem_cgrp;
1634 /*
1635 * Need a buffer in BSS, can't rely on allocations. The code relies
1636 * on the assumption that OOM is serialized for memory controller.
1637 * If this assumption is broken, revisit this code.
1638 */
1639 static char memcg_name[PATH_MAX];
1640 int ret;
Sha Zhengju58cf1882013-02-22 16:32:05 -08001641 struct mem_cgroup *iter;
1642 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001643
Sha Zhengju58cf1882013-02-22 16:32:05 -08001644 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001645 return;
1646
Balbir Singhe2224322009-04-02 16:57:39 -07001647 rcu_read_lock();
1648
1649 mem_cgrp = memcg->css.cgroup;
1650 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1651
1652 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1653 if (ret < 0) {
1654 /*
1655 * Unfortunately, we are unable to convert to a useful name
1656 * But we'll still print out the usage information
1657 */
1658 rcu_read_unlock();
1659 goto done;
1660 }
1661 rcu_read_unlock();
1662
Andrew Mortond0451972013-02-22 16:32:06 -08001663 pr_info("Task in %s killed", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001664
1665 rcu_read_lock();
1666 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1667 if (ret < 0) {
1668 rcu_read_unlock();
1669 goto done;
1670 }
1671 rcu_read_unlock();
1672
1673 /*
1674 * Continues from above, so we don't need an KERN_ level
1675 */
Andrew Mortond0451972013-02-22 16:32:06 -08001676 pr_cont(" as a result of limit of %s\n", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001677done:
1678
Andrew Mortond0451972013-02-22 16:32:06 -08001679 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001680 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1681 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1682 res_counter_read_u64(&memcg->res, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001683 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001684 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1685 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1686 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001687 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
Glauber Costa510fc4e2012-12-18 14:21:47 -08001688 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1689 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1690 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Sha Zhengju58cf1882013-02-22 16:32:05 -08001691
1692 for_each_mem_cgroup_tree(iter, memcg) {
1693 pr_info("Memory cgroup stats");
1694
1695 rcu_read_lock();
1696 ret = cgroup_path(iter->css.cgroup, memcg_name, PATH_MAX);
1697 if (!ret)
1698 pr_cont(" for %s", memcg_name);
1699 rcu_read_unlock();
1700 pr_cont(":");
1701
1702 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1703 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1704 continue;
1705 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1706 K(mem_cgroup_read_stat(iter, i)));
1707 }
1708
1709 for (i = 0; i < NR_LRU_LISTS; i++)
1710 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1711 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1712
1713 pr_cont("\n");
1714 }
Balbir Singhe2224322009-04-02 16:57:39 -07001715}
1716
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001717/*
1718 * This function returns the number of memcg under hierarchy tree. Returns
1719 * 1(self count) if no children.
1720 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001721static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001722{
1723 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001724 struct mem_cgroup *iter;
1725
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001726 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001727 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001728 return num;
1729}
1730
Balbir Singh6d61ef42009-01-07 18:08:06 -08001731/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001732 * Return the memory (and swap, if configured) limit for a memcg.
1733 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001734static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001735{
1736 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001737
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001738 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001739
David Rientjesa63d83f2010-08-09 17:19:46 -07001740 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001741 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001742 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001743 if (mem_cgroup_swappiness(memcg)) {
1744 u64 memsw;
1745
1746 limit += total_swap_pages << PAGE_SHIFT;
1747 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1748
1749 /*
1750 * If memsw is finite and limits the amount of swap space
1751 * available to this memcg, return that limit.
1752 */
1753 limit = min(limit, memsw);
1754 }
1755
1756 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001757}
1758
David Rientjes19965462012-12-11 16:00:26 -08001759static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1760 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001761{
1762 struct mem_cgroup *iter;
1763 unsigned long chosen_points = 0;
1764 unsigned long totalpages;
1765 unsigned int points = 0;
1766 struct task_struct *chosen = NULL;
1767
David Rientjes876aafb2012-07-31 16:43:48 -07001768 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001769 * If current has a pending SIGKILL or is exiting, then automatically
1770 * select it. The goal is to allow it to allocate so that it may
1771 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001772 */
David Rientjes465adcf2013-04-29 15:08:45 -07001773 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001774 set_thread_flag(TIF_MEMDIE);
1775 return;
1776 }
1777
1778 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001779 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1780 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001781 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001782 struct task_struct *task;
1783
Tejun Heo72ec7022013-08-08 20:11:26 -04001784 css_task_iter_start(&iter->css, &it);
1785 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001786 switch (oom_scan_process_thread(task, totalpages, NULL,
1787 false)) {
1788 case OOM_SCAN_SELECT:
1789 if (chosen)
1790 put_task_struct(chosen);
1791 chosen = task;
1792 chosen_points = ULONG_MAX;
1793 get_task_struct(chosen);
1794 /* fall through */
1795 case OOM_SCAN_CONTINUE:
1796 continue;
1797 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001798 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001799 mem_cgroup_iter_break(memcg, iter);
1800 if (chosen)
1801 put_task_struct(chosen);
1802 return;
1803 case OOM_SCAN_OK:
1804 break;
1805 };
1806 points = oom_badness(task, memcg, NULL, totalpages);
1807 if (points > chosen_points) {
1808 if (chosen)
1809 put_task_struct(chosen);
1810 chosen = task;
1811 chosen_points = points;
1812 get_task_struct(chosen);
1813 }
1814 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001815 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001816 }
1817
1818 if (!chosen)
1819 return;
1820 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001821 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1822 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001823}
1824
Johannes Weiner56600482012-01-12 17:17:59 -08001825static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1826 gfp_t gfp_mask,
1827 unsigned long flags)
1828{
1829 unsigned long total = 0;
1830 bool noswap = false;
1831 int loop;
1832
1833 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1834 noswap = true;
1835 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1836 noswap = true;
1837
1838 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1839 if (loop)
1840 drain_all_stock_async(memcg);
1841 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1842 /*
1843 * Allow limit shrinkers, which are triggered directly
1844 * by userspace, to catch signals and stop reclaim
1845 * after minimal progress, regardless of the margin.
1846 */
1847 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1848 break;
1849 if (mem_cgroup_margin(memcg))
1850 break;
1851 /*
1852 * If nothing was reclaimed after two attempts, there
1853 * may be no reclaimable pages in this hierarchy.
1854 */
1855 if (loop && !total)
1856 break;
1857 }
1858 return total;
1859}
1860
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001861/**
1862 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001863 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001864 * @nid: the node ID to be checked.
1865 * @noswap : specify true here if the user wants flle only information.
1866 *
1867 * This function returns whether the specified memcg contains any
1868 * reclaimable pages on a node. Returns true if there are any reclaimable
1869 * pages in the node.
1870 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001871static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001872 int nid, bool noswap)
1873{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001874 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001875 return true;
1876 if (noswap || !total_swap_pages)
1877 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001878 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001879 return true;
1880 return false;
1881
1882}
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001883#if MAX_NUMNODES > 1
Ying Han889976d2011-05-26 16:25:33 -07001884
1885/*
1886 * Always updating the nodemask is not very good - even if we have an empty
1887 * list or the wrong list here, we can start from some node and traverse all
1888 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1889 *
1890 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001891static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001892{
1893 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001894 /*
1895 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1896 * pagein/pageout changes since the last update.
1897 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001898 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001899 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001900 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001901 return;
1902
Ying Han889976d2011-05-26 16:25:33 -07001903 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001904 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001905
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001906 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001907
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001908 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1909 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001910 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001911
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001912 atomic_set(&memcg->numainfo_events, 0);
1913 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001914}
1915
1916/*
1917 * Selecting a node where we start reclaim from. Because what we need is just
1918 * reducing usage counter, start from anywhere is O,K. Considering
1919 * memory reclaim from current node, there are pros. and cons.
1920 *
1921 * Freeing memory from current node means freeing memory from a node which
1922 * we'll use or we've used. So, it may make LRU bad. And if several threads
1923 * hit limits, it will see a contention on a node. But freeing from remote
1924 * node means more costs for memory reclaim because of memory latency.
1925 *
1926 * Now, we use round-robin. Better algorithm is welcomed.
1927 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001928int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001929{
1930 int node;
1931
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001932 mem_cgroup_may_update_nodemask(memcg);
1933 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001934
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001935 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001936 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001937 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001938 /*
1939 * We call this when we hit limit, not when pages are added to LRU.
1940 * No LRU may hold pages because all pages are UNEVICTABLE or
1941 * memcg is too small and all pages are not on LRU. In that case,
1942 * we use curret node.
1943 */
1944 if (unlikely(node == MAX_NUMNODES))
1945 node = numa_node_id();
1946
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001947 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001948 return node;
1949}
1950
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001951/*
1952 * Check all nodes whether it contains reclaimable pages or not.
1953 * For quick scan, we make use of scan_nodes. This will allow us to skip
1954 * unused nodes. But scan_nodes is lazily updated and may not cotain
1955 * enough new information. We need to do double check.
1956 */
1957static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
1958{
1959 int nid;
1960
1961 /*
1962 * quick check...making use of scan_node.
1963 * We can skip unused nodes.
1964 */
1965 if (!nodes_empty(memcg->scan_nodes)) {
1966 for (nid = first_node(memcg->scan_nodes);
1967 nid < MAX_NUMNODES;
1968 nid = next_node(nid, memcg->scan_nodes)) {
1969
1970 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
1971 return true;
1972 }
1973 }
1974 /*
1975 * Check rest of nodes.
1976 */
1977 for_each_node_state(nid, N_MEMORY) {
1978 if (node_isset(nid, memcg->scan_nodes))
1979 continue;
1980 if (test_mem_cgroup_node_reclaimable(memcg, nid, noswap))
1981 return true;
1982 }
1983 return false;
1984}
1985
Ying Han889976d2011-05-26 16:25:33 -07001986#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001987int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001988{
1989 return 0;
1990}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001991
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07001992static bool mem_cgroup_reclaimable(struct mem_cgroup *memcg, bool noswap)
1993{
1994 return test_mem_cgroup_node_reclaimable(memcg, 0, noswap);
1995}
Ying Han889976d2011-05-26 16:25:33 -07001996#endif
1997
Andrew Morton0608f432013-09-24 15:27:41 -07001998static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1999 struct zone *zone,
2000 gfp_t gfp_mask,
2001 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08002002{
Andrew Morton0608f432013-09-24 15:27:41 -07002003 struct mem_cgroup *victim = NULL;
2004 int total = 0;
2005 int loop = 0;
2006 unsigned long excess;
2007 unsigned long nr_scanned;
2008 struct mem_cgroup_reclaim_cookie reclaim = {
2009 .zone = zone,
2010 .priority = 0,
2011 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07002012
Andrew Morton0608f432013-09-24 15:27:41 -07002013 excess = res_counter_soft_limit_excess(&root_memcg->res) >> PAGE_SHIFT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08002014
Andrew Morton0608f432013-09-24 15:27:41 -07002015 while (1) {
2016 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
2017 if (!victim) {
2018 loop++;
2019 if (loop >= 2) {
2020 /*
2021 * If we have not been able to reclaim
2022 * anything, it might because there are
2023 * no reclaimable pages under this hierarchy
2024 */
2025 if (!total)
2026 break;
2027 /*
2028 * We want to do more targeted reclaim.
2029 * excess >> 2 is not to excessive so as to
2030 * reclaim too much, nor too less that we keep
2031 * coming back to reclaim from this cgroup
2032 */
2033 if (total >= (excess >> 2) ||
2034 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
2035 break;
2036 }
2037 continue;
2038 }
2039 if (!mem_cgroup_reclaimable(victim, false))
2040 continue;
2041 total += mem_cgroup_shrink_node_zone(victim, gfp_mask, false,
2042 zone, &nr_scanned);
2043 *total_scanned += nr_scanned;
2044 if (!res_counter_soft_limit_excess(&root_memcg->res))
2045 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08002046 }
Andrew Morton0608f432013-09-24 15:27:41 -07002047 mem_cgroup_iter_break(root_memcg, victim);
2048 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08002049}
2050
Johannes Weiner0056f4e2013-10-31 16:34:14 -07002051#ifdef CONFIG_LOCKDEP
2052static struct lockdep_map memcg_oom_lock_dep_map = {
2053 .name = "memcg_oom_lock",
2054};
2055#endif
2056
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002057static DEFINE_SPINLOCK(memcg_oom_lock);
2058
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002059/*
2060 * Check OOM-Killer is already running under our hierarchy.
2061 * If someone is running, return false.
2062 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002063static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002064{
Michal Hocko79dfdac2011-07-26 16:08:23 -07002065 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002066
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002067 spin_lock(&memcg_oom_lock);
2068
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002069 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07002070 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07002071 /*
2072 * this subtree of our hierarchy is already locked
2073 * so we cannot give a lock.
2074 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07002075 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002076 mem_cgroup_iter_break(memcg, iter);
2077 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07002078 } else
2079 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07002080 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002081
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002082 if (failed) {
2083 /*
2084 * OK, we failed to lock the whole subtree so we have
2085 * to clean up what we set up to the failing subtree
2086 */
2087 for_each_mem_cgroup_tree(iter, memcg) {
2088 if (iter == failed) {
2089 mem_cgroup_iter_break(memcg, iter);
2090 break;
2091 }
2092 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07002093 }
Johannes Weiner0056f4e2013-10-31 16:34:14 -07002094 } else
2095 mutex_acquire(&memcg_oom_lock_dep_map, 0, 1, _RET_IP_);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002096
2097 spin_unlock(&memcg_oom_lock);
2098
2099 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002100}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002101
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002102static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002103{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07002104 struct mem_cgroup *iter;
2105
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002106 spin_lock(&memcg_oom_lock);
Johannes Weiner0056f4e2013-10-31 16:34:14 -07002107 mutex_release(&memcg_oom_lock_dep_map, 1, _RET_IP_);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002108 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002109 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002110 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07002111}
2112
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002113static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002114{
2115 struct mem_cgroup *iter;
2116
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002117 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002118 atomic_inc(&iter->under_oom);
2119}
2120
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002121static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002122{
2123 struct mem_cgroup *iter;
2124
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002125 /*
2126 * When a new child is created while the hierarchy is under oom,
2127 * mem_cgroup_oom_lock() may not be called. We have to use
2128 * atomic_add_unless() here.
2129 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002130 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002131 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002132}
2133
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002134static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
2135
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002136struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002137 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002138 wait_queue_t wait;
2139};
2140
2141static int memcg_oom_wake_function(wait_queue_t *wait,
2142 unsigned mode, int sync, void *arg)
2143{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002144 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
2145 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002146 struct oom_wait_info *oom_wait_info;
2147
2148 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002149 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002150
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002151 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002152 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002153 * Then we can use css_is_ancestor without taking care of RCU.
2154 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002155 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
2156 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002157 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002158 return autoremove_wake_function(wait, mode, sync, arg);
2159}
2160
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002161static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002162{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002163 atomic_inc(&memcg->oom_wakeups);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002164 /* for filtering, pass "memcg" as argument. */
2165 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002166}
2167
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002168static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002169{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002170 if (memcg && atomic_read(&memcg->under_oom))
2171 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002172}
2173
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002174static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002175{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002176 if (!current->memcg_oom.may_oom)
2177 return;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002178 /*
Johannes Weiner49426422013-10-16 13:46:59 -07002179 * We are in the middle of the charge context here, so we
2180 * don't want to block when potentially sitting on a callstack
2181 * that holds all kinds of filesystem and mm locks.
2182 *
2183 * Also, the caller may handle a failed allocation gracefully
2184 * (like optional page cache readahead) and so an OOM killer
2185 * invocation might not even be necessary.
2186 *
2187 * That's why we don't do anything here except remember the
2188 * OOM context and then deal with it at the end of the page
2189 * fault when the stack is unwound, the locks are released,
2190 * and when we know whether the fault was overall successful.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002191 */
Johannes Weiner49426422013-10-16 13:46:59 -07002192 css_get(&memcg->css);
2193 current->memcg_oom.memcg = memcg;
2194 current->memcg_oom.gfp_mask = mask;
2195 current->memcg_oom.order = order;
2196}
2197
2198/**
2199 * mem_cgroup_oom_synchronize - complete memcg OOM handling
2200 * @handle: actually kill/wait or just clean up the OOM state
2201 *
2202 * This has to be called at the end of a page fault if the memcg OOM
2203 * handler was enabled.
2204 *
2205 * Memcg supports userspace OOM handling where failed allocations must
2206 * sleep on a waitqueue until the userspace task resolves the
2207 * situation. Sleeping directly in the charge context with all kinds
2208 * of locks held is not a good idea, instead we remember an OOM state
2209 * in the task and mem_cgroup_oom_synchronize() has to be called at
2210 * the end of the page fault to complete the OOM handling.
2211 *
2212 * Returns %true if an ongoing memcg OOM situation was detected and
2213 * completed, %false otherwise.
2214 */
2215bool mem_cgroup_oom_synchronize(bool handle)
2216{
2217 struct mem_cgroup *memcg = current->memcg_oom.memcg;
2218 struct oom_wait_info owait;
2219 bool locked;
2220
2221 /* OOM is global, do not handle */
2222 if (!memcg)
2223 return false;
2224
2225 if (!handle)
2226 goto cleanup;
2227
2228 owait.memcg = memcg;
2229 owait.wait.flags = 0;
2230 owait.wait.func = memcg_oom_wake_function;
2231 owait.wait.private = current;
2232 INIT_LIST_HEAD(&owait.wait.task_list);
2233
2234 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002235 mem_cgroup_mark_under_oom(memcg);
2236
2237 locked = mem_cgroup_oom_trylock(memcg);
2238
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002239 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002240 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002241
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002242 if (locked && !memcg->oom_kill_disable) {
2243 mem_cgroup_unmark_under_oom(memcg);
Johannes Weiner49426422013-10-16 13:46:59 -07002244 finish_wait(&memcg_oom_waitq, &owait.wait);
2245 mem_cgroup_out_of_memory(memcg, current->memcg_oom.gfp_mask,
2246 current->memcg_oom.order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002247 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002248 schedule();
Johannes Weiner49426422013-10-16 13:46:59 -07002249 mem_cgroup_unmark_under_oom(memcg);
2250 finish_wait(&memcg_oom_waitq, &owait.wait);
2251 }
2252
2253 if (locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002254 mem_cgroup_oom_unlock(memcg);
2255 /*
2256 * There is no guarantee that an OOM-lock contender
2257 * sees the wakeups triggered by the OOM kill
2258 * uncharges. Wake any sleepers explicitely.
2259 */
2260 memcg_oom_recover(memcg);
2261 }
Johannes Weiner49426422013-10-16 13:46:59 -07002262cleanup:
2263 current->memcg_oom.memcg = NULL;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002264 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002265 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002266}
2267
Balbir Singhd69b0422009-06-17 16:26:34 -07002268/*
2269 * Currently used to update mapped file statistics, but the routine can be
2270 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002271 *
2272 * Notes: Race condition
2273 *
2274 * We usually use page_cgroup_lock() for accessing page_cgroup member but
2275 * it tends to be costly. But considering some conditions, we doesn't need
2276 * to do so _always_.
2277 *
2278 * Considering "charge", lock_page_cgroup() is not required because all
2279 * file-stat operations happen after a page is attached to radix-tree. There
2280 * are no race with "charge".
2281 *
2282 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2283 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2284 * if there are race with "uncharge". Statistics itself is properly handled
2285 * by flags.
2286 *
2287 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002288 * small, we check mm->moving_account and detect there are possibility of race
2289 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002290 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002291
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002292void __mem_cgroup_begin_update_page_stat(struct page *page,
2293 bool *locked, unsigned long *flags)
2294{
2295 struct mem_cgroup *memcg;
2296 struct page_cgroup *pc;
2297
2298 pc = lookup_page_cgroup(page);
2299again:
2300 memcg = pc->mem_cgroup;
2301 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2302 return;
2303 /*
2304 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002305 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002306 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002307 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002308 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002309 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002310 return;
2311
2312 move_lock_mem_cgroup(memcg, flags);
2313 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2314 move_unlock_mem_cgroup(memcg, flags);
2315 goto again;
2316 }
2317 *locked = true;
2318}
2319
2320void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2321{
2322 struct page_cgroup *pc = lookup_page_cgroup(page);
2323
2324 /*
2325 * It's guaranteed that pc->mem_cgroup never changes while
2326 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002327 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002328 */
2329 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2330}
2331
Greg Thelen2a7106f2011-01-13 15:47:37 -08002332void mem_cgroup_update_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -07002333 enum mem_cgroup_stat_index idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002334{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002335 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002336 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002337 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002338
Johannes Weinercfa44942012-01-12 17:18:38 -08002339 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002340 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002341
Sha Zhengju658b72c2013-09-12 15:13:52 -07002342 VM_BUG_ON(!rcu_read_lock_held());
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002343 memcg = pc->mem_cgroup;
2344 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002345 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002346
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002347 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002348}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002349
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002350/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002351 * size of first charge trial. "32" comes from vmscan.c's magic value.
2352 * TODO: maybe necessary to use big numbers in big irons.
2353 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002354#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002355struct memcg_stock_pcp {
2356 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002357 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002358 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002359 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002360#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002361};
2362static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002363static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002364
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002365/**
2366 * consume_stock: Try to consume stocked charge on this cpu.
2367 * @memcg: memcg to consume from.
2368 * @nr_pages: how many pages to charge.
2369 *
2370 * The charges will only happen if @memcg matches the current cpu's memcg
2371 * stock, and at least @nr_pages are available in that stock. Failure to
2372 * service an allocation will refill the stock.
2373 *
2374 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002375 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002376static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002377{
2378 struct memcg_stock_pcp *stock;
2379 bool ret = true;
2380
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002381 if (nr_pages > CHARGE_BATCH)
2382 return false;
2383
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002384 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002385 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2386 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002387 else /* need to call res_counter_charge */
2388 ret = false;
2389 put_cpu_var(memcg_stock);
2390 return ret;
2391}
2392
2393/*
2394 * Returns stocks cached in percpu to res_counter and reset cached information.
2395 */
2396static void drain_stock(struct memcg_stock_pcp *stock)
2397{
2398 struct mem_cgroup *old = stock->cached;
2399
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002400 if (stock->nr_pages) {
2401 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2402
2403 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002404 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002405 res_counter_uncharge(&old->memsw, bytes);
2406 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002407 }
2408 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002409}
2410
2411/*
2412 * This must be called under preempt disabled or must be called by
2413 * a thread which is pinned to local cpu.
2414 */
2415static void drain_local_stock(struct work_struct *dummy)
2416{
2417 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2418 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002419 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002420}
2421
Michal Hockoe4777492013-02-22 16:35:40 -08002422static void __init memcg_stock_init(void)
2423{
2424 int cpu;
2425
2426 for_each_possible_cpu(cpu) {
2427 struct memcg_stock_pcp *stock =
2428 &per_cpu(memcg_stock, cpu);
2429 INIT_WORK(&stock->work, drain_local_stock);
2430 }
2431}
2432
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002433/*
2434 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002435 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002436 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002437static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002438{
2439 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2440
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002441 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002442 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002443 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002444 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002445 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002446 put_cpu_var(memcg_stock);
2447}
2448
2449/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002450 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002451 * of the hierarchy under it. sync flag says whether we should block
2452 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002453 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002454static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002455{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002456 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002457
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002458 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002459 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002460 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002461 for_each_online_cpu(cpu) {
2462 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002463 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002464
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002465 memcg = stock->cached;
2466 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002467 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002468 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002469 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002470 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2471 if (cpu == curcpu)
2472 drain_local_stock(&stock->work);
2473 else
2474 schedule_work_on(cpu, &stock->work);
2475 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002476 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002477 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002478
2479 if (!sync)
2480 goto out;
2481
2482 for_each_online_cpu(cpu) {
2483 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002484 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002485 flush_work(&stock->work);
2486 }
2487out:
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002488 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002489}
2490
2491/*
2492 * Tries to drain stocked charges in other cpus. This function is asynchronous
2493 * and just put a work per cpu for draining localy on each cpu. Caller can
2494 * expects some charges will be back to res_counter later but cannot wait for
2495 * it.
2496 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002497static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002498{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002499 /*
2500 * If someone calls draining, avoid adding more kworker runs.
2501 */
2502 if (!mutex_trylock(&percpu_charge_mutex))
2503 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002504 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002505 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002506}
2507
2508/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002509static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002510{
2511 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002512 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002513 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002514 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002515}
2516
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002517/*
2518 * This function drains percpu counter value from DEAD cpu and
2519 * move it to local cpu. Note that this function can be preempted.
2520 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002521static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002522{
2523 int i;
2524
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002525 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002526 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002527 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002528
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002529 per_cpu(memcg->stat->count[i], cpu) = 0;
2530 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002531 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002532 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002533 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002534
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002535 per_cpu(memcg->stat->events[i], cpu) = 0;
2536 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002537 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002538 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002539}
2540
Paul Gortmaker0db06282013-06-19 14:53:51 -04002541static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002542 unsigned long action,
2543 void *hcpu)
2544{
2545 int cpu = (unsigned long)hcpu;
2546 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002547 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002548
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002549 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002550 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002551
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002552 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002553 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002554
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002555 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002556 mem_cgroup_drain_pcp_counter(iter, cpu);
2557
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002558 stock = &per_cpu(memcg_stock, cpu);
2559 drain_stock(stock);
2560 return NOTIFY_OK;
2561}
2562
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002563
2564/* See __mem_cgroup_try_charge() for details */
2565enum {
2566 CHARGE_OK, /* success */
2567 CHARGE_RETRY, /* need to retry but retry is not bad */
2568 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2569 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002570};
2571
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002572static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002573 unsigned int nr_pages, unsigned int min_pages,
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002574 bool invoke_oom)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002575{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002576 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002577 struct mem_cgroup *mem_over_limit;
2578 struct res_counter *fail_res;
2579 unsigned long flags = 0;
2580 int ret;
2581
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002582 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002583
2584 if (likely(!ret)) {
2585 if (!do_swap_account)
2586 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002587 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002588 if (likely(!ret))
2589 return CHARGE_OK;
2590
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002591 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002592 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2593 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2594 } else
2595 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002596 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002597 * Never reclaim on behalf of optional batching, retry with a
2598 * single page instead.
2599 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002600 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002601 return CHARGE_RETRY;
2602
2603 if (!(gfp_mask & __GFP_WAIT))
2604 return CHARGE_WOULDBLOCK;
2605
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002606 if (gfp_mask & __GFP_NORETRY)
2607 return CHARGE_NOMEM;
2608
Johannes Weiner56600482012-01-12 17:17:59 -08002609 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002610 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002611 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002612 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002613 * Even though the limit is exceeded at this point, reclaim
2614 * may have been able to free some pages. Retry the charge
2615 * before killing the task.
2616 *
2617 * Only for regular pages, though: huge pages are rather
2618 * unlikely to succeed so close to the limit, and we fall back
2619 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002620 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002621 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002622 return CHARGE_RETRY;
2623
2624 /*
2625 * At task move, charge accounts can be doubly counted. So, it's
2626 * better to wait until the end of task_move if something is going on.
2627 */
2628 if (mem_cgroup_wait_acct_move(mem_over_limit))
2629 return CHARGE_RETRY;
2630
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002631 if (invoke_oom)
2632 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(csize));
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002633
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002634 return CHARGE_NOMEM;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002635}
2636
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002637/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002638 * __mem_cgroup_try_charge() does
2639 * 1. detect memcg to be charged against from passed *mm and *ptr,
2640 * 2. update res_counter
2641 * 3. call memory reclaim if necessary.
2642 *
2643 * In some special case, if the task is fatal, fatal_signal_pending() or
2644 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2645 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2646 * as possible without any hazards. 2: all pages should have a valid
2647 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2648 * pointer, that is treated as a charge to root_mem_cgroup.
2649 *
2650 * So __mem_cgroup_try_charge() will return
2651 * 0 ... on success, filling *ptr with a valid memcg pointer.
2652 * -ENOMEM ... charge failure because of resource limits.
2653 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2654 *
2655 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2656 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002657 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002658static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002659 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002660 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002661 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002662 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002663{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002664 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002665 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002666 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002667 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002668
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002669 /*
2670 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2671 * in system level. So, allow to go ahead dying process in addition to
2672 * MEMDIE process.
2673 */
2674 if (unlikely(test_thread_flag(TIF_MEMDIE)
2675 || fatal_signal_pending(current)))
2676 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002677
Johannes Weiner49426422013-10-16 13:46:59 -07002678 if (unlikely(task_in_memcg_oom(current)))
2679 goto bypass;
2680
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002681 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002682 * We always charge the cgroup the mm_struct belongs to.
2683 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002684 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002685 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002686 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002687 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002688 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002689again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002690 if (*ptr) { /* css should be a valid one */
2691 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002692 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002693 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002694 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002695 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002696 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002697 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002698 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002699
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002700 rcu_read_lock();
2701 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002702 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002703 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002704 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002705 * race with swapoff. Then, we have small risk of mis-accouning.
2706 * But such kind of mis-account by race always happens because
2707 * we don't have cgroup_mutex(). It's overkill and we allo that
2708 * small race, here.
2709 * (*) swapoff at el will charge against mm-struct not against
2710 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002711 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002712 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002713 if (!memcg)
2714 memcg = root_mem_cgroup;
2715 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002716 rcu_read_unlock();
2717 goto done;
2718 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002719 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002720 /*
2721 * It seems dagerous to access memcg without css_get().
2722 * But considering how consume_stok works, it's not
2723 * necessary. If consume_stock success, some charges
2724 * from this memcg are cached on this cpu. So, we
2725 * don't need to call css_get()/css_tryget() before
2726 * calling consume_stock().
2727 */
2728 rcu_read_unlock();
2729 goto done;
2730 }
2731 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002732 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002733 rcu_read_unlock();
2734 goto again;
2735 }
2736 rcu_read_unlock();
2737 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002738
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002739 do {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002740 bool invoke_oom = oom && !nr_oom_retries;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002741
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002742 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002743 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002744 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002745 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002746 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002747
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002748 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch,
2749 nr_pages, invoke_oom);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002750 switch (ret) {
2751 case CHARGE_OK:
2752 break;
2753 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002754 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002755 css_put(&memcg->css);
2756 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002757 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002758 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002759 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002760 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002761 case CHARGE_NOMEM: /* OOM routine works */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002762 if (!oom || invoke_oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002763 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002764 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002765 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002766 nr_oom_retries--;
2767 break;
Balbir Singh66e17072008-02-07 00:13:56 -08002768 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002769 } while (ret != CHARGE_OK);
2770
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002771 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002772 refill_stock(memcg, batch - nr_pages);
2773 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002774done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002775 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002776 return 0;
2777nomem:
Johannes Weiner3168ecb2013-10-31 16:34:13 -07002778 if (!(gfp_mask & __GFP_NOFAIL)) {
2779 *ptr = NULL;
2780 return -ENOMEM;
2781 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002782bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002783 *ptr = root_mem_cgroup;
2784 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002785}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002786
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002787/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002788 * Somemtimes we have to undo a charge we got by try_charge().
2789 * This function is for that and do uncharge, put css's refcnt.
2790 * gotten by try_charge().
2791 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002792static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002793 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002794{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002795 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002796 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002797
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002798 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002799 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002800 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002801 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002802}
2803
2804/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002805 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2806 * This is useful when moving usage to parent cgroup.
2807 */
2808static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2809 unsigned int nr_pages)
2810{
2811 unsigned long bytes = nr_pages * PAGE_SIZE;
2812
2813 if (mem_cgroup_is_root(memcg))
2814 return;
2815
2816 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2817 if (do_swap_account)
2818 res_counter_uncharge_until(&memcg->memsw,
2819 memcg->memsw.parent, bytes);
2820}
2821
2822/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002823 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002824 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2825 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2826 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002827 */
2828static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2829{
2830 struct cgroup_subsys_state *css;
2831
2832 /* ID 0 is unused ID */
2833 if (!id)
2834 return NULL;
2835 css = css_lookup(&mem_cgroup_subsys, id);
2836 if (!css)
2837 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002838 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002839}
2840
Wu Fengguange42d9d52009-12-16 12:19:59 +01002841struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002842{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002843 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002844 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002845 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002846 swp_entry_t ent;
2847
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002848 VM_BUG_ON(!PageLocked(page));
2849
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002850 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002851 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002852 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002853 memcg = pc->mem_cgroup;
2854 if (memcg && !css_tryget(&memcg->css))
2855 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002856 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002857 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002858 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002859 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002860 memcg = mem_cgroup_lookup(id);
2861 if (memcg && !css_tryget(&memcg->css))
2862 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002863 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002864 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002865 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002866 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002867}
2868
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002869static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002870 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002871 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002872 enum charge_type ctype,
2873 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002874{
Johannes Weinerce587e62012-04-24 20:22:33 +02002875 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002876 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002877 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002878 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002879 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002880
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002881 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002882 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002883 /*
2884 * we don't need page_cgroup_lock about tail pages, becase they are not
2885 * accessed by any other context at this point.
2886 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002887
2888 /*
2889 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2890 * may already be on some other mem_cgroup's LRU. Take care of it.
2891 */
2892 if (lrucare) {
2893 zone = page_zone(page);
2894 spin_lock_irq(&zone->lru_lock);
2895 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002896 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002897 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002898 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002899 was_on_lru = true;
2900 }
2901 }
2902
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002903 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002904 /*
2905 * We access a page_cgroup asynchronously without lock_page_cgroup().
2906 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2907 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2908 * before USED bit, we need memory barrier here.
2909 * See mem_cgroup_add_lru_list(), etc.
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002910 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002911 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002912 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002913
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002914 if (lrucare) {
2915 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002916 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002917 VM_BUG_ON(PageLRU(page));
2918 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002919 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002920 }
2921 spin_unlock_irq(&zone->lru_lock);
2922 }
2923
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002924 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002925 anon = true;
2926 else
2927 anon = false;
2928
David Rientjesb070e652013-05-07 16:18:09 -07002929 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002930 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002931
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002932 /*
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07002933 * "charge_statistics" updated event counter. Then, check it.
2934 * Insert ancestor (and ancestor's ancestors), to softlimit RB-tree.
2935 * if they exceeds softlimit.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002936 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002937 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002938}
2939
Glauber Costa7cf27982012-12-18 14:22:55 -08002940static DEFINE_MUTEX(set_limit_mutex);
2941
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002942#ifdef CONFIG_MEMCG_KMEM
2943static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2944{
2945 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2946 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2947}
2948
Glauber Costa1f458cb2012-12-18 14:22:50 -08002949/*
2950 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2951 * in the memcg_cache_params struct.
2952 */
2953static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2954{
2955 struct kmem_cache *cachep;
2956
2957 VM_BUG_ON(p->is_root_cache);
2958 cachep = p->root_cache;
2959 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2960}
2961
Glauber Costa749c5412012-12-18 14:23:01 -08002962#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002963static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2964 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002965{
Tejun Heo182446d2013-08-08 20:11:24 -04002966 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002967 struct memcg_cache_params *params;
2968
2969 if (!memcg_can_account_kmem(memcg))
2970 return -EIO;
2971
2972 print_slabinfo_header(m);
2973
2974 mutex_lock(&memcg->slab_caches_mutex);
2975 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2976 cache_show(memcg_params_to_cache(params), m);
2977 mutex_unlock(&memcg->slab_caches_mutex);
2978
2979 return 0;
2980}
2981#endif
2982
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002983static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2984{
2985 struct res_counter *fail_res;
2986 struct mem_cgroup *_memcg;
2987 int ret = 0;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002988
2989 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2990 if (ret)
2991 return ret;
2992
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002993 _memcg = memcg;
2994 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
Qiang Huangb9921ec2013-11-12 15:07:22 -08002995 &_memcg, oom_gfp_allowed(gfp));
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002996
2997 if (ret == -EINTR) {
2998 /*
2999 * __mem_cgroup_try_charge() chosed to bypass to root due to
3000 * OOM kill or fatal signal. Since our only options are to
3001 * either fail the allocation or charge it to this cgroup, do
3002 * it as a temporary condition. But we can't fail. From a
3003 * kmem/slab perspective, the cache has already been selected,
3004 * by mem_cgroup_kmem_get_cache(), so it is too late to change
3005 * our minds.
3006 *
3007 * This condition will only trigger if the task entered
3008 * memcg_charge_kmem in a sane state, but was OOM-killed during
3009 * __mem_cgroup_try_charge() above. Tasks that were already
3010 * dying when the allocation triggers should have been already
3011 * directed to the root cgroup in memcontrol.h
3012 */
3013 res_counter_charge_nofail(&memcg->res, size, &fail_res);
3014 if (do_swap_account)
3015 res_counter_charge_nofail(&memcg->memsw, size,
3016 &fail_res);
3017 ret = 0;
3018 } else if (ret)
3019 res_counter_uncharge(&memcg->kmem, size);
3020
3021 return ret;
3022}
3023
3024static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
3025{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003026 res_counter_uncharge(&memcg->res, size);
3027 if (do_swap_account)
3028 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08003029
3030 /* Not down to 0 */
3031 if (res_counter_uncharge(&memcg->kmem, size))
3032 return;
3033
Li Zefan10d5ebf2013-07-08 16:00:33 -07003034 /*
3035 * Releases a reference taken in kmem_cgroup_css_offline in case
3036 * this last uncharge is racing with the offlining code or it is
3037 * outliving the memcg existence.
3038 *
3039 * The memory barrier imposed by test&clear is paired with the
3040 * explicit one in memcg_kmem_mark_dead().
3041 */
Glauber Costa7de37682012-12-18 14:22:07 -08003042 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07003043 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003044}
3045
Glauber Costa2633d7a2012-12-18 14:22:34 -08003046void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
3047{
3048 if (!memcg)
3049 return;
3050
3051 mutex_lock(&memcg->slab_caches_mutex);
3052 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
3053 mutex_unlock(&memcg->slab_caches_mutex);
3054}
3055
3056/*
3057 * helper for acessing a memcg's index. It will be used as an index in the
3058 * child cache array in kmem_cache, and also to derive its name. This function
3059 * will return -1 when this is not a kmem-limited memcg.
3060 */
3061int memcg_cache_id(struct mem_cgroup *memcg)
3062{
3063 return memcg ? memcg->kmemcg_id : -1;
3064}
3065
Glauber Costa55007d82012-12-18 14:22:38 -08003066/*
3067 * This ends up being protected by the set_limit mutex, during normal
3068 * operation, because that is its main call site.
3069 *
3070 * But when we create a new cache, we can call this as well if its parent
3071 * is kmem-limited. That will have to hold set_limit_mutex as well.
3072 */
3073int memcg_update_cache_sizes(struct mem_cgroup *memcg)
3074{
3075 int num, ret;
3076
3077 num = ida_simple_get(&kmem_limited_groups,
3078 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
3079 if (num < 0)
3080 return num;
3081 /*
3082 * After this point, kmem_accounted (that we test atomically in
3083 * the beginning of this conditional), is no longer 0. This
3084 * guarantees only one process will set the following boolean
3085 * to true. We don't need test_and_set because we're protected
3086 * by the set_limit_mutex anyway.
3087 */
3088 memcg_kmem_set_activated(memcg);
3089
3090 ret = memcg_update_all_caches(num+1);
3091 if (ret) {
3092 ida_simple_remove(&kmem_limited_groups, num);
3093 memcg_kmem_clear_activated(memcg);
3094 return ret;
3095 }
3096
3097 memcg->kmemcg_id = num;
3098 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
3099 mutex_init(&memcg->slab_caches_mutex);
3100 return 0;
3101}
3102
3103static size_t memcg_caches_array_size(int num_groups)
3104{
3105 ssize_t size;
3106 if (num_groups <= 0)
3107 return 0;
3108
3109 size = 2 * num_groups;
3110 if (size < MEMCG_CACHES_MIN_SIZE)
3111 size = MEMCG_CACHES_MIN_SIZE;
3112 else if (size > MEMCG_CACHES_MAX_SIZE)
3113 size = MEMCG_CACHES_MAX_SIZE;
3114
3115 return size;
3116}
3117
3118/*
3119 * We should update the current array size iff all caches updates succeed. This
3120 * can only be done from the slab side. The slab mutex needs to be held when
3121 * calling this.
3122 */
3123void memcg_update_array_size(int num)
3124{
3125 if (num > memcg_limited_groups_array_size)
3126 memcg_limited_groups_array_size = memcg_caches_array_size(num);
3127}
3128
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08003129static void kmem_cache_destroy_work_func(struct work_struct *w);
3130
Glauber Costa55007d82012-12-18 14:22:38 -08003131int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
3132{
3133 struct memcg_cache_params *cur_params = s->memcg_params;
3134
Qiang Huangf35c3a82013-11-12 15:08:22 -08003135 VM_BUG_ON(!is_root_cache(s));
Glauber Costa55007d82012-12-18 14:22:38 -08003136
3137 if (num_groups > memcg_limited_groups_array_size) {
3138 int i;
3139 ssize_t size = memcg_caches_array_size(num_groups);
3140
3141 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003142 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003143
3144 s->memcg_params = kzalloc(size, GFP_KERNEL);
3145 if (!s->memcg_params) {
3146 s->memcg_params = cur_params;
3147 return -ENOMEM;
3148 }
3149
3150 s->memcg_params->is_root_cache = true;
3151
3152 /*
3153 * There is the chance it will be bigger than
3154 * memcg_limited_groups_array_size, if we failed an allocation
3155 * in a cache, in which case all caches updated before it, will
3156 * have a bigger array.
3157 *
3158 * But if that is the case, the data after
3159 * memcg_limited_groups_array_size is certainly unused
3160 */
3161 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3162 if (!cur_params->memcg_caches[i])
3163 continue;
3164 s->memcg_params->memcg_caches[i] =
3165 cur_params->memcg_caches[i];
3166 }
3167
3168 /*
3169 * Ideally, we would wait until all caches succeed, and only
3170 * then free the old one. But this is not worth the extra
3171 * pointer per-cache we'd have to have for this.
3172 *
3173 * It is not a big deal if some caches are left with a size
3174 * bigger than the others. And all updates will reset this
3175 * anyway.
3176 */
3177 kfree(cur_params);
3178 }
3179 return 0;
3180}
3181
Glauber Costa943a4512012-12-18 14:23:03 -08003182int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3183 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08003184{
Andrey Vagin90c7a792013-09-11 14:22:18 -07003185 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003186
3187 if (!memcg_kmem_enabled())
3188 return 0;
3189
Andrey Vagin90c7a792013-09-11 14:22:18 -07003190 if (!memcg) {
3191 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003192 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003193 } else
3194 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08003195
Glauber Costa2633d7a2012-12-18 14:22:34 -08003196 s->memcg_params = kzalloc(size, GFP_KERNEL);
3197 if (!s->memcg_params)
3198 return -ENOMEM;
3199
Glauber Costa943a4512012-12-18 14:23:03 -08003200 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08003201 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08003202 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07003203 INIT_WORK(&s->memcg_params->destroy,
3204 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08003205 } else
3206 s->memcg_params->is_root_cache = true;
3207
Glauber Costa2633d7a2012-12-18 14:22:34 -08003208 return 0;
3209}
3210
3211void memcg_release_cache(struct kmem_cache *s)
3212{
Glauber Costad7f25f82012-12-18 14:22:40 -08003213 struct kmem_cache *root;
3214 struct mem_cgroup *memcg;
3215 int id;
3216
3217 /*
3218 * This happens, for instance, when a root cache goes away before we
3219 * add any memcg.
3220 */
3221 if (!s->memcg_params)
3222 return;
3223
3224 if (s->memcg_params->is_root_cache)
3225 goto out;
3226
3227 memcg = s->memcg_params->memcg;
3228 id = memcg_cache_id(memcg);
3229
3230 root = s->memcg_params->root_cache;
3231 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08003232
3233 mutex_lock(&memcg->slab_caches_mutex);
3234 list_del(&s->memcg_params->list);
3235 mutex_unlock(&memcg->slab_caches_mutex);
3236
Li Zefan20f05312013-07-08 16:00:31 -07003237 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003238out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08003239 kfree(s->memcg_params);
3240}
3241
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003242/*
3243 * During the creation a new cache, we need to disable our accounting mechanism
3244 * altogether. This is true even if we are not creating, but rather just
3245 * enqueing new caches to be created.
3246 *
3247 * This is because that process will trigger allocations; some visible, like
3248 * explicit kmallocs to auxiliary data structures, name strings and internal
3249 * cache structures; some well concealed, like INIT_WORK() that can allocate
3250 * objects during debug.
3251 *
3252 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3253 * to it. This may not be a bounded recursion: since the first cache creation
3254 * failed to complete (waiting on the allocation), we'll just try to create the
3255 * cache again, failing at the same point.
3256 *
3257 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3258 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3259 * inside the following two functions.
3260 */
3261static inline void memcg_stop_kmem_account(void)
3262{
3263 VM_BUG_ON(!current->mm);
3264 current->memcg_kmem_skip_account++;
3265}
3266
3267static inline void memcg_resume_kmem_account(void)
3268{
3269 VM_BUG_ON(!current->mm);
3270 current->memcg_kmem_skip_account--;
3271}
3272
Glauber Costa1f458cb2012-12-18 14:22:50 -08003273static void kmem_cache_destroy_work_func(struct work_struct *w)
3274{
3275 struct kmem_cache *cachep;
3276 struct memcg_cache_params *p;
3277
3278 p = container_of(w, struct memcg_cache_params, destroy);
3279
3280 cachep = memcg_params_to_cache(p);
3281
Glauber Costa22933152012-12-18 14:22:59 -08003282 /*
3283 * If we get down to 0 after shrink, we could delete right away.
3284 * However, memcg_release_pages() already puts us back in the workqueue
3285 * in that case. If we proceed deleting, we'll get a dangling
3286 * reference, and removing the object from the workqueue in that case
3287 * is unnecessary complication. We are not a fast path.
3288 *
3289 * Note that this case is fundamentally different from racing with
3290 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3291 * kmem_cache_shrink, not only we would be reinserting a dead cache
3292 * into the queue, but doing so from inside the worker racing to
3293 * destroy it.
3294 *
3295 * So if we aren't down to zero, we'll just schedule a worker and try
3296 * again
3297 */
3298 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3299 kmem_cache_shrink(cachep);
3300 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3301 return;
3302 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003303 kmem_cache_destroy(cachep);
3304}
3305
3306void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3307{
3308 if (!cachep->memcg_params->dead)
3309 return;
3310
3311 /*
Glauber Costa22933152012-12-18 14:22:59 -08003312 * There are many ways in which we can get here.
3313 *
3314 * We can get to a memory-pressure situation while the delayed work is
3315 * still pending to run. The vmscan shrinkers can then release all
3316 * cache memory and get us to destruction. If this is the case, we'll
3317 * be executed twice, which is a bug (the second time will execute over
3318 * bogus data). In this case, cancelling the work should be fine.
3319 *
3320 * But we can also get here from the worker itself, if
3321 * kmem_cache_shrink is enough to shake all the remaining objects and
3322 * get the page count to 0. In this case, we'll deadlock if we try to
3323 * cancel the work (the worker runs with an internal lock held, which
3324 * is the same lock we would hold for cancel_work_sync().)
3325 *
3326 * Since we can't possibly know who got us here, just refrain from
3327 * running if there is already work pending
3328 */
3329 if (work_pending(&cachep->memcg_params->destroy))
3330 return;
3331 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003332 * We have to defer the actual destroying to a workqueue, because
3333 * we might currently be in a context that cannot sleep.
3334 */
3335 schedule_work(&cachep->memcg_params->destroy);
3336}
3337
Glauber Costad7f25f82012-12-18 14:22:40 -08003338/*
3339 * This lock protects updaters, not readers. We want readers to be as fast as
3340 * they can, and they will either see NULL or a valid cache value. Our model
3341 * allow them to see NULL, in which case the root memcg will be selected.
3342 *
3343 * We need this lock because multiple allocations to the same cache from a non
3344 * will span more than one worker. Only one of them can create the cache.
3345 */
3346static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003347
3348/*
3349 * Called with memcg_cache_mutex held
3350 */
3351static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3352 struct kmem_cache *s)
3353{
3354 struct kmem_cache *new;
3355 static char *tmp_name = NULL;
3356
3357 lockdep_assert_held(&memcg_cache_mutex);
3358
3359 /*
3360 * kmem_cache_create_memcg duplicates the given name and
3361 * cgroup_name for this name requires RCU context.
3362 * This static temporary buffer is used to prevent from
3363 * pointless shortliving allocation.
3364 */
3365 if (!tmp_name) {
3366 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3367 if (!tmp_name)
3368 return NULL;
3369 }
3370
3371 rcu_read_lock();
3372 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3373 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3374 rcu_read_unlock();
3375
3376 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3377 (s->flags & ~SLAB_PANIC), s->ctor, s);
3378
3379 if (new)
3380 new->allocflags |= __GFP_KMEMCG;
3381
3382 return new;
3383}
3384
Glauber Costad7f25f82012-12-18 14:22:40 -08003385static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3386 struct kmem_cache *cachep)
3387{
3388 struct kmem_cache *new_cachep;
3389 int idx;
3390
3391 BUG_ON(!memcg_can_account_kmem(memcg));
3392
3393 idx = memcg_cache_id(memcg);
3394
3395 mutex_lock(&memcg_cache_mutex);
3396 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003397 if (new_cachep) {
3398 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003399 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003400 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003401
3402 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003403 if (new_cachep == NULL) {
3404 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003405 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003406 goto out;
3407 }
3408
Glauber Costa1f458cb2012-12-18 14:22:50 -08003409 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003410
3411 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3412 /*
3413 * the readers won't lock, make sure everybody sees the updated value,
3414 * so they won't put stuff in the queue again for no reason
3415 */
3416 wmb();
3417out:
3418 mutex_unlock(&memcg_cache_mutex);
3419 return new_cachep;
3420}
3421
Glauber Costa7cf27982012-12-18 14:22:55 -08003422void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3423{
3424 struct kmem_cache *c;
3425 int i;
3426
3427 if (!s->memcg_params)
3428 return;
3429 if (!s->memcg_params->is_root_cache)
3430 return;
3431
3432 /*
3433 * If the cache is being destroyed, we trust that there is no one else
3434 * requesting objects from it. Even if there are, the sanity checks in
3435 * kmem_cache_destroy should caught this ill-case.
3436 *
3437 * Still, we don't want anyone else freeing memcg_caches under our
3438 * noses, which can happen if a new memcg comes to life. As usual,
3439 * we'll take the set_limit_mutex to protect ourselves against this.
3440 */
3441 mutex_lock(&set_limit_mutex);
3442 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3443 c = s->memcg_params->memcg_caches[i];
3444 if (!c)
3445 continue;
3446
3447 /*
3448 * We will now manually delete the caches, so to avoid races
3449 * we need to cancel all pending destruction workers and
3450 * proceed with destruction ourselves.
3451 *
3452 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3453 * and that could spawn the workers again: it is likely that
3454 * the cache still have active pages until this very moment.
3455 * This would lead us back to mem_cgroup_destroy_cache.
3456 *
3457 * But that will not execute at all if the "dead" flag is not
3458 * set, so flip it down to guarantee we are in control.
3459 */
3460 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003461 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003462 kmem_cache_destroy(c);
3463 }
3464 mutex_unlock(&set_limit_mutex);
3465}
3466
Glauber Costad7f25f82012-12-18 14:22:40 -08003467struct create_work {
3468 struct mem_cgroup *memcg;
3469 struct kmem_cache *cachep;
3470 struct work_struct work;
3471};
3472
Glauber Costa1f458cb2012-12-18 14:22:50 -08003473static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3474{
3475 struct kmem_cache *cachep;
3476 struct memcg_cache_params *params;
3477
3478 if (!memcg_kmem_is_active(memcg))
3479 return;
3480
3481 mutex_lock(&memcg->slab_caches_mutex);
3482 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3483 cachep = memcg_params_to_cache(params);
3484 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003485 schedule_work(&cachep->memcg_params->destroy);
3486 }
3487 mutex_unlock(&memcg->slab_caches_mutex);
3488}
3489
Glauber Costad7f25f82012-12-18 14:22:40 -08003490static void memcg_create_cache_work_func(struct work_struct *w)
3491{
3492 struct create_work *cw;
3493
3494 cw = container_of(w, struct create_work, work);
3495 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003496 kfree(cw);
3497}
3498
3499/*
3500 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003501 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003502static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3503 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003504{
3505 struct create_work *cw;
3506
3507 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003508 if (cw == NULL) {
3509 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003510 return;
3511 }
3512
3513 cw->memcg = memcg;
3514 cw->cachep = cachep;
3515
3516 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3517 schedule_work(&cw->work);
3518}
3519
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003520static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3521 struct kmem_cache *cachep)
3522{
3523 /*
3524 * We need to stop accounting when we kmalloc, because if the
3525 * corresponding kmalloc cache is not yet created, the first allocation
3526 * in __memcg_create_cache_enqueue will recurse.
3527 *
3528 * However, it is better to enclose the whole function. Depending on
3529 * the debugging options enabled, INIT_WORK(), for instance, can
3530 * trigger an allocation. This too, will make us recurse. Because at
3531 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3532 * the safest choice is to do it like this, wrapping the whole function.
3533 */
3534 memcg_stop_kmem_account();
3535 __memcg_create_cache_enqueue(memcg, cachep);
3536 memcg_resume_kmem_account();
3537}
Glauber Costad7f25f82012-12-18 14:22:40 -08003538/*
3539 * Return the kmem_cache we're supposed to use for a slab allocation.
3540 * We try to use the current memcg's version of the cache.
3541 *
3542 * If the cache does not exist yet, if we are the first user of it,
3543 * we either create it immediately, if possible, or create it asynchronously
3544 * in a workqueue.
3545 * In the latter case, we will let the current allocation go through with
3546 * the original cache.
3547 *
3548 * Can't be called in interrupt context or from kernel threads.
3549 * This function needs to be called with rcu_read_lock() held.
3550 */
3551struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3552 gfp_t gfp)
3553{
3554 struct mem_cgroup *memcg;
3555 int idx;
3556
3557 VM_BUG_ON(!cachep->memcg_params);
3558 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3559
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003560 if (!current->mm || current->memcg_kmem_skip_account)
3561 return cachep;
3562
Glauber Costad7f25f82012-12-18 14:22:40 -08003563 rcu_read_lock();
3564 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003565
3566 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003567 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003568
3569 idx = memcg_cache_id(memcg);
3570
3571 /*
3572 * barrier to mare sure we're always seeing the up to date value. The
3573 * code updating memcg_caches will issue a write barrier to match this.
3574 */
3575 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003576 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3577 cachep = cachep->memcg_params->memcg_caches[idx];
3578 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003579 }
3580
Li Zefanca0dde92013-04-29 15:08:57 -07003581 /* The corresponding put will be done in the workqueue. */
3582 if (!css_tryget(&memcg->css))
3583 goto out;
3584 rcu_read_unlock();
3585
3586 /*
3587 * If we are in a safe context (can wait, and not in interrupt
3588 * context), we could be be predictable and return right away.
3589 * This would guarantee that the allocation being performed
3590 * already belongs in the new cache.
3591 *
3592 * However, there are some clashes that can arrive from locking.
3593 * For instance, because we acquire the slab_mutex while doing
3594 * kmem_cache_dup, this means no further allocation could happen
3595 * with the slab_mutex held.
3596 *
3597 * Also, because cache creation issue get_online_cpus(), this
3598 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3599 * that ends up reversed during cpu hotplug. (cpuset allocates
3600 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3601 * better to defer everything.
3602 */
3603 memcg_create_cache_enqueue(memcg, cachep);
3604 return cachep;
3605out:
3606 rcu_read_unlock();
3607 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003608}
3609EXPORT_SYMBOL(__memcg_kmem_get_cache);
3610
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003611/*
3612 * We need to verify if the allocation against current->mm->owner's memcg is
3613 * possible for the given order. But the page is not allocated yet, so we'll
3614 * need a further commit step to do the final arrangements.
3615 *
3616 * It is possible for the task to switch cgroups in this mean time, so at
3617 * commit time, we can't rely on task conversion any longer. We'll then use
3618 * the handle argument to return to the caller which cgroup we should commit
3619 * against. We could also return the memcg directly and avoid the pointer
3620 * passing, but a boolean return value gives better semantics considering
3621 * the compiled-out case as well.
3622 *
3623 * Returning true means the allocation is possible.
3624 */
3625bool
3626__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3627{
3628 struct mem_cgroup *memcg;
3629 int ret;
3630
3631 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003632
3633 /*
3634 * Disabling accounting is only relevant for some specific memcg
3635 * internal allocations. Therefore we would initially not have such
3636 * check here, since direct calls to the page allocator that are marked
3637 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3638 * concerned with cache allocations, and by having this test at
3639 * memcg_kmem_get_cache, we are already able to relay the allocation to
3640 * the root cache and bypass the memcg cache altogether.
3641 *
3642 * There is one exception, though: the SLUB allocator does not create
3643 * large order caches, but rather service large kmallocs directly from
3644 * the page allocator. Therefore, the following sequence when backed by
3645 * the SLUB allocator:
3646 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003647 * memcg_stop_kmem_account();
3648 * kmalloc(<large_number>)
3649 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003650 *
3651 * would effectively ignore the fact that we should skip accounting,
3652 * since it will drive us directly to this function without passing
3653 * through the cache selector memcg_kmem_get_cache. Such large
3654 * allocations are extremely rare but can happen, for instance, for the
3655 * cache arrays. We bring this test here.
3656 */
3657 if (!current->mm || current->memcg_kmem_skip_account)
3658 return true;
3659
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003660 memcg = try_get_mem_cgroup_from_mm(current->mm);
3661
3662 /*
3663 * very rare case described in mem_cgroup_from_task. Unfortunately there
3664 * isn't much we can do without complicating this too much, and it would
3665 * be gfp-dependent anyway. Just let it go
3666 */
3667 if (unlikely(!memcg))
3668 return true;
3669
3670 if (!memcg_can_account_kmem(memcg)) {
3671 css_put(&memcg->css);
3672 return true;
3673 }
3674
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003675 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3676 if (!ret)
3677 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003678
3679 css_put(&memcg->css);
3680 return (ret == 0);
3681}
3682
3683void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3684 int order)
3685{
3686 struct page_cgroup *pc;
3687
3688 VM_BUG_ON(mem_cgroup_is_root(memcg));
3689
3690 /* The page allocation failed. Revert */
3691 if (!page) {
3692 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003693 return;
3694 }
3695
3696 pc = lookup_page_cgroup(page);
3697 lock_page_cgroup(pc);
3698 pc->mem_cgroup = memcg;
3699 SetPageCgroupUsed(pc);
3700 unlock_page_cgroup(pc);
3701}
3702
3703void __memcg_kmem_uncharge_pages(struct page *page, int order)
3704{
3705 struct mem_cgroup *memcg = NULL;
3706 struct page_cgroup *pc;
3707
3708
3709 pc = lookup_page_cgroup(page);
3710 /*
3711 * Fast unlocked return. Theoretically might have changed, have to
3712 * check again after locking.
3713 */
3714 if (!PageCgroupUsed(pc))
3715 return;
3716
3717 lock_page_cgroup(pc);
3718 if (PageCgroupUsed(pc)) {
3719 memcg = pc->mem_cgroup;
3720 ClearPageCgroupUsed(pc);
3721 }
3722 unlock_page_cgroup(pc);
3723
3724 /*
3725 * We trust that only if there is a memcg associated with the page, it
3726 * is a valid allocation
3727 */
3728 if (!memcg)
3729 return;
3730
3731 VM_BUG_ON(mem_cgroup_is_root(memcg));
3732 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003733}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003734#else
3735static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3736{
3737}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003738#endif /* CONFIG_MEMCG_KMEM */
3739
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003740#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3741
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003742#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003743/*
3744 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003745 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3746 * charge/uncharge will be never happen and move_account() is done under
3747 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003748 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003749void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003750{
3751 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003752 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003753 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003754 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003755
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003756 if (mem_cgroup_disabled())
3757 return;
David Rientjesb070e652013-05-07 16:18:09 -07003758
3759 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003760 for (i = 1; i < HPAGE_PMD_NR; i++) {
3761 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003762 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003763 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003764 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3765 }
David Rientjesb070e652013-05-07 16:18:09 -07003766 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3767 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003768}
Hugh Dickins12d27102012-01-12 17:19:52 -08003769#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003770
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003771static inline
3772void mem_cgroup_move_account_page_stat(struct mem_cgroup *from,
3773 struct mem_cgroup *to,
3774 unsigned int nr_pages,
3775 enum mem_cgroup_stat_index idx)
3776{
3777 /* Update stat data for mem_cgroup */
3778 preempt_disable();
Greg Thelen5e8cfc32013-10-30 13:56:21 -07003779 __this_cpu_sub(from->stat->count[idx], nr_pages);
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003780 __this_cpu_add(to->stat->count[idx], nr_pages);
3781 preempt_enable();
3782}
3783
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003784/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003785 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003786 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003787 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003788 * @pc: page_cgroup of the page.
3789 * @from: mem_cgroup which the page is moved from.
3790 * @to: mem_cgroup which the page is moved to. @from != @to.
3791 *
3792 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003793 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003794 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003795 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003796 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3797 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003798 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003799static int mem_cgroup_move_account(struct page *page,
3800 unsigned int nr_pages,
3801 struct page_cgroup *pc,
3802 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003803 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003804{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003805 unsigned long flags;
3806 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003807 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003808
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003809 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003810 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003811 /*
3812 * The page is isolated from LRU. So, collapse function
3813 * will not handle this page. But page splitting can happen.
3814 * Do this check under compound_page_lock(). The caller should
3815 * hold it.
3816 */
3817 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003818 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003819 goto out;
3820
3821 lock_page_cgroup(pc);
3822
3823 ret = -EINVAL;
3824 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3825 goto unlock;
3826
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003827 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003828
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003829 if (!anon && page_mapped(page))
3830 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3831 MEM_CGROUP_STAT_FILE_MAPPED);
3832
3833 if (PageWriteback(page))
3834 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3835 MEM_CGROUP_STAT_WRITEBACK);
3836
David Rientjesb070e652013-05-07 16:18:09 -07003837 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003838
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003839 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003840 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003841 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003842 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003843 ret = 0;
3844unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003845 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003846 /*
3847 * check events
3848 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003849 memcg_check_events(to, page);
3850 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003851out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003852 return ret;
3853}
3854
Michal Hocko2ef37d32012-10-26 13:37:30 +02003855/**
3856 * mem_cgroup_move_parent - moves page to the parent group
3857 * @page: the page to move
3858 * @pc: page_cgroup of the page
3859 * @child: page's cgroup
3860 *
3861 * move charges to its parent or the root cgroup if the group has no
3862 * parent (aka use_hierarchy==0).
3863 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3864 * mem_cgroup_move_account fails) the failure is always temporary and
3865 * it signals a race with a page removal/uncharge or migration. In the
3866 * first case the page is on the way out and it will vanish from the LRU
3867 * on the next attempt and the call should be retried later.
3868 * Isolation from the LRU fails only if page has been isolated from
3869 * the LRU since we looked at it and that usually means either global
3870 * reclaim or migration going on. The page will either get back to the
3871 * LRU or vanish.
3872 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3873 * (!PageCgroupUsed) or moved to a different group. The page will
3874 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003875 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003876static int mem_cgroup_move_parent(struct page *page,
3877 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003878 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003879{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003880 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003881 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003882 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003883 int ret;
3884
Michal Hockod8423012012-10-26 13:37:29 +02003885 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003886
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003887 ret = -EBUSY;
3888 if (!get_page_unless_zero(page))
3889 goto out;
3890 if (isolate_lru_page(page))
3891 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003892
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003893 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003894
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003895 parent = parent_mem_cgroup(child);
3896 /*
3897 * If no parent, move charges to root cgroup.
3898 */
3899 if (!parent)
3900 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003901
Michal Hocko2ef37d32012-10-26 13:37:30 +02003902 if (nr_pages > 1) {
3903 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003904 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003905 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003906
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003907 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003908 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003909 if (!ret)
3910 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003911
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003912 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003913 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003914 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003915put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003916 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003917out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003918 return ret;
3919}
3920
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003921/*
3922 * Charge the memory controller for page usage.
3923 * Return
3924 * 0 if the charge was successful
3925 * < 0 if the cgroup is over its limit
3926 */
3927static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003928 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003929{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003930 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003931 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003932 bool oom = true;
3933 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003934
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003935 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003936 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003937 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003938 /*
3939 * Never OOM-kill a process for a huge page. The
3940 * fault handler will fall back to regular pages.
3941 */
3942 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003943 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003944
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003945 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003946 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003947 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003948 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003949 return 0;
3950}
3951
3952int mem_cgroup_newpage_charge(struct page *page,
3953 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003954{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003955 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003956 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003957 VM_BUG_ON(page_mapped(page));
3958 VM_BUG_ON(page->mapping && !PageAnon(page));
3959 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003960 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003961 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003962}
3963
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003964/*
3965 * While swap-in, try_charge -> commit or cancel, the page is locked.
3966 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003967 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003968 * "commit()" or removed by "cancel()"
3969 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003970static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3971 struct page *page,
3972 gfp_t mask,
3973 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003974{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003975 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003976 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003977 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003978
Johannes Weiner90deb782012-07-31 16:45:47 -07003979 pc = lookup_page_cgroup(page);
3980 /*
3981 * Every swap fault against a single page tries to charge the
3982 * page, bail as early as possible. shmem_unuse() encounters
3983 * already charged pages, too. The USED bit is protected by
3984 * the page lock, which serializes swap cache removal, which
3985 * in turn serializes uncharging.
3986 */
3987 if (PageCgroupUsed(pc))
3988 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003989 if (!do_swap_account)
3990 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003991 memcg = try_get_mem_cgroup_from_page(page);
3992 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003993 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003994 *memcgp = memcg;
3995 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003996 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003997 if (ret == -EINTR)
3998 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003999 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004000charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08004001 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
4002 if (ret == -EINTR)
4003 ret = 0;
4004 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004005}
4006
Johannes Weiner0435a2f2012-07-31 16:45:43 -07004007int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
4008 gfp_t gfp_mask, struct mem_cgroup **memcgp)
4009{
4010 *memcgp = NULL;
4011 if (mem_cgroup_disabled())
4012 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07004013 /*
4014 * A racing thread's fault, or swapoff, may have already
4015 * updated the pte, and even removed page from swap cache: in
4016 * those cases unuse_pte()'s pte_same() test will fail; but
4017 * there's also a KSM case which does need to charge the page.
4018 */
4019 if (!PageSwapCache(page)) {
4020 int ret;
4021
4022 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
4023 if (ret == -EINTR)
4024 ret = 0;
4025 return ret;
4026 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07004027 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
4028}
4029
Johannes Weiner827a03d2012-07-31 16:45:36 -07004030void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
4031{
4032 if (mem_cgroup_disabled())
4033 return;
4034 if (!memcg)
4035 return;
4036 __mem_cgroup_cancel_charge(memcg, 1);
4037}
4038
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07004039static void
Johannes Weiner72835c82012-01-12 17:18:32 -08004040__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07004041 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004042{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004043 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004044 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08004045 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004046 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07004047
Johannes Weinerce587e62012-04-24 20:22:33 +02004048 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004049 /*
4050 * Now swap is on-memory. This means this page may be
4051 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08004052 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
4053 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
4054 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004055 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08004056 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004057 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07004058 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004059 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004060}
4061
Johannes Weiner72835c82012-01-12 17:18:32 -08004062void mem_cgroup_commit_charge_swapin(struct page *page,
4063 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07004064{
Johannes Weiner72835c82012-01-12 17:18:32 -08004065 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004066 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07004067}
4068
Johannes Weiner827a03d2012-07-31 16:45:36 -07004069int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
4070 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004071{
Johannes Weiner827a03d2012-07-31 16:45:36 -07004072 struct mem_cgroup *memcg = NULL;
4073 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
4074 int ret;
4075
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004076 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07004077 return 0;
4078 if (PageCompound(page))
4079 return 0;
4080
Johannes Weiner827a03d2012-07-31 16:45:36 -07004081 if (!PageSwapCache(page))
4082 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
4083 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07004084 ret = __mem_cgroup_try_charge_swapin(mm, page,
4085 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07004086 if (!ret)
4087 __mem_cgroup_commit_charge_swapin(page, memcg, type);
4088 }
4089 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004090}
4091
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004092static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004093 unsigned int nr_pages,
4094 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004095{
4096 struct memcg_batch_info *batch = NULL;
4097 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004098
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004099 /* If swapout, usage of swap doesn't decrease */
4100 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
4101 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004102
4103 batch = &current->memcg_batch;
4104 /*
4105 * In usual, we do css_get() when we remember memcg pointer.
4106 * But in this case, we keep res->usage until end of a series of
4107 * uncharges. Then, it's ok to ignore memcg's refcnt.
4108 */
4109 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004110 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004111 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004112 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004113 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004114 * the same cgroup and we have chance to coalesce uncharges.
4115 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
4116 * because we want to do uncharge as soon as possible.
4117 */
4118
4119 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
4120 goto direct_uncharge;
4121
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004122 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08004123 goto direct_uncharge;
4124
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004125 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004126 * In typical case, batch->memcg == mem. This means we can
4127 * merge a series of uncharges to an uncharge of res_counter.
4128 * If not, we uncharge res_counter ony by one.
4129 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004130 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004131 goto direct_uncharge;
4132 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004133 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004134 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004135 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004136 return;
4137direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004138 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004139 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004140 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
4141 if (unlikely(batch->memcg != memcg))
4142 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004143}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004144
Balbir Singh8697d332008-02-07 00:13:59 -08004145/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004146 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004147 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004148static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07004149__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
4150 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004151{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004152 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004153 unsigned int nr_pages = 1;
4154 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004155 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004156
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004157 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004158 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07004159
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004160 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004161 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004162 VM_BUG_ON(!PageTransHuge(page));
4163 }
Balbir Singh8697d332008-02-07 00:13:59 -08004164 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08004165 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08004166 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004167 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004168 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004169 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004170
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004171 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004172
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004173 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004174
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004175 if (!PageCgroupUsed(pc))
4176 goto unlock_out;
4177
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004178 anon = PageAnon(page);
4179
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004180 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004181 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07004182 /*
4183 * Generally PageAnon tells if it's the anon statistics to be
4184 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4185 * used before page reached the stage of being marked PageAnon.
4186 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004187 anon = true;
4188 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004189 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004190 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07004191 if (page_mapped(page))
4192 goto unlock_out;
4193 /*
4194 * Pages under migration may not be uncharged. But
4195 * end_migration() /must/ be the one uncharging the
4196 * unused post-migration page and so it has to call
4197 * here with the migration bit still set. See the
4198 * res_counter handling below.
4199 */
4200 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004201 goto unlock_out;
4202 break;
4203 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4204 if (!PageAnon(page)) { /* Shared memory */
4205 if (page->mapping && !page_is_file_cache(page))
4206 goto unlock_out;
4207 } else if (page_mapped(page)) /* Anon */
4208 goto unlock_out;
4209 break;
4210 default:
4211 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004212 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004213
David Rientjesb070e652013-05-07 16:18:09 -07004214 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004215
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004216 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08004217 /*
4218 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4219 * freed from LRU. This is safe because uncharged page is expected not
4220 * to be reused (freed soon). Exception is SwapCache, it's handled by
4221 * special functions.
4222 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004223
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004224 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004225 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004226 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07004227 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004228 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004229 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004230 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004231 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07004232 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004233 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004234 /*
4235 * Migration does not charge the res_counter for the
4236 * replacement page, so leave it alone when phasing out the
4237 * page that is unused after the migration.
4238 */
4239 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004240 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004241
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004242 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004243
4244unlock_out:
4245 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004246 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08004247}
4248
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004249void mem_cgroup_uncharge_page(struct page *page)
4250{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004251 /* early check. */
4252 if (page_mapped(page))
4253 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08004254 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07004255 /*
4256 * If the page is in swap cache, uncharge should be deferred
4257 * to the swap path, which also properly accounts swap usage
4258 * and handles memcg lifetime.
4259 *
4260 * Note that this check is not stable and reclaim may add the
4261 * page to swap cache at any time after this. However, if the
4262 * page is not in swap cache by the time page->mapcount hits
4263 * 0, there won't be any page table references to the swap
4264 * slot, and reclaim will free it and not actually write the
4265 * page to disk.
4266 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07004267 if (PageSwapCache(page))
4268 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07004269 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004270}
4271
4272void mem_cgroup_uncharge_cache_page(struct page *page)
4273{
4274 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07004275 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07004276 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004277}
4278
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004279/*
4280 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4281 * In that cases, pages are freed continuously and we can expect pages
4282 * are in the same memcg. All these calls itself limits the number of
4283 * pages freed at once, then uncharge_start/end() is called properly.
4284 * This may be called prural(2) times in a context,
4285 */
4286
4287void mem_cgroup_uncharge_start(void)
4288{
4289 current->memcg_batch.do_batch++;
4290 /* We can do nest. */
4291 if (current->memcg_batch.do_batch == 1) {
4292 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004293 current->memcg_batch.nr_pages = 0;
4294 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004295 }
4296}
4297
4298void mem_cgroup_uncharge_end(void)
4299{
4300 struct memcg_batch_info *batch = &current->memcg_batch;
4301
4302 if (!batch->do_batch)
4303 return;
4304
4305 batch->do_batch--;
4306 if (batch->do_batch) /* If stacked, do nothing. */
4307 return;
4308
4309 if (!batch->memcg)
4310 return;
4311 /*
4312 * This "batch->memcg" is valid without any css_get/put etc...
4313 * bacause we hide charges behind us.
4314 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004315 if (batch->nr_pages)
4316 res_counter_uncharge(&batch->memcg->res,
4317 batch->nr_pages * PAGE_SIZE);
4318 if (batch->memsw_nr_pages)
4319 res_counter_uncharge(&batch->memcg->memsw,
4320 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004321 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004322 /* forget this pointer (for sanity check) */
4323 batch->memcg = NULL;
4324}
4325
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004326#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004327/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004328 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004329 * memcg information is recorded to swap_cgroup of "ent"
4330 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004331void
4332mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004333{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004334 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004335 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004336
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004337 if (!swapout) /* this was a swap cache but the swap is unused ! */
4338 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4339
Johannes Weiner0030f532012-07-31 16:45:25 -07004340 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004341
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004342 /*
4343 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004344 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004345 */
4346 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004347 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004348}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004349#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004350
Andrew Mortonc255a452012-07-31 16:43:02 -07004351#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004352/*
4353 * called from swap_entry_free(). remove record in swap_cgroup and
4354 * uncharge "memsw" account.
4355 */
4356void mem_cgroup_uncharge_swap(swp_entry_t ent)
4357{
4358 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004359 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004360
4361 if (!do_swap_account)
4362 return;
4363
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004364 id = swap_cgroup_record(ent, 0);
4365 rcu_read_lock();
4366 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004367 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004368 /*
4369 * We uncharge this because swap is freed.
4370 * This memcg can be obsolete one. We avoid calling css_tryget
4371 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004372 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004373 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004374 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004375 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004376 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004377 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004378}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004379
4380/**
4381 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4382 * @entry: swap entry to be moved
4383 * @from: mem_cgroup which the entry is moved from
4384 * @to: mem_cgroup which the entry is moved to
4385 *
4386 * It succeeds only when the swap_cgroup's record for this entry is the same
4387 * as the mem_cgroup's id of @from.
4388 *
4389 * Returns 0 on success, -EINVAL on failure.
4390 *
4391 * The caller must have charged to @to, IOW, called res_counter_charge() about
4392 * both res and memsw, and called css_get().
4393 */
4394static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004395 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004396{
4397 unsigned short old_id, new_id;
4398
4399 old_id = css_id(&from->css);
4400 new_id = css_id(&to->css);
4401
4402 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004403 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004404 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004405 /*
4406 * This function is only called from task migration context now.
4407 * It postpones res_counter and refcount handling till the end
4408 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004409 * improvement. But we cannot postpone css_get(to) because if
4410 * the process that has been moved to @to does swap-in, the
4411 * refcount of @to might be decreased to 0.
4412 *
4413 * We are in attach() phase, so the cgroup is guaranteed to be
4414 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004415 */
Li Zefan40503772013-07-08 16:00:34 -07004416 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004417 return 0;
4418 }
4419 return -EINVAL;
4420}
4421#else
4422static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004423 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004424{
4425 return -EINVAL;
4426}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004427#endif
4428
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004429/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004430 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4431 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004432 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004433void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4434 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004435{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004436 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004437 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004438 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004439 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004440
Johannes Weiner72835c82012-01-12 17:18:32 -08004441 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004442
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004443 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004444 return;
Balbir Singh40779602008-04-04 14:29:59 -07004445
Mel Gormanb32967f2012-11-19 12:35:47 +00004446 if (PageTransHuge(page))
4447 nr_pages <<= compound_order(page);
4448
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004449 pc = lookup_page_cgroup(page);
4450 lock_page_cgroup(pc);
4451 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004452 memcg = pc->mem_cgroup;
4453 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004454 /*
4455 * At migrating an anonymous page, its mapcount goes down
4456 * to 0 and uncharge() will be called. But, even if it's fully
4457 * unmapped, migration may fail and this page has to be
4458 * charged again. We set MIGRATION flag here and delay uncharge
4459 * until end_migration() is called
4460 *
4461 * Corner Case Thinking
4462 * A)
4463 * When the old page was mapped as Anon and it's unmap-and-freed
4464 * while migration was ongoing.
4465 * If unmap finds the old page, uncharge() of it will be delayed
4466 * until end_migration(). If unmap finds a new page, it's
4467 * uncharged when it make mapcount to be 1->0. If unmap code
4468 * finds swap_migration_entry, the new page will not be mapped
4469 * and end_migration() will find it(mapcount==0).
4470 *
4471 * B)
4472 * When the old page was mapped but migraion fails, the kernel
4473 * remaps it. A charge for it is kept by MIGRATION flag even
4474 * if mapcount goes down to 0. We can do remap successfully
4475 * without charging it again.
4476 *
4477 * C)
4478 * The "old" page is under lock_page() until the end of
4479 * migration, so, the old page itself will not be swapped-out.
4480 * If the new page is swapped out before end_migraton, our
4481 * hook to usual swap-out path will catch the event.
4482 */
4483 if (PageAnon(page))
4484 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004485 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004486 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004487 /*
4488 * If the page is not charged at this point,
4489 * we return here.
4490 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004491 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004492 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004493
Johannes Weiner72835c82012-01-12 17:18:32 -08004494 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004495 /*
4496 * We charge new page before it's used/mapped. So, even if unlock_page()
4497 * is called before end_migration, we can catch all events on this new
4498 * page. In the case new page is migrated but not remapped, new page's
4499 * mapcount will be finally 0 and we call uncharge in end_migration().
4500 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004501 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004502 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004503 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004504 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004505 /*
4506 * The page is committed to the memcg, but it's not actually
4507 * charged to the res_counter since we plan on replacing the
4508 * old one and only one page is going to be left afterwards.
4509 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004510 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004511}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004512
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004513/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004514void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004515 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004516{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004517 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004518 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004519 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004520
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004521 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004522 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004523
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004524 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004525 used = oldpage;
4526 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004527 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004528 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004529 unused = oldpage;
4530 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004531 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004532 __mem_cgroup_uncharge_common(unused,
4533 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4534 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4535 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004536 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004537 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004538 * We disallowed uncharge of pages under migration because mapcount
4539 * of the page goes down to zero, temporarly.
4540 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004541 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004542 pc = lookup_page_cgroup(oldpage);
4543 lock_page_cgroup(pc);
4544 ClearPageCgroupMigration(pc);
4545 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004546
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004547 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004548 * If a page is a file cache, radix-tree replacement is very atomic
4549 * and we can skip this check. When it was an Anon page, its mapcount
4550 * goes down to 0. But because we added MIGRATION flage, it's not
4551 * uncharged yet. There are several case but page->mapcount check
4552 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4553 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004554 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004555 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004556 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004557}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004558
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004559/*
4560 * At replace page cache, newpage is not under any memcg but it's on
4561 * LRU. So, this function doesn't touch res_counter but handles LRU
4562 * in correct way. Both pages are locked so we cannot race with uncharge.
4563 */
4564void mem_cgroup_replace_page_cache(struct page *oldpage,
4565 struct page *newpage)
4566{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004567 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004568 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004569 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004570
4571 if (mem_cgroup_disabled())
4572 return;
4573
4574 pc = lookup_page_cgroup(oldpage);
4575 /* fix accounting on old pages */
4576 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004577 if (PageCgroupUsed(pc)) {
4578 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004579 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004580 ClearPageCgroupUsed(pc);
4581 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004582 unlock_page_cgroup(pc);
4583
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004584 /*
4585 * When called from shmem_replace_page(), in some cases the
4586 * oldpage has already been charged, and in some cases not.
4587 */
4588 if (!memcg)
4589 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004590 /*
4591 * Even if newpage->mapping was NULL before starting replacement,
4592 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4593 * LRU while we overwrite pc->mem_cgroup.
4594 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004595 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004596}
4597
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004598#ifdef CONFIG_DEBUG_VM
4599static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4600{
4601 struct page_cgroup *pc;
4602
4603 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004604 /*
4605 * Can be NULL while feeding pages into the page allocator for
4606 * the first time, i.e. during boot or memory hotplug;
4607 * or when mem_cgroup_disabled().
4608 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004609 if (likely(pc) && PageCgroupUsed(pc))
4610 return pc;
4611 return NULL;
4612}
4613
4614bool mem_cgroup_bad_page_check(struct page *page)
4615{
4616 if (mem_cgroup_disabled())
4617 return false;
4618
4619 return lookup_page_cgroup_used(page) != NULL;
4620}
4621
4622void mem_cgroup_print_bad_page(struct page *page)
4623{
4624 struct page_cgroup *pc;
4625
4626 pc = lookup_page_cgroup_used(page);
4627 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004628 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4629 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004630 }
4631}
4632#endif
4633
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004634static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004635 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004636{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004637 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004638 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004639 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004640 int children = mem_cgroup_count_children(memcg);
4641 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004642 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004643
4644 /*
4645 * For keeping hierarchical_reclaim simple, how long we should retry
4646 * is depends on callers. We set our retry-count to be function
4647 * of # of children which we should visit in this loop.
4648 */
4649 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4650
4651 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004652
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004653 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004654 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004655 if (signal_pending(current)) {
4656 ret = -EINTR;
4657 break;
4658 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004659 /*
4660 * Rather than hide all in some function, I do this in
4661 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004662 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004663 */
4664 mutex_lock(&set_limit_mutex);
4665 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4666 if (memswlimit < val) {
4667 ret = -EINVAL;
4668 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004669 break;
4670 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004671
4672 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4673 if (memlimit < val)
4674 enlarge = 1;
4675
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004676 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004677 if (!ret) {
4678 if (memswlimit == val)
4679 memcg->memsw_is_minimum = true;
4680 else
4681 memcg->memsw_is_minimum = false;
4682 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004683 mutex_unlock(&set_limit_mutex);
4684
4685 if (!ret)
4686 break;
4687
Johannes Weiner56600482012-01-12 17:17:59 -08004688 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4689 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004690 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4691 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004692 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004693 retry_count--;
4694 else
4695 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004696 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004697 if (!ret && enlarge)
4698 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004699
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004700 return ret;
4701}
4702
Li Zefan338c8432009-06-17 16:27:15 -07004703static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4704 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004705{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004706 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004707 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004708 int children = mem_cgroup_count_children(memcg);
4709 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004710 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004711
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004712 /* see mem_cgroup_resize_res_limit */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004713 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004714 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004715 while (retry_count) {
4716 if (signal_pending(current)) {
4717 ret = -EINTR;
4718 break;
4719 }
4720 /*
4721 * Rather than hide all in some function, I do this in
4722 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004723 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004724 */
4725 mutex_lock(&set_limit_mutex);
4726 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4727 if (memlimit > val) {
4728 ret = -EINVAL;
4729 mutex_unlock(&set_limit_mutex);
4730 break;
4731 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004732 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4733 if (memswlimit < val)
4734 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004735 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004736 if (!ret) {
4737 if (memlimit == val)
4738 memcg->memsw_is_minimum = true;
4739 else
4740 memcg->memsw_is_minimum = false;
4741 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004742 mutex_unlock(&set_limit_mutex);
4743
4744 if (!ret)
4745 break;
4746
Johannes Weiner56600482012-01-12 17:17:59 -08004747 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4748 MEM_CGROUP_RECLAIM_NOSWAP |
4749 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004750 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004751 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004752 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004753 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004754 else
4755 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004756 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004757 if (!ret && enlarge)
4758 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004759 return ret;
4760}
4761
Andrew Morton0608f432013-09-24 15:27:41 -07004762unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
4763 gfp_t gfp_mask,
4764 unsigned long *total_scanned)
4765{
4766 unsigned long nr_reclaimed = 0;
4767 struct mem_cgroup_per_zone *mz, *next_mz = NULL;
4768 unsigned long reclaimed;
4769 int loop = 0;
4770 struct mem_cgroup_tree_per_zone *mctz;
4771 unsigned long long excess;
4772 unsigned long nr_scanned;
4773
4774 if (order > 0)
4775 return 0;
4776
4777 mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
4778 /*
4779 * This loop can run a while, specially if mem_cgroup's continuously
4780 * keep exceeding their soft limit and putting the system under
4781 * pressure
4782 */
4783 do {
4784 if (next_mz)
4785 mz = next_mz;
4786 else
4787 mz = mem_cgroup_largest_soft_limit_node(mctz);
4788 if (!mz)
4789 break;
4790
4791 nr_scanned = 0;
4792 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, zone,
4793 gfp_mask, &nr_scanned);
4794 nr_reclaimed += reclaimed;
4795 *total_scanned += nr_scanned;
4796 spin_lock(&mctz->lock);
4797
4798 /*
4799 * If we failed to reclaim anything from this memory cgroup
4800 * it is time to move on to the next cgroup
4801 */
4802 next_mz = NULL;
4803 if (!reclaimed) {
4804 do {
4805 /*
4806 * Loop until we find yet another one.
4807 *
4808 * By the time we get the soft_limit lock
4809 * again, someone might have aded the
4810 * group back on the RB tree. Iterate to
4811 * make sure we get a different mem.
4812 * mem_cgroup_largest_soft_limit_node returns
4813 * NULL if no other cgroup is present on
4814 * the tree
4815 */
4816 next_mz =
4817 __mem_cgroup_largest_soft_limit_node(mctz);
4818 if (next_mz == mz)
4819 css_put(&next_mz->memcg->css);
4820 else /* next_mz == NULL or other memcg */
4821 break;
4822 } while (1);
4823 }
4824 __mem_cgroup_remove_exceeded(mz->memcg, mz, mctz);
4825 excess = res_counter_soft_limit_excess(&mz->memcg->res);
4826 /*
4827 * One school of thought says that we should not add
4828 * back the node to the tree if reclaim returns 0.
4829 * But our reclaim could return 0, simply because due
4830 * to priority we are exposing a smaller subset of
4831 * memory to reclaim from. Consider this as a longer
4832 * term TODO.
4833 */
4834 /* If excess == 0, no tree ops */
4835 __mem_cgroup_insert_exceeded(mz->memcg, mz, mctz, excess);
4836 spin_unlock(&mctz->lock);
4837 css_put(&mz->memcg->css);
4838 loop++;
4839 /*
4840 * Could not reclaim anything and there are no more
4841 * mem cgroups to try or we seem to be looping without
4842 * reclaiming anything.
4843 */
4844 if (!nr_reclaimed &&
4845 (next_mz == NULL ||
4846 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
4847 break;
4848 } while (!nr_reclaimed);
4849 if (next_mz)
4850 css_put(&next_mz->memcg->css);
4851 return nr_reclaimed;
4852}
4853
Michal Hocko2ef37d32012-10-26 13:37:30 +02004854/**
4855 * mem_cgroup_force_empty_list - clears LRU of a group
4856 * @memcg: group to clear
4857 * @node: NUMA node
4858 * @zid: zone id
4859 * @lru: lru to to clear
4860 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004861 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004862 * reclaim the pages page themselves - pages are moved to the parent (or root)
4863 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004864 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004865static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004866 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004867{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004868 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004869 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004870 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004871 struct page *busy;
4872 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004873
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004874 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004875 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4876 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004877
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004878 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004879 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004880 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004881 struct page *page;
4882
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004883 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004884 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004885 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004886 break;
4887 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004888 page = list_entry(list->prev, struct page, lru);
4889 if (busy == page) {
4890 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004891 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004892 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004893 continue;
4894 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004895 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004896
Johannes Weiner925b7672012-01-12 17:18:15 -08004897 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004898
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004899 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004900 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004901 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004902 cond_resched();
4903 } else
4904 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004905 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004906}
4907
4908/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004909 * make mem_cgroup's charge to be 0 if there is no task by moving
4910 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004911 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004912 *
4913 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004914 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004915static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004916{
Michal Hockoc26251f2012-10-26 13:37:28 +02004917 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004918 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004919
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004920 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004921 /* This is for making all *used* pages to be on LRU. */
4922 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004923 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004924 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004925 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004926 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004927 enum lru_list lru;
4928 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004929 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004930 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004931 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004932 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004933 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004934 mem_cgroup_end_move(memcg);
4935 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004936 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004937
Michal Hocko2ef37d32012-10-26 13:37:30 +02004938 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004939 * Kernel memory may not necessarily be trackable to a specific
4940 * process. So they are not migrated, and therefore we can't
4941 * expect their value to drop to 0 here.
4942 * Having res filled up with kmem only is enough.
4943 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004944 * This is a safety check because mem_cgroup_force_empty_list
4945 * could have raced with mem_cgroup_replace_page_cache callers
4946 * so the lru seemed empty but the page could have been added
4947 * right after the check. RES_USAGE should be safe as we always
4948 * charge before adding to the LRU.
4949 */
Glauber Costabea207c2012-12-18 14:22:11 -08004950 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4951 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4952 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004953}
4954
Glauber Costab5f99b52013-02-22 16:34:53 -08004955static inline bool memcg_has_children(struct mem_cgroup *memcg)
4956{
Johannes Weiner696ac172013-10-31 16:34:15 -07004957 lockdep_assert_held(&memcg_create_mutex);
4958 /*
4959 * The lock does not prevent addition or deletion to the list
4960 * of children, but it prevents a new child from being
4961 * initialized based on this parent in css_online(), so it's
4962 * enough to decide whether hierarchically inherited
4963 * attributes can still be changed or not.
4964 */
4965 return memcg->use_hierarchy &&
4966 !list_empty(&memcg->css.cgroup->children);
Glauber Costab5f99b52013-02-22 16:34:53 -08004967}
4968
4969/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004970 * Reclaims as many pages from the given memcg as possible and moves
4971 * the rest to the parent.
4972 *
4973 * Caller is responsible for holding css reference for memcg.
4974 */
4975static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4976{
4977 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4978 struct cgroup *cgrp = memcg->css.cgroup;
4979
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004980 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004981 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4982 return -EBUSY;
4983
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004984 /* we call try-to-free pages for make this cgroup empty */
4985 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004986 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004987 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004988 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004989
Michal Hockoc26251f2012-10-26 13:37:28 +02004990 if (signal_pending(current))
4991 return -EINTR;
4992
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004993 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004994 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004995 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004996 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004997 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004998 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004999 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08005000
5001 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08005002 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02005003 mem_cgroup_reparent_charges(memcg);
5004
5005 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08005006}
5007
Tejun Heo182446d2013-08-08 20:11:24 -04005008static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
5009 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005010{
Tejun Heo182446d2013-08-08 20:11:24 -04005011 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02005012
Michal Hockod8423012012-10-26 13:37:29 +02005013 if (mem_cgroup_is_root(memcg))
5014 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07005015 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005016}
5017
Tejun Heo182446d2013-08-08 20:11:24 -04005018static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
5019 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08005020{
Tejun Heo182446d2013-08-08 20:11:24 -04005021 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005022}
5023
Tejun Heo182446d2013-08-08 20:11:24 -04005024static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
5025 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08005026{
5027 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04005028 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005029 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08005030
Glauber Costa09998212013-02-22 16:34:55 -08005031 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07005032
5033 if (memcg->use_hierarchy == val)
5034 goto out;
5035
Balbir Singh18f59ea2009-01-07 18:08:07 -08005036 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005037 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08005038 * in the child subtrees. If it is unset, then the change can
5039 * occur, provided the current cgroup has no children.
5040 *
5041 * For the root cgroup, parent_mem is NULL, we allow value to be
5042 * set if there are no children.
5043 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005044 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08005045 (val == 1 || val == 0)) {
Johannes Weiner696ac172013-10-31 16:34:15 -07005046 if (list_empty(&memcg->css.cgroup->children))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005047 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08005048 else
5049 retval = -EBUSY;
5050 } else
5051 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07005052
5053out:
Glauber Costa09998212013-02-22 16:34:55 -08005054 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005055
5056 return retval;
5057}
5058
Balbir Singh0c3e73e2009-09-23 15:56:42 -07005059
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005060static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07005061 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07005062{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005063 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07005064 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07005065
Johannes Weiner7a159cc2011-03-23 16:42:38 -07005066 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005067 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005068 val += mem_cgroup_read_stat(iter, idx);
5069
5070 if (val < 0) /* race ? */
5071 val = 0;
5072 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07005073}
5074
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005075static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005076{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005077 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005078
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005079 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005080 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00005081 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005082 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00005083 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005084 }
5085
David Rientjesb070e652013-05-07 16:18:09 -07005086 /*
5087 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
5088 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
5089 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005090 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
5091 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005092
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005093 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005094 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005095
5096 return val << PAGE_SHIFT;
5097}
5098
Tejun Heo182446d2013-08-08 20:11:24 -04005099static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
5100 struct cftype *cft, struct file *file,
5101 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005102{
Tejun Heo182446d2013-08-08 20:11:24 -04005103 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07005104 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005105 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005106 int name, len;
5107 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005108
5109 type = MEMFILE_TYPE(cft->private);
5110 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07005111
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005112 switch (type) {
5113 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005114 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005115 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005116 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005117 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005118 break;
5119 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005120 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005121 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08005122 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005123 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005124 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005125 case _KMEM:
5126 val = res_counter_read_u64(&memcg->kmem, name);
5127 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005128 default:
5129 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005130 }
Tejun Heoaf36f902012-04-01 12:09:55 -07005131
5132 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
5133 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005134}
Glauber Costa510fc4e2012-12-18 14:21:47 -08005135
Tejun Heo182446d2013-08-08 20:11:24 -04005136static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08005137{
5138 int ret = -EINVAL;
5139#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04005140 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005141 /*
5142 * For simplicity, we won't allow this to be disabled. It also can't
5143 * be changed if the cgroup has children already, or if tasks had
5144 * already joined.
5145 *
5146 * If tasks join before we set the limit, a person looking at
5147 * kmem.usage_in_bytes will have no way to determine when it took
5148 * place, which makes the value quite meaningless.
5149 *
5150 * After it first became limited, changes in the value of the limit are
5151 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08005152 */
Glauber Costa09998212013-02-22 16:34:55 -08005153 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005154 mutex_lock(&set_limit_mutex);
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07005155 if (!memcg->kmem_account_flags && val != RES_COUNTER_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04005156 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08005157 ret = -EBUSY;
5158 goto out;
5159 }
5160 ret = res_counter_set_limit(&memcg->kmem, val);
5161 VM_BUG_ON(ret);
5162
Glauber Costa55007d82012-12-18 14:22:38 -08005163 ret = memcg_update_cache_sizes(memcg);
5164 if (ret) {
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07005165 res_counter_set_limit(&memcg->kmem, RES_COUNTER_MAX);
Glauber Costa55007d82012-12-18 14:22:38 -08005166 goto out;
5167 }
Glauber Costa692e89a2013-02-22 16:34:56 -08005168 static_key_slow_inc(&memcg_kmem_enabled_key);
5169 /*
5170 * setting the active bit after the inc will guarantee no one
5171 * starts accounting before all call sites are patched
5172 */
5173 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005174 } else
5175 ret = res_counter_set_limit(&memcg->kmem, val);
5176out:
5177 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08005178 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005179#endif
5180 return ret;
5181}
5182
Hugh Dickins6d0439902013-02-22 16:35:50 -08005183#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08005184static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08005185{
Glauber Costa55007d82012-12-18 14:22:38 -08005186 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005187 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
5188 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08005189 goto out;
5190
Glauber Costa510fc4e2012-12-18 14:21:47 -08005191 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08005192 /*
5193 * When that happen, we need to disable the static branch only on those
5194 * memcgs that enabled it. To achieve this, we would be forced to
5195 * complicate the code by keeping track of which memcgs were the ones
5196 * that actually enabled limits, and which ones got it from its
5197 * parents.
5198 *
5199 * It is a lot simpler just to do static_key_slow_inc() on every child
5200 * that is accounted.
5201 */
Glauber Costa55007d82012-12-18 14:22:38 -08005202 if (!memcg_kmem_is_active(memcg))
5203 goto out;
5204
5205 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07005206 * __mem_cgroup_free() will issue static_key_slow_dec() because this
5207 * memcg is active already. If the later initialization fails then the
5208 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08005209 */
Glauber Costa55007d82012-12-18 14:22:38 -08005210 static_key_slow_inc(&memcg_kmem_enabled_key);
5211
5212 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07005213 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005214 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07005215 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005216 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08005217out:
5218 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005219}
Hugh Dickins6d0439902013-02-22 16:35:50 -08005220#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08005221
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005222/*
5223 * The user of this function is...
5224 * RES_LIMIT.
5225 */
Tejun Heo182446d2013-08-08 20:11:24 -04005226static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07005227 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005228{
Tejun Heo182446d2013-08-08 20:11:24 -04005229 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005230 enum res_type type;
5231 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005232 unsigned long long val;
5233 int ret;
5234
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005235 type = MEMFILE_TYPE(cft->private);
5236 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07005237
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005238 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005239 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07005240 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
5241 ret = -EINVAL;
5242 break;
5243 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005244 /* This function does all necessary parse...reuse it */
5245 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005246 if (ret)
5247 break;
5248 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005249 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005250 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005251 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005252 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04005253 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005254 else
5255 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005256 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07005257 case RES_SOFT_LIMIT:
5258 ret = res_counter_memparse_write_strategy(buffer, &val);
5259 if (ret)
5260 break;
5261 /*
5262 * For memsw, soft limits are hard to implement in terms
5263 * of semantics, for now, we support soft limits for
5264 * control without swap
5265 */
5266 if (type == _MEM)
5267 ret = res_counter_set_soft_limit(&memcg->res, val);
5268 else
5269 ret = -EINVAL;
5270 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005271 default:
5272 ret = -EINVAL; /* should be BUG() ? */
5273 break;
5274 }
5275 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005276}
5277
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005278static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5279 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5280{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005281 unsigned long long min_limit, min_memsw_limit, tmp;
5282
5283 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5284 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005285 if (!memcg->use_hierarchy)
5286 goto out;
5287
Tejun Heo63876982013-08-08 20:11:23 -04005288 while (css_parent(&memcg->css)) {
5289 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005290 if (!memcg->use_hierarchy)
5291 break;
5292 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5293 min_limit = min(min_limit, tmp);
5294 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5295 min_memsw_limit = min(min_memsw_limit, tmp);
5296 }
5297out:
5298 *mem_limit = min_limit;
5299 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005300}
5301
Tejun Heo182446d2013-08-08 20:11:24 -04005302static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005303{
Tejun Heo182446d2013-08-08 20:11:24 -04005304 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005305 int name;
5306 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005307
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005308 type = MEMFILE_TYPE(event);
5309 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07005310
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005311 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005312 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005313 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005314 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005315 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005316 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005317 else if (type == _KMEM)
5318 res_counter_reset_max(&memcg->kmem);
5319 else
5320 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005321 break;
5322 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005323 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005324 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005325 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005326 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005327 else if (type == _KMEM)
5328 res_counter_reset_failcnt(&memcg->kmem);
5329 else
5330 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005331 break;
5332 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07005333
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07005334 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005335}
5336
Tejun Heo182446d2013-08-08 20:11:24 -04005337static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005338 struct cftype *cft)
5339{
Tejun Heo182446d2013-08-08 20:11:24 -04005340 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005341}
5342
Daisuke Nishimura02491442010-03-10 15:22:17 -08005343#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04005344static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005345 struct cftype *cft, u64 val)
5346{
Tejun Heo182446d2013-08-08 20:11:24 -04005347 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005348
5349 if (val >= (1 << NR_MOVE_TYPE))
5350 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005351
Glauber Costaee5e8472013-02-22 16:34:50 -08005352 /*
5353 * No kind of locking is needed in here, because ->can_attach() will
5354 * check this value once in the beginning of the process, and then carry
5355 * on with stale data. This means that changes to this value will only
5356 * affect task migrations starting after the change.
5357 */
5358 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005359 return 0;
5360}
Daisuke Nishimura02491442010-03-10 15:22:17 -08005361#else
Tejun Heo182446d2013-08-08 20:11:24 -04005362static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005363 struct cftype *cft, u64 val)
5364{
5365 return -ENOSYS;
5366}
5367#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005368
Ying Han406eb0c2011-05-26 16:25:37 -07005369#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04005370static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
5371 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07005372{
Greg Thelen25485de2013-11-12 15:07:40 -08005373 struct numa_stat {
5374 const char *name;
5375 unsigned int lru_mask;
5376 };
5377
5378 static const struct numa_stat stats[] = {
5379 { "total", LRU_ALL },
5380 { "file", LRU_ALL_FILE },
5381 { "anon", LRU_ALL_ANON },
5382 { "unevictable", BIT(LRU_UNEVICTABLE) },
5383 };
5384 const struct numa_stat *stat;
Ying Han406eb0c2011-05-26 16:25:37 -07005385 int nid;
Greg Thelen25485de2013-11-12 15:07:40 -08005386 unsigned long nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005387 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005388
Greg Thelen25485de2013-11-12 15:07:40 -08005389 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
5390 nr = mem_cgroup_nr_lru_pages(memcg, stat->lru_mask);
5391 seq_printf(m, "%s=%lu", stat->name, nr);
5392 for_each_node_state(nid, N_MEMORY) {
5393 nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
5394 stat->lru_mask);
5395 seq_printf(m, " N%d=%lu", nid, nr);
5396 }
5397 seq_putc(m, '\n');
Ying Han406eb0c2011-05-26 16:25:37 -07005398 }
Ying Han406eb0c2011-05-26 16:25:37 -07005399
Ying Han071aee12013-11-12 15:07:41 -08005400 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
5401 struct mem_cgroup *iter;
5402
5403 nr = 0;
5404 for_each_mem_cgroup_tree(iter, memcg)
5405 nr += mem_cgroup_nr_lru_pages(iter, stat->lru_mask);
5406 seq_printf(m, "hierarchical_%s=%lu", stat->name, nr);
5407 for_each_node_state(nid, N_MEMORY) {
5408 nr = 0;
5409 for_each_mem_cgroup_tree(iter, memcg)
5410 nr += mem_cgroup_node_nr_lru_pages(
5411 iter, nid, stat->lru_mask);
5412 seq_printf(m, " N%d=%lu", nid, nr);
5413 }
5414 seq_putc(m, '\n');
5415 }
5416
Ying Han406eb0c2011-05-26 16:25:37 -07005417 return 0;
5418}
5419#endif /* CONFIG_NUMA */
5420
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005421static inline void mem_cgroup_lru_names_not_uptodate(void)
5422{
5423 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5424}
5425
Tejun Heo182446d2013-08-08 20:11:24 -04005426static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005427 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005428{
Tejun Heo182446d2013-08-08 20:11:24 -04005429 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005430 struct mem_cgroup *mi;
5431 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005432
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005433 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005434 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005435 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005436 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5437 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005438 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005439
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005440 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5441 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5442 mem_cgroup_read_events(memcg, i));
5443
5444 for (i = 0; i < NR_LRU_LISTS; i++)
5445 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5446 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5447
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005448 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005449 {
5450 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005451 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005452 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005453 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005454 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5455 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005456 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005457
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005458 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5459 long long val = 0;
5460
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005461 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005462 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005463 for_each_mem_cgroup_tree(mi, memcg)
5464 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5465 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5466 }
5467
5468 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5469 unsigned long long val = 0;
5470
5471 for_each_mem_cgroup_tree(mi, memcg)
5472 val += mem_cgroup_read_events(mi, i);
5473 seq_printf(m, "total_%s %llu\n",
5474 mem_cgroup_events_names[i], val);
5475 }
5476
5477 for (i = 0; i < NR_LRU_LISTS; i++) {
5478 unsigned long long val = 0;
5479
5480 for_each_mem_cgroup_tree(mi, memcg)
5481 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5482 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005483 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005484
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005485#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005486 {
5487 int nid, zid;
5488 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005489 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005490 unsigned long recent_rotated[2] = {0, 0};
5491 unsigned long recent_scanned[2] = {0, 0};
5492
5493 for_each_online_node(nid)
5494 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005495 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005496 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005497
Hugh Dickins89abfab2012-05-29 15:06:53 -07005498 recent_rotated[0] += rstat->recent_rotated[0];
5499 recent_rotated[1] += rstat->recent_rotated[1];
5500 recent_scanned[0] += rstat->recent_scanned[0];
5501 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005502 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005503 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5504 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5505 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5506 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005507 }
5508#endif
5509
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005510 return 0;
5511}
5512
Tejun Heo182446d2013-08-08 20:11:24 -04005513static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5514 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005515{
Tejun Heo182446d2013-08-08 20:11:24 -04005516 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005517
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005518 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005519}
5520
Tejun Heo182446d2013-08-08 20:11:24 -04005521static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5522 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005523{
Tejun Heo182446d2013-08-08 20:11:24 -04005524 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005525 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005526
Tejun Heo63876982013-08-08 20:11:23 -04005527 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005528 return -EINVAL;
5529
Glauber Costa09998212013-02-22 16:34:55 -08005530 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005531
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005532 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005533 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005534 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005535 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005536 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005537
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005538 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005539
Glauber Costa09998212013-02-22 16:34:55 -08005540 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005541
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005542 return 0;
5543}
5544
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005545static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5546{
5547 struct mem_cgroup_threshold_ary *t;
5548 u64 usage;
5549 int i;
5550
5551 rcu_read_lock();
5552 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005553 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005554 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005555 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005556
5557 if (!t)
5558 goto unlock;
5559
5560 usage = mem_cgroup_usage(memcg, swap);
5561
5562 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005563 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005564 * If it's not true, a threshold was crossed after last
5565 * call of __mem_cgroup_threshold().
5566 */
Phil Carmody5407a562010-05-26 14:42:42 -07005567 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005568
5569 /*
5570 * Iterate backward over array of thresholds starting from
5571 * current_threshold and check if a threshold is crossed.
5572 * If none of thresholds below usage is crossed, we read
5573 * only one element of the array here.
5574 */
5575 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5576 eventfd_signal(t->entries[i].eventfd, 1);
5577
5578 /* i = current_threshold + 1 */
5579 i++;
5580
5581 /*
5582 * Iterate forward over array of thresholds starting from
5583 * current_threshold+1 and check if a threshold is crossed.
5584 * If none of thresholds above usage is crossed, we read
5585 * only one element of the array here.
5586 */
5587 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5588 eventfd_signal(t->entries[i].eventfd, 1);
5589
5590 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005591 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005592unlock:
5593 rcu_read_unlock();
5594}
5595
5596static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5597{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005598 while (memcg) {
5599 __mem_cgroup_threshold(memcg, false);
5600 if (do_swap_account)
5601 __mem_cgroup_threshold(memcg, true);
5602
5603 memcg = parent_mem_cgroup(memcg);
5604 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005605}
5606
5607static int compare_thresholds(const void *a, const void *b)
5608{
5609 const struct mem_cgroup_threshold *_a = a;
5610 const struct mem_cgroup_threshold *_b = b;
5611
Greg Thelen2bff24a2013-09-11 14:23:08 -07005612 if (_a->threshold > _b->threshold)
5613 return 1;
5614
5615 if (_a->threshold < _b->threshold)
5616 return -1;
5617
5618 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005619}
5620
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005621static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005622{
5623 struct mem_cgroup_eventfd_list *ev;
5624
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005625 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005626 eventfd_signal(ev->eventfd, 1);
5627 return 0;
5628}
5629
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005630static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005631{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005632 struct mem_cgroup *iter;
5633
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005634 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005635 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005636}
5637
Tejun Heo81eeaf02013-08-08 20:11:26 -04005638static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005639 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005640{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005641 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005642 struct mem_cgroup_thresholds *thresholds;
5643 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005644 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005645 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005646 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005647
5648 ret = res_counter_memparse_write_strategy(args, &threshold);
5649 if (ret)
5650 return ret;
5651
5652 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005653
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005654 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005655 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005656 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005657 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005658 else
5659 BUG();
5660
5661 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5662
5663 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005664 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005665 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5666
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005667 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005668
5669 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005670 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005671 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005672 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005673 ret = -ENOMEM;
5674 goto unlock;
5675 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005676 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005677
5678 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005679 if (thresholds->primary) {
5680 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005681 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005682 }
5683
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005684 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005685 new->entries[size - 1].eventfd = eventfd;
5686 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005687
5688 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005689 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005690 compare_thresholds, NULL);
5691
5692 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005693 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005694 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005695 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005696 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005697 * new->current_threshold will not be used until
5698 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005699 * it here.
5700 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005701 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005702 } else
5703 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005704 }
5705
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005706 /* Free old spare buffer and save old primary buffer as spare */
5707 kfree(thresholds->spare);
5708 thresholds->spare = thresholds->primary;
5709
5710 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005711
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005712 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005713 synchronize_rcu();
5714
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005715unlock:
5716 mutex_unlock(&memcg->thresholds_lock);
5717
5718 return ret;
5719}
5720
Tejun Heo81eeaf02013-08-08 20:11:26 -04005721static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005722 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005723{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005724 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005725 struct mem_cgroup_thresholds *thresholds;
5726 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005727 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005728 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005729 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005730
5731 mutex_lock(&memcg->thresholds_lock);
5732 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005733 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005734 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005735 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005736 else
5737 BUG();
5738
Anton Vorontsov371528c2012-02-24 05:14:46 +04005739 if (!thresholds->primary)
5740 goto unlock;
5741
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005742 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5743
5744 /* Check if a threshold crossed before removing */
5745 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5746
5747 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005748 size = 0;
5749 for (i = 0; i < thresholds->primary->size; i++) {
5750 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005751 size++;
5752 }
5753
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005754 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005755
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005756 /* Set thresholds array to NULL if we don't have thresholds */
5757 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005758 kfree(new);
5759 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005760 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005761 }
5762
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005763 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005764
5765 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005766 new->current_threshold = -1;
5767 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5768 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005769 continue;
5770
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005771 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005772 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005773 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005774 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005775 * until rcu_assign_pointer(), so it's safe to increment
5776 * it here.
5777 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005778 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005779 }
5780 j++;
5781 }
5782
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005783swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005784 /* Swap primary and spare array */
5785 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005786 /* If all events are unregistered, free the spare array */
5787 if (!new) {
5788 kfree(thresholds->spare);
5789 thresholds->spare = NULL;
5790 }
5791
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005792 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005793
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005794 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005795 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005796unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005797 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005798}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005799
Tejun Heo81eeaf02013-08-08 20:11:26 -04005800static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005801 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5802{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005803 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005804 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005805 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005806
5807 BUG_ON(type != _OOM_TYPE);
5808 event = kmalloc(sizeof(*event), GFP_KERNEL);
5809 if (!event)
5810 return -ENOMEM;
5811
Michal Hocko1af8efe2011-07-26 16:08:24 -07005812 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005813
5814 event->eventfd = eventfd;
5815 list_add(&event->list, &memcg->oom_notify);
5816
5817 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005818 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005819 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005820 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005821
5822 return 0;
5823}
5824
Tejun Heo81eeaf02013-08-08 20:11:26 -04005825static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005826 struct cftype *cft, struct eventfd_ctx *eventfd)
5827{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005828 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005829 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005830 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005831
5832 BUG_ON(type != _OOM_TYPE);
5833
Michal Hocko1af8efe2011-07-26 16:08:24 -07005834 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005835
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005836 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005837 if (ev->eventfd == eventfd) {
5838 list_del(&ev->list);
5839 kfree(ev);
5840 }
5841 }
5842
Michal Hocko1af8efe2011-07-26 16:08:24 -07005843 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005844}
5845
Tejun Heo182446d2013-08-08 20:11:24 -04005846static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005847 struct cftype *cft, struct cgroup_map_cb *cb)
5848{
Tejun Heo182446d2013-08-08 20:11:24 -04005849 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005850
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005851 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005852
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005853 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005854 cb->fill(cb, "under_oom", 1);
5855 else
5856 cb->fill(cb, "under_oom", 0);
5857 return 0;
5858}
5859
Tejun Heo182446d2013-08-08 20:11:24 -04005860static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005861 struct cftype *cft, u64 val)
5862{
Tejun Heo182446d2013-08-08 20:11:24 -04005863 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005864 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005865
5866 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005867 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005868 return -EINVAL;
5869
Glauber Costa09998212013-02-22 16:34:55 -08005870 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005871 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005872 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005873 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005874 return -EINVAL;
5875 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005876 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005877 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005878 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005879 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005880 return 0;
5881}
5882
Andrew Mortonc255a452012-07-31 16:43:02 -07005883#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005884static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005885{
Glauber Costa55007d82012-12-18 14:22:38 -08005886 int ret;
5887
Glauber Costa2633d7a2012-12-18 14:22:34 -08005888 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005889 ret = memcg_propagate_kmem(memcg);
5890 if (ret)
5891 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005892
Glauber Costa1d62e432012-04-09 19:36:33 -03005893 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005894}
Glauber Costae5671df2011-12-11 21:47:01 +00005895
Li Zefan10d5ebf2013-07-08 16:00:33 -07005896static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005897{
Glauber Costa1d62e432012-04-09 19:36:33 -03005898 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005899}
5900
5901static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5902{
5903 if (!memcg_kmem_is_active(memcg))
5904 return;
5905
5906 /*
5907 * kmem charges can outlive the cgroup. In the case of slab
5908 * pages, for instance, a page contain objects from various
5909 * processes. As we prevent from taking a reference for every
5910 * such allocation we have to be careful when doing uncharge
5911 * (see memcg_uncharge_kmem) and here during offlining.
5912 *
5913 * The idea is that that only the _last_ uncharge which sees
5914 * the dead memcg will drop the last reference. An additional
5915 * reference is taken here before the group is marked dead
5916 * which is then paired with css_put during uncharge resp. here.
5917 *
5918 * Although this might sound strange as this path is called from
5919 * css_offline() when the referencemight have dropped down to 0
5920 * and shouldn't be incremented anymore (css_tryget would fail)
5921 * we do not have other options because of the kmem allocations
5922 * lifetime.
5923 */
5924 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005925
5926 memcg_kmem_mark_dead(memcg);
5927
5928 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5929 return;
5930
Glauber Costa7de37682012-12-18 14:22:07 -08005931 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005932 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005933}
Glauber Costae5671df2011-12-11 21:47:01 +00005934#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005935static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005936{
5937 return 0;
5938}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005939
Li Zefan10d5ebf2013-07-08 16:00:33 -07005940static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5941{
5942}
5943
5944static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005945{
5946}
Glauber Costae5671df2011-12-11 21:47:01 +00005947#endif
5948
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005949static struct cftype mem_cgroup_files[] = {
5950 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005951 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005952 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005953 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005954 .register_event = mem_cgroup_usage_register_event,
5955 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005956 },
5957 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005958 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005959 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005960 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005961 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005962 },
5963 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005964 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005965 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005966 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005967 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005968 },
5969 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005970 .name = "soft_limit_in_bytes",
5971 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5972 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005973 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005974 },
5975 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005976 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005977 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005978 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005979 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005980 },
Balbir Singh8697d332008-02-07 00:13:59 -08005981 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005982 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005983 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005984 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005985 {
5986 .name = "force_empty",
5987 .trigger = mem_cgroup_force_empty_write,
5988 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005989 {
5990 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005991 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005992 .write_u64 = mem_cgroup_hierarchy_write,
5993 .read_u64 = mem_cgroup_hierarchy_read,
5994 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005995 {
5996 .name = "swappiness",
5997 .read_u64 = mem_cgroup_swappiness_read,
5998 .write_u64 = mem_cgroup_swappiness_write,
5999 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006000 {
6001 .name = "move_charge_at_immigrate",
6002 .read_u64 = mem_cgroup_move_charge_read,
6003 .write_u64 = mem_cgroup_move_charge_write,
6004 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07006005 {
6006 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07006007 .read_map = mem_cgroup_oom_control_read,
6008 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07006009 .register_event = mem_cgroup_oom_register_event,
6010 .unregister_event = mem_cgroup_oom_unregister_event,
6011 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
6012 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07006013 {
6014 .name = "pressure_level",
6015 .register_event = vmpressure_register_event,
6016 .unregister_event = vmpressure_unregister_event,
6017 },
Ying Han406eb0c2011-05-26 16:25:37 -07006018#ifdef CONFIG_NUMA
6019 {
6020 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07006021 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07006022 },
6023#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08006024#ifdef CONFIG_MEMCG_KMEM
6025 {
6026 .name = "kmem.limit_in_bytes",
6027 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
6028 .write_string = mem_cgroup_write,
6029 .read = mem_cgroup_read,
6030 },
6031 {
6032 .name = "kmem.usage_in_bytes",
6033 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
6034 .read = mem_cgroup_read,
6035 },
6036 {
6037 .name = "kmem.failcnt",
6038 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
6039 .trigger = mem_cgroup_reset,
6040 .read = mem_cgroup_read,
6041 },
6042 {
6043 .name = "kmem.max_usage_in_bytes",
6044 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
6045 .trigger = mem_cgroup_reset,
6046 .read = mem_cgroup_read,
6047 },
Glauber Costa749c5412012-12-18 14:23:01 -08006048#ifdef CONFIG_SLABINFO
6049 {
6050 .name = "kmem.slabinfo",
6051 .read_seq_string = mem_cgroup_slabinfo_read,
6052 },
6053#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08006054#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07006055 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07006056};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08006057
Michal Hocko2d110852013-02-22 16:34:43 -08006058#ifdef CONFIG_MEMCG_SWAP
6059static struct cftype memsw_cgroup_files[] = {
6060 {
6061 .name = "memsw.usage_in_bytes",
6062 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
6063 .read = mem_cgroup_read,
6064 .register_event = mem_cgroup_usage_register_event,
6065 .unregister_event = mem_cgroup_usage_unregister_event,
6066 },
6067 {
6068 .name = "memsw.max_usage_in_bytes",
6069 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
6070 .trigger = mem_cgroup_reset,
6071 .read = mem_cgroup_read,
6072 },
6073 {
6074 .name = "memsw.limit_in_bytes",
6075 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
6076 .write_string = mem_cgroup_write,
6077 .read = mem_cgroup_read,
6078 },
6079 {
6080 .name = "memsw.failcnt",
6081 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
6082 .trigger = mem_cgroup_reset,
6083 .read = mem_cgroup_read,
6084 },
6085 { }, /* terminate */
6086};
6087#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006088static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006089{
6090 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08006091 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07006092 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08006093 /*
6094 * This routine is called against possible nodes.
6095 * But it's BUG to call kmalloc() against offline node.
6096 *
6097 * TODO: this routine can waste much memory for nodes which will
6098 * never be onlined. It's better to use memory hotplug callback
6099 * function.
6100 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07006101 if (!node_state(node, N_NORMAL_MEMORY))
6102 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08006103 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006104 if (!pn)
6105 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08006106
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08006107 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
6108 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08006109 lruvec_init(&mz->lruvec);
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07006110 mz->usage_in_excess = 0;
6111 mz->on_tree = false;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07006112 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08006113 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07006114 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006115 return 0;
6116}
6117
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006118static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08006119{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07006120 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08006121}
6122
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07006123static struct mem_cgroup *mem_cgroup_alloc(void)
6124{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07006125 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08006126 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07006127
Glauber Costa45cf7eb2013-02-22 16:34:49 -08006128 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08006129 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07006130 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07006131 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07006132 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07006133
Hugh Dickinsd79154b2012-03-21 16:34:18 -07006134 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07006135 return NULL;
6136
Hugh Dickinsd79154b2012-03-21 16:34:18 -07006137 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
6138 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08006139 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07006140 spin_lock_init(&memcg->pcp_counter_lock);
6141 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08006142
6143out_free:
6144 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07006145 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08006146 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07006147 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08006148 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07006149}
6150
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08006151/*
Glauber Costac8b2a362012-12-18 14:22:13 -08006152 * At destroying mem_cgroup, references from swap_cgroup can remain.
6153 * (scanning all at force_empty is too costly...)
6154 *
6155 * Instead of clearing all references at force_empty, we remember
6156 * the number of reference from swap_cgroup and free mem_cgroup when
6157 * it goes down to 0.
6158 *
6159 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07006160 */
Glauber Costac8b2a362012-12-18 14:22:13 -08006161
6162static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07006163{
Glauber Costac8b2a362012-12-18 14:22:13 -08006164 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08006165 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07006166
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07006167 mem_cgroup_remove_from_trees(memcg);
Glauber Costac8b2a362012-12-18 14:22:13 -08006168 free_css_id(&mem_cgroup_subsys, &memcg->css);
6169
6170 for_each_node(node)
6171 free_mem_cgroup_per_zone_info(memcg, node);
6172
6173 free_percpu(memcg->stat);
6174
Glauber Costa3f134612012-05-29 15:07:11 -07006175 /*
6176 * We need to make sure that (at least for now), the jump label
6177 * destruction code runs outside of the cgroup lock. This is because
6178 * get_online_cpus(), which is called from the static_branch update,
6179 * can't be called inside the cgroup_lock. cpusets are the ones
6180 * enforcing this dependency, so if they ever change, we might as well.
6181 *
6182 * schedule_work() will guarantee this happens. Be careful if you need
6183 * to move this code around, and make sure it is outside
6184 * the cgroup_lock.
6185 */
Glauber Costaa8964b92012-12-18 14:22:09 -08006186 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07006187 if (size < PAGE_SIZE)
6188 kfree(memcg);
6189 else
6190 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07006191}
Glauber Costa3afe36b2012-05-29 15:07:10 -07006192
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006193/*
6194 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
6195 */
Glauber Costae1aab162011-12-11 21:47:03 +00006196struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006197{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006198 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006199 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006200 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006201}
Glauber Costae1aab162011-12-11 21:47:03 +00006202EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07006203
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07006204static void __init mem_cgroup_soft_limit_tree_init(void)
6205{
6206 struct mem_cgroup_tree_per_node *rtpn;
6207 struct mem_cgroup_tree_per_zone *rtpz;
6208 int tmp, node, zone;
6209
6210 for_each_node(node) {
6211 tmp = node;
6212 if (!node_state(node, N_NORMAL_MEMORY))
6213 tmp = -1;
6214 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL, tmp);
6215 BUG_ON(!rtpn);
6216
6217 soft_limit_tree.rb_tree_per_node[node] = rtpn;
6218
6219 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
6220 rtpz = &rtpn->rb_tree_per_zone[zone];
6221 rtpz->rb_root = RB_ROOT;
6222 spin_lock_init(&rtpz->lock);
6223 }
6224 }
6225}
6226
Li Zefan0eb253e2009-01-15 13:51:25 -08006227static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04006228mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006229{
Glauber Costad142e3e2013-02-22 16:34:52 -08006230 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006231 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006232 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006233
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006234 memcg = mem_cgroup_alloc();
6235 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006236 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006237
Bob Liu3ed28fa2012-01-12 17:19:04 -08006238 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006239 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006240 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07006241
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006242 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04006243 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08006244 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08006245 res_counter_init(&memcg->res, NULL);
6246 res_counter_init(&memcg->memsw, NULL);
6247 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08006248 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08006249
Glauber Costad142e3e2013-02-22 16:34:52 -08006250 memcg->last_scanned_node = MAX_NUMNODES;
6251 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08006252 memcg->move_charge_at_immigrate = 0;
6253 mutex_init(&memcg->thresholds_lock);
6254 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07006255 vmpressure_init(&memcg->vmpressure);
Glauber Costad142e3e2013-02-22 16:34:52 -08006256
6257 return &memcg->css;
6258
6259free_out:
6260 __mem_cgroup_free(memcg);
6261 return ERR_PTR(error);
6262}
6263
6264static int
Tejun Heoeb954192013-08-08 20:11:23 -04006265mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08006266{
Tejun Heoeb954192013-08-08 20:11:23 -04006267 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6268 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08006269 int error = 0;
6270
Tejun Heo63876982013-08-08 20:11:23 -04006271 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08006272 return 0;
6273
Glauber Costa09998212013-02-22 16:34:55 -08006274 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006275
6276 memcg->use_hierarchy = parent->use_hierarchy;
6277 memcg->oom_kill_disable = parent->oom_kill_disable;
6278 memcg->swappiness = mem_cgroup_swappiness(parent);
6279
6280 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006281 res_counter_init(&memcg->res, &parent->res);
6282 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006283 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08006284
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006285 /*
Li Zefan8d76a972013-07-08 16:00:36 -07006286 * No need to take a reference to the parent because cgroup
6287 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006288 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08006289 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006290 res_counter_init(&memcg->res, NULL);
6291 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006292 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006293 /*
6294 * Deeper hierachy with use_hierarchy == false doesn't make
6295 * much sense so let cgroup subsystem know about this
6296 * unfortunate state in our controller.
6297 */
Glauber Costad142e3e2013-02-22 16:34:52 -08006298 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006299 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08006300 }
Glauber Costacbe128e32012-04-09 19:36:34 -03006301
6302 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08006303 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006304 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006305}
6306
Michal Hocko5f578162013-04-29 15:07:17 -07006307/*
6308 * Announce all parents that a group from their hierarchy is gone.
6309 */
6310static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
6311{
6312 struct mem_cgroup *parent = memcg;
6313
6314 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07006315 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07006316
6317 /*
6318 * if the root memcg is not hierarchical we have to check it
6319 * explicitely.
6320 */
6321 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07006322 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07006323}
6324
Tejun Heoeb954192013-08-08 20:11:23 -04006325static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006326{
Tejun Heoeb954192013-08-08 20:11:23 -04006327 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07006328
Li Zefan10d5ebf2013-07-08 16:00:33 -07006329 kmem_cgroup_css_offline(memcg);
6330
Michal Hocko5f578162013-04-29 15:07:17 -07006331 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02006332 mem_cgroup_reparent_charges(memcg);
Glauber Costa1f458cb2012-12-18 14:22:50 -08006333 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07006334 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006335}
6336
Tejun Heoeb954192013-08-08 20:11:23 -04006337static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006338{
Tejun Heoeb954192013-08-08 20:11:23 -04006339 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08006340
Li Zefan10d5ebf2013-07-08 16:00:33 -07006341 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07006342 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006343}
6344
Daisuke Nishimura02491442010-03-10 15:22:17 -08006345#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006346/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006347#define PRECHARGE_COUNT_AT_ONCE 256
6348static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006349{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006350 int ret = 0;
6351 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006352 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006353
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006354 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006355 mc.precharge += count;
6356 /* we don't need css_get for root */
6357 return ret;
6358 }
6359 /* try to charge at once */
6360 if (count > 1) {
6361 struct res_counter *dummy;
6362 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006363 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006364 * by cgroup_lock_live_cgroup() that it is not removed and we
6365 * are still under the same cgroup_mutex. So we can postpone
6366 * css_get().
6367 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006368 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006369 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006370 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006371 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006372 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006373 goto one_by_one;
6374 }
6375 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006376 return ret;
6377 }
6378one_by_one:
6379 /* fall back to one by one charge */
6380 while (count--) {
6381 if (signal_pending(current)) {
6382 ret = -EINTR;
6383 break;
6384 }
6385 if (!batch_count--) {
6386 batch_count = PRECHARGE_COUNT_AT_ONCE;
6387 cond_resched();
6388 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006389 ret = __mem_cgroup_try_charge(NULL,
6390 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006391 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006392 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006393 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006394 mc.precharge++;
6395 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006396 return ret;
6397}
6398
6399/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006400 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006401 * @vma: the vma the pte to be checked belongs
6402 * @addr: the address corresponding to the pte to be checked
6403 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08006404 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006405 *
6406 * Returns
6407 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6408 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6409 * move charge. if @target is not NULL, the page is stored in target->page
6410 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006411 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6412 * target for charge migration. if @target is not NULL, the entry is stored
6413 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006414 *
6415 * Called with pte lock held.
6416 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006417union mc_target {
6418 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006419 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006420};
6421
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006422enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006423 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006424 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006425 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006426};
6427
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006428static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6429 unsigned long addr, pte_t ptent)
6430{
6431 struct page *page = vm_normal_page(vma, addr, ptent);
6432
6433 if (!page || !page_mapped(page))
6434 return NULL;
6435 if (PageAnon(page)) {
6436 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006437 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006438 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006439 } else if (!move_file())
6440 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006441 return NULL;
6442 if (!get_page_unless_zero(page))
6443 return NULL;
6444
6445 return page;
6446}
6447
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006448#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006449static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6450 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6451{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006452 struct page *page = NULL;
6453 swp_entry_t ent = pte_to_swp_entry(ptent);
6454
6455 if (!move_anon() || non_swap_entry(ent))
6456 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006457 /*
6458 * Because lookup_swap_cache() updates some statistics counter,
6459 * we call find_get_page() with swapper_space directly.
6460 */
Shaohua Li33806f02013-02-22 16:34:37 -08006461 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006462 if (do_swap_account)
6463 entry->val = ent.val;
6464
6465 return page;
6466}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006467#else
6468static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6469 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6470{
6471 return NULL;
6472}
6473#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006474
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006475static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6476 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6477{
6478 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006479 struct address_space *mapping;
6480 pgoff_t pgoff;
6481
6482 if (!vma->vm_file) /* anonymous vma */
6483 return NULL;
6484 if (!move_file())
6485 return NULL;
6486
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006487 mapping = vma->vm_file->f_mapping;
6488 if (pte_none(ptent))
6489 pgoff = linear_page_index(vma, addr);
6490 else /* pte_file(ptent) is true */
6491 pgoff = pte_to_pgoff(ptent);
6492
6493 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006494 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006495
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006496#ifdef CONFIG_SWAP
6497 /* shmem/tmpfs may report page out on swap: account for that too. */
6498 if (radix_tree_exceptional_entry(page)) {
6499 swp_entry_t swap = radix_to_swp_entry(page);
6500 if (do_swap_account)
6501 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006502 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006503 }
6504#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006505 return page;
6506}
6507
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006508static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006509 unsigned long addr, pte_t ptent, union mc_target *target)
6510{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006511 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006512 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006513 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006514 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006515
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006516 if (pte_present(ptent))
6517 page = mc_handle_present_pte(vma, addr, ptent);
6518 else if (is_swap_pte(ptent))
6519 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006520 else if (pte_none(ptent) || pte_file(ptent))
6521 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006522
6523 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006524 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006525 if (page) {
6526 pc = lookup_page_cgroup(page);
6527 /*
6528 * Do only loose check w/o page_cgroup lock.
6529 * mem_cgroup_move_account() checks the pc is valid or not under
6530 * the lock.
6531 */
6532 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6533 ret = MC_TARGET_PAGE;
6534 if (target)
6535 target->page = page;
6536 }
6537 if (!ret || !target)
6538 put_page(page);
6539 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006540 /* There is a swap entry and a page doesn't exist or isn't charged */
6541 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08006542 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006543 ret = MC_TARGET_SWAP;
6544 if (target)
6545 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006546 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006547 return ret;
6548}
6549
Naoya Horiguchi12724852012-03-21 16:34:28 -07006550#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6551/*
6552 * We don't consider swapping or file mapped pages because THP does not
6553 * support them for now.
6554 * Caller should make sure that pmd_trans_huge(pmd) is true.
6555 */
6556static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6557 unsigned long addr, pmd_t pmd, union mc_target *target)
6558{
6559 struct page *page = NULL;
6560 struct page_cgroup *pc;
6561 enum mc_target_type ret = MC_TARGET_NONE;
6562
6563 page = pmd_page(pmd);
6564 VM_BUG_ON(!page || !PageHead(page));
6565 if (!move_anon())
6566 return ret;
6567 pc = lookup_page_cgroup(page);
6568 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6569 ret = MC_TARGET_PAGE;
6570 if (target) {
6571 get_page(page);
6572 target->page = page;
6573 }
6574 }
6575 return ret;
6576}
6577#else
6578static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6579 unsigned long addr, pmd_t pmd, union mc_target *target)
6580{
6581 return MC_TARGET_NONE;
6582}
6583#endif
6584
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006585static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6586 unsigned long addr, unsigned long end,
6587 struct mm_walk *walk)
6588{
6589 struct vm_area_struct *vma = walk->private;
6590 pte_t *pte;
6591 spinlock_t *ptl;
6592
Naoya Horiguchi12724852012-03-21 16:34:28 -07006593 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6594 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6595 mc.precharge += HPAGE_PMD_NR;
6596 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006597 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006598 }
Dave Hansen03319322011-03-22 16:32:56 -07006599
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006600 if (pmd_trans_unstable(pmd))
6601 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006602 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6603 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006604 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006605 mc.precharge++; /* increment precharge temporarily */
6606 pte_unmap_unlock(pte - 1, ptl);
6607 cond_resched();
6608
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006609 return 0;
6610}
6611
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006612static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6613{
6614 unsigned long precharge;
6615 struct vm_area_struct *vma;
6616
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006617 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006618 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6619 struct mm_walk mem_cgroup_count_precharge_walk = {
6620 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6621 .mm = mm,
6622 .private = vma,
6623 };
6624 if (is_vm_hugetlb_page(vma))
6625 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006626 walk_page_range(vma->vm_start, vma->vm_end,
6627 &mem_cgroup_count_precharge_walk);
6628 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006629 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006630
6631 precharge = mc.precharge;
6632 mc.precharge = 0;
6633
6634 return precharge;
6635}
6636
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006637static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6638{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006639 unsigned long precharge = mem_cgroup_count_precharge(mm);
6640
6641 VM_BUG_ON(mc.moving_task);
6642 mc.moving_task = current;
6643 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006644}
6645
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006646/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6647static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006648{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006649 struct mem_cgroup *from = mc.from;
6650 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006651 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006652
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006653 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006654 if (mc.precharge) {
6655 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6656 mc.precharge = 0;
6657 }
6658 /*
6659 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6660 * we must uncharge here.
6661 */
6662 if (mc.moved_charge) {
6663 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6664 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006665 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006666 /* we must fixup refcnts and charges */
6667 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006668 /* uncharge swap account from the old cgroup */
6669 if (!mem_cgroup_is_root(mc.from))
6670 res_counter_uncharge(&mc.from->memsw,
6671 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006672
6673 for (i = 0; i < mc.moved_swap; i++)
6674 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006675
6676 if (!mem_cgroup_is_root(mc.to)) {
6677 /*
6678 * we charged both to->res and to->memsw, so we should
6679 * uncharge to->res.
6680 */
6681 res_counter_uncharge(&mc.to->res,
6682 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006683 }
Li Zefan40503772013-07-08 16:00:34 -07006684 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006685 mc.moved_swap = 0;
6686 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006687 memcg_oom_recover(from);
6688 memcg_oom_recover(to);
6689 wake_up_all(&mc.waitq);
6690}
6691
6692static void mem_cgroup_clear_mc(void)
6693{
6694 struct mem_cgroup *from = mc.from;
6695
6696 /*
6697 * we must clear moving_task before waking up waiters at the end of
6698 * task migration.
6699 */
6700 mc.moving_task = NULL;
6701 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006702 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006703 mc.from = NULL;
6704 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006705 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006706 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006707}
6708
Tejun Heoeb954192013-08-08 20:11:23 -04006709static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006710 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006711{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006712 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006713 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006714 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006715 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006716
Glauber Costaee5e8472013-02-22 16:34:50 -08006717 /*
6718 * We are now commited to this value whatever it is. Changes in this
6719 * tunable will only affect upcoming migrations, not the current one.
6720 * So we need to save it, and keep it going.
6721 */
6722 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6723 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006724 struct mm_struct *mm;
6725 struct mem_cgroup *from = mem_cgroup_from_task(p);
6726
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006727 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006728
6729 mm = get_task_mm(p);
6730 if (!mm)
6731 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006732 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006733 if (mm->owner == p) {
6734 VM_BUG_ON(mc.from);
6735 VM_BUG_ON(mc.to);
6736 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006737 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006738 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006739 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006740 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006741 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006742 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006743 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006744 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006745 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006746
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006747 ret = mem_cgroup_precharge_mc(mm);
6748 if (ret)
6749 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006750 }
6751 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006752 }
6753 return ret;
6754}
6755
Tejun Heoeb954192013-08-08 20:11:23 -04006756static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006757 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006758{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006759 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006760}
6761
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006762static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6763 unsigned long addr, unsigned long end,
6764 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006765{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006766 int ret = 0;
6767 struct vm_area_struct *vma = walk->private;
6768 pte_t *pte;
6769 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006770 enum mc_target_type target_type;
6771 union mc_target target;
6772 struct page *page;
6773 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006774
Naoya Horiguchi12724852012-03-21 16:34:28 -07006775 /*
6776 * We don't take compound_lock() here but no race with splitting thp
6777 * happens because:
6778 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6779 * under splitting, which means there's no concurrent thp split,
6780 * - if another thread runs into split_huge_page() just after we
6781 * entered this if-block, the thread must wait for page table lock
6782 * to be unlocked in __split_huge_page_splitting(), where the main
6783 * part of thp split is not executed yet.
6784 */
6785 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006786 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006787 spin_unlock(&vma->vm_mm->page_table_lock);
6788 return 0;
6789 }
6790 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6791 if (target_type == MC_TARGET_PAGE) {
6792 page = target.page;
6793 if (!isolate_lru_page(page)) {
6794 pc = lookup_page_cgroup(page);
6795 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006796 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006797 mc.precharge -= HPAGE_PMD_NR;
6798 mc.moved_charge += HPAGE_PMD_NR;
6799 }
6800 putback_lru_page(page);
6801 }
6802 put_page(page);
6803 }
6804 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006805 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006806 }
6807
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006808 if (pmd_trans_unstable(pmd))
6809 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006810retry:
6811 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6812 for (; addr != end; addr += PAGE_SIZE) {
6813 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006814 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006815
6816 if (!mc.precharge)
6817 break;
6818
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006819 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006820 case MC_TARGET_PAGE:
6821 page = target.page;
6822 if (isolate_lru_page(page))
6823 goto put;
6824 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006825 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006826 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006827 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006828 /* we uncharge from mc.from later. */
6829 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006830 }
6831 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006832put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006833 put_page(page);
6834 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006835 case MC_TARGET_SWAP:
6836 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006837 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006838 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006839 /* we fixup refcnts and charges later. */
6840 mc.moved_swap++;
6841 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006842 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006843 default:
6844 break;
6845 }
6846 }
6847 pte_unmap_unlock(pte - 1, ptl);
6848 cond_resched();
6849
6850 if (addr != end) {
6851 /*
6852 * We have consumed all precharges we got in can_attach().
6853 * We try charge one by one, but don't do any additional
6854 * charges to mc.to if we have failed in charge once in attach()
6855 * phase.
6856 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006857 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006858 if (!ret)
6859 goto retry;
6860 }
6861
6862 return ret;
6863}
6864
6865static void mem_cgroup_move_charge(struct mm_struct *mm)
6866{
6867 struct vm_area_struct *vma;
6868
6869 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006870retry:
6871 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6872 /*
6873 * Someone who are holding the mmap_sem might be waiting in
6874 * waitq. So we cancel all extra charges, wake up all waiters,
6875 * and retry. Because we cancel precharges, we might not be able
6876 * to move enough charges, but moving charge is a best-effort
6877 * feature anyway, so it wouldn't be a big problem.
6878 */
6879 __mem_cgroup_clear_mc();
6880 cond_resched();
6881 goto retry;
6882 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006883 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6884 int ret;
6885 struct mm_walk mem_cgroup_move_charge_walk = {
6886 .pmd_entry = mem_cgroup_move_charge_pte_range,
6887 .mm = mm,
6888 .private = vma,
6889 };
6890 if (is_vm_hugetlb_page(vma))
6891 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006892 ret = walk_page_range(vma->vm_start, vma->vm_end,
6893 &mem_cgroup_move_charge_walk);
6894 if (ret)
6895 /*
6896 * means we have consumed all precharges and failed in
6897 * doing additional charge. Just abandon here.
6898 */
6899 break;
6900 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006901 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006902}
6903
Tejun Heoeb954192013-08-08 20:11:23 -04006904static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006905 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006906{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006907 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006908 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006909
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006910 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006911 if (mc.to)
6912 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006913 mmput(mm);
6914 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006915 if (mc.to)
6916 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006917}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006918#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006919static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006920 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006921{
6922 return 0;
6923}
Tejun Heoeb954192013-08-08 20:11:23 -04006924static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006925 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006926{
6927}
Tejun Heoeb954192013-08-08 20:11:23 -04006928static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006929 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006930{
6931}
6932#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006933
Tejun Heof00baae2013-04-15 13:41:15 -07006934/*
6935 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6936 * to verify sane_behavior flag on each mount attempt.
6937 */
Tejun Heoeb954192013-08-08 20:11:23 -04006938static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006939{
6940 /*
6941 * use_hierarchy is forced with sane_behavior. cgroup core
6942 * guarantees that @root doesn't have any children, so turning it
6943 * on for the root memcg is enough.
6944 */
Tejun Heoeb954192013-08-08 20:11:23 -04006945 if (cgroup_sane_behavior(root_css->cgroup))
6946 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006947}
6948
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006949struct cgroup_subsys mem_cgroup_subsys = {
6950 .name = "memory",
6951 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006952 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006953 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006954 .css_offline = mem_cgroup_css_offline,
6955 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006956 .can_attach = mem_cgroup_can_attach,
6957 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006958 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006959 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006960 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006961 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006962 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006963};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006964
Andrew Mortonc255a452012-07-31 16:43:02 -07006965#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006966static int __init enable_swap_account(char *s)
6967{
Michal Hockoa2c89902011-05-24 17:12:50 -07006968 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006969 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006970 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006971 really_do_swap_account = 0;
6972 return 1;
6973}
Michal Hockoa2c89902011-05-24 17:12:50 -07006974__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006975
Michal Hocko2d110852013-02-22 16:34:43 -08006976static void __init memsw_file_init(void)
6977{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006978 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006979}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006980
6981static void __init enable_swap_cgroup(void)
6982{
6983 if (!mem_cgroup_disabled() && really_do_swap_account) {
6984 do_swap_account = 1;
6985 memsw_file_init();
6986 }
6987}
6988
Michal Hocko2d110852013-02-22 16:34:43 -08006989#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006990static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006991{
6992}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006993#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006994
6995/*
Michal Hocko10813122013-02-22 16:35:41 -08006996 * subsys_initcall() for memory controller.
6997 *
6998 * Some parts like hotcpu_notifier() have to be initialized from this context
6999 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
7000 * everything that doesn't depend on a specific mem_cgroup structure should
7001 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08007002 */
7003static int __init mem_cgroup_init(void)
7004{
7005 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08007006 enable_swap_cgroup();
Andrew Mortonbb4cc1a2013-09-24 15:27:40 -07007007 mem_cgroup_soft_limit_tree_init();
Michal Hockoe4777492013-02-22 16:35:40 -08007008 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08007009 return 0;
7010}
7011subsys_initcall(mem_cgroup_init);