blob: f3803462a7e63d83061679955b3d2cfb2ca6a71f [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08009 * Memory thresholds
10 * Copyright (C) 2009 Nokia Corporation
11 * Author: Kirill A. Shutemov
12 *
Glauber Costa7ae1e1d2012-12-18 14:21:56 -080013 * Kernel Memory Controller
14 * Copyright (C) 2012 Parallels Inc. and Google Inc.
15 * Authors: Glauber Costa and Suleiman Souhlal
16 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -080017 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 */
27
28#include <linux/res_counter.h>
29#include <linux/memcontrol.h>
30#include <linux/cgroup.h>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080031#include <linux/mm.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080032#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080033#include <linux/pagemap.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080034#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080035#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080036#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080037#include <linux/bit_spinlock.h>
38#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070039#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040040#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080041#include <linux/mutex.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070042#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080043#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080044#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080045#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080046#include <linux/eventfd.h>
47#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080048#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080049#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070050#include <linux/vmalloc.h>
Anton Vorontsov70ddf632013-04-29 15:08:31 -070051#include <linux/vmpressure.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070052#include <linux/mm_inline.h>
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070053#include <linux/page_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080054#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070055#include <linux/oom.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080056#include "internal.h"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000057#include <net/sock.h>
Michal Hocko4bd2c1e2012-10-08 16:33:10 -070058#include <net/ip.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +000059#include <net/tcp_memcontrol.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080060
Balbir Singh8697d332008-02-07 00:13:59 -080061#include <asm/uaccess.h>
62
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070063#include <trace/events/vmscan.h>
64
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070065struct cgroup_subsys mem_cgroup_subsys __read_mostly;
David Rientjes68ae5642012-12-12 13:51:57 -080066EXPORT_SYMBOL(mem_cgroup_subsys);
67
KAMEZAWA Hiroyukia181b0e2008-07-25 01:47:08 -070068#define MEM_CGROUP_RECLAIM_RETRIES 5
Kirill A. Shutemov6bbda352012-05-29 15:06:55 -070069static struct mem_cgroup *root_mem_cgroup __read_mostly;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080070
Andrew Mortonc255a452012-07-31 16:43:02 -070071#ifdef CONFIG_MEMCG_SWAP
Li Zefan338c8432009-06-17 16:27:15 -070072/* Turned on only when memory cgroup is enabled && really_do_swap_account = 1 */
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080073int do_swap_account __read_mostly;
Michal Hockoa42c3902010-11-24 12:57:08 -080074
75/* for remember boot option*/
Andrew Mortonc255a452012-07-31 16:43:02 -070076#ifdef CONFIG_MEMCG_SWAP_ENABLED
Michal Hockoa42c3902010-11-24 12:57:08 -080077static int really_do_swap_account __initdata = 1;
78#else
79static int really_do_swap_account __initdata = 0;
80#endif
81
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080082#else
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -070083#define do_swap_account 0
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080084#endif
85
86
Johannes Weineraf7c4b02012-05-29 15:07:08 -070087static const char * const mem_cgroup_stat_names[] = {
88 "cache",
89 "rss",
David Rientjesb070e652013-05-07 16:18:09 -070090 "rss_huge",
Johannes Weineraf7c4b02012-05-29 15:07:08 -070091 "mapped_file",
92 "swap",
93};
94
Johannes Weinere9f89742011-03-23 16:42:37 -070095enum mem_cgroup_events_index {
96 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
97 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -070098 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
99 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700100 MEM_CGROUP_EVENTS_NSTATS,
101};
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700102
103static const char * const mem_cgroup_events_names[] = {
104 "pgpgin",
105 "pgpgout",
106 "pgfault",
107 "pgmajfault",
108};
109
Sha Zhengju58cf1882013-02-22 16:32:05 -0800110static const char * const mem_cgroup_lru_names[] = {
111 "inactive_anon",
112 "active_anon",
113 "inactive_file",
114 "active_file",
115 "unevictable",
116};
117
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700118/*
119 * Per memcg event counter is incremented at every pagein/pageout. With THP,
120 * it will be incremated by the number of pages. This counter is used for
121 * for trigger some periodic events. This is straightforward and better
122 * than using jiffies etc. to handle periodic memcg event.
123 */
124enum mem_cgroup_events_target {
125 MEM_CGROUP_TARGET_THRESH,
Michal Hocko7d910c02013-09-12 15:13:28 -0700126 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -0700127 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700128 MEM_CGROUP_NTARGETS,
129};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700130#define THRESHOLDS_EVENTS_TARGET 128
131#define SOFTLIMIT_EVENTS_TARGET 1024
132#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700133
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800134struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700135 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700136 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700137 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700138 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800139};
140
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800141struct mem_cgroup_reclaim_iter {
Michal Hocko5f578162013-04-29 15:07:17 -0700142 /*
143 * last scanned hierarchy member. Valid only if last_dead_count
144 * matches memcg->dead_count of the hierarchy root group.
145 */
Michal Hocko542f85f2013-04-29 15:07:15 -0700146 struct mem_cgroup *last_visited;
Michal Hocko5f578162013-04-29 15:07:17 -0700147 unsigned long last_dead_count;
148
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800149 /* scan generation, increased every round-trip */
150 unsigned int generation;
151};
152
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800153/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800154 * per-zone information in memory controller.
155 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800156struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800157 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700158 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800159
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800160 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
161
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700162 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700163 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800164};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800165
166struct mem_cgroup_per_node {
167 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
168};
169
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800170struct mem_cgroup_threshold {
171 struct eventfd_ctx *eventfd;
172 u64 threshold;
173};
174
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700175/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800176struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700177 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700178 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800179 /* Size of entries[] */
180 unsigned int size;
181 /* Array of thresholds */
182 struct mem_cgroup_threshold entries[0];
183};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700184
185struct mem_cgroup_thresholds {
186 /* Primary thresholds array */
187 struct mem_cgroup_threshold_ary *primary;
188 /*
189 * Spare threshold array.
190 * This is needed to make mem_cgroup_unregister_event() "never fail".
191 * It must be able to store at least primary->size - 1 entries.
192 */
193 struct mem_cgroup_threshold_ary *spare;
194};
195
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700196/* for OOM */
197struct mem_cgroup_eventfd_list {
198 struct list_head list;
199 struct eventfd_ctx *eventfd;
200};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800201
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700202static void mem_cgroup_threshold(struct mem_cgroup *memcg);
203static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800204
Balbir Singhf64c3f52009-09-23 15:56:37 -0700205/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800206 * The memory controller data structure. The memory controller controls both
207 * page cache and RSS per cgroup. We would eventually like to provide
208 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
209 * to help the administrator determine what knobs to tune.
210 *
211 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800212 * we hit the water mark. May be even add a low water mark, such that
213 * no reclaim occurs from a cgroup at it's low water mark, this is
214 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800215 */
216struct mem_cgroup {
217 struct cgroup_subsys_state css;
218 /*
219 * the counter to account for memory usage
220 */
221 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700222
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700223 /* vmpressure notifications */
224 struct vmpressure vmpressure;
225
Li Zefan465939a2013-07-08 16:00:38 -0700226 /*
227 * the counter to account for mem+swap usage.
228 */
229 struct res_counter memsw;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700230
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800231 /*
Glauber Costa510fc4e2012-12-18 14:21:47 -0800232 * the counter to account for kernel memory usage.
233 */
234 struct res_counter kmem;
235 /*
Balbir Singh18f59ea2009-01-07 18:08:07 -0800236 * Should the accounting and control be hierarchical, per subtree?
237 */
238 bool use_hierarchy;
Glauber Costa510fc4e2012-12-18 14:21:47 -0800239 unsigned long kmem_account_flags; /* See KMEM_ACCOUNTED_*, below */
Michal Hocko79dfdac2011-07-26 16:08:23 -0700240
241 bool oom_lock;
242 atomic_t under_oom;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700243 atomic_t oom_wakeups;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700244
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700245 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700246 /* OOM-Killer disable */
247 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800248
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700249 /* set when res.limit == memsw.limit */
250 bool memsw_is_minimum;
251
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800252 /* protect arrays of thresholds */
253 struct mutex thresholds_lock;
254
255 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700256 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700257
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800258 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700259 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700260
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700261 /* For oom notifier event fd */
262 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700263
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800264 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800265 * Should we move charges of a task when a task is moved into this
266 * mem_cgroup ? And what type of charges should we move ?
267 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700268 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800269 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700270 * set > 0 if pages under this cgroup are moving to other cgroup.
271 */
272 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700273 /* taken only while moving_account > 0 */
274 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700275 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800276 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800277 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700278 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700279 /*
280 * used when a cpu is offlined or other synchronizations
281 * See mem_cgroup_read_stat().
282 */
283 struct mem_cgroup_stat_cpu nocpu_base;
284 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000285
Michal Hocko5f578162013-04-29 15:07:17 -0700286 atomic_t dead_count;
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700287#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000288 struct tcp_memcontrol tcp_mem;
289#endif
Glauber Costa2633d7a2012-12-18 14:22:34 -0800290#if defined(CONFIG_MEMCG_KMEM)
291 /* analogous to slab_common's slab_caches list. per-memcg */
292 struct list_head memcg_slab_caches;
293 /* Not a spinlock, we can take a lot of time walking the list */
294 struct mutex slab_caches_mutex;
295 /* Index in the kmem_cache->memcg_params->memcg_caches array */
296 int kmemcg_id;
297#endif
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800298
299 int last_scanned_node;
300#if MAX_NUMNODES > 1
301 nodemask_t scan_nodes;
302 atomic_t numainfo_events;
303 atomic_t numainfo_updating;
304#endif
Michal Hocko7d910c02013-09-12 15:13:28 -0700305 /*
306 * Protects soft_contributed transitions.
307 * See mem_cgroup_update_soft_limit
308 */
309 spinlock_t soft_lock;
310
311 /*
312 * If true then this group has increased parents' children_in_excess
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700313 * when it got over the soft limit.
Michal Hocko7d910c02013-09-12 15:13:28 -0700314 * When a group falls bellow the soft limit, parents' children_in_excess
315 * is decreased and soft_contributed changed to false.
316 */
317 bool soft_contributed;
318
319 /* Number of children that are in soft limit excess */
320 atomic_t children_in_excess;
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700321
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700322 struct mem_cgroup_per_node *nodeinfo[0];
323 /* WARNING: nodeinfo must be the last member here */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800324};
325
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800326static size_t memcg_size(void)
327{
328 return sizeof(struct mem_cgroup) +
329 nr_node_ids * sizeof(struct mem_cgroup_per_node);
330}
331
Glauber Costa510fc4e2012-12-18 14:21:47 -0800332/* internal only representation about the status of kmem accounting. */
333enum {
334 KMEM_ACCOUNTED_ACTIVE = 0, /* accounted by this cgroup itself */
Glauber Costaa8964b92012-12-18 14:22:09 -0800335 KMEM_ACCOUNTED_ACTIVATED, /* static key enabled. */
Glauber Costa7de37682012-12-18 14:22:07 -0800336 KMEM_ACCOUNTED_DEAD, /* dead memcg with pending kmem charges */
Glauber Costa510fc4e2012-12-18 14:21:47 -0800337};
338
Glauber Costaa8964b92012-12-18 14:22:09 -0800339/* We account when limit is on, but only after call sites are patched */
340#define KMEM_ACCOUNTED_MASK \
341 ((1 << KMEM_ACCOUNTED_ACTIVE) | (1 << KMEM_ACCOUNTED_ACTIVATED))
Glauber Costa510fc4e2012-12-18 14:21:47 -0800342
343#ifdef CONFIG_MEMCG_KMEM
344static inline void memcg_kmem_set_active(struct mem_cgroup *memcg)
345{
346 set_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
347}
Glauber Costa7de37682012-12-18 14:22:07 -0800348
349static bool memcg_kmem_is_active(struct mem_cgroup *memcg)
350{
351 return test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
352}
353
Glauber Costaa8964b92012-12-18 14:22:09 -0800354static void memcg_kmem_set_activated(struct mem_cgroup *memcg)
355{
356 set_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
357}
358
Glauber Costa55007d82012-12-18 14:22:38 -0800359static void memcg_kmem_clear_activated(struct mem_cgroup *memcg)
360{
361 clear_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
362}
363
Glauber Costa7de37682012-12-18 14:22:07 -0800364static void memcg_kmem_mark_dead(struct mem_cgroup *memcg)
365{
Li Zefan10d5ebf2013-07-08 16:00:33 -0700366 /*
367 * Our caller must use css_get() first, because memcg_uncharge_kmem()
368 * will call css_put() if it sees the memcg is dead.
369 */
370 smp_wmb();
Glauber Costa7de37682012-12-18 14:22:07 -0800371 if (test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags))
372 set_bit(KMEM_ACCOUNTED_DEAD, &memcg->kmem_account_flags);
373}
374
375static bool memcg_kmem_test_and_clear_dead(struct mem_cgroup *memcg)
376{
377 return test_and_clear_bit(KMEM_ACCOUNTED_DEAD,
378 &memcg->kmem_account_flags);
379}
Glauber Costa510fc4e2012-12-18 14:21:47 -0800380#endif
381
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800382/* Stuffs for move charges at task migration. */
383/*
Glauber Costaee5e8472013-02-22 16:34:50 -0800384 * Types of charges to be moved. "move_charge_at_immitgrate" and
385 * "immigrate_flags" are treated as a left-shifted bitmap of these types.
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800386 */
387enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800388 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700389 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800390 NR_MOVE_TYPE,
391};
392
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800393/* "mc" and its members are protected by cgroup_mutex */
394static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800395 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800396 struct mem_cgroup *from;
397 struct mem_cgroup *to;
Glauber Costaee5e8472013-02-22 16:34:50 -0800398 unsigned long immigrate_flags;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800399 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800400 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800401 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800402 struct task_struct *moving_task; /* a task moving charges */
403 wait_queue_head_t waitq; /* a waitq for other context */
404} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700405 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800406 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
407};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800408
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700409static bool move_anon(void)
410{
Glauber Costaee5e8472013-02-22 16:34:50 -0800411 return test_bit(MOVE_CHARGE_TYPE_ANON, &mc.immigrate_flags);
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700412}
413
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700414static bool move_file(void)
415{
Glauber Costaee5e8472013-02-22 16:34:50 -0800416 return test_bit(MOVE_CHARGE_TYPE_FILE, &mc.immigrate_flags);
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700417}
418
Balbir Singh4e416952009-09-23 15:56:39 -0700419/*
420 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
421 * limit reclaim to prevent infinite loops, if they ever occur.
422 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700423#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
Balbir Singh4e416952009-09-23 15:56:39 -0700424
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800425enum charge_type {
426 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700427 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800428 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700429 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700430 NR_CHARGE_TYPE,
431};
432
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800433/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800434enum res_type {
435 _MEM,
436 _MEMSWAP,
437 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800438 _KMEM,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800439};
440
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700441#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
442#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800443#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700444/* Used for OOM nofiier */
445#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800446
Balbir Singh75822b42009-09-23 15:56:38 -0700447/*
448 * Reclaim flags for mem_cgroup_hierarchical_reclaim
449 */
450#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
451#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
452#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
453#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
454
Glauber Costa09998212013-02-22 16:34:55 -0800455/*
456 * The memcg_create_mutex will be held whenever a new cgroup is created.
457 * As a consequence, any change that needs to protect against new child cgroups
458 * appearing has to hold it as well.
459 */
460static DEFINE_MUTEX(memcg_create_mutex);
461
Wanpeng Lib2145142012-07-31 16:46:01 -0700462struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
463{
Tejun Heoa7c6d552013-08-08 20:11:23 -0400464 return s ? container_of(s, struct mem_cgroup, css) : NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -0700465}
466
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700467/* Some nice accessors for the vmpressure. */
468struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
469{
470 if (!memcg)
471 memcg = root_mem_cgroup;
472 return &memcg->vmpressure;
473}
474
475struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr)
476{
477 return &container_of(vmpr, struct mem_cgroup, vmpressure)->css;
478}
479
480struct vmpressure *css_to_vmpressure(struct cgroup_subsys_state *css)
481{
482 return &mem_cgroup_from_css(css)->vmpressure;
483}
484
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700485static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
486{
487 return (memcg == root_mem_cgroup);
488}
489
Glauber Costae1aab162011-12-11 21:47:03 +0000490/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700491#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000492
Glauber Costae1aab162011-12-11 21:47:03 +0000493void sock_update_memcg(struct sock *sk)
494{
Glauber Costa376be5f2012-01-20 04:57:14 +0000495 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000496 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700497 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000498
499 BUG_ON(!sk->sk_prot->proto_cgroup);
500
Glauber Costaf3f511e2012-01-05 20:16:39 +0000501 /* Socket cloning can throw us here with sk_cgrp already
502 * filled. It won't however, necessarily happen from
503 * process context. So the test for root memcg given
504 * the current task's memcg won't help us in this case.
505 *
506 * Respecting the original socket's memcg is a better
507 * decision in this case.
508 */
509 if (sk->sk_cgrp) {
510 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700511 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000512 return;
513 }
514
Glauber Costae1aab162011-12-11 21:47:03 +0000515 rcu_read_lock();
516 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700517 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Li Zefan5347e5a2013-07-08 16:00:30 -0700518 if (!mem_cgroup_is_root(memcg) &&
519 memcg_proto_active(cg_proto) && css_tryget(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700520 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000521 }
522 rcu_read_unlock();
523 }
524}
525EXPORT_SYMBOL(sock_update_memcg);
526
527void sock_release_memcg(struct sock *sk)
528{
Glauber Costa376be5f2012-01-20 04:57:14 +0000529 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000530 struct mem_cgroup *memcg;
531 WARN_ON(!sk->sk_cgrp->memcg);
532 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700533 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000534 }
535}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000536
537struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
538{
539 if (!memcg || mem_cgroup_is_root(memcg))
540 return NULL;
541
542 return &memcg->tcp_mem.cg_proto;
543}
544EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000545
Glauber Costa3f134612012-05-29 15:07:11 -0700546static void disarm_sock_keys(struct mem_cgroup *memcg)
547{
548 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
549 return;
550 static_key_slow_dec(&memcg_socket_limit_enabled);
551}
552#else
553static void disarm_sock_keys(struct mem_cgroup *memcg)
554{
555}
556#endif
557
Glauber Costaa8964b92012-12-18 14:22:09 -0800558#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800559/*
560 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
561 * There are two main reasons for not using the css_id for this:
562 * 1) this works better in sparse environments, where we have a lot of memcgs,
563 * but only a few kmem-limited. Or also, if we have, for instance, 200
564 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
565 * 200 entry array for that.
566 *
567 * 2) In order not to violate the cgroup API, we would like to do all memory
568 * allocation in ->create(). At that point, we haven't yet allocated the
569 * css_id. Having a separate index prevents us from messing with the cgroup
570 * core for this
571 *
572 * The current size of the caches array is stored in
573 * memcg_limited_groups_array_size. It will double each time we have to
574 * increase it.
575 */
576static DEFINE_IDA(kmem_limited_groups);
Glauber Costa749c5412012-12-18 14:23:01 -0800577int memcg_limited_groups_array_size;
578
Glauber Costa55007d82012-12-18 14:22:38 -0800579/*
580 * MIN_SIZE is different than 1, because we would like to avoid going through
581 * the alloc/free process all the time. In a small machine, 4 kmem-limited
582 * cgroups is a reasonable guess. In the future, it could be a parameter or
583 * tunable, but that is strictly not necessary.
584 *
585 * MAX_SIZE should be as large as the number of css_ids. Ideally, we could get
586 * this constant directly from cgroup, but it is understandable that this is
587 * better kept as an internal representation in cgroup.c. In any case, the
588 * css_id space is not getting any smaller, and we don't have to necessarily
589 * increase ours as well if it increases.
590 */
591#define MEMCG_CACHES_MIN_SIZE 4
592#define MEMCG_CACHES_MAX_SIZE 65535
593
Glauber Costad7f25f82012-12-18 14:22:40 -0800594/*
595 * A lot of the calls to the cache allocation functions are expected to be
596 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
597 * conditional to this static branch, we'll have to allow modules that does
598 * kmem_cache_alloc and the such to see this symbol as well
599 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800600struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800601EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800602
603static void disarm_kmem_keys(struct mem_cgroup *memcg)
604{
Glauber Costa55007d82012-12-18 14:22:38 -0800605 if (memcg_kmem_is_active(memcg)) {
Glauber Costaa8964b92012-12-18 14:22:09 -0800606 static_key_slow_dec(&memcg_kmem_enabled_key);
Glauber Costa55007d82012-12-18 14:22:38 -0800607 ida_simple_remove(&kmem_limited_groups, memcg->kmemcg_id);
608 }
Glauber Costabea207c2012-12-18 14:22:11 -0800609 /*
610 * This check can't live in kmem destruction function,
611 * since the charges will outlive the cgroup
612 */
613 WARN_ON(res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0);
Glauber Costaa8964b92012-12-18 14:22:09 -0800614}
615#else
616static void disarm_kmem_keys(struct mem_cgroup *memcg)
617{
618}
619#endif /* CONFIG_MEMCG_KMEM */
620
621static void disarm_static_keys(struct mem_cgroup *memcg)
622{
623 disarm_sock_keys(memcg);
624 disarm_kmem_keys(memcg);
625}
626
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700627static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800628
Balbir Singhf64c3f52009-09-23 15:56:37 -0700629static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700630mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700631{
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800632 VM_BUG_ON((unsigned)nid >= nr_node_ids);
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700633 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700634}
635
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700636struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100637{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700638 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100639}
640
Balbir Singhf64c3f52009-09-23 15:56:37 -0700641static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700642page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700643{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700644 int nid = page_to_nid(page);
645 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700646
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700647 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700648}
649
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700650/*
651 * Implementation Note: reading percpu statistics for memcg.
652 *
653 * Both of vmstat[] and percpu_counter has threshold and do periodic
654 * synchronization to implement "quick" read. There are trade-off between
655 * reading cost and precision of value. Then, we may have a chance to implement
656 * a periodic synchronizion of counter in memcg's counter.
657 *
658 * But this _read() function is used for user interface now. The user accounts
659 * memory usage by memory cgroup and he _always_ requires exact value because
660 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
661 * have to visit all online cpus and make sum. So, for now, unnecessary
662 * synchronization is not implemented. (just implemented for cpu hotplug)
663 *
664 * If there are kernel internal actions which can make use of some not-exact
665 * value, and reading all cpu value can be performance bottleneck in some
666 * common workload, threashold and synchonization as vmstat[] should be
667 * implemented.
668 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700669static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700670 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800671{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700672 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800673 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800674
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700675 get_online_cpus();
676 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700677 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700678#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700679 spin_lock(&memcg->pcp_counter_lock);
680 val += memcg->nocpu_base.count[idx];
681 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700682#endif
683 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800684 return val;
685}
686
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700687static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700688 bool charge)
689{
690 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700691 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700692}
693
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700694static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700695 enum mem_cgroup_events_index idx)
696{
697 unsigned long val = 0;
698 int cpu;
699
700 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700701 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700702#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700703 spin_lock(&memcg->pcp_counter_lock);
704 val += memcg->nocpu_base.events[idx];
705 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700706#endif
707 return val;
708}
709
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700710static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700711 struct page *page,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700712 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800713{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800714 preempt_disable();
715
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700716 /*
717 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
718 * counted as CACHE even if it's on ANON LRU.
719 */
720 if (anon)
721 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700722 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800723 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700724 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700725 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700726
David Rientjesb070e652013-05-07 16:18:09 -0700727 if (PageTransHuge(page))
728 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
729 nr_pages);
730
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800731 /* pagein of a big page is an event. So, ignore page size */
732 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700733 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800734 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700735 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800736 nr_pages = -nr_pages; /* for event */
737 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800738
Johannes Weiner13114712012-05-29 15:07:07 -0700739 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800740
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800741 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800742}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800743
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700744unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700745mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700746{
747 struct mem_cgroup_per_zone *mz;
748
749 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
750 return mz->lru_size[lru];
751}
752
753static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700754mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700755 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700756{
757 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab932012-03-21 16:34:19 -0700758 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700759 unsigned long ret = 0;
760
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700761 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700762
Hugh Dickinsf156ab932012-03-21 16:34:19 -0700763 for_each_lru(lru) {
764 if (BIT(lru) & lru_mask)
765 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700766 }
767 return ret;
768}
769
770static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700771mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700772 int nid, unsigned int lru_mask)
773{
Ying Han889976d2011-05-26 16:25:33 -0700774 u64 total = 0;
775 int zid;
776
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700777 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700778 total += mem_cgroup_zone_nr_lru_pages(memcg,
779 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700780
Ying Han889976d2011-05-26 16:25:33 -0700781 return total;
782}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700783
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700784static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700785 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800786{
Ying Han889976d2011-05-26 16:25:33 -0700787 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800788 u64 total = 0;
789
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800790 for_each_node_state(nid, N_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700791 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800792 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800793}
794
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800795static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
796 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800797{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700798 unsigned long val, next;
799
Johannes Weiner13114712012-05-29 15:07:07 -0700800 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700801 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700802 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800803 if ((long)next - (long)val < 0) {
804 switch (target) {
805 case MEM_CGROUP_TARGET_THRESH:
806 next = val + THRESHOLDS_EVENTS_TARGET;
807 break;
Michal Hocko7d910c02013-09-12 15:13:28 -0700808 case MEM_CGROUP_TARGET_SOFTLIMIT:
809 next = val + SOFTLIMIT_EVENTS_TARGET;
810 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800811 case MEM_CGROUP_TARGET_NUMAINFO:
812 next = val + NUMAINFO_EVENTS_TARGET;
813 break;
814 default:
815 break;
816 }
817 __this_cpu_write(memcg->stat->targets[target], next);
818 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700819 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800820 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800821}
822
823/*
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700824 * Called from rate-limited memcg_check_events when enough
Michal Hocko7d910c02013-09-12 15:13:28 -0700825 * MEM_CGROUP_TARGET_SOFTLIMIT events are accumulated and it makes sure
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700826 * that all the parents up the hierarchy will be notified that this group
Michal Hocko7d910c02013-09-12 15:13:28 -0700827 * is in excess or that it is not in excess anymore. mmecg->soft_contributed
828 * makes the transition a single action whenever the state flips from one to
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700829 * the other.
Michal Hocko7d910c02013-09-12 15:13:28 -0700830 */
831static void mem_cgroup_update_soft_limit(struct mem_cgroup *memcg)
832{
833 unsigned long long excess = res_counter_soft_limit_excess(&memcg->res);
834 struct mem_cgroup *parent = memcg;
835 int delta = 0;
836
837 spin_lock(&memcg->soft_lock);
838 if (excess) {
839 if (!memcg->soft_contributed) {
840 delta = 1;
841 memcg->soft_contributed = true;
842 }
843 } else {
844 if (memcg->soft_contributed) {
845 delta = -1;
846 memcg->soft_contributed = false;
847 }
848 }
849
850 /*
851 * Necessary to update all ancestors when hierarchy is used
852 * because their event counter is not touched.
Michal Hocko1be171d2013-09-12 15:13:32 -0700853 * We track children even outside the hierarchy for the root
854 * cgroup because tree walk starting at root should visit
855 * all cgroups and we want to prevent from pointless tree
856 * walk if no children is below the limit.
Michal Hocko7d910c02013-09-12 15:13:28 -0700857 */
858 while (delta && (parent = parent_mem_cgroup(parent)))
859 atomic_add(delta, &parent->children_in_excess);
Michal Hocko1be171d2013-09-12 15:13:32 -0700860 if (memcg != root_mem_cgroup && !root_mem_cgroup->use_hierarchy)
861 atomic_add(delta, &root_mem_cgroup->children_in_excess);
Michal Hocko7d910c02013-09-12 15:13:28 -0700862 spin_unlock(&memcg->soft_lock);
863}
864
865/*
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800866 * Check events in order.
867 *
868 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700869static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800870{
Steven Rostedt47994012011-11-02 13:38:33 -0700871 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800872 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800873 if (unlikely(mem_cgroup_event_ratelimit(memcg,
874 MEM_CGROUP_TARGET_THRESH))) {
Michal Hocko7d910c02013-09-12 15:13:28 -0700875 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800876 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800877
Michal Hocko7d910c02013-09-12 15:13:28 -0700878 do_softlimit = mem_cgroup_event_ratelimit(memcg,
879 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -0700880#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800881 do_numainfo = mem_cgroup_event_ratelimit(memcg,
882 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -0700883#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800884 preempt_enable();
885
886 mem_cgroup_threshold(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -0700887 if (unlikely(do_softlimit))
888 mem_cgroup_update_soft_limit(memcg);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800889#if MAX_NUMNODES > 1
890 if (unlikely(do_numainfo))
891 atomic_inc(&memcg->numainfo_events);
892#endif
893 } else
894 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800895}
896
Balbir Singhcf475ad2008-04-29 01:00:16 -0700897struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800898{
Balbir Singh31a78f22008-09-28 23:09:31 +0100899 /*
900 * mm_update_next_owner() may clear mm->owner to NULL
901 * if it races with swapoff, page migration, etc.
902 * So this can be called with p == NULL.
903 */
904 if (unlikely(!p))
905 return NULL;
906
Tejun Heo8af01f52013-08-08 20:11:22 -0400907 return mem_cgroup_from_css(task_css(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800908}
909
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700910struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800911{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700912 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700913
914 if (!mm)
915 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800916 /*
917 * Because we have no locks, mm->owner's may be being moved to other
918 * cgroup. We use css_tryget() here even if this looks
919 * pessimistic (rather than adding locks here).
920 */
921 rcu_read_lock();
922 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700923 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
924 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800925 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700926 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800927 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700928 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800929}
930
Michal Hockode577802013-09-12 15:13:26 -0700931static enum mem_cgroup_filter_t
932mem_cgroup_filter(struct mem_cgroup *memcg, struct mem_cgroup *root,
933 mem_cgroup_iter_filter cond)
934{
935 if (!cond)
936 return VISIT;
937 return cond(memcg, root);
938}
939
Michal Hocko16248d82013-04-29 15:07:19 -0700940/*
941 * Returns a next (in a pre-order walk) alive memcg (with elevated css
942 * ref. count) or NULL if the whole root's subtree has been visited.
943 *
944 * helper function to be used by mem_cgroup_iter
945 */
946static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
Michal Hockode577802013-09-12 15:13:26 -0700947 struct mem_cgroup *last_visited, mem_cgroup_iter_filter cond)
Michal Hocko16248d82013-04-29 15:07:19 -0700948{
Tejun Heo492eb212013-08-08 20:11:25 -0400949 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700950
Tejun Heobd8815a2013-08-08 20:11:27 -0400951 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -0700952skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -0400953 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -0700954
955 /*
956 * Even if we found a group we have to make sure it is
957 * alive. css && !memcg means that the groups should be
958 * skipped and we should continue the tree walk.
959 * last_visited css is safe to use because it is
960 * protected by css_get and the tree walk is rcu safe.
961 */
Tejun Heo492eb212013-08-08 20:11:25 -0400962 if (next_css) {
963 struct mem_cgroup *mem = mem_cgroup_from_css(next_css);
964
Michal Hockode577802013-09-12 15:13:26 -0700965 switch (mem_cgroup_filter(mem, root, cond)) {
966 case SKIP:
Tejun Heo492eb212013-08-08 20:11:25 -0400967 prev_css = next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700968 goto skip_node;
Michal Hockode577802013-09-12 15:13:26 -0700969 case SKIP_TREE:
970 if (mem == root)
971 return NULL;
972 /*
973 * css_rightmost_descendant is not an optimal way to
974 * skip through a subtree (especially for imbalanced
975 * trees leaning to right) but that's what we have right
976 * now. More effective solution would be traversing
977 * right-up for first non-NULL without calling
978 * css_next_descendant_pre afterwards.
979 */
980 prev_css = css_rightmost_descendant(next_css);
981 goto skip_node;
982 case VISIT:
983 if (css_tryget(&mem->css))
984 return mem;
985 else {
986 prev_css = next_css;
987 goto skip_node;
988 }
989 break;
Michal Hocko16248d82013-04-29 15:07:19 -0700990 }
991 }
992
993 return NULL;
994}
995
Johannes Weiner519ebea2013-07-03 15:04:51 -0700996static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
997{
998 /*
999 * When a group in the hierarchy below root is destroyed, the
1000 * hierarchy iterator can no longer be trusted since it might
1001 * have pointed to the destroyed group. Invalidate it.
1002 */
1003 atomic_inc(&root->dead_count);
1004}
1005
1006static struct mem_cgroup *
1007mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
1008 struct mem_cgroup *root,
1009 int *sequence)
1010{
1011 struct mem_cgroup *position = NULL;
1012 /*
1013 * A cgroup destruction happens in two stages: offlining and
1014 * release. They are separated by a RCU grace period.
1015 *
1016 * If the iterator is valid, we may still race with an
1017 * offlining. The RCU lock ensures the object won't be
1018 * released, tryget will fail if we lost the race.
1019 */
1020 *sequence = atomic_read(&root->dead_count);
1021 if (iter->last_dead_count == *sequence) {
1022 smp_rmb();
1023 position = iter->last_visited;
1024 if (position && !css_tryget(&position->css))
1025 position = NULL;
1026 }
1027 return position;
1028}
1029
1030static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
1031 struct mem_cgroup *last_visited,
1032 struct mem_cgroup *new_position,
1033 int sequence)
1034{
1035 if (last_visited)
1036 css_put(&last_visited->css);
1037 /*
1038 * We store the sequence count from the time @last_visited was
1039 * loaded successfully instead of rereading it here so that we
1040 * don't lose destruction events in between. We could have
1041 * raced with the destruction of @new_position after all.
1042 */
1043 iter->last_visited = new_position;
1044 smp_wmb();
1045 iter->last_dead_count = sequence;
1046}
1047
Johannes Weiner56600482012-01-12 17:17:59 -08001048/**
1049 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1050 * @root: hierarchy root
1051 * @prev: previously returned memcg, NULL on first invocation
1052 * @reclaim: cookie for shared reclaim walks, NULL for full walks
Michal Hockode577802013-09-12 15:13:26 -07001053 * @cond: filter for visited nodes, NULL for no filter
Johannes Weiner56600482012-01-12 17:17:59 -08001054 *
1055 * Returns references to children of the hierarchy below @root, or
1056 * @root itself, or %NULL after a full round-trip.
1057 *
1058 * Caller must pass the return value in @prev on subsequent
1059 * invocations for reference counting, or use mem_cgroup_iter_break()
1060 * to cancel a hierarchy walk before the round-trip is complete.
1061 *
1062 * Reclaimers can specify a zone and a priority level in @reclaim to
1063 * divide up the memcgs in the hierarchy among all concurrent
1064 * reclaimers operating on the same zone and priority.
1065 */
Michal Hockode577802013-09-12 15:13:26 -07001066struct mem_cgroup *mem_cgroup_iter_cond(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -08001067 struct mem_cgroup *prev,
Michal Hockode577802013-09-12 15:13:26 -07001068 struct mem_cgroup_reclaim_cookie *reclaim,
1069 mem_cgroup_iter_filter cond)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001070{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001071 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001072 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001073
Michal Hockode577802013-09-12 15:13:26 -07001074 if (mem_cgroup_disabled()) {
1075 /* first call must return non-NULL, second return NULL */
1076 return (struct mem_cgroup *)(unsigned long)!prev;
1077 }
Johannes Weiner56600482012-01-12 17:17:59 -08001078
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001079 if (!root)
1080 root = root_mem_cgroup;
1081
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001082 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -07001083 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001084
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001085 if (!root->use_hierarchy && root != root_mem_cgroup) {
1086 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001087 goto out_css_put;
Michal Hockode577802013-09-12 15:13:26 -07001088 if (mem_cgroup_filter(root, root, cond) == VISIT)
1089 return root;
1090 return NULL;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001091 }
1092
Michal Hocko542f85f2013-04-29 15:07:15 -07001093 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001094 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001095 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001096 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001097
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001098 if (reclaim) {
1099 int nid = zone_to_nid(reclaim->zone);
1100 int zid = zone_idx(reclaim->zone);
1101 struct mem_cgroup_per_zone *mz;
1102
1103 mz = mem_cgroup_zoneinfo(root, nid, zid);
1104 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001105 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001106 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001107 goto out_unlock;
1108 }
Michal Hocko5f578162013-04-29 15:07:17 -07001109
Johannes Weiner519ebea2013-07-03 15:04:51 -07001110 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001111 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001112
Michal Hockode577802013-09-12 15:13:26 -07001113 memcg = __mem_cgroup_iter_next(root, last_visited, cond);
Michal Hocko542f85f2013-04-29 15:07:15 -07001114
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001115 if (reclaim) {
Johannes Weiner519ebea2013-07-03 15:04:51 -07001116 mem_cgroup_iter_update(iter, last_visited, memcg, seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001117
Michal Hocko19f39402013-04-29 15:07:18 -07001118 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001119 iter->generation++;
1120 else if (!prev && memcg)
1121 reclaim->generation = iter->generation;
1122 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001123
Michal Hockode577802013-09-12 15:13:26 -07001124 /*
1125 * We have finished the whole tree walk or no group has been
1126 * visited because filter told us to skip the root node.
1127 */
1128 if (!memcg && (prev || (cond && !last_visited)))
Michal Hocko542f85f2013-04-29 15:07:15 -07001129 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001130 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001131out_unlock:
1132 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001133out_css_put:
1134 if (prev && prev != root)
1135 css_put(&prev->css);
1136
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001137 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001138}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001139
Johannes Weiner56600482012-01-12 17:17:59 -08001140/**
1141 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1142 * @root: hierarchy root
1143 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1144 */
1145void mem_cgroup_iter_break(struct mem_cgroup *root,
1146 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001147{
1148 if (!root)
1149 root = root_mem_cgroup;
1150 if (prev && prev != root)
1151 css_put(&prev->css);
1152}
1153
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001154/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001155 * Iteration constructs for visiting all cgroups (under a tree). If
1156 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1157 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001158 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001159#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001160 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001161 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001162 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001163
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001164#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001165 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001166 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001167 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001168
David Rientjes68ae5642012-12-12 13:51:57 -08001169void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001170{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001171 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001172
Ying Han456f9982011-05-26 16:25:38 -07001173 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001174 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1175 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001176 goto out;
1177
1178 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001179 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001180 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1181 break;
1182 case PGMAJFAULT:
1183 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001184 break;
1185 default:
1186 BUG();
1187 }
1188out:
1189 rcu_read_unlock();
1190}
David Rientjes68ae5642012-12-12 13:51:57 -08001191EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001192
Johannes Weiner925b7672012-01-12 17:18:15 -08001193/**
1194 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1195 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001196 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001197 *
1198 * Returns the lru list vector holding pages for the given @zone and
1199 * @mem. This can be the global zone lruvec, if the memory controller
1200 * is disabled.
1201 */
1202struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1203 struct mem_cgroup *memcg)
1204{
1205 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001206 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001207
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001208 if (mem_cgroup_disabled()) {
1209 lruvec = &zone->lruvec;
1210 goto out;
1211 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001212
1213 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001214 lruvec = &mz->lruvec;
1215out:
1216 /*
1217 * Since a node can be onlined after the mem_cgroup was created,
1218 * we have to be prepared to initialize lruvec->zone here;
1219 * and if offlined then reonlined, we need to reinitialize it.
1220 */
1221 if (unlikely(lruvec->zone != zone))
1222 lruvec->zone = zone;
1223 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001224}
1225
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001226/*
1227 * Following LRU functions are allowed to be used without PCG_LOCK.
1228 * Operations are called by routine of global LRU independently from memcg.
1229 * What we have to take care of here is validness of pc->mem_cgroup.
1230 *
1231 * Changes to pc->mem_cgroup happens when
1232 * 1. charge
1233 * 2. moving account
1234 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1235 * It is added to LRU before charge.
1236 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1237 * When moving account, the page is not on LRU. It's isolated.
1238 */
1239
Johannes Weiner925b7672012-01-12 17:18:15 -08001240/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001241 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001242 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001243 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001244 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001245struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001246{
1247 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001248 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001249 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001250 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001251
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001252 if (mem_cgroup_disabled()) {
1253 lruvec = &zone->lruvec;
1254 goto out;
1255 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001256
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001257 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001258 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001259
1260 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001261 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001262 * an uncharged page off lru does nothing to secure
1263 * its former mem_cgroup from sudden removal.
1264 *
1265 * Our caller holds lru_lock, and PageCgroupUsed is updated
1266 * under page_cgroup lock: between them, they make all uses
1267 * of pc->mem_cgroup safe.
1268 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001269 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001270 pc->mem_cgroup = memcg = root_mem_cgroup;
1271
Johannes Weiner925b7672012-01-12 17:18:15 -08001272 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001273 lruvec = &mz->lruvec;
1274out:
1275 /*
1276 * Since a node can be onlined after the mem_cgroup was created,
1277 * we have to be prepared to initialize lruvec->zone here;
1278 * and if offlined then reonlined, we need to reinitialize it.
1279 */
1280 if (unlikely(lruvec->zone != zone))
1281 lruvec->zone = zone;
1282 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001283}
1284
1285/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001286 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1287 * @lruvec: mem_cgroup per zone lru vector
1288 * @lru: index of lru list the page is sitting on
1289 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001290 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001291 * This function must be called when a page is added to or removed from an
1292 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001293 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001294void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1295 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001296{
1297 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001298 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001299
1300 if (mem_cgroup_disabled())
1301 return;
1302
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001303 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1304 lru_size = mz->lru_size + lru;
1305 *lru_size += nr_pages;
1306 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001307}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001308
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001309/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001310 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001311 * hierarchy subtree
1312 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001313bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1314 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001315{
Johannes Weiner91c637342012-05-29 15:06:24 -07001316 if (root_memcg == memcg)
1317 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001318 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001319 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001320 return css_is_ancestor(&memcg->css, &root_memcg->css);
1321}
1322
1323static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1324 struct mem_cgroup *memcg)
1325{
1326 bool ret;
1327
Johannes Weiner91c637342012-05-29 15:06:24 -07001328 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001329 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001330 rcu_read_unlock();
1331 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001332}
1333
David Rientjesffbdccf2013-07-03 15:01:23 -07001334bool task_in_mem_cgroup(struct task_struct *task,
1335 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001336{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001337 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001338 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001339 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001340
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001341 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001342 if (p) {
1343 curr = try_get_mem_cgroup_from_mm(p->mm);
1344 task_unlock(p);
1345 } else {
1346 /*
1347 * All threads may have already detached their mm's, but the oom
1348 * killer still needs to detect if they have already been oom
1349 * killed to prevent needlessly killing additional tasks.
1350 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001351 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001352 curr = mem_cgroup_from_task(task);
1353 if (curr)
1354 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001355 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001356 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001357 if (!curr)
David Rientjesffbdccf2013-07-03 15:01:23 -07001358 return false;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001359 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001360 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001361 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001362 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1363 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001364 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001365 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001366 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001367 return ret;
1368}
1369
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001370int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001371{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001372 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001373 unsigned long inactive;
1374 unsigned long active;
1375 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001376
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001377 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1378 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001379
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001380 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1381 if (gb)
1382 inactive_ratio = int_sqrt(10 * gb);
1383 else
1384 inactive_ratio = 1;
1385
Johannes Weiner9b272972011-11-02 13:38:23 -07001386 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001387}
1388
Balbir Singh6d61ef42009-01-07 18:08:06 -08001389#define mem_cgroup_from_res_counter(counter, member) \
1390 container_of(counter, struct mem_cgroup, member)
1391
Johannes Weiner19942822011-02-01 15:52:43 -08001392/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001393 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001394 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001395 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001396 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001397 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001398 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001399static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001400{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001401 unsigned long long margin;
1402
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001403 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001404 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001405 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001406 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001407}
1408
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001409int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001410{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001411 /* root ? */
Tejun Heo63876982013-08-08 20:11:23 -04001412 if (!css_parent(&memcg->css))
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001413 return vm_swappiness;
1414
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001415 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001416}
1417
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001418/*
1419 * memcg->moving_account is used for checking possibility that some thread is
1420 * calling move_account(). When a thread on CPU-A starts moving pages under
1421 * a memcg, other threads should check memcg->moving_account under
1422 * rcu_read_lock(), like this:
1423 *
1424 * CPU-A CPU-B
1425 * rcu_read_lock()
1426 * memcg->moving_account+1 if (memcg->mocing_account)
1427 * take heavy locks.
1428 * synchronize_rcu() update something.
1429 * rcu_read_unlock()
1430 * start move here.
1431 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001432
1433/* for quick checking without looking up memcg */
1434atomic_t memcg_moving __read_mostly;
1435
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001436static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001437{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001438 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001439 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001440 synchronize_rcu();
1441}
1442
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001443static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001444{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001445 /*
1446 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1447 * We check NULL in callee rather than caller.
1448 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001449 if (memcg) {
1450 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001451 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001452 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001453}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001454
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001455/*
1456 * 2 routines for checking "mem" is under move_account() or not.
1457 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001458 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1459 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001460 * pc->mem_cgroup may be overwritten.
1461 *
1462 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1463 * under hierarchy of moving cgroups. This is for
1464 * waiting at hith-memory prressure caused by "move".
1465 */
1466
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001467static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001468{
1469 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001470 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001471}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001472
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001473static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001474{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001475 struct mem_cgroup *from;
1476 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001477 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001478 /*
1479 * Unlike task_move routines, we access mc.to, mc.from not under
1480 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1481 */
1482 spin_lock(&mc.lock);
1483 from = mc.from;
1484 to = mc.to;
1485 if (!from)
1486 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001487
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001488 ret = mem_cgroup_same_or_subtree(memcg, from)
1489 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001490unlock:
1491 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001492 return ret;
1493}
1494
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001495static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001496{
1497 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001498 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001499 DEFINE_WAIT(wait);
1500 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1501 /* moving charge context might have finished. */
1502 if (mc.moving_task)
1503 schedule();
1504 finish_wait(&mc.waitq, &wait);
1505 return true;
1506 }
1507 }
1508 return false;
1509}
1510
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001511/*
1512 * Take this lock when
1513 * - a code tries to modify page's memcg while it's USED.
1514 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001515 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001516 */
1517static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1518 unsigned long *flags)
1519{
1520 spin_lock_irqsave(&memcg->move_lock, *flags);
1521}
1522
1523static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1524 unsigned long *flags)
1525{
1526 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1527}
1528
Sha Zhengju58cf1882013-02-22 16:32:05 -08001529#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001530/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001531 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001532 * @memcg: The memory cgroup that went over limit
1533 * @p: Task that is going to be killed
1534 *
1535 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1536 * enabled
1537 */
1538void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1539{
1540 struct cgroup *task_cgrp;
1541 struct cgroup *mem_cgrp;
1542 /*
1543 * Need a buffer in BSS, can't rely on allocations. The code relies
1544 * on the assumption that OOM is serialized for memory controller.
1545 * If this assumption is broken, revisit this code.
1546 */
1547 static char memcg_name[PATH_MAX];
1548 int ret;
Sha Zhengju58cf1882013-02-22 16:32:05 -08001549 struct mem_cgroup *iter;
1550 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001551
Sha Zhengju58cf1882013-02-22 16:32:05 -08001552 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001553 return;
1554
Balbir Singhe2224322009-04-02 16:57:39 -07001555 rcu_read_lock();
1556
1557 mem_cgrp = memcg->css.cgroup;
1558 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1559
1560 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1561 if (ret < 0) {
1562 /*
1563 * Unfortunately, we are unable to convert to a useful name
1564 * But we'll still print out the usage information
1565 */
1566 rcu_read_unlock();
1567 goto done;
1568 }
1569 rcu_read_unlock();
1570
Andrew Mortond0451972013-02-22 16:32:06 -08001571 pr_info("Task in %s killed", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001572
1573 rcu_read_lock();
1574 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1575 if (ret < 0) {
1576 rcu_read_unlock();
1577 goto done;
1578 }
1579 rcu_read_unlock();
1580
1581 /*
1582 * Continues from above, so we don't need an KERN_ level
1583 */
Andrew Mortond0451972013-02-22 16:32:06 -08001584 pr_cont(" as a result of limit of %s\n", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001585done:
1586
Andrew Mortond0451972013-02-22 16:32:06 -08001587 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001588 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1589 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1590 res_counter_read_u64(&memcg->res, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001591 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001592 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1593 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1594 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001595 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
Glauber Costa510fc4e2012-12-18 14:21:47 -08001596 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1597 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1598 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Sha Zhengju58cf1882013-02-22 16:32:05 -08001599
1600 for_each_mem_cgroup_tree(iter, memcg) {
1601 pr_info("Memory cgroup stats");
1602
1603 rcu_read_lock();
1604 ret = cgroup_path(iter->css.cgroup, memcg_name, PATH_MAX);
1605 if (!ret)
1606 pr_cont(" for %s", memcg_name);
1607 rcu_read_unlock();
1608 pr_cont(":");
1609
1610 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1611 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1612 continue;
1613 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1614 K(mem_cgroup_read_stat(iter, i)));
1615 }
1616
1617 for (i = 0; i < NR_LRU_LISTS; i++)
1618 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1619 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1620
1621 pr_cont("\n");
1622 }
Balbir Singhe2224322009-04-02 16:57:39 -07001623}
1624
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001625/*
1626 * This function returns the number of memcg under hierarchy tree. Returns
1627 * 1(self count) if no children.
1628 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001629static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001630{
1631 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001632 struct mem_cgroup *iter;
1633
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001634 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001635 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001636 return num;
1637}
1638
Balbir Singh6d61ef42009-01-07 18:08:06 -08001639/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001640 * Return the memory (and swap, if configured) limit for a memcg.
1641 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001642static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001643{
1644 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001645
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001646 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001647
David Rientjesa63d83f2010-08-09 17:19:46 -07001648 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001649 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001650 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001651 if (mem_cgroup_swappiness(memcg)) {
1652 u64 memsw;
1653
1654 limit += total_swap_pages << PAGE_SHIFT;
1655 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1656
1657 /*
1658 * If memsw is finite and limits the amount of swap space
1659 * available to this memcg, return that limit.
1660 */
1661 limit = min(limit, memsw);
1662 }
1663
1664 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001665}
1666
David Rientjes19965462012-12-11 16:00:26 -08001667static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1668 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001669{
1670 struct mem_cgroup *iter;
1671 unsigned long chosen_points = 0;
1672 unsigned long totalpages;
1673 unsigned int points = 0;
1674 struct task_struct *chosen = NULL;
1675
David Rientjes876aafb2012-07-31 16:43:48 -07001676 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001677 * If current has a pending SIGKILL or is exiting, then automatically
1678 * select it. The goal is to allow it to allocate so that it may
1679 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001680 */
David Rientjes465adcf2013-04-29 15:08:45 -07001681 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001682 set_thread_flag(TIF_MEMDIE);
1683 return;
1684 }
1685
1686 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001687 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1688 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001689 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001690 struct task_struct *task;
1691
Tejun Heo72ec7022013-08-08 20:11:26 -04001692 css_task_iter_start(&iter->css, &it);
1693 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001694 switch (oom_scan_process_thread(task, totalpages, NULL,
1695 false)) {
1696 case OOM_SCAN_SELECT:
1697 if (chosen)
1698 put_task_struct(chosen);
1699 chosen = task;
1700 chosen_points = ULONG_MAX;
1701 get_task_struct(chosen);
1702 /* fall through */
1703 case OOM_SCAN_CONTINUE:
1704 continue;
1705 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001706 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001707 mem_cgroup_iter_break(memcg, iter);
1708 if (chosen)
1709 put_task_struct(chosen);
1710 return;
1711 case OOM_SCAN_OK:
1712 break;
1713 };
1714 points = oom_badness(task, memcg, NULL, totalpages);
1715 if (points > chosen_points) {
1716 if (chosen)
1717 put_task_struct(chosen);
1718 chosen = task;
1719 chosen_points = points;
1720 get_task_struct(chosen);
1721 }
1722 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001723 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001724 }
1725
1726 if (!chosen)
1727 return;
1728 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001729 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1730 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001731}
1732
Johannes Weiner56600482012-01-12 17:17:59 -08001733static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1734 gfp_t gfp_mask,
1735 unsigned long flags)
1736{
1737 unsigned long total = 0;
1738 bool noswap = false;
1739 int loop;
1740
1741 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1742 noswap = true;
1743 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1744 noswap = true;
1745
1746 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1747 if (loop)
1748 drain_all_stock_async(memcg);
1749 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1750 /*
1751 * Allow limit shrinkers, which are triggered directly
1752 * by userspace, to catch signals and stop reclaim
1753 * after minimal progress, regardless of the margin.
1754 */
1755 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1756 break;
1757 if (mem_cgroup_margin(memcg))
1758 break;
1759 /*
1760 * If nothing was reclaimed after two attempts, there
1761 * may be no reclaimable pages in this hierarchy.
1762 */
1763 if (loop && !total)
1764 break;
1765 }
1766 return total;
1767}
1768
Michal Hockoe8831102013-09-12 15:13:23 -07001769#if MAX_NUMNODES > 1
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001770/**
1771 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001772 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001773 * @nid: the node ID to be checked.
1774 * @noswap : specify true here if the user wants flle only information.
1775 *
1776 * This function returns whether the specified memcg contains any
1777 * reclaimable pages on a node. Returns true if there are any reclaimable
1778 * pages in the node.
1779 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001780static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001781 int nid, bool noswap)
1782{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001783 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001784 return true;
1785 if (noswap || !total_swap_pages)
1786 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001787 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001788 return true;
1789 return false;
1790
1791}
Ying Han889976d2011-05-26 16:25:33 -07001792
1793/*
1794 * Always updating the nodemask is not very good - even if we have an empty
1795 * list or the wrong list here, we can start from some node and traverse all
1796 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1797 *
1798 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001799static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001800{
1801 int nid;
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -07001802 /*
1803 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1804 * pagein/pageout changes since the last update.
1805 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001806 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -07001807 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001808 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001809 return;
1810
Ying Han889976d2011-05-26 16:25:33 -07001811 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001812 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001813
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001814 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001815
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001816 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1817 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001818 }
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -07001819
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001820 atomic_set(&memcg->numainfo_events, 0);
1821 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001822}
1823
1824/*
1825 * Selecting a node where we start reclaim from. Because what we need is just
1826 * reducing usage counter, start from anywhere is O,K. Considering
1827 * memory reclaim from current node, there are pros. and cons.
1828 *
1829 * Freeing memory from current node means freeing memory from a node which
1830 * we'll use or we've used. So, it may make LRU bad. And if several threads
1831 * hit limits, it will see a contention on a node. But freeing from remote
1832 * node means more costs for memory reclaim because of memory latency.
1833 *
1834 * Now, we use round-robin. Better algorithm is welcomed.
1835 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001836int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001837{
1838 int node;
1839
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001840 mem_cgroup_may_update_nodemask(memcg);
1841 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001842
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001843 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001844 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001845 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001846 /*
1847 * We call this when we hit limit, not when pages are added to LRU.
1848 * No LRU may hold pages because all pages are UNEVICTABLE or
1849 * memcg is too small and all pages are not on LRU. In that case,
1850 * we use curret node.
1851 */
1852 if (unlikely(node == MAX_NUMNODES))
1853 node = numa_node_id();
1854
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001855 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001856 return node;
1857}
1858
1859#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001860int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001861{
1862 return 0;
1863}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001864
Ying Han889976d2011-05-26 16:25:33 -07001865#endif
1866
Michal Hocko3b387222013-09-12 15:13:21 -07001867/*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001868 * A group is eligible for the soft limit reclaim under the given root
1869 * hierarchy if
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001870 * a) it is over its soft limit
1871 * b) any parent up the hierarchy is over its soft limit
Michal Hocko7d910c02013-09-12 15:13:28 -07001872 *
1873 * If the given group doesn't have any children over the limit then it
1874 * doesn't make any sense to iterate its subtree.
Michal Hocko3b387222013-09-12 15:13:21 -07001875 */
Michal Hockode577802013-09-12 15:13:26 -07001876enum mem_cgroup_filter_t
1877mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg,
Michal Hockoa5b7c872013-09-12 15:13:25 -07001878 struct mem_cgroup *root)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001879{
Michal Hockoe839b6a2013-09-12 15:13:30 -07001880 struct mem_cgroup *parent;
1881
1882 if (!memcg)
1883 memcg = root_mem_cgroup;
1884 parent = memcg;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001885
Michal Hocko3b387222013-09-12 15:13:21 -07001886 if (res_counter_soft_limit_excess(&memcg->res))
Michal Hockode577802013-09-12 15:13:26 -07001887 return VISIT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001888
Michal Hocko3b387222013-09-12 15:13:21 -07001889 /*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001890 * If any parent up to the root in the hierarchy is over its soft limit
1891 * then we have to obey and reclaim from this group as well.
Michal Hocko3b387222013-09-12 15:13:21 -07001892 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001893 while ((parent = parent_mem_cgroup(parent))) {
Michal Hocko3b387222013-09-12 15:13:21 -07001894 if (res_counter_soft_limit_excess(&parent->res))
Michal Hockode577802013-09-12 15:13:26 -07001895 return VISIT;
Michal Hockoa5b7c872013-09-12 15:13:25 -07001896 if (parent == root)
1897 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001898 }
Michal Hocko3b387222013-09-12 15:13:21 -07001899
Michal Hocko7d910c02013-09-12 15:13:28 -07001900 if (!atomic_read(&memcg->children_in_excess))
1901 return SKIP_TREE;
Michal Hockode577802013-09-12 15:13:26 -07001902 return SKIP;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001903}
1904
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001905static DEFINE_SPINLOCK(memcg_oom_lock);
1906
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001907/*
1908 * Check OOM-Killer is already running under our hierarchy.
1909 * If someone is running, return false.
1910 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001911static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001912{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001913 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001914
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001915 spin_lock(&memcg_oom_lock);
1916
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001917 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001918 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001919 /*
1920 * this subtree of our hierarchy is already locked
1921 * so we cannot give a lock.
1922 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001923 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001924 mem_cgroup_iter_break(memcg, iter);
1925 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001926 } else
1927 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001928 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001929
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001930 if (failed) {
1931 /*
1932 * OK, we failed to lock the whole subtree so we have
1933 * to clean up what we set up to the failing subtree
1934 */
1935 for_each_mem_cgroup_tree(iter, memcg) {
1936 if (iter == failed) {
1937 mem_cgroup_iter_break(memcg, iter);
1938 break;
1939 }
1940 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001941 }
Michal Hocko79dfdac2011-07-26 16:08:23 -07001942 }
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001943
1944 spin_unlock(&memcg_oom_lock);
1945
1946 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001947}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001948
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001949static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001950{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001951 struct mem_cgroup *iter;
1952
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001953 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001954 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001955 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001956 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001957}
1958
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001959static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001960{
1961 struct mem_cgroup *iter;
1962
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001963 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001964 atomic_inc(&iter->under_oom);
1965}
1966
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001967static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001968{
1969 struct mem_cgroup *iter;
1970
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001971 /*
1972 * When a new child is created while the hierarchy is under oom,
1973 * mem_cgroup_oom_lock() may not be called. We have to use
1974 * atomic_add_unless() here.
1975 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001976 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001977 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001978}
1979
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001980static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1981
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001982struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001983 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001984 wait_queue_t wait;
1985};
1986
1987static int memcg_oom_wake_function(wait_queue_t *wait,
1988 unsigned mode, int sync, void *arg)
1989{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001990 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1991 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001992 struct oom_wait_info *oom_wait_info;
1993
1994 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001995 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001996
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001997 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001998 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001999 * Then we can use css_is_ancestor without taking care of RCU.
2000 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002001 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
2002 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002003 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002004 return autoremove_wake_function(wait, mode, sync, arg);
2005}
2006
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002007static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002008{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002009 atomic_inc(&memcg->oom_wakeups);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002010 /* for filtering, pass "memcg" as argument. */
2011 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002012}
2013
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002014static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002015{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002016 if (memcg && atomic_read(&memcg->under_oom))
2017 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002018}
2019
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002020/*
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002021 * try to call OOM killer
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002022 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002023static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002024{
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002025 bool locked;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002026 int wakeups;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002027
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002028 if (!current->memcg_oom.may_oom)
2029 return;
2030
2031 current->memcg_oom.in_memcg_oom = 1;
Michal Hocko79dfdac2011-07-26 16:08:23 -07002032
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002033 /*
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002034 * As with any blocking lock, a contender needs to start
2035 * listening for wakeups before attempting the trylock,
2036 * otherwise it can miss the wakeup from the unlock and sleep
2037 * indefinitely. This is just open-coded because our locking
2038 * is so particular to memcg hierarchies.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002039 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002040 wakeups = atomic_read(&memcg->oom_wakeups);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002041 mem_cgroup_mark_under_oom(memcg);
2042
2043 locked = mem_cgroup_oom_trylock(memcg);
2044
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002045 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002046 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002047
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002048 if (locked && !memcg->oom_kill_disable) {
2049 mem_cgroup_unmark_under_oom(memcg);
David Rientjese845e192012-03-21 16:34:10 -07002050 mem_cgroup_out_of_memory(memcg, mask, order);
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002051 mem_cgroup_oom_unlock(memcg);
2052 /*
2053 * There is no guarantee that an OOM-lock contender
2054 * sees the wakeups triggered by the OOM kill
2055 * uncharges. Wake any sleepers explicitely.
2056 */
2057 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002058 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002059 /*
2060 * A system call can just return -ENOMEM, but if this
2061 * is a page fault and somebody else is handling the
2062 * OOM already, we need to sleep on the OOM waitqueue
2063 * for this memcg until the situation is resolved.
2064 * Which can take some time because it might be
2065 * handled by a userspace task.
2066 *
2067 * However, this is the charge context, which means
2068 * that we may sit on a large call stack and hold
2069 * various filesystem locks, the mmap_sem etc. and we
2070 * don't want the OOM handler to deadlock on them
2071 * while we sit here and wait. Store the current OOM
2072 * context in the task_struct, then return -ENOMEM.
2073 * At the end of the page fault handler, with the
2074 * stack unwound, pagefault_out_of_memory() will check
2075 * back with us by calling
2076 * mem_cgroup_oom_synchronize(), possibly putting the
2077 * task to sleep.
2078 */
2079 current->memcg_oom.oom_locked = locked;
2080 current->memcg_oom.wakeups = wakeups;
2081 css_get(&memcg->css);
2082 current->memcg_oom.wait_on_memcg = memcg;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002083 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002084}
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002085
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002086/**
2087 * mem_cgroup_oom_synchronize - complete memcg OOM handling
2088 *
2089 * This has to be called at the end of a page fault if the the memcg
2090 * OOM handler was enabled and the fault is returning %VM_FAULT_OOM.
2091 *
2092 * Memcg supports userspace OOM handling, so failed allocations must
2093 * sleep on a waitqueue until the userspace task resolves the
2094 * situation. Sleeping directly in the charge context with all kinds
2095 * of locks held is not a good idea, instead we remember an OOM state
2096 * in the task and mem_cgroup_oom_synchronize() has to be called at
2097 * the end of the page fault to put the task to sleep and clean up the
2098 * OOM state.
2099 *
2100 * Returns %true if an ongoing memcg OOM situation was detected and
2101 * finalized, %false otherwise.
2102 */
2103bool mem_cgroup_oom_synchronize(void)
2104{
2105 struct oom_wait_info owait;
2106 struct mem_cgroup *memcg;
2107
2108 /* OOM is global, do not handle */
2109 if (!current->memcg_oom.in_memcg_oom)
2110 return false;
2111
2112 /*
2113 * We invoked the OOM killer but there is a chance that a kill
2114 * did not free up any charges. Everybody else might already
2115 * be sleeping, so restart the fault and keep the rampage
2116 * going until some charges are released.
2117 */
2118 memcg = current->memcg_oom.wait_on_memcg;
2119 if (!memcg)
2120 goto out;
2121
2122 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
2123 goto out_memcg;
2124
2125 owait.memcg = memcg;
2126 owait.wait.flags = 0;
2127 owait.wait.func = memcg_oom_wake_function;
2128 owait.wait.private = current;
2129 INIT_LIST_HEAD(&owait.wait.task_list);
2130
2131 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
2132 /* Only sleep if we didn't miss any wakeups since OOM */
2133 if (atomic_read(&memcg->oom_wakeups) == current->memcg_oom.wakeups)
2134 schedule();
2135 finish_wait(&memcg_oom_waitq, &owait.wait);
2136out_memcg:
2137 mem_cgroup_unmark_under_oom(memcg);
2138 if (current->memcg_oom.oom_locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002139 mem_cgroup_oom_unlock(memcg);
2140 /*
2141 * There is no guarantee that an OOM-lock contender
2142 * sees the wakeups triggered by the OOM kill
2143 * uncharges. Wake any sleepers explicitely.
2144 */
2145 memcg_oom_recover(memcg);
2146 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002147 css_put(&memcg->css);
2148 current->memcg_oom.wait_on_memcg = NULL;
2149out:
2150 current->memcg_oom.in_memcg_oom = 0;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002151 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002152}
2153
Balbir Singhd69b0422009-06-17 16:26:34 -07002154/*
2155 * Currently used to update mapped file statistics, but the routine can be
2156 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002157 *
2158 * Notes: Race condition
2159 *
2160 * We usually use page_cgroup_lock() for accessing page_cgroup member but
2161 * it tends to be costly. But considering some conditions, we doesn't need
2162 * to do so _always_.
2163 *
2164 * Considering "charge", lock_page_cgroup() is not required because all
2165 * file-stat operations happen after a page is attached to radix-tree. There
2166 * are no race with "charge".
2167 *
2168 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2169 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2170 * if there are race with "uncharge". Statistics itself is properly handled
2171 * by flags.
2172 *
2173 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002174 * small, we check mm->moving_account and detect there are possibility of race
2175 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002176 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002177
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002178void __mem_cgroup_begin_update_page_stat(struct page *page,
2179 bool *locked, unsigned long *flags)
2180{
2181 struct mem_cgroup *memcg;
2182 struct page_cgroup *pc;
2183
2184 pc = lookup_page_cgroup(page);
2185again:
2186 memcg = pc->mem_cgroup;
2187 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2188 return;
2189 /*
2190 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002191 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002192 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002193 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002194 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002195 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002196 return;
2197
2198 move_lock_mem_cgroup(memcg, flags);
2199 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2200 move_unlock_mem_cgroup(memcg, flags);
2201 goto again;
2202 }
2203 *locked = true;
2204}
2205
2206void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2207{
2208 struct page_cgroup *pc = lookup_page_cgroup(page);
2209
2210 /*
2211 * It's guaranteed that pc->mem_cgroup never changes while
2212 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002213 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002214 */
2215 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2216}
2217
Greg Thelen2a7106f2011-01-13 15:47:37 -08002218void mem_cgroup_update_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -07002219 enum mem_cgroup_stat_index idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002220{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002221 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002222 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002223 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002224
Johannes Weinercfa44942012-01-12 17:18:38 -08002225 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002226 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002227
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002228 memcg = pc->mem_cgroup;
2229 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002230 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002231
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002232 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002233}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002234
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002235/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002236 * size of first charge trial. "32" comes from vmscan.c's magic value.
2237 * TODO: maybe necessary to use big numbers in big irons.
2238 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002239#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002240struct memcg_stock_pcp {
2241 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002242 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002243 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002244 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002245#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002246};
2247static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002248static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002249
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002250/**
2251 * consume_stock: Try to consume stocked charge on this cpu.
2252 * @memcg: memcg to consume from.
2253 * @nr_pages: how many pages to charge.
2254 *
2255 * The charges will only happen if @memcg matches the current cpu's memcg
2256 * stock, and at least @nr_pages are available in that stock. Failure to
2257 * service an allocation will refill the stock.
2258 *
2259 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002260 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002261static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002262{
2263 struct memcg_stock_pcp *stock;
2264 bool ret = true;
2265
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002266 if (nr_pages > CHARGE_BATCH)
2267 return false;
2268
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002269 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002270 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2271 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002272 else /* need to call res_counter_charge */
2273 ret = false;
2274 put_cpu_var(memcg_stock);
2275 return ret;
2276}
2277
2278/*
2279 * Returns stocks cached in percpu to res_counter and reset cached information.
2280 */
2281static void drain_stock(struct memcg_stock_pcp *stock)
2282{
2283 struct mem_cgroup *old = stock->cached;
2284
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002285 if (stock->nr_pages) {
2286 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2287
2288 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002289 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002290 res_counter_uncharge(&old->memsw, bytes);
2291 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002292 }
2293 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002294}
2295
2296/*
2297 * This must be called under preempt disabled or must be called by
2298 * a thread which is pinned to local cpu.
2299 */
2300static void drain_local_stock(struct work_struct *dummy)
2301{
2302 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2303 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002304 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002305}
2306
Michal Hockoe4777492013-02-22 16:35:40 -08002307static void __init memcg_stock_init(void)
2308{
2309 int cpu;
2310
2311 for_each_possible_cpu(cpu) {
2312 struct memcg_stock_pcp *stock =
2313 &per_cpu(memcg_stock, cpu);
2314 INIT_WORK(&stock->work, drain_local_stock);
2315 }
2316}
2317
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002318/*
2319 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002320 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002321 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002322static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002323{
2324 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2325
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002326 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002327 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002328 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002329 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002330 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002331 put_cpu_var(memcg_stock);
2332}
2333
2334/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002335 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002336 * of the hierarchy under it. sync flag says whether we should block
2337 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002338 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002339static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002340{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002341 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002342
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002343 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002344 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002345 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002346 for_each_online_cpu(cpu) {
2347 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002348 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002349
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002350 memcg = stock->cached;
2351 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002352 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002353 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002354 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002355 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2356 if (cpu == curcpu)
2357 drain_local_stock(&stock->work);
2358 else
2359 schedule_work_on(cpu, &stock->work);
2360 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002361 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002362 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002363
2364 if (!sync)
2365 goto out;
2366
2367 for_each_online_cpu(cpu) {
2368 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002369 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002370 flush_work(&stock->work);
2371 }
2372out:
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002373 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002374}
2375
2376/*
2377 * Tries to drain stocked charges in other cpus. This function is asynchronous
2378 * and just put a work per cpu for draining localy on each cpu. Caller can
2379 * expects some charges will be back to res_counter later but cannot wait for
2380 * it.
2381 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002382static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002383{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002384 /*
2385 * If someone calls draining, avoid adding more kworker runs.
2386 */
2387 if (!mutex_trylock(&percpu_charge_mutex))
2388 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002389 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002390 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002391}
2392
2393/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002394static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002395{
2396 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002397 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002398 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002399 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002400}
2401
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002402/*
2403 * This function drains percpu counter value from DEAD cpu and
2404 * move it to local cpu. Note that this function can be preempted.
2405 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002406static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002407{
2408 int i;
2409
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002410 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002411 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002412 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002413
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002414 per_cpu(memcg->stat->count[i], cpu) = 0;
2415 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002416 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002417 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002418 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002419
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002420 per_cpu(memcg->stat->events[i], cpu) = 0;
2421 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002422 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002423 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002424}
2425
Paul Gortmaker0db06282013-06-19 14:53:51 -04002426static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002427 unsigned long action,
2428 void *hcpu)
2429{
2430 int cpu = (unsigned long)hcpu;
2431 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002432 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002433
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002434 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002435 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002436
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002437 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002438 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002439
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002440 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002441 mem_cgroup_drain_pcp_counter(iter, cpu);
2442
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002443 stock = &per_cpu(memcg_stock, cpu);
2444 drain_stock(stock);
2445 return NOTIFY_OK;
2446}
2447
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002448
2449/* See __mem_cgroup_try_charge() for details */
2450enum {
2451 CHARGE_OK, /* success */
2452 CHARGE_RETRY, /* need to retry but retry is not bad */
2453 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2454 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002455};
2456
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002457static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002458 unsigned int nr_pages, unsigned int min_pages,
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002459 bool invoke_oom)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002460{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002461 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002462 struct mem_cgroup *mem_over_limit;
2463 struct res_counter *fail_res;
2464 unsigned long flags = 0;
2465 int ret;
2466
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002467 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002468
2469 if (likely(!ret)) {
2470 if (!do_swap_account)
2471 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002472 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002473 if (likely(!ret))
2474 return CHARGE_OK;
2475
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002476 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002477 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2478 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2479 } else
2480 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002481 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002482 * Never reclaim on behalf of optional batching, retry with a
2483 * single page instead.
2484 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002485 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002486 return CHARGE_RETRY;
2487
2488 if (!(gfp_mask & __GFP_WAIT))
2489 return CHARGE_WOULDBLOCK;
2490
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002491 if (gfp_mask & __GFP_NORETRY)
2492 return CHARGE_NOMEM;
2493
Johannes Weiner56600482012-01-12 17:17:59 -08002494 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002495 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002496 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002497 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002498 * Even though the limit is exceeded at this point, reclaim
2499 * may have been able to free some pages. Retry the charge
2500 * before killing the task.
2501 *
2502 * Only for regular pages, though: huge pages are rather
2503 * unlikely to succeed so close to the limit, and we fall back
2504 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002505 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002506 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002507 return CHARGE_RETRY;
2508
2509 /*
2510 * At task move, charge accounts can be doubly counted. So, it's
2511 * better to wait until the end of task_move if something is going on.
2512 */
2513 if (mem_cgroup_wait_acct_move(mem_over_limit))
2514 return CHARGE_RETRY;
2515
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002516 if (invoke_oom)
2517 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(csize));
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002518
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002519 return CHARGE_NOMEM;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002520}
2521
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002522/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002523 * __mem_cgroup_try_charge() does
2524 * 1. detect memcg to be charged against from passed *mm and *ptr,
2525 * 2. update res_counter
2526 * 3. call memory reclaim if necessary.
2527 *
2528 * In some special case, if the task is fatal, fatal_signal_pending() or
2529 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2530 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2531 * as possible without any hazards. 2: all pages should have a valid
2532 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2533 * pointer, that is treated as a charge to root_mem_cgroup.
2534 *
2535 * So __mem_cgroup_try_charge() will return
2536 * 0 ... on success, filling *ptr with a valid memcg pointer.
2537 * -ENOMEM ... charge failure because of resource limits.
2538 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2539 *
2540 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2541 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002542 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002543static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002544 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002545 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002546 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002547 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002548{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002549 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002550 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002551 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002552 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002553
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002554 /*
2555 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2556 * in system level. So, allow to go ahead dying process in addition to
2557 * MEMDIE process.
2558 */
2559 if (unlikely(test_thread_flag(TIF_MEMDIE)
2560 || fatal_signal_pending(current)))
2561 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002562
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002563 /*
Hugh Dickins3be912772008-02-07 00:14:19 -08002564 * We always charge the cgroup the mm_struct belongs to.
2565 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002566 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002567 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002568 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002569 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002570 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002571again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002572 if (*ptr) { /* css should be a valid one */
2573 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002574 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002575 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002576 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002577 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002578 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002579 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002580 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002581
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002582 rcu_read_lock();
2583 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002584 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002585 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002586 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002587 * race with swapoff. Then, we have small risk of mis-accouning.
2588 * But such kind of mis-account by race always happens because
2589 * we don't have cgroup_mutex(). It's overkill and we allo that
2590 * small race, here.
2591 * (*) swapoff at el will charge against mm-struct not against
2592 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002593 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002594 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002595 if (!memcg)
2596 memcg = root_mem_cgroup;
2597 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002598 rcu_read_unlock();
2599 goto done;
2600 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002601 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002602 /*
2603 * It seems dagerous to access memcg without css_get().
2604 * But considering how consume_stok works, it's not
2605 * necessary. If consume_stock success, some charges
2606 * from this memcg are cached on this cpu. So, we
2607 * don't need to call css_get()/css_tryget() before
2608 * calling consume_stock().
2609 */
2610 rcu_read_unlock();
2611 goto done;
2612 }
2613 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002614 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002615 rcu_read_unlock();
2616 goto again;
2617 }
2618 rcu_read_unlock();
2619 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002620
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002621 do {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002622 bool invoke_oom = oom && !nr_oom_retries;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002623
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002624 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002625 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002626 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002627 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002628 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002629
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002630 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch,
2631 nr_pages, invoke_oom);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002632 switch (ret) {
2633 case CHARGE_OK:
2634 break;
2635 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002636 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002637 css_put(&memcg->css);
2638 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002639 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002640 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002641 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002642 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002643 case CHARGE_NOMEM: /* OOM routine works */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002644 if (!oom || invoke_oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002645 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002646 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002647 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002648 nr_oom_retries--;
2649 break;
Balbir Singh66e17072008-02-07 00:13:56 -08002650 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002651 } while (ret != CHARGE_OK);
2652
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002653 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002654 refill_stock(memcg, batch - nr_pages);
2655 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002656done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002657 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002658 return 0;
2659nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002660 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002661 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002662bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002663 *ptr = root_mem_cgroup;
2664 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002665}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002666
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002667/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002668 * Somemtimes we have to undo a charge we got by try_charge().
2669 * This function is for that and do uncharge, put css's refcnt.
2670 * gotten by try_charge().
2671 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002672static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002673 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002674{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002675 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002676 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002677
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002678 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002679 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002680 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002681 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002682}
2683
2684/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002685 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2686 * This is useful when moving usage to parent cgroup.
2687 */
2688static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2689 unsigned int nr_pages)
2690{
2691 unsigned long bytes = nr_pages * PAGE_SIZE;
2692
2693 if (mem_cgroup_is_root(memcg))
2694 return;
2695
2696 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2697 if (do_swap_account)
2698 res_counter_uncharge_until(&memcg->memsw,
2699 memcg->memsw.parent, bytes);
2700}
2701
2702/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002703 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002704 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2705 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2706 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002707 */
2708static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2709{
2710 struct cgroup_subsys_state *css;
2711
2712 /* ID 0 is unused ID */
2713 if (!id)
2714 return NULL;
2715 css = css_lookup(&mem_cgroup_subsys, id);
2716 if (!css)
2717 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002718 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002719}
2720
Wu Fengguange42d9d52009-12-16 12:19:59 +01002721struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002722{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002723 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002724 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002725 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002726 swp_entry_t ent;
2727
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002728 VM_BUG_ON(!PageLocked(page));
2729
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002730 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f632009-04-30 15:08:11 -07002731 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002732 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002733 memcg = pc->mem_cgroup;
2734 if (memcg && !css_tryget(&memcg->css))
2735 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002736 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002737 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002738 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002739 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002740 memcg = mem_cgroup_lookup(id);
2741 if (memcg && !css_tryget(&memcg->css))
2742 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002743 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002744 }
Daisuke Nishimurac0bd3f632009-04-30 15:08:11 -07002745 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002746 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002747}
2748
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002749static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002750 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002751 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002752 enum charge_type ctype,
2753 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002754{
Johannes Weinerce587e62012-04-24 20:22:33 +02002755 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002756 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002757 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002758 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002759 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002760
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002761 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002762 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002763 /*
2764 * we don't need page_cgroup_lock about tail pages, becase they are not
2765 * accessed by any other context at this point.
2766 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002767
2768 /*
2769 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2770 * may already be on some other mem_cgroup's LRU. Take care of it.
2771 */
2772 if (lrucare) {
2773 zone = page_zone(page);
2774 spin_lock_irq(&zone->lru_lock);
2775 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002776 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002777 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002778 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002779 was_on_lru = true;
2780 }
2781 }
2782
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002783 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002784 /*
2785 * We access a page_cgroup asynchronously without lock_page_cgroup().
2786 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2787 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2788 * before USED bit, we need memory barrier here.
2789 * See mem_cgroup_add_lru_list(), etc.
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002790 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002791 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002792 SetPageCgroupUsed(pc);
Hugh Dickins3be912772008-02-07 00:14:19 -08002793
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002794 if (lrucare) {
2795 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002796 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002797 VM_BUG_ON(PageLRU(page));
2798 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002799 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002800 }
2801 spin_unlock_irq(&zone->lru_lock);
2802 }
2803
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002804 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002805 anon = true;
2806 else
2807 anon = false;
2808
David Rientjesb070e652013-05-07 16:18:09 -07002809 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002810 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002811
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002812 /*
Michal Hockoe8831102013-09-12 15:13:23 -07002813 * "charge_statistics" updated event counter.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002814 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002815 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002816}
2817
Glauber Costa7cf27982012-12-18 14:22:55 -08002818static DEFINE_MUTEX(set_limit_mutex);
2819
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002820#ifdef CONFIG_MEMCG_KMEM
2821static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2822{
2823 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2824 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2825}
2826
Glauber Costa1f458cb2012-12-18 14:22:50 -08002827/*
2828 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2829 * in the memcg_cache_params struct.
2830 */
2831static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2832{
2833 struct kmem_cache *cachep;
2834
2835 VM_BUG_ON(p->is_root_cache);
2836 cachep = p->root_cache;
2837 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2838}
2839
Glauber Costa749c5412012-12-18 14:23:01 -08002840#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002841static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2842 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002843{
Tejun Heo182446d2013-08-08 20:11:24 -04002844 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002845 struct memcg_cache_params *params;
2846
2847 if (!memcg_can_account_kmem(memcg))
2848 return -EIO;
2849
2850 print_slabinfo_header(m);
2851
2852 mutex_lock(&memcg->slab_caches_mutex);
2853 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2854 cache_show(memcg_params_to_cache(params), m);
2855 mutex_unlock(&memcg->slab_caches_mutex);
2856
2857 return 0;
2858}
2859#endif
2860
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002861static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2862{
2863 struct res_counter *fail_res;
2864 struct mem_cgroup *_memcg;
2865 int ret = 0;
2866 bool may_oom;
2867
2868 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2869 if (ret)
2870 return ret;
2871
2872 /*
2873 * Conditions under which we can wait for the oom_killer. Those are
2874 * the same conditions tested by the core page allocator
2875 */
2876 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2877
2878 _memcg = memcg;
2879 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2880 &_memcg, may_oom);
2881
2882 if (ret == -EINTR) {
2883 /*
2884 * __mem_cgroup_try_charge() chosed to bypass to root due to
2885 * OOM kill or fatal signal. Since our only options are to
2886 * either fail the allocation or charge it to this cgroup, do
2887 * it as a temporary condition. But we can't fail. From a
2888 * kmem/slab perspective, the cache has already been selected,
2889 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2890 * our minds.
2891 *
2892 * This condition will only trigger if the task entered
2893 * memcg_charge_kmem in a sane state, but was OOM-killed during
2894 * __mem_cgroup_try_charge() above. Tasks that were already
2895 * dying when the allocation triggers should have been already
2896 * directed to the root cgroup in memcontrol.h
2897 */
2898 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2899 if (do_swap_account)
2900 res_counter_charge_nofail(&memcg->memsw, size,
2901 &fail_res);
2902 ret = 0;
2903 } else if (ret)
2904 res_counter_uncharge(&memcg->kmem, size);
2905
2906 return ret;
2907}
2908
2909static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2910{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002911 res_counter_uncharge(&memcg->res, size);
2912 if (do_swap_account)
2913 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002914
2915 /* Not down to 0 */
2916 if (res_counter_uncharge(&memcg->kmem, size))
2917 return;
2918
Li Zefan10d5ebf2013-07-08 16:00:33 -07002919 /*
2920 * Releases a reference taken in kmem_cgroup_css_offline in case
2921 * this last uncharge is racing with the offlining code or it is
2922 * outliving the memcg existence.
2923 *
2924 * The memory barrier imposed by test&clear is paired with the
2925 * explicit one in memcg_kmem_mark_dead().
2926 */
Glauber Costa7de37682012-12-18 14:22:07 -08002927 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002928 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002929}
2930
Glauber Costa2633d7a2012-12-18 14:22:34 -08002931void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2932{
2933 if (!memcg)
2934 return;
2935
2936 mutex_lock(&memcg->slab_caches_mutex);
2937 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2938 mutex_unlock(&memcg->slab_caches_mutex);
2939}
2940
2941/*
2942 * helper for acessing a memcg's index. It will be used as an index in the
2943 * child cache array in kmem_cache, and also to derive its name. This function
2944 * will return -1 when this is not a kmem-limited memcg.
2945 */
2946int memcg_cache_id(struct mem_cgroup *memcg)
2947{
2948 return memcg ? memcg->kmemcg_id : -1;
2949}
2950
Glauber Costa55007d82012-12-18 14:22:38 -08002951/*
2952 * This ends up being protected by the set_limit mutex, during normal
2953 * operation, because that is its main call site.
2954 *
2955 * But when we create a new cache, we can call this as well if its parent
2956 * is kmem-limited. That will have to hold set_limit_mutex as well.
2957 */
2958int memcg_update_cache_sizes(struct mem_cgroup *memcg)
2959{
2960 int num, ret;
2961
2962 num = ida_simple_get(&kmem_limited_groups,
2963 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2964 if (num < 0)
2965 return num;
2966 /*
2967 * After this point, kmem_accounted (that we test atomically in
2968 * the beginning of this conditional), is no longer 0. This
2969 * guarantees only one process will set the following boolean
2970 * to true. We don't need test_and_set because we're protected
2971 * by the set_limit_mutex anyway.
2972 */
2973 memcg_kmem_set_activated(memcg);
2974
2975 ret = memcg_update_all_caches(num+1);
2976 if (ret) {
2977 ida_simple_remove(&kmem_limited_groups, num);
2978 memcg_kmem_clear_activated(memcg);
2979 return ret;
2980 }
2981
2982 memcg->kmemcg_id = num;
2983 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
2984 mutex_init(&memcg->slab_caches_mutex);
2985 return 0;
2986}
2987
2988static size_t memcg_caches_array_size(int num_groups)
2989{
2990 ssize_t size;
2991 if (num_groups <= 0)
2992 return 0;
2993
2994 size = 2 * num_groups;
2995 if (size < MEMCG_CACHES_MIN_SIZE)
2996 size = MEMCG_CACHES_MIN_SIZE;
2997 else if (size > MEMCG_CACHES_MAX_SIZE)
2998 size = MEMCG_CACHES_MAX_SIZE;
2999
3000 return size;
3001}
3002
3003/*
3004 * We should update the current array size iff all caches updates succeed. This
3005 * can only be done from the slab side. The slab mutex needs to be held when
3006 * calling this.
3007 */
3008void memcg_update_array_size(int num)
3009{
3010 if (num > memcg_limited_groups_array_size)
3011 memcg_limited_groups_array_size = memcg_caches_array_size(num);
3012}
3013
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08003014static void kmem_cache_destroy_work_func(struct work_struct *w);
3015
Glauber Costa55007d82012-12-18 14:22:38 -08003016int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
3017{
3018 struct memcg_cache_params *cur_params = s->memcg_params;
3019
3020 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
3021
3022 if (num_groups > memcg_limited_groups_array_size) {
3023 int i;
3024 ssize_t size = memcg_caches_array_size(num_groups);
3025
3026 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003027 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003028
3029 s->memcg_params = kzalloc(size, GFP_KERNEL);
3030 if (!s->memcg_params) {
3031 s->memcg_params = cur_params;
3032 return -ENOMEM;
3033 }
3034
3035 s->memcg_params->is_root_cache = true;
3036
3037 /*
3038 * There is the chance it will be bigger than
3039 * memcg_limited_groups_array_size, if we failed an allocation
3040 * in a cache, in which case all caches updated before it, will
3041 * have a bigger array.
3042 *
3043 * But if that is the case, the data after
3044 * memcg_limited_groups_array_size is certainly unused
3045 */
3046 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3047 if (!cur_params->memcg_caches[i])
3048 continue;
3049 s->memcg_params->memcg_caches[i] =
3050 cur_params->memcg_caches[i];
3051 }
3052
3053 /*
3054 * Ideally, we would wait until all caches succeed, and only
3055 * then free the old one. But this is not worth the extra
3056 * pointer per-cache we'd have to have for this.
3057 *
3058 * It is not a big deal if some caches are left with a size
3059 * bigger than the others. And all updates will reset this
3060 * anyway.
3061 */
3062 kfree(cur_params);
3063 }
3064 return 0;
3065}
3066
Glauber Costa943a4512012-12-18 14:23:03 -08003067int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3068 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08003069{
Andrey Vagin90c7a792013-09-11 14:22:18 -07003070 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003071
3072 if (!memcg_kmem_enabled())
3073 return 0;
3074
Andrey Vagin90c7a792013-09-11 14:22:18 -07003075 if (!memcg) {
3076 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003077 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003078 } else
3079 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08003080
Glauber Costa2633d7a2012-12-18 14:22:34 -08003081 s->memcg_params = kzalloc(size, GFP_KERNEL);
3082 if (!s->memcg_params)
3083 return -ENOMEM;
3084
Glauber Costa943a4512012-12-18 14:23:03 -08003085 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08003086 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08003087 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07003088 INIT_WORK(&s->memcg_params->destroy,
3089 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08003090 } else
3091 s->memcg_params->is_root_cache = true;
3092
Glauber Costa2633d7a2012-12-18 14:22:34 -08003093 return 0;
3094}
3095
3096void memcg_release_cache(struct kmem_cache *s)
3097{
Glauber Costad7f25f82012-12-18 14:22:40 -08003098 struct kmem_cache *root;
3099 struct mem_cgroup *memcg;
3100 int id;
3101
3102 /*
3103 * This happens, for instance, when a root cache goes away before we
3104 * add any memcg.
3105 */
3106 if (!s->memcg_params)
3107 return;
3108
3109 if (s->memcg_params->is_root_cache)
3110 goto out;
3111
3112 memcg = s->memcg_params->memcg;
3113 id = memcg_cache_id(memcg);
3114
3115 root = s->memcg_params->root_cache;
3116 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08003117
3118 mutex_lock(&memcg->slab_caches_mutex);
3119 list_del(&s->memcg_params->list);
3120 mutex_unlock(&memcg->slab_caches_mutex);
3121
Li Zefan20f05312013-07-08 16:00:31 -07003122 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003123out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08003124 kfree(s->memcg_params);
3125}
3126
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003127/*
3128 * During the creation a new cache, we need to disable our accounting mechanism
3129 * altogether. This is true even if we are not creating, but rather just
3130 * enqueing new caches to be created.
3131 *
3132 * This is because that process will trigger allocations; some visible, like
3133 * explicit kmallocs to auxiliary data structures, name strings and internal
3134 * cache structures; some well concealed, like INIT_WORK() that can allocate
3135 * objects during debug.
3136 *
3137 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3138 * to it. This may not be a bounded recursion: since the first cache creation
3139 * failed to complete (waiting on the allocation), we'll just try to create the
3140 * cache again, failing at the same point.
3141 *
3142 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3143 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3144 * inside the following two functions.
3145 */
3146static inline void memcg_stop_kmem_account(void)
3147{
3148 VM_BUG_ON(!current->mm);
3149 current->memcg_kmem_skip_account++;
3150}
3151
3152static inline void memcg_resume_kmem_account(void)
3153{
3154 VM_BUG_ON(!current->mm);
3155 current->memcg_kmem_skip_account--;
3156}
3157
Glauber Costa1f458cb2012-12-18 14:22:50 -08003158static void kmem_cache_destroy_work_func(struct work_struct *w)
3159{
3160 struct kmem_cache *cachep;
3161 struct memcg_cache_params *p;
3162
3163 p = container_of(w, struct memcg_cache_params, destroy);
3164
3165 cachep = memcg_params_to_cache(p);
3166
Glauber Costa22933152012-12-18 14:22:59 -08003167 /*
3168 * If we get down to 0 after shrink, we could delete right away.
3169 * However, memcg_release_pages() already puts us back in the workqueue
3170 * in that case. If we proceed deleting, we'll get a dangling
3171 * reference, and removing the object from the workqueue in that case
3172 * is unnecessary complication. We are not a fast path.
3173 *
3174 * Note that this case is fundamentally different from racing with
3175 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3176 * kmem_cache_shrink, not only we would be reinserting a dead cache
3177 * into the queue, but doing so from inside the worker racing to
3178 * destroy it.
3179 *
3180 * So if we aren't down to zero, we'll just schedule a worker and try
3181 * again
3182 */
3183 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3184 kmem_cache_shrink(cachep);
3185 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3186 return;
3187 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003188 kmem_cache_destroy(cachep);
3189}
3190
3191void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3192{
3193 if (!cachep->memcg_params->dead)
3194 return;
3195
3196 /*
Glauber Costa22933152012-12-18 14:22:59 -08003197 * There are many ways in which we can get here.
3198 *
3199 * We can get to a memory-pressure situation while the delayed work is
3200 * still pending to run. The vmscan shrinkers can then release all
3201 * cache memory and get us to destruction. If this is the case, we'll
3202 * be executed twice, which is a bug (the second time will execute over
3203 * bogus data). In this case, cancelling the work should be fine.
3204 *
3205 * But we can also get here from the worker itself, if
3206 * kmem_cache_shrink is enough to shake all the remaining objects and
3207 * get the page count to 0. In this case, we'll deadlock if we try to
3208 * cancel the work (the worker runs with an internal lock held, which
3209 * is the same lock we would hold for cancel_work_sync().)
3210 *
3211 * Since we can't possibly know who got us here, just refrain from
3212 * running if there is already work pending
3213 */
3214 if (work_pending(&cachep->memcg_params->destroy))
3215 return;
3216 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003217 * We have to defer the actual destroying to a workqueue, because
3218 * we might currently be in a context that cannot sleep.
3219 */
3220 schedule_work(&cachep->memcg_params->destroy);
3221}
3222
Glauber Costad7f25f82012-12-18 14:22:40 -08003223/*
3224 * This lock protects updaters, not readers. We want readers to be as fast as
3225 * they can, and they will either see NULL or a valid cache value. Our model
3226 * allow them to see NULL, in which case the root memcg will be selected.
3227 *
3228 * We need this lock because multiple allocations to the same cache from a non
3229 * will span more than one worker. Only one of them can create the cache.
3230 */
3231static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003232
3233/*
3234 * Called with memcg_cache_mutex held
3235 */
3236static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3237 struct kmem_cache *s)
3238{
3239 struct kmem_cache *new;
3240 static char *tmp_name = NULL;
3241
3242 lockdep_assert_held(&memcg_cache_mutex);
3243
3244 /*
3245 * kmem_cache_create_memcg duplicates the given name and
3246 * cgroup_name for this name requires RCU context.
3247 * This static temporary buffer is used to prevent from
3248 * pointless shortliving allocation.
3249 */
3250 if (!tmp_name) {
3251 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3252 if (!tmp_name)
3253 return NULL;
3254 }
3255
3256 rcu_read_lock();
3257 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3258 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3259 rcu_read_unlock();
3260
3261 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3262 (s->flags & ~SLAB_PANIC), s->ctor, s);
3263
3264 if (new)
3265 new->allocflags |= __GFP_KMEMCG;
3266
3267 return new;
3268}
3269
Glauber Costad7f25f82012-12-18 14:22:40 -08003270static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3271 struct kmem_cache *cachep)
3272{
3273 struct kmem_cache *new_cachep;
3274 int idx;
3275
3276 BUG_ON(!memcg_can_account_kmem(memcg));
3277
3278 idx = memcg_cache_id(memcg);
3279
3280 mutex_lock(&memcg_cache_mutex);
3281 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003282 if (new_cachep) {
3283 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003284 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003285 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003286
3287 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003288 if (new_cachep == NULL) {
3289 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003290 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003291 goto out;
3292 }
3293
Glauber Costa1f458cb2012-12-18 14:22:50 -08003294 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003295
3296 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3297 /*
3298 * the readers won't lock, make sure everybody sees the updated value,
3299 * so they won't put stuff in the queue again for no reason
3300 */
3301 wmb();
3302out:
3303 mutex_unlock(&memcg_cache_mutex);
3304 return new_cachep;
3305}
3306
Glauber Costa7cf27982012-12-18 14:22:55 -08003307void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3308{
3309 struct kmem_cache *c;
3310 int i;
3311
3312 if (!s->memcg_params)
3313 return;
3314 if (!s->memcg_params->is_root_cache)
3315 return;
3316
3317 /*
3318 * If the cache is being destroyed, we trust that there is no one else
3319 * requesting objects from it. Even if there are, the sanity checks in
3320 * kmem_cache_destroy should caught this ill-case.
3321 *
3322 * Still, we don't want anyone else freeing memcg_caches under our
3323 * noses, which can happen if a new memcg comes to life. As usual,
3324 * we'll take the set_limit_mutex to protect ourselves against this.
3325 */
3326 mutex_lock(&set_limit_mutex);
3327 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3328 c = s->memcg_params->memcg_caches[i];
3329 if (!c)
3330 continue;
3331
3332 /*
3333 * We will now manually delete the caches, so to avoid races
3334 * we need to cancel all pending destruction workers and
3335 * proceed with destruction ourselves.
3336 *
3337 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3338 * and that could spawn the workers again: it is likely that
3339 * the cache still have active pages until this very moment.
3340 * This would lead us back to mem_cgroup_destroy_cache.
3341 *
3342 * But that will not execute at all if the "dead" flag is not
3343 * set, so flip it down to guarantee we are in control.
3344 */
3345 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003346 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003347 kmem_cache_destroy(c);
3348 }
3349 mutex_unlock(&set_limit_mutex);
3350}
3351
Glauber Costad7f25f82012-12-18 14:22:40 -08003352struct create_work {
3353 struct mem_cgroup *memcg;
3354 struct kmem_cache *cachep;
3355 struct work_struct work;
3356};
3357
Glauber Costa1f458cb2012-12-18 14:22:50 -08003358static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3359{
3360 struct kmem_cache *cachep;
3361 struct memcg_cache_params *params;
3362
3363 if (!memcg_kmem_is_active(memcg))
3364 return;
3365
3366 mutex_lock(&memcg->slab_caches_mutex);
3367 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3368 cachep = memcg_params_to_cache(params);
3369 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003370 schedule_work(&cachep->memcg_params->destroy);
3371 }
3372 mutex_unlock(&memcg->slab_caches_mutex);
3373}
3374
Glauber Costad7f25f82012-12-18 14:22:40 -08003375static void memcg_create_cache_work_func(struct work_struct *w)
3376{
3377 struct create_work *cw;
3378
3379 cw = container_of(w, struct create_work, work);
3380 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003381 kfree(cw);
3382}
3383
3384/*
3385 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003386 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003387static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3388 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003389{
3390 struct create_work *cw;
3391
3392 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003393 if (cw == NULL) {
3394 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003395 return;
3396 }
3397
3398 cw->memcg = memcg;
3399 cw->cachep = cachep;
3400
3401 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3402 schedule_work(&cw->work);
3403}
3404
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003405static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3406 struct kmem_cache *cachep)
3407{
3408 /*
3409 * We need to stop accounting when we kmalloc, because if the
3410 * corresponding kmalloc cache is not yet created, the first allocation
3411 * in __memcg_create_cache_enqueue will recurse.
3412 *
3413 * However, it is better to enclose the whole function. Depending on
3414 * the debugging options enabled, INIT_WORK(), for instance, can
3415 * trigger an allocation. This too, will make us recurse. Because at
3416 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3417 * the safest choice is to do it like this, wrapping the whole function.
3418 */
3419 memcg_stop_kmem_account();
3420 __memcg_create_cache_enqueue(memcg, cachep);
3421 memcg_resume_kmem_account();
3422}
Glauber Costad7f25f82012-12-18 14:22:40 -08003423/*
3424 * Return the kmem_cache we're supposed to use for a slab allocation.
3425 * We try to use the current memcg's version of the cache.
3426 *
3427 * If the cache does not exist yet, if we are the first user of it,
3428 * we either create it immediately, if possible, or create it asynchronously
3429 * in a workqueue.
3430 * In the latter case, we will let the current allocation go through with
3431 * the original cache.
3432 *
3433 * Can't be called in interrupt context or from kernel threads.
3434 * This function needs to be called with rcu_read_lock() held.
3435 */
3436struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3437 gfp_t gfp)
3438{
3439 struct mem_cgroup *memcg;
3440 int idx;
3441
3442 VM_BUG_ON(!cachep->memcg_params);
3443 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3444
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003445 if (!current->mm || current->memcg_kmem_skip_account)
3446 return cachep;
3447
Glauber Costad7f25f82012-12-18 14:22:40 -08003448 rcu_read_lock();
3449 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003450
3451 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003452 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003453
3454 idx = memcg_cache_id(memcg);
3455
3456 /*
3457 * barrier to mare sure we're always seeing the up to date value. The
3458 * code updating memcg_caches will issue a write barrier to match this.
3459 */
3460 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003461 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3462 cachep = cachep->memcg_params->memcg_caches[idx];
3463 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003464 }
3465
Li Zefanca0dde92013-04-29 15:08:57 -07003466 /* The corresponding put will be done in the workqueue. */
3467 if (!css_tryget(&memcg->css))
3468 goto out;
3469 rcu_read_unlock();
3470
3471 /*
3472 * If we are in a safe context (can wait, and not in interrupt
3473 * context), we could be be predictable and return right away.
3474 * This would guarantee that the allocation being performed
3475 * already belongs in the new cache.
3476 *
3477 * However, there are some clashes that can arrive from locking.
3478 * For instance, because we acquire the slab_mutex while doing
3479 * kmem_cache_dup, this means no further allocation could happen
3480 * with the slab_mutex held.
3481 *
3482 * Also, because cache creation issue get_online_cpus(), this
3483 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3484 * that ends up reversed during cpu hotplug. (cpuset allocates
3485 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3486 * better to defer everything.
3487 */
3488 memcg_create_cache_enqueue(memcg, cachep);
3489 return cachep;
3490out:
3491 rcu_read_unlock();
3492 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003493}
3494EXPORT_SYMBOL(__memcg_kmem_get_cache);
3495
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003496/*
3497 * We need to verify if the allocation against current->mm->owner's memcg is
3498 * possible for the given order. But the page is not allocated yet, so we'll
3499 * need a further commit step to do the final arrangements.
3500 *
3501 * It is possible for the task to switch cgroups in this mean time, so at
3502 * commit time, we can't rely on task conversion any longer. We'll then use
3503 * the handle argument to return to the caller which cgroup we should commit
3504 * against. We could also return the memcg directly and avoid the pointer
3505 * passing, but a boolean return value gives better semantics considering
3506 * the compiled-out case as well.
3507 *
3508 * Returning true means the allocation is possible.
3509 */
3510bool
3511__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3512{
3513 struct mem_cgroup *memcg;
3514 int ret;
3515
3516 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003517
3518 /*
3519 * Disabling accounting is only relevant for some specific memcg
3520 * internal allocations. Therefore we would initially not have such
3521 * check here, since direct calls to the page allocator that are marked
3522 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3523 * concerned with cache allocations, and by having this test at
3524 * memcg_kmem_get_cache, we are already able to relay the allocation to
3525 * the root cache and bypass the memcg cache altogether.
3526 *
3527 * There is one exception, though: the SLUB allocator does not create
3528 * large order caches, but rather service large kmallocs directly from
3529 * the page allocator. Therefore, the following sequence when backed by
3530 * the SLUB allocator:
3531 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003532 * memcg_stop_kmem_account();
3533 * kmalloc(<large_number>)
3534 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003535 *
3536 * would effectively ignore the fact that we should skip accounting,
3537 * since it will drive us directly to this function without passing
3538 * through the cache selector memcg_kmem_get_cache. Such large
3539 * allocations are extremely rare but can happen, for instance, for the
3540 * cache arrays. We bring this test here.
3541 */
3542 if (!current->mm || current->memcg_kmem_skip_account)
3543 return true;
3544
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003545 memcg = try_get_mem_cgroup_from_mm(current->mm);
3546
3547 /*
3548 * very rare case described in mem_cgroup_from_task. Unfortunately there
3549 * isn't much we can do without complicating this too much, and it would
3550 * be gfp-dependent anyway. Just let it go
3551 */
3552 if (unlikely(!memcg))
3553 return true;
3554
3555 if (!memcg_can_account_kmem(memcg)) {
3556 css_put(&memcg->css);
3557 return true;
3558 }
3559
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003560 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3561 if (!ret)
3562 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003563
3564 css_put(&memcg->css);
3565 return (ret == 0);
3566}
3567
3568void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3569 int order)
3570{
3571 struct page_cgroup *pc;
3572
3573 VM_BUG_ON(mem_cgroup_is_root(memcg));
3574
3575 /* The page allocation failed. Revert */
3576 if (!page) {
3577 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003578 return;
3579 }
3580
3581 pc = lookup_page_cgroup(page);
3582 lock_page_cgroup(pc);
3583 pc->mem_cgroup = memcg;
3584 SetPageCgroupUsed(pc);
3585 unlock_page_cgroup(pc);
3586}
3587
3588void __memcg_kmem_uncharge_pages(struct page *page, int order)
3589{
3590 struct mem_cgroup *memcg = NULL;
3591 struct page_cgroup *pc;
3592
3593
3594 pc = lookup_page_cgroup(page);
3595 /*
3596 * Fast unlocked return. Theoretically might have changed, have to
3597 * check again after locking.
3598 */
3599 if (!PageCgroupUsed(pc))
3600 return;
3601
3602 lock_page_cgroup(pc);
3603 if (PageCgroupUsed(pc)) {
3604 memcg = pc->mem_cgroup;
3605 ClearPageCgroupUsed(pc);
3606 }
3607 unlock_page_cgroup(pc);
3608
3609 /*
3610 * We trust that only if there is a memcg associated with the page, it
3611 * is a valid allocation
3612 */
3613 if (!memcg)
3614 return;
3615
3616 VM_BUG_ON(mem_cgroup_is_root(memcg));
3617 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003618}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003619#else
3620static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3621{
3622}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003623#endif /* CONFIG_MEMCG_KMEM */
3624
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003625#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3626
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003627#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003628/*
3629 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003630 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3631 * charge/uncharge will be never happen and move_account() is done under
3632 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003633 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003634void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003635{
3636 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003637 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003638 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003639 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003640
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003641 if (mem_cgroup_disabled())
3642 return;
David Rientjesb070e652013-05-07 16:18:09 -07003643
3644 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003645 for (i = 1; i < HPAGE_PMD_NR; i++) {
3646 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003647 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003648 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003649 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3650 }
David Rientjesb070e652013-05-07 16:18:09 -07003651 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3652 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003653}
Hugh Dickins12d27102012-01-12 17:19:52 -08003654#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003655
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003656/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003657 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003658 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003659 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003660 * @pc: page_cgroup of the page.
3661 * @from: mem_cgroup which the page is moved from.
3662 * @to: mem_cgroup which the page is moved to. @from != @to.
3663 *
3664 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003665 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003666 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003667 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003668 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3669 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003670 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003671static int mem_cgroup_move_account(struct page *page,
3672 unsigned int nr_pages,
3673 struct page_cgroup *pc,
3674 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003675 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003676{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003677 unsigned long flags;
3678 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003679 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003680
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003681 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003682 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003683 /*
3684 * The page is isolated from LRU. So, collapse function
3685 * will not handle this page. But page splitting can happen.
3686 * Do this check under compound_page_lock(). The caller should
3687 * hold it.
3688 */
3689 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003690 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003691 goto out;
3692
3693 lock_page_cgroup(pc);
3694
3695 ret = -EINVAL;
3696 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3697 goto unlock;
3698
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003699 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003700
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003701 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08003702 /* Update mapped_file data for mem_cgroup */
3703 preempt_disable();
3704 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3705 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3706 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07003707 }
David Rientjesb070e652013-05-07 16:18:09 -07003708 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003709
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003710 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003711 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003712 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003713 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003714 ret = 0;
3715unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003716 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003717 /*
3718 * check events
3719 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003720 memcg_check_events(to, page);
3721 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003722out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003723 return ret;
3724}
3725
Michal Hocko2ef37d32012-10-26 13:37:30 +02003726/**
3727 * mem_cgroup_move_parent - moves page to the parent group
3728 * @page: the page to move
3729 * @pc: page_cgroup of the page
3730 * @child: page's cgroup
3731 *
3732 * move charges to its parent or the root cgroup if the group has no
3733 * parent (aka use_hierarchy==0).
3734 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3735 * mem_cgroup_move_account fails) the failure is always temporary and
3736 * it signals a race with a page removal/uncharge or migration. In the
3737 * first case the page is on the way out and it will vanish from the LRU
3738 * on the next attempt and the call should be retried later.
3739 * Isolation from the LRU fails only if page has been isolated from
3740 * the LRU since we looked at it and that usually means either global
3741 * reclaim or migration going on. The page will either get back to the
3742 * LRU or vanish.
3743 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3744 * (!PageCgroupUsed) or moved to a different group. The page will
3745 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003746 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003747static int mem_cgroup_move_parent(struct page *page,
3748 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003749 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003750{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003751 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003752 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003753 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003754 int ret;
3755
Michal Hockod8423012012-10-26 13:37:29 +02003756 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003757
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003758 ret = -EBUSY;
3759 if (!get_page_unless_zero(page))
3760 goto out;
3761 if (isolate_lru_page(page))
3762 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003763
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003764 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003765
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003766 parent = parent_mem_cgroup(child);
3767 /*
3768 * If no parent, move charges to root cgroup.
3769 */
3770 if (!parent)
3771 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003772
Michal Hocko2ef37d32012-10-26 13:37:30 +02003773 if (nr_pages > 1) {
3774 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003775 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003776 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003777
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003778 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003779 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003780 if (!ret)
3781 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003782
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003783 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003784 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003785 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003786put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003787 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003788out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003789 return ret;
3790}
3791
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003792/*
3793 * Charge the memory controller for page usage.
3794 * Return
3795 * 0 if the charge was successful
3796 * < 0 if the cgroup is over its limit
3797 */
3798static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003799 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003800{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003801 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003802 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003803 bool oom = true;
3804 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003805
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003806 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003807 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003808 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003809 /*
3810 * Never OOM-kill a process for a huge page. The
3811 * fault handler will fall back to regular pages.
3812 */
3813 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003814 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003815
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003816 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003817 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003818 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003819 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003820 return 0;
3821}
3822
3823int mem_cgroup_newpage_charge(struct page *page,
3824 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003825{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003826 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003827 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003828 VM_BUG_ON(page_mapped(page));
3829 VM_BUG_ON(page->mapping && !PageAnon(page));
3830 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003831 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003832 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003833}
3834
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003835/*
3836 * While swap-in, try_charge -> commit or cancel, the page is locked.
3837 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003838 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003839 * "commit()" or removed by "cancel()"
3840 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003841static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3842 struct page *page,
3843 gfp_t mask,
3844 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003845{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003846 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003847 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003848 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003849
Johannes Weiner90deb782012-07-31 16:45:47 -07003850 pc = lookup_page_cgroup(page);
3851 /*
3852 * Every swap fault against a single page tries to charge the
3853 * page, bail as early as possible. shmem_unuse() encounters
3854 * already charged pages, too. The USED bit is protected by
3855 * the page lock, which serializes swap cache removal, which
3856 * in turn serializes uncharging.
3857 */
3858 if (PageCgroupUsed(pc))
3859 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003860 if (!do_swap_account)
3861 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003862 memcg = try_get_mem_cgroup_from_page(page);
3863 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003864 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003865 *memcgp = memcg;
3866 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003867 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003868 if (ret == -EINTR)
3869 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003870 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003871charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003872 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3873 if (ret == -EINTR)
3874 ret = 0;
3875 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003876}
3877
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003878int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3879 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3880{
3881 *memcgp = NULL;
3882 if (mem_cgroup_disabled())
3883 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07003884 /*
3885 * A racing thread's fault, or swapoff, may have already
3886 * updated the pte, and even removed page from swap cache: in
3887 * those cases unuse_pte()'s pte_same() test will fail; but
3888 * there's also a KSM case which does need to charge the page.
3889 */
3890 if (!PageSwapCache(page)) {
3891 int ret;
3892
3893 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3894 if (ret == -EINTR)
3895 ret = 0;
3896 return ret;
3897 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003898 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3899}
3900
Johannes Weiner827a03d2012-07-31 16:45:36 -07003901void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3902{
3903 if (mem_cgroup_disabled())
3904 return;
3905 if (!memcg)
3906 return;
3907 __mem_cgroup_cancel_charge(memcg, 1);
3908}
3909
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003910static void
Johannes Weiner72835c82012-01-12 17:18:32 -08003911__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003912 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003913{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003914 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003915 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08003916 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003917 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07003918
Johannes Weinerce587e62012-04-24 20:22:33 +02003919 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003920 /*
3921 * Now swap is on-memory. This means this page may be
3922 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003923 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3924 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3925 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003926 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003927 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003928 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07003929 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003930 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003931}
3932
Johannes Weiner72835c82012-01-12 17:18:32 -08003933void mem_cgroup_commit_charge_swapin(struct page *page,
3934 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003935{
Johannes Weiner72835c82012-01-12 17:18:32 -08003936 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003937 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003938}
3939
Johannes Weiner827a03d2012-07-31 16:45:36 -07003940int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3941 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003942{
Johannes Weiner827a03d2012-07-31 16:45:36 -07003943 struct mem_cgroup *memcg = NULL;
3944 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3945 int ret;
3946
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003947 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07003948 return 0;
3949 if (PageCompound(page))
3950 return 0;
3951
Johannes Weiner827a03d2012-07-31 16:45:36 -07003952 if (!PageSwapCache(page))
3953 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3954 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003955 ret = __mem_cgroup_try_charge_swapin(mm, page,
3956 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07003957 if (!ret)
3958 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3959 }
3960 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003961}
3962
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003963static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003964 unsigned int nr_pages,
3965 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003966{
3967 struct memcg_batch_info *batch = NULL;
3968 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003969
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003970 /* If swapout, usage of swap doesn't decrease */
3971 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3972 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003973
3974 batch = &current->memcg_batch;
3975 /*
3976 * In usual, we do css_get() when we remember memcg pointer.
3977 * But in this case, we keep res->usage until end of a series of
3978 * uncharges. Then, it's ok to ignore memcg's refcnt.
3979 */
3980 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003981 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003982 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003983 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003984 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003985 * the same cgroup and we have chance to coalesce uncharges.
3986 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3987 * because we want to do uncharge as soon as possible.
3988 */
3989
3990 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
3991 goto direct_uncharge;
3992
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003993 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08003994 goto direct_uncharge;
3995
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003996 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003997 * In typical case, batch->memcg == mem. This means we can
3998 * merge a series of uncharges to an uncharge of res_counter.
3999 * If not, we uncharge res_counter ony by one.
4000 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004001 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004002 goto direct_uncharge;
4003 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004004 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004005 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004006 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004007 return;
4008direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004009 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004010 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004011 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
4012 if (unlikely(batch->memcg != memcg))
4013 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004014}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004015
Balbir Singh8697d332008-02-07 00:13:59 -08004016/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004017 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004018 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004019static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07004020__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
4021 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004022{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004023 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004024 unsigned int nr_pages = 1;
4025 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004026 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004027
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004028 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004029 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07004030
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004031 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004032 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004033 VM_BUG_ON(!PageTransHuge(page));
4034 }
Balbir Singh8697d332008-02-07 00:13:59 -08004035 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08004036 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08004037 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004038 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004039 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004040 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004041
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004042 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004043
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004044 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004045
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004046 if (!PageCgroupUsed(pc))
4047 goto unlock_out;
4048
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004049 anon = PageAnon(page);
4050
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004051 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004052 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07004053 /*
4054 * Generally PageAnon tells if it's the anon statistics to be
4055 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4056 * used before page reached the stage of being marked PageAnon.
4057 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004058 anon = true;
4059 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004060 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004061 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07004062 if (page_mapped(page))
4063 goto unlock_out;
4064 /*
4065 * Pages under migration may not be uncharged. But
4066 * end_migration() /must/ be the one uncharging the
4067 * unused post-migration page and so it has to call
4068 * here with the migration bit still set. See the
4069 * res_counter handling below.
4070 */
4071 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004072 goto unlock_out;
4073 break;
4074 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4075 if (!PageAnon(page)) { /* Shared memory */
4076 if (page->mapping && !page_is_file_cache(page))
4077 goto unlock_out;
4078 } else if (page_mapped(page)) /* Anon */
4079 goto unlock_out;
4080 break;
4081 default:
4082 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004083 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004084
David Rientjesb070e652013-05-07 16:18:09 -07004085 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004086
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004087 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08004088 /*
4089 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4090 * freed from LRU. This is safe because uncharged page is expected not
4091 * to be reused (freed soon). Exception is SwapCache, it's handled by
4092 * special functions.
4093 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004094
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004095 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004096 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004097 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07004098 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004099 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004100 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004101 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004102 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07004103 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004104 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004105 /*
4106 * Migration does not charge the res_counter for the
4107 * replacement page, so leave it alone when phasing out the
4108 * page that is unused after the migration.
4109 */
4110 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004111 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004112
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004113 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004114
4115unlock_out:
4116 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004117 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08004118}
4119
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004120void mem_cgroup_uncharge_page(struct page *page)
4121{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004122 /* early check. */
4123 if (page_mapped(page))
4124 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08004125 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07004126 /*
4127 * If the page is in swap cache, uncharge should be deferred
4128 * to the swap path, which also properly accounts swap usage
4129 * and handles memcg lifetime.
4130 *
4131 * Note that this check is not stable and reclaim may add the
4132 * page to swap cache at any time after this. However, if the
4133 * page is not in swap cache by the time page->mapcount hits
4134 * 0, there won't be any page table references to the swap
4135 * slot, and reclaim will free it and not actually write the
4136 * page to disk.
4137 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07004138 if (PageSwapCache(page))
4139 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07004140 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004141}
4142
4143void mem_cgroup_uncharge_cache_page(struct page *page)
4144{
4145 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07004146 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07004147 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004148}
4149
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004150/*
4151 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4152 * In that cases, pages are freed continuously and we can expect pages
4153 * are in the same memcg. All these calls itself limits the number of
4154 * pages freed at once, then uncharge_start/end() is called properly.
4155 * This may be called prural(2) times in a context,
4156 */
4157
4158void mem_cgroup_uncharge_start(void)
4159{
4160 current->memcg_batch.do_batch++;
4161 /* We can do nest. */
4162 if (current->memcg_batch.do_batch == 1) {
4163 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004164 current->memcg_batch.nr_pages = 0;
4165 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004166 }
4167}
4168
4169void mem_cgroup_uncharge_end(void)
4170{
4171 struct memcg_batch_info *batch = &current->memcg_batch;
4172
4173 if (!batch->do_batch)
4174 return;
4175
4176 batch->do_batch--;
4177 if (batch->do_batch) /* If stacked, do nothing. */
4178 return;
4179
4180 if (!batch->memcg)
4181 return;
4182 /*
4183 * This "batch->memcg" is valid without any css_get/put etc...
4184 * bacause we hide charges behind us.
4185 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004186 if (batch->nr_pages)
4187 res_counter_uncharge(&batch->memcg->res,
4188 batch->nr_pages * PAGE_SIZE);
4189 if (batch->memsw_nr_pages)
4190 res_counter_uncharge(&batch->memcg->memsw,
4191 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004192 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004193 /* forget this pointer (for sanity check) */
4194 batch->memcg = NULL;
4195}
4196
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004197#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004198/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004199 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004200 * memcg information is recorded to swap_cgroup of "ent"
4201 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004202void
4203mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004204{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004205 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004206 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004207
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004208 if (!swapout) /* this was a swap cache but the swap is unused ! */
4209 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4210
Johannes Weiner0030f532012-07-31 16:45:25 -07004211 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004212
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004213 /*
4214 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004215 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004216 */
4217 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004218 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004219}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004220#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004221
Andrew Mortonc255a452012-07-31 16:43:02 -07004222#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004223/*
4224 * called from swap_entry_free(). remove record in swap_cgroup and
4225 * uncharge "memsw" account.
4226 */
4227void mem_cgroup_uncharge_swap(swp_entry_t ent)
4228{
4229 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004230 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004231
4232 if (!do_swap_account)
4233 return;
4234
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004235 id = swap_cgroup_record(ent, 0);
4236 rcu_read_lock();
4237 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004238 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004239 /*
4240 * We uncharge this because swap is freed.
4241 * This memcg can be obsolete one. We avoid calling css_tryget
4242 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004243 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004244 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004245 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004246 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004247 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004248 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004249}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004250
4251/**
4252 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4253 * @entry: swap entry to be moved
4254 * @from: mem_cgroup which the entry is moved from
4255 * @to: mem_cgroup which the entry is moved to
4256 *
4257 * It succeeds only when the swap_cgroup's record for this entry is the same
4258 * as the mem_cgroup's id of @from.
4259 *
4260 * Returns 0 on success, -EINVAL on failure.
4261 *
4262 * The caller must have charged to @to, IOW, called res_counter_charge() about
4263 * both res and memsw, and called css_get().
4264 */
4265static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004266 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004267{
4268 unsigned short old_id, new_id;
4269
4270 old_id = css_id(&from->css);
4271 new_id = css_id(&to->css);
4272
4273 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004274 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004275 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004276 /*
4277 * This function is only called from task migration context now.
4278 * It postpones res_counter and refcount handling till the end
4279 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004280 * improvement. But we cannot postpone css_get(to) because if
4281 * the process that has been moved to @to does swap-in, the
4282 * refcount of @to might be decreased to 0.
4283 *
4284 * We are in attach() phase, so the cgroup is guaranteed to be
4285 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004286 */
Li Zefan40503772013-07-08 16:00:34 -07004287 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004288 return 0;
4289 }
4290 return -EINVAL;
4291}
4292#else
4293static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004294 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004295{
4296 return -EINVAL;
4297}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004298#endif
4299
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004300/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004301 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4302 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004303 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004304void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4305 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004306{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004307 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004308 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004309 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004310 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004311
Johannes Weiner72835c82012-01-12 17:18:32 -08004312 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004313
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004314 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004315 return;
Balbir Singh40779602008-04-04 14:29:59 -07004316
Mel Gormanb32967f2012-11-19 12:35:47 +00004317 if (PageTransHuge(page))
4318 nr_pages <<= compound_order(page);
4319
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004320 pc = lookup_page_cgroup(page);
4321 lock_page_cgroup(pc);
4322 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004323 memcg = pc->mem_cgroup;
4324 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004325 /*
4326 * At migrating an anonymous page, its mapcount goes down
4327 * to 0 and uncharge() will be called. But, even if it's fully
4328 * unmapped, migration may fail and this page has to be
4329 * charged again. We set MIGRATION flag here and delay uncharge
4330 * until end_migration() is called
4331 *
4332 * Corner Case Thinking
4333 * A)
4334 * When the old page was mapped as Anon and it's unmap-and-freed
4335 * while migration was ongoing.
4336 * If unmap finds the old page, uncharge() of it will be delayed
4337 * until end_migration(). If unmap finds a new page, it's
4338 * uncharged when it make mapcount to be 1->0. If unmap code
4339 * finds swap_migration_entry, the new page will not be mapped
4340 * and end_migration() will find it(mapcount==0).
4341 *
4342 * B)
4343 * When the old page was mapped but migraion fails, the kernel
4344 * remaps it. A charge for it is kept by MIGRATION flag even
4345 * if mapcount goes down to 0. We can do remap successfully
4346 * without charging it again.
4347 *
4348 * C)
4349 * The "old" page is under lock_page() until the end of
4350 * migration, so, the old page itself will not be swapped-out.
4351 * If the new page is swapped out before end_migraton, our
4352 * hook to usual swap-out path will catch the event.
4353 */
4354 if (PageAnon(page))
4355 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004356 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004357 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004358 /*
4359 * If the page is not charged at this point,
4360 * we return here.
4361 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004362 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004363 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004364
Johannes Weiner72835c82012-01-12 17:18:32 -08004365 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004366 /*
4367 * We charge new page before it's used/mapped. So, even if unlock_page()
4368 * is called before end_migration, we can catch all events on this new
4369 * page. In the case new page is migrated but not remapped, new page's
4370 * mapcount will be finally 0 and we call uncharge in end_migration().
4371 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004372 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004373 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004374 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004375 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004376 /*
4377 * The page is committed to the memcg, but it's not actually
4378 * charged to the res_counter since we plan on replacing the
4379 * old one and only one page is going to be left afterwards.
4380 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004381 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004382}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004383
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004384/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004385void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004386 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004387{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004388 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004389 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004390 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004391
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004392 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004393 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004394
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004395 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004396 used = oldpage;
4397 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004398 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004399 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004400 unused = oldpage;
4401 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004402 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004403 __mem_cgroup_uncharge_common(unused,
4404 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4405 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4406 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004407 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004408 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004409 * We disallowed uncharge of pages under migration because mapcount
4410 * of the page goes down to zero, temporarly.
4411 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004412 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004413 pc = lookup_page_cgroup(oldpage);
4414 lock_page_cgroup(pc);
4415 ClearPageCgroupMigration(pc);
4416 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004417
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004418 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004419 * If a page is a file cache, radix-tree replacement is very atomic
4420 * and we can skip this check. When it was an Anon page, its mapcount
4421 * goes down to 0. But because we added MIGRATION flage, it's not
4422 * uncharged yet. There are several case but page->mapcount check
4423 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4424 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004425 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004426 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004427 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004428}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004429
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004430/*
4431 * At replace page cache, newpage is not under any memcg but it's on
4432 * LRU. So, this function doesn't touch res_counter but handles LRU
4433 * in correct way. Both pages are locked so we cannot race with uncharge.
4434 */
4435void mem_cgroup_replace_page_cache(struct page *oldpage,
4436 struct page *newpage)
4437{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004438 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004439 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004440 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004441
4442 if (mem_cgroup_disabled())
4443 return;
4444
4445 pc = lookup_page_cgroup(oldpage);
4446 /* fix accounting on old pages */
4447 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004448 if (PageCgroupUsed(pc)) {
4449 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004450 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004451 ClearPageCgroupUsed(pc);
4452 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004453 unlock_page_cgroup(pc);
4454
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004455 /*
4456 * When called from shmem_replace_page(), in some cases the
4457 * oldpage has already been charged, and in some cases not.
4458 */
4459 if (!memcg)
4460 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004461 /*
4462 * Even if newpage->mapping was NULL before starting replacement,
4463 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4464 * LRU while we overwrite pc->mem_cgroup.
4465 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004466 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004467}
4468
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004469#ifdef CONFIG_DEBUG_VM
4470static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4471{
4472 struct page_cgroup *pc;
4473
4474 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004475 /*
4476 * Can be NULL while feeding pages into the page allocator for
4477 * the first time, i.e. during boot or memory hotplug;
4478 * or when mem_cgroup_disabled().
4479 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004480 if (likely(pc) && PageCgroupUsed(pc))
4481 return pc;
4482 return NULL;
4483}
4484
4485bool mem_cgroup_bad_page_check(struct page *page)
4486{
4487 if (mem_cgroup_disabled())
4488 return false;
4489
4490 return lookup_page_cgroup_used(page) != NULL;
4491}
4492
4493void mem_cgroup_print_bad_page(struct page *page)
4494{
4495 struct page_cgroup *pc;
4496
4497 pc = lookup_page_cgroup_used(page);
4498 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004499 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4500 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004501 }
4502}
4503#endif
4504
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004505static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004506 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004507{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004508 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004509 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004510 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004511 int children = mem_cgroup_count_children(memcg);
4512 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004513 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004514
4515 /*
4516 * For keeping hierarchical_reclaim simple, how long we should retry
4517 * is depends on callers. We set our retry-count to be function
4518 * of # of children which we should visit in this loop.
4519 */
4520 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4521
4522 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004523
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004524 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004525 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004526 if (signal_pending(current)) {
4527 ret = -EINTR;
4528 break;
4529 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004530 /*
4531 * Rather than hide all in some function, I do this in
4532 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004533 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004534 */
4535 mutex_lock(&set_limit_mutex);
4536 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4537 if (memswlimit < val) {
4538 ret = -EINVAL;
4539 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004540 break;
4541 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004542
4543 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4544 if (memlimit < val)
4545 enlarge = 1;
4546
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004547 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004548 if (!ret) {
4549 if (memswlimit == val)
4550 memcg->memsw_is_minimum = true;
4551 else
4552 memcg->memsw_is_minimum = false;
4553 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004554 mutex_unlock(&set_limit_mutex);
4555
4556 if (!ret)
4557 break;
4558
Johannes Weiner56600482012-01-12 17:17:59 -08004559 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4560 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004561 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4562 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004563 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004564 retry_count--;
4565 else
4566 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004567 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004568 if (!ret && enlarge)
4569 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004570
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004571 return ret;
4572}
4573
Li Zefan338c8432009-06-17 16:27:15 -07004574static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4575 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004576{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004577 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004578 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004579 int children = mem_cgroup_count_children(memcg);
4580 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004581 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004582
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004583 /* see mem_cgroup_resize_res_limit */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004584 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004585 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004586 while (retry_count) {
4587 if (signal_pending(current)) {
4588 ret = -EINTR;
4589 break;
4590 }
4591 /*
4592 * Rather than hide all in some function, I do this in
4593 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004594 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004595 */
4596 mutex_lock(&set_limit_mutex);
4597 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4598 if (memlimit > val) {
4599 ret = -EINVAL;
4600 mutex_unlock(&set_limit_mutex);
4601 break;
4602 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004603 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4604 if (memswlimit < val)
4605 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004606 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004607 if (!ret) {
4608 if (memlimit == val)
4609 memcg->memsw_is_minimum = true;
4610 else
4611 memcg->memsw_is_minimum = false;
4612 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004613 mutex_unlock(&set_limit_mutex);
4614
4615 if (!ret)
4616 break;
4617
Johannes Weiner56600482012-01-12 17:17:59 -08004618 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4619 MEM_CGROUP_RECLAIM_NOSWAP |
4620 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004621 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004622 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004623 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004624 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004625 else
4626 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004627 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004628 if (!ret && enlarge)
4629 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004630 return ret;
4631}
4632
Michal Hocko2ef37d32012-10-26 13:37:30 +02004633/**
4634 * mem_cgroup_force_empty_list - clears LRU of a group
4635 * @memcg: group to clear
4636 * @node: NUMA node
4637 * @zid: zone id
4638 * @lru: lru to to clear
4639 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004640 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004641 * reclaim the pages page themselves - pages are moved to the parent (or root)
4642 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004643 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004644static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004645 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004646{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004647 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004648 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004649 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004650 struct page *busy;
4651 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004652
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004653 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004654 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4655 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004656
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004657 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004658 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004659 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004660 struct page *page;
4661
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004662 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004663 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004664 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004665 break;
4666 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004667 page = list_entry(list->prev, struct page, lru);
4668 if (busy == page) {
4669 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004670 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004671 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004672 continue;
4673 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004674 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004675
Johannes Weiner925b7672012-01-12 17:18:15 -08004676 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004677
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004678 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004679 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004680 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004681 cond_resched();
4682 } else
4683 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004684 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004685}
4686
4687/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004688 * make mem_cgroup's charge to be 0 if there is no task by moving
4689 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004690 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004691 *
4692 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004693 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004694static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004695{
Michal Hockoc26251f2012-10-26 13:37:28 +02004696 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004697 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004698
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004699 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004700 /* This is for making all *used* pages to be on LRU. */
4701 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004702 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004703 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004704 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004705 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004706 enum lru_list lru;
4707 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004708 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004709 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004710 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004711 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004712 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004713 mem_cgroup_end_move(memcg);
4714 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004715 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004716
Michal Hocko2ef37d32012-10-26 13:37:30 +02004717 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004718 * Kernel memory may not necessarily be trackable to a specific
4719 * process. So they are not migrated, and therefore we can't
4720 * expect their value to drop to 0 here.
4721 * Having res filled up with kmem only is enough.
4722 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004723 * This is a safety check because mem_cgroup_force_empty_list
4724 * could have raced with mem_cgroup_replace_page_cache callers
4725 * so the lru seemed empty but the page could have been added
4726 * right after the check. RES_USAGE should be safe as we always
4727 * charge before adding to the LRU.
4728 */
Glauber Costabea207c2012-12-18 14:22:11 -08004729 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4730 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4731 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004732}
4733
4734/*
Glauber Costab5f99b52013-02-22 16:34:53 -08004735 * This mainly exists for tests during the setting of set of use_hierarchy.
4736 * Since this is the very setting we are changing, the current hierarchy value
4737 * is meaningless
4738 */
4739static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4740{
Tejun Heo492eb212013-08-08 20:11:25 -04004741 struct cgroup_subsys_state *pos;
Glauber Costab5f99b52013-02-22 16:34:53 -08004742
4743 /* bounce at first found */
Tejun Heo492eb212013-08-08 20:11:25 -04004744 css_for_each_child(pos, &memcg->css)
Glauber Costab5f99b52013-02-22 16:34:53 -08004745 return true;
4746 return false;
4747}
4748
4749/*
Glauber Costa09998212013-02-22 16:34:55 -08004750 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4751 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
Glauber Costab5f99b52013-02-22 16:34:53 -08004752 * from mem_cgroup_count_children(), in the sense that we don't really care how
4753 * many children we have; we only need to know if we have any. It also counts
4754 * any memcg without hierarchy as infertile.
4755 */
4756static inline bool memcg_has_children(struct mem_cgroup *memcg)
4757{
4758 return memcg->use_hierarchy && __memcg_has_children(memcg);
4759}
4760
4761/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004762 * Reclaims as many pages from the given memcg as possible and moves
4763 * the rest to the parent.
4764 *
4765 * Caller is responsible for holding css reference for memcg.
4766 */
4767static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4768{
4769 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4770 struct cgroup *cgrp = memcg->css.cgroup;
4771
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004772 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004773 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4774 return -EBUSY;
4775
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004776 /* we call try-to-free pages for make this cgroup empty */
4777 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004778 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004779 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004780 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004781
Michal Hockoc26251f2012-10-26 13:37:28 +02004782 if (signal_pending(current))
4783 return -EINTR;
4784
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004785 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004786 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004787 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004788 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004789 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004790 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004791 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004792
4793 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004794 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02004795 mem_cgroup_reparent_charges(memcg);
4796
4797 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004798}
4799
Tejun Heo182446d2013-08-08 20:11:24 -04004800static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
4801 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004802{
Tejun Heo182446d2013-08-08 20:11:24 -04004803 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02004804
Michal Hockod8423012012-10-26 13:37:29 +02004805 if (mem_cgroup_is_root(memcg))
4806 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07004807 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004808}
4809
Tejun Heo182446d2013-08-08 20:11:24 -04004810static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
4811 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004812{
Tejun Heo182446d2013-08-08 20:11:24 -04004813 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004814}
4815
Tejun Heo182446d2013-08-08 20:11:24 -04004816static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
4817 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004818{
4819 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04004820 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04004821 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08004822
Glauber Costa09998212013-02-22 16:34:55 -08004823 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07004824
4825 if (memcg->use_hierarchy == val)
4826 goto out;
4827
Balbir Singh18f59ea2009-01-07 18:08:07 -08004828 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004829 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08004830 * in the child subtrees. If it is unset, then the change can
4831 * occur, provided the current cgroup has no children.
4832 *
4833 * For the root cgroup, parent_mem is NULL, we allow value to be
4834 * set if there are no children.
4835 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004836 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08004837 (val == 1 || val == 0)) {
Glauber Costab5f99b52013-02-22 16:34:53 -08004838 if (!__memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004839 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004840 else
4841 retval = -EBUSY;
4842 } else
4843 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07004844
4845out:
Glauber Costa09998212013-02-22 16:34:55 -08004846 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004847
4848 return retval;
4849}
4850
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004851
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004852static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004853 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004854{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004855 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004856 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004857
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004858 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004859 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004860 val += mem_cgroup_read_stat(iter, idx);
4861
4862 if (val < 0) /* race ? */
4863 val = 0;
4864 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004865}
4866
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004867static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004868{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004869 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004870
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004871 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004872 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00004873 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004874 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00004875 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004876 }
4877
David Rientjesb070e652013-05-07 16:18:09 -07004878 /*
4879 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4880 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4881 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004882 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4883 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004884
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004885 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004886 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004887
4888 return val << PAGE_SHIFT;
4889}
4890
Tejun Heo182446d2013-08-08 20:11:24 -04004891static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
4892 struct cftype *cft, struct file *file,
4893 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004894{
Tejun Heo182446d2013-08-08 20:11:24 -04004895 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07004896 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004897 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004898 int name, len;
4899 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004900
4901 type = MEMFILE_TYPE(cft->private);
4902 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004903
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004904 switch (type) {
4905 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004906 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004907 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004908 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004909 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004910 break;
4911 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004912 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004913 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004914 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004915 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004916 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004917 case _KMEM:
4918 val = res_counter_read_u64(&memcg->kmem, name);
4919 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004920 default:
4921 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004922 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004923
4924 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4925 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004926}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004927
Tejun Heo182446d2013-08-08 20:11:24 -04004928static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004929{
4930 int ret = -EINVAL;
4931#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04004932 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004933 /*
4934 * For simplicity, we won't allow this to be disabled. It also can't
4935 * be changed if the cgroup has children already, or if tasks had
4936 * already joined.
4937 *
4938 * If tasks join before we set the limit, a person looking at
4939 * kmem.usage_in_bytes will have no way to determine when it took
4940 * place, which makes the value quite meaningless.
4941 *
4942 * After it first became limited, changes in the value of the limit are
4943 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004944 */
Glauber Costa09998212013-02-22 16:34:55 -08004945 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004946 mutex_lock(&set_limit_mutex);
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004947 if (!memcg->kmem_account_flags && val != RES_COUNTER_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04004948 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08004949 ret = -EBUSY;
4950 goto out;
4951 }
4952 ret = res_counter_set_limit(&memcg->kmem, val);
4953 VM_BUG_ON(ret);
4954
Glauber Costa55007d82012-12-18 14:22:38 -08004955 ret = memcg_update_cache_sizes(memcg);
4956 if (ret) {
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004957 res_counter_set_limit(&memcg->kmem, RES_COUNTER_MAX);
Glauber Costa55007d82012-12-18 14:22:38 -08004958 goto out;
4959 }
Glauber Costa692e89a2013-02-22 16:34:56 -08004960 static_key_slow_inc(&memcg_kmem_enabled_key);
4961 /*
4962 * setting the active bit after the inc will guarantee no one
4963 * starts accounting before all call sites are patched
4964 */
4965 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004966 } else
4967 ret = res_counter_set_limit(&memcg->kmem, val);
4968out:
4969 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08004970 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004971#endif
4972 return ret;
4973}
4974
Hugh Dickins6d0439902013-02-22 16:35:50 -08004975#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08004976static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004977{
Glauber Costa55007d82012-12-18 14:22:38 -08004978 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004979 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4980 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08004981 goto out;
4982
Glauber Costa510fc4e2012-12-18 14:21:47 -08004983 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08004984 /*
4985 * When that happen, we need to disable the static branch only on those
4986 * memcgs that enabled it. To achieve this, we would be forced to
4987 * complicate the code by keeping track of which memcgs were the ones
4988 * that actually enabled limits, and which ones got it from its
4989 * parents.
4990 *
4991 * It is a lot simpler just to do static_key_slow_inc() on every child
4992 * that is accounted.
4993 */
Glauber Costa55007d82012-12-18 14:22:38 -08004994 if (!memcg_kmem_is_active(memcg))
4995 goto out;
4996
4997 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07004998 * __mem_cgroup_free() will issue static_key_slow_dec() because this
4999 * memcg is active already. If the later initialization fails then the
5000 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08005001 */
Glauber Costa55007d82012-12-18 14:22:38 -08005002 static_key_slow_inc(&memcg_kmem_enabled_key);
5003
5004 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07005005 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005006 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07005007 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005008 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08005009out:
5010 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005011}
Hugh Dickins6d0439902013-02-22 16:35:50 -08005012#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08005013
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005014/*
5015 * The user of this function is...
5016 * RES_LIMIT.
5017 */
Tejun Heo182446d2013-08-08 20:11:24 -04005018static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07005019 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005020{
Tejun Heo182446d2013-08-08 20:11:24 -04005021 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005022 enum res_type type;
5023 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005024 unsigned long long val;
5025 int ret;
5026
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005027 type = MEMFILE_TYPE(cft->private);
5028 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07005029
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005030 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005031 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07005032 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
5033 ret = -EINVAL;
5034 break;
5035 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005036 /* This function does all necessary parse...reuse it */
5037 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005038 if (ret)
5039 break;
5040 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005041 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005042 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005043 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005044 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04005045 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005046 else
5047 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005048 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07005049 case RES_SOFT_LIMIT:
5050 ret = res_counter_memparse_write_strategy(buffer, &val);
5051 if (ret)
5052 break;
5053 /*
5054 * For memsw, soft limits are hard to implement in terms
5055 * of semantics, for now, we support soft limits for
5056 * control without swap
5057 */
5058 if (type == _MEM)
5059 ret = res_counter_set_soft_limit(&memcg->res, val);
5060 else
5061 ret = -EINVAL;
5062 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005063 default:
5064 ret = -EINVAL; /* should be BUG() ? */
5065 break;
5066 }
5067 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005068}
5069
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005070static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5071 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5072{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005073 unsigned long long min_limit, min_memsw_limit, tmp;
5074
5075 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5076 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005077 if (!memcg->use_hierarchy)
5078 goto out;
5079
Tejun Heo63876982013-08-08 20:11:23 -04005080 while (css_parent(&memcg->css)) {
5081 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005082 if (!memcg->use_hierarchy)
5083 break;
5084 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5085 min_limit = min(min_limit, tmp);
5086 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5087 min_memsw_limit = min(min_memsw_limit, tmp);
5088 }
5089out:
5090 *mem_limit = min_limit;
5091 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005092}
5093
Tejun Heo182446d2013-08-08 20:11:24 -04005094static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005095{
Tejun Heo182446d2013-08-08 20:11:24 -04005096 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005097 int name;
5098 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005099
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005100 type = MEMFILE_TYPE(event);
5101 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07005102
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005103 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005104 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005105 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005106 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005107 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005108 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005109 else if (type == _KMEM)
5110 res_counter_reset_max(&memcg->kmem);
5111 else
5112 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005113 break;
5114 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005115 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005116 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005117 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005118 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005119 else if (type == _KMEM)
5120 res_counter_reset_failcnt(&memcg->kmem);
5121 else
5122 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005123 break;
5124 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07005125
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07005126 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005127}
5128
Tejun Heo182446d2013-08-08 20:11:24 -04005129static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005130 struct cftype *cft)
5131{
Tejun Heo182446d2013-08-08 20:11:24 -04005132 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005133}
5134
Daisuke Nishimura02491442010-03-10 15:22:17 -08005135#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04005136static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005137 struct cftype *cft, u64 val)
5138{
Tejun Heo182446d2013-08-08 20:11:24 -04005139 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005140
5141 if (val >= (1 << NR_MOVE_TYPE))
5142 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005143
Glauber Costaee5e8472013-02-22 16:34:50 -08005144 /*
5145 * No kind of locking is needed in here, because ->can_attach() will
5146 * check this value once in the beginning of the process, and then carry
5147 * on with stale data. This means that changes to this value will only
5148 * affect task migrations starting after the change.
5149 */
5150 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005151 return 0;
5152}
Daisuke Nishimura02491442010-03-10 15:22:17 -08005153#else
Tejun Heo182446d2013-08-08 20:11:24 -04005154static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005155 struct cftype *cft, u64 val)
5156{
5157 return -ENOSYS;
5158}
5159#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005160
Ying Han406eb0c2011-05-26 16:25:37 -07005161#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04005162static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
5163 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07005164{
5165 int nid;
5166 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5167 unsigned long node_nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005168 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005169
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005170 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005171 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005172 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005173 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005174 seq_printf(m, " N%d=%lu", nid, node_nr);
5175 }
5176 seq_putc(m, '\n');
5177
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005178 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005179 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005180 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005181 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005182 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005183 seq_printf(m, " N%d=%lu", nid, node_nr);
5184 }
5185 seq_putc(m, '\n');
5186
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005187 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005188 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005189 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005190 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005191 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005192 seq_printf(m, " N%d=%lu", nid, node_nr);
5193 }
5194 seq_putc(m, '\n');
5195
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005196 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005197 seq_printf(m, "unevictable=%lu", unevictable_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005198 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005199 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005200 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005201 seq_printf(m, " N%d=%lu", nid, node_nr);
5202 }
5203 seq_putc(m, '\n');
5204 return 0;
5205}
5206#endif /* CONFIG_NUMA */
5207
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005208static inline void mem_cgroup_lru_names_not_uptodate(void)
5209{
5210 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5211}
5212
Tejun Heo182446d2013-08-08 20:11:24 -04005213static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005214 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005215{
Tejun Heo182446d2013-08-08 20:11:24 -04005216 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005217 struct mem_cgroup *mi;
5218 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005219
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005220 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005221 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005222 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005223 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5224 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005225 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005226
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005227 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5228 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5229 mem_cgroup_read_events(memcg, i));
5230
5231 for (i = 0; i < NR_LRU_LISTS; i++)
5232 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5233 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5234
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005235 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005236 {
5237 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005238 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005239 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005240 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005241 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5242 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005243 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005244
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005245 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5246 long long val = 0;
5247
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005248 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005249 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005250 for_each_mem_cgroup_tree(mi, memcg)
5251 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5252 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5253 }
5254
5255 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5256 unsigned long long val = 0;
5257
5258 for_each_mem_cgroup_tree(mi, memcg)
5259 val += mem_cgroup_read_events(mi, i);
5260 seq_printf(m, "total_%s %llu\n",
5261 mem_cgroup_events_names[i], val);
5262 }
5263
5264 for (i = 0; i < NR_LRU_LISTS; i++) {
5265 unsigned long long val = 0;
5266
5267 for_each_mem_cgroup_tree(mi, memcg)
5268 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5269 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005270 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005271
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005272#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005273 {
5274 int nid, zid;
5275 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005276 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005277 unsigned long recent_rotated[2] = {0, 0};
5278 unsigned long recent_scanned[2] = {0, 0};
5279
5280 for_each_online_node(nid)
5281 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005282 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005283 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005284
Hugh Dickins89abfab2012-05-29 15:06:53 -07005285 recent_rotated[0] += rstat->recent_rotated[0];
5286 recent_rotated[1] += rstat->recent_rotated[1];
5287 recent_scanned[0] += rstat->recent_scanned[0];
5288 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005289 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005290 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5291 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5292 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5293 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005294 }
5295#endif
5296
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005297 return 0;
5298}
5299
Tejun Heo182446d2013-08-08 20:11:24 -04005300static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5301 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005302{
Tejun Heo182446d2013-08-08 20:11:24 -04005303 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005304
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005305 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005306}
5307
Tejun Heo182446d2013-08-08 20:11:24 -04005308static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5309 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005310{
Tejun Heo182446d2013-08-08 20:11:24 -04005311 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005312 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005313
Tejun Heo63876982013-08-08 20:11:23 -04005314 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005315 return -EINVAL;
5316
Glauber Costa09998212013-02-22 16:34:55 -08005317 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005318
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005319 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005320 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005321 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005322 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005323 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005324
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005325 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005326
Glauber Costa09998212013-02-22 16:34:55 -08005327 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005328
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005329 return 0;
5330}
5331
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005332static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5333{
5334 struct mem_cgroup_threshold_ary *t;
5335 u64 usage;
5336 int i;
5337
5338 rcu_read_lock();
5339 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005340 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005341 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005342 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005343
5344 if (!t)
5345 goto unlock;
5346
5347 usage = mem_cgroup_usage(memcg, swap);
5348
5349 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005350 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005351 * If it's not true, a threshold was crossed after last
5352 * call of __mem_cgroup_threshold().
5353 */
Phil Carmody5407a562010-05-26 14:42:42 -07005354 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005355
5356 /*
5357 * Iterate backward over array of thresholds starting from
5358 * current_threshold and check if a threshold is crossed.
5359 * If none of thresholds below usage is crossed, we read
5360 * only one element of the array here.
5361 */
5362 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5363 eventfd_signal(t->entries[i].eventfd, 1);
5364
5365 /* i = current_threshold + 1 */
5366 i++;
5367
5368 /*
5369 * Iterate forward over array of thresholds starting from
5370 * current_threshold+1 and check if a threshold is crossed.
5371 * If none of thresholds above usage is crossed, we read
5372 * only one element of the array here.
5373 */
5374 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5375 eventfd_signal(t->entries[i].eventfd, 1);
5376
5377 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005378 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005379unlock:
5380 rcu_read_unlock();
5381}
5382
5383static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5384{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005385 while (memcg) {
5386 __mem_cgroup_threshold(memcg, false);
5387 if (do_swap_account)
5388 __mem_cgroup_threshold(memcg, true);
5389
5390 memcg = parent_mem_cgroup(memcg);
5391 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005392}
5393
5394static int compare_thresholds(const void *a, const void *b)
5395{
5396 const struct mem_cgroup_threshold *_a = a;
5397 const struct mem_cgroup_threshold *_b = b;
5398
Greg Thelen2bff24a2013-09-11 14:23:08 -07005399 if (_a->threshold > _b->threshold)
5400 return 1;
5401
5402 if (_a->threshold < _b->threshold)
5403 return -1;
5404
5405 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005406}
5407
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005408static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005409{
5410 struct mem_cgroup_eventfd_list *ev;
5411
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005412 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005413 eventfd_signal(ev->eventfd, 1);
5414 return 0;
5415}
5416
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005417static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005418{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005419 struct mem_cgroup *iter;
5420
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005421 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005422 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005423}
5424
Tejun Heo81eeaf02013-08-08 20:11:26 -04005425static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005426 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005427{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005428 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005429 struct mem_cgroup_thresholds *thresholds;
5430 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005431 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005432 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005433 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005434
5435 ret = res_counter_memparse_write_strategy(args, &threshold);
5436 if (ret)
5437 return ret;
5438
5439 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005440
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005441 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005442 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005443 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005444 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005445 else
5446 BUG();
5447
5448 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5449
5450 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005451 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005452 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5453
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005454 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005455
5456 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005457 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005458 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005459 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005460 ret = -ENOMEM;
5461 goto unlock;
5462 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005463 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005464
5465 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005466 if (thresholds->primary) {
5467 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005468 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005469 }
5470
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005471 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005472 new->entries[size - 1].eventfd = eventfd;
5473 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005474
5475 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005476 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005477 compare_thresholds, NULL);
5478
5479 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005480 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005481 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005482 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005483 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005484 * new->current_threshold will not be used until
5485 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005486 * it here.
5487 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005488 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005489 } else
5490 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005491 }
5492
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005493 /* Free old spare buffer and save old primary buffer as spare */
5494 kfree(thresholds->spare);
5495 thresholds->spare = thresholds->primary;
5496
5497 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005498
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005499 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005500 synchronize_rcu();
5501
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005502unlock:
5503 mutex_unlock(&memcg->thresholds_lock);
5504
5505 return ret;
5506}
5507
Tejun Heo81eeaf02013-08-08 20:11:26 -04005508static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005509 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005510{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005511 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005512 struct mem_cgroup_thresholds *thresholds;
5513 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005514 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005515 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005516 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005517
5518 mutex_lock(&memcg->thresholds_lock);
5519 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005520 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005521 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005522 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005523 else
5524 BUG();
5525
Anton Vorontsov371528c2012-02-24 05:14:46 +04005526 if (!thresholds->primary)
5527 goto unlock;
5528
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005529 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5530
5531 /* Check if a threshold crossed before removing */
5532 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5533
5534 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005535 size = 0;
5536 for (i = 0; i < thresholds->primary->size; i++) {
5537 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005538 size++;
5539 }
5540
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005541 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005542
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005543 /* Set thresholds array to NULL if we don't have thresholds */
5544 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005545 kfree(new);
5546 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005547 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005548 }
5549
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005550 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005551
5552 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005553 new->current_threshold = -1;
5554 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5555 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005556 continue;
5557
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005558 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005559 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005560 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005561 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005562 * until rcu_assign_pointer(), so it's safe to increment
5563 * it here.
5564 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005565 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005566 }
5567 j++;
5568 }
5569
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005570swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005571 /* Swap primary and spare array */
5572 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005573 /* If all events are unregistered, free the spare array */
5574 if (!new) {
5575 kfree(thresholds->spare);
5576 thresholds->spare = NULL;
5577 }
5578
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005579 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005580
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005581 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005582 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005583unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005584 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005585}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005586
Tejun Heo81eeaf02013-08-08 20:11:26 -04005587static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005588 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5589{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005590 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005591 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005592 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005593
5594 BUG_ON(type != _OOM_TYPE);
5595 event = kmalloc(sizeof(*event), GFP_KERNEL);
5596 if (!event)
5597 return -ENOMEM;
5598
Michal Hocko1af8efe2011-07-26 16:08:24 -07005599 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005600
5601 event->eventfd = eventfd;
5602 list_add(&event->list, &memcg->oom_notify);
5603
5604 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005605 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005606 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005607 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005608
5609 return 0;
5610}
5611
Tejun Heo81eeaf02013-08-08 20:11:26 -04005612static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005613 struct cftype *cft, struct eventfd_ctx *eventfd)
5614{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005615 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005616 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005617 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005618
5619 BUG_ON(type != _OOM_TYPE);
5620
Michal Hocko1af8efe2011-07-26 16:08:24 -07005621 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005622
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005623 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005624 if (ev->eventfd == eventfd) {
5625 list_del(&ev->list);
5626 kfree(ev);
5627 }
5628 }
5629
Michal Hocko1af8efe2011-07-26 16:08:24 -07005630 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005631}
5632
Tejun Heo182446d2013-08-08 20:11:24 -04005633static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005634 struct cftype *cft, struct cgroup_map_cb *cb)
5635{
Tejun Heo182446d2013-08-08 20:11:24 -04005636 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005637
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005638 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005639
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005640 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005641 cb->fill(cb, "under_oom", 1);
5642 else
5643 cb->fill(cb, "under_oom", 0);
5644 return 0;
5645}
5646
Tejun Heo182446d2013-08-08 20:11:24 -04005647static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005648 struct cftype *cft, u64 val)
5649{
Tejun Heo182446d2013-08-08 20:11:24 -04005650 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005651 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005652
5653 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005654 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005655 return -EINVAL;
5656
Glauber Costa09998212013-02-22 16:34:55 -08005657 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005658 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005659 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005660 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005661 return -EINVAL;
5662 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005663 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005664 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005665 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005666 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005667 return 0;
5668}
5669
Andrew Mortonc255a452012-07-31 16:43:02 -07005670#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005671static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005672{
Glauber Costa55007d82012-12-18 14:22:38 -08005673 int ret;
5674
Glauber Costa2633d7a2012-12-18 14:22:34 -08005675 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005676 ret = memcg_propagate_kmem(memcg);
5677 if (ret)
5678 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005679
Glauber Costa1d62e432012-04-09 19:36:33 -03005680 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005681}
Glauber Costae5671df2011-12-11 21:47:01 +00005682
Li Zefan10d5ebf2013-07-08 16:00:33 -07005683static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005684{
Glauber Costa1d62e432012-04-09 19:36:33 -03005685 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005686}
5687
5688static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5689{
5690 if (!memcg_kmem_is_active(memcg))
5691 return;
5692
5693 /*
5694 * kmem charges can outlive the cgroup. In the case of slab
5695 * pages, for instance, a page contain objects from various
5696 * processes. As we prevent from taking a reference for every
5697 * such allocation we have to be careful when doing uncharge
5698 * (see memcg_uncharge_kmem) and here during offlining.
5699 *
5700 * The idea is that that only the _last_ uncharge which sees
5701 * the dead memcg will drop the last reference. An additional
5702 * reference is taken here before the group is marked dead
5703 * which is then paired with css_put during uncharge resp. here.
5704 *
5705 * Although this might sound strange as this path is called from
5706 * css_offline() when the referencemight have dropped down to 0
5707 * and shouldn't be incremented anymore (css_tryget would fail)
5708 * we do not have other options because of the kmem allocations
5709 * lifetime.
5710 */
5711 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005712
5713 memcg_kmem_mark_dead(memcg);
5714
5715 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5716 return;
5717
Glauber Costa7de37682012-12-18 14:22:07 -08005718 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005719 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005720}
Glauber Costae5671df2011-12-11 21:47:01 +00005721#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005722static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005723{
5724 return 0;
5725}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005726
Li Zefan10d5ebf2013-07-08 16:00:33 -07005727static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5728{
5729}
5730
5731static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005732{
5733}
Glauber Costae5671df2011-12-11 21:47:01 +00005734#endif
5735
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005736static struct cftype mem_cgroup_files[] = {
5737 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005738 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005739 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005740 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005741 .register_event = mem_cgroup_usage_register_event,
5742 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005743 },
5744 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005745 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005746 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005747 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005748 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005749 },
5750 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005751 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005752 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005753 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005754 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005755 },
5756 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005757 .name = "soft_limit_in_bytes",
5758 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5759 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005760 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005761 },
5762 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005763 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005764 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005765 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005766 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005767 },
Balbir Singh8697d332008-02-07 00:13:59 -08005768 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005769 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005770 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005771 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005772 {
5773 .name = "force_empty",
5774 .trigger = mem_cgroup_force_empty_write,
5775 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005776 {
5777 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005778 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005779 .write_u64 = mem_cgroup_hierarchy_write,
5780 .read_u64 = mem_cgroup_hierarchy_read,
5781 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005782 {
5783 .name = "swappiness",
5784 .read_u64 = mem_cgroup_swappiness_read,
5785 .write_u64 = mem_cgroup_swappiness_write,
5786 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005787 {
5788 .name = "move_charge_at_immigrate",
5789 .read_u64 = mem_cgroup_move_charge_read,
5790 .write_u64 = mem_cgroup_move_charge_write,
5791 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005792 {
5793 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005794 .read_map = mem_cgroup_oom_control_read,
5795 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005796 .register_event = mem_cgroup_oom_register_event,
5797 .unregister_event = mem_cgroup_oom_unregister_event,
5798 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5799 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005800 {
5801 .name = "pressure_level",
5802 .register_event = vmpressure_register_event,
5803 .unregister_event = vmpressure_unregister_event,
5804 },
Ying Han406eb0c2011-05-26 16:25:37 -07005805#ifdef CONFIG_NUMA
5806 {
5807 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005808 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005809 },
5810#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005811#ifdef CONFIG_MEMCG_KMEM
5812 {
5813 .name = "kmem.limit_in_bytes",
5814 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5815 .write_string = mem_cgroup_write,
5816 .read = mem_cgroup_read,
5817 },
5818 {
5819 .name = "kmem.usage_in_bytes",
5820 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5821 .read = mem_cgroup_read,
5822 },
5823 {
5824 .name = "kmem.failcnt",
5825 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5826 .trigger = mem_cgroup_reset,
5827 .read = mem_cgroup_read,
5828 },
5829 {
5830 .name = "kmem.max_usage_in_bytes",
5831 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5832 .trigger = mem_cgroup_reset,
5833 .read = mem_cgroup_read,
5834 },
Glauber Costa749c5412012-12-18 14:23:01 -08005835#ifdef CONFIG_SLABINFO
5836 {
5837 .name = "kmem.slabinfo",
5838 .read_seq_string = mem_cgroup_slabinfo_read,
5839 },
5840#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005841#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005842 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005843};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005844
Michal Hocko2d110852013-02-22 16:34:43 -08005845#ifdef CONFIG_MEMCG_SWAP
5846static struct cftype memsw_cgroup_files[] = {
5847 {
5848 .name = "memsw.usage_in_bytes",
5849 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5850 .read = mem_cgroup_read,
5851 .register_event = mem_cgroup_usage_register_event,
5852 .unregister_event = mem_cgroup_usage_unregister_event,
5853 },
5854 {
5855 .name = "memsw.max_usage_in_bytes",
5856 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5857 .trigger = mem_cgroup_reset,
5858 .read = mem_cgroup_read,
5859 },
5860 {
5861 .name = "memsw.limit_in_bytes",
5862 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5863 .write_string = mem_cgroup_write,
5864 .read = mem_cgroup_read,
5865 },
5866 {
5867 .name = "memsw.failcnt",
5868 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5869 .trigger = mem_cgroup_reset,
5870 .read = mem_cgroup_read,
5871 },
5872 { }, /* terminate */
5873};
5874#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005875static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005876{
5877 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005878 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005879 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005880 /*
5881 * This routine is called against possible nodes.
5882 * But it's BUG to call kmalloc() against offline node.
5883 *
5884 * TODO: this routine can waste much memory for nodes which will
5885 * never be onlined. It's better to use memory hotplug callback
5886 * function.
5887 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005888 if (!node_state(node, N_NORMAL_MEMORY))
5889 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005890 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005891 if (!pn)
5892 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005893
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005894 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5895 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005896 lruvec_init(&mz->lruvec);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005897 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005898 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005899 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005900 return 0;
5901}
5902
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005903static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005904{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005905 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005906}
5907
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005908static struct mem_cgroup *mem_cgroup_alloc(void)
5909{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005910 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005911 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005912
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005913 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08005914 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005915 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005916 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005917 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005918
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005919 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005920 return NULL;
5921
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005922 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5923 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005924 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005925 spin_lock_init(&memcg->pcp_counter_lock);
5926 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005927
5928out_free:
5929 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005930 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005931 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005932 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005933 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005934}
5935
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005936/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005937 * At destroying mem_cgroup, references from swap_cgroup can remain.
5938 * (scanning all at force_empty is too costly...)
5939 *
5940 * Instead of clearing all references at force_empty, we remember
5941 * the number of reference from swap_cgroup and free mem_cgroup when
5942 * it goes down to 0.
5943 *
5944 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005945 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005946
5947static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005948{
Glauber Costac8b2a362012-12-18 14:22:13 -08005949 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005950 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07005951
Glauber Costac8b2a362012-12-18 14:22:13 -08005952 free_css_id(&mem_cgroup_subsys, &memcg->css);
5953
5954 for_each_node(node)
5955 free_mem_cgroup_per_zone_info(memcg, node);
5956
5957 free_percpu(memcg->stat);
5958
Glauber Costa3f134612012-05-29 15:07:11 -07005959 /*
5960 * We need to make sure that (at least for now), the jump label
5961 * destruction code runs outside of the cgroup lock. This is because
5962 * get_online_cpus(), which is called from the static_branch update,
5963 * can't be called inside the cgroup_lock. cpusets are the ones
5964 * enforcing this dependency, so if they ever change, we might as well.
5965 *
5966 * schedule_work() will guarantee this happens. Be careful if you need
5967 * to move this code around, and make sure it is outside
5968 * the cgroup_lock.
5969 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005970 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07005971 if (size < PAGE_SIZE)
5972 kfree(memcg);
5973 else
5974 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005975}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005976
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005977/*
5978 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5979 */
Glauber Costae1aab162011-12-11 21:47:03 +00005980struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005981{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005982 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005983 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005984 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005985}
Glauber Costae1aab162011-12-11 21:47:03 +00005986EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005987
Li Zefan0eb253e2009-01-15 13:51:25 -08005988static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04005989mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005990{
Glauber Costad142e3e2013-02-22 16:34:52 -08005991 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005992 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005993 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005994
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005995 memcg = mem_cgroup_alloc();
5996 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005997 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005998
Bob Liu3ed28fa2012-01-12 17:19:04 -08005999 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006000 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006001 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07006002
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006003 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04006004 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08006005 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08006006 res_counter_init(&memcg->res, NULL);
6007 res_counter_init(&memcg->memsw, NULL);
6008 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08006009 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08006010
Glauber Costad142e3e2013-02-22 16:34:52 -08006011 memcg->last_scanned_node = MAX_NUMNODES;
6012 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08006013 memcg->move_charge_at_immigrate = 0;
6014 mutex_init(&memcg->thresholds_lock);
6015 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07006016 vmpressure_init(&memcg->vmpressure);
Michal Hocko7d910c02013-09-12 15:13:28 -07006017 spin_lock_init(&memcg->soft_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08006018
6019 return &memcg->css;
6020
6021free_out:
6022 __mem_cgroup_free(memcg);
6023 return ERR_PTR(error);
6024}
6025
6026static int
Tejun Heoeb954192013-08-08 20:11:23 -04006027mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08006028{
Tejun Heoeb954192013-08-08 20:11:23 -04006029 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6030 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08006031 int error = 0;
6032
Tejun Heo63876982013-08-08 20:11:23 -04006033 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08006034 return 0;
6035
Glauber Costa09998212013-02-22 16:34:55 -08006036 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006037
6038 memcg->use_hierarchy = parent->use_hierarchy;
6039 memcg->oom_kill_disable = parent->oom_kill_disable;
6040 memcg->swappiness = mem_cgroup_swappiness(parent);
6041
6042 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006043 res_counter_init(&memcg->res, &parent->res);
6044 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006045 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08006046
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006047 /*
Li Zefan8d76a972013-07-08 16:00:36 -07006048 * No need to take a reference to the parent because cgroup
6049 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006050 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08006051 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006052 res_counter_init(&memcg->res, NULL);
6053 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006054 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006055 /*
6056 * Deeper hierachy with use_hierarchy == false doesn't make
6057 * much sense so let cgroup subsystem know about this
6058 * unfortunate state in our controller.
6059 */
Glauber Costad142e3e2013-02-22 16:34:52 -08006060 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006061 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08006062 }
Glauber Costacbe128e32012-04-09 19:36:34 -03006063
6064 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08006065 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006066 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006067}
6068
Michal Hocko5f578162013-04-29 15:07:17 -07006069/*
6070 * Announce all parents that a group from their hierarchy is gone.
6071 */
6072static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
6073{
6074 struct mem_cgroup *parent = memcg;
6075
6076 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07006077 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07006078
6079 /*
6080 * if the root memcg is not hierarchical we have to check it
6081 * explicitely.
6082 */
6083 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07006084 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07006085}
6086
Tejun Heoeb954192013-08-08 20:11:23 -04006087static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006088{
Tejun Heoeb954192013-08-08 20:11:23 -04006089 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07006090
Li Zefan10d5ebf2013-07-08 16:00:33 -07006091 kmem_cgroup_css_offline(memcg);
6092
Michal Hocko5f578162013-04-29 15:07:17 -07006093 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02006094 mem_cgroup_reparent_charges(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -07006095 if (memcg->soft_contributed) {
6096 while ((memcg = parent_mem_cgroup(memcg)))
6097 atomic_dec(&memcg->children_in_excess);
Michal Hocko1be171d2013-09-12 15:13:32 -07006098
6099 if (memcg != root_mem_cgroup && !root_mem_cgroup->use_hierarchy)
6100 atomic_dec(&root_mem_cgroup->children_in_excess);
Michal Hocko7d910c02013-09-12 15:13:28 -07006101 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08006102 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07006103 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006104}
6105
Tejun Heoeb954192013-08-08 20:11:23 -04006106static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006107{
Tejun Heoeb954192013-08-08 20:11:23 -04006108 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08006109
Li Zefan10d5ebf2013-07-08 16:00:33 -07006110 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07006111 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006112}
6113
Daisuke Nishimura02491442010-03-10 15:22:17 -08006114#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006115/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006116#define PRECHARGE_COUNT_AT_ONCE 256
6117static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006118{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006119 int ret = 0;
6120 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006121 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006122
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006123 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006124 mc.precharge += count;
6125 /* we don't need css_get for root */
6126 return ret;
6127 }
6128 /* try to charge at once */
6129 if (count > 1) {
6130 struct res_counter *dummy;
6131 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006132 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006133 * by cgroup_lock_live_cgroup() that it is not removed and we
6134 * are still under the same cgroup_mutex. So we can postpone
6135 * css_get().
6136 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006137 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006138 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006139 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006140 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006141 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006142 goto one_by_one;
6143 }
6144 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006145 return ret;
6146 }
6147one_by_one:
6148 /* fall back to one by one charge */
6149 while (count--) {
6150 if (signal_pending(current)) {
6151 ret = -EINTR;
6152 break;
6153 }
6154 if (!batch_count--) {
6155 batch_count = PRECHARGE_COUNT_AT_ONCE;
6156 cond_resched();
6157 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006158 ret = __mem_cgroup_try_charge(NULL,
6159 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006160 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006161 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006162 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006163 mc.precharge++;
6164 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006165 return ret;
6166}
6167
6168/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006169 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006170 * @vma: the vma the pte to be checked belongs
6171 * @addr: the address corresponding to the pte to be checked
6172 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08006173 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006174 *
6175 * Returns
6176 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6177 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6178 * move charge. if @target is not NULL, the page is stored in target->page
6179 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006180 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6181 * target for charge migration. if @target is not NULL, the entry is stored
6182 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006183 *
6184 * Called with pte lock held.
6185 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006186union mc_target {
6187 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006188 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006189};
6190
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006191enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006192 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006193 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006194 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006195};
6196
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006197static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6198 unsigned long addr, pte_t ptent)
6199{
6200 struct page *page = vm_normal_page(vma, addr, ptent);
6201
6202 if (!page || !page_mapped(page))
6203 return NULL;
6204 if (PageAnon(page)) {
6205 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006206 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006207 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006208 } else if (!move_file())
6209 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006210 return NULL;
6211 if (!get_page_unless_zero(page))
6212 return NULL;
6213
6214 return page;
6215}
6216
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006217#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006218static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6219 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6220{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006221 struct page *page = NULL;
6222 swp_entry_t ent = pte_to_swp_entry(ptent);
6223
6224 if (!move_anon() || non_swap_entry(ent))
6225 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006226 /*
6227 * Because lookup_swap_cache() updates some statistics counter,
6228 * we call find_get_page() with swapper_space directly.
6229 */
Shaohua Li33806f02013-02-22 16:34:37 -08006230 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006231 if (do_swap_account)
6232 entry->val = ent.val;
6233
6234 return page;
6235}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006236#else
6237static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6238 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6239{
6240 return NULL;
6241}
6242#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006243
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006244static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6245 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6246{
6247 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006248 struct address_space *mapping;
6249 pgoff_t pgoff;
6250
6251 if (!vma->vm_file) /* anonymous vma */
6252 return NULL;
6253 if (!move_file())
6254 return NULL;
6255
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006256 mapping = vma->vm_file->f_mapping;
6257 if (pte_none(ptent))
6258 pgoff = linear_page_index(vma, addr);
6259 else /* pte_file(ptent) is true */
6260 pgoff = pte_to_pgoff(ptent);
6261
6262 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006263 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006264
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006265#ifdef CONFIG_SWAP
6266 /* shmem/tmpfs may report page out on swap: account for that too. */
6267 if (radix_tree_exceptional_entry(page)) {
6268 swp_entry_t swap = radix_to_swp_entry(page);
6269 if (do_swap_account)
6270 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006271 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006272 }
6273#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006274 return page;
6275}
6276
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006277static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006278 unsigned long addr, pte_t ptent, union mc_target *target)
6279{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006280 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006281 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006282 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006283 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006284
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006285 if (pte_present(ptent))
6286 page = mc_handle_present_pte(vma, addr, ptent);
6287 else if (is_swap_pte(ptent))
6288 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006289 else if (pte_none(ptent) || pte_file(ptent))
6290 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006291
6292 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006293 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006294 if (page) {
6295 pc = lookup_page_cgroup(page);
6296 /*
6297 * Do only loose check w/o page_cgroup lock.
6298 * mem_cgroup_move_account() checks the pc is valid or not under
6299 * the lock.
6300 */
6301 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6302 ret = MC_TARGET_PAGE;
6303 if (target)
6304 target->page = page;
6305 }
6306 if (!ret || !target)
6307 put_page(page);
6308 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006309 /* There is a swap entry and a page doesn't exist or isn't charged */
6310 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08006311 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006312 ret = MC_TARGET_SWAP;
6313 if (target)
6314 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006315 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006316 return ret;
6317}
6318
Naoya Horiguchi12724852012-03-21 16:34:28 -07006319#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6320/*
6321 * We don't consider swapping or file mapped pages because THP does not
6322 * support them for now.
6323 * Caller should make sure that pmd_trans_huge(pmd) is true.
6324 */
6325static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6326 unsigned long addr, pmd_t pmd, union mc_target *target)
6327{
6328 struct page *page = NULL;
6329 struct page_cgroup *pc;
6330 enum mc_target_type ret = MC_TARGET_NONE;
6331
6332 page = pmd_page(pmd);
6333 VM_BUG_ON(!page || !PageHead(page));
6334 if (!move_anon())
6335 return ret;
6336 pc = lookup_page_cgroup(page);
6337 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6338 ret = MC_TARGET_PAGE;
6339 if (target) {
6340 get_page(page);
6341 target->page = page;
6342 }
6343 }
6344 return ret;
6345}
6346#else
6347static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6348 unsigned long addr, pmd_t pmd, union mc_target *target)
6349{
6350 return MC_TARGET_NONE;
6351}
6352#endif
6353
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006354static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6355 unsigned long addr, unsigned long end,
6356 struct mm_walk *walk)
6357{
6358 struct vm_area_struct *vma = walk->private;
6359 pte_t *pte;
6360 spinlock_t *ptl;
6361
Naoya Horiguchi12724852012-03-21 16:34:28 -07006362 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6363 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6364 mc.precharge += HPAGE_PMD_NR;
6365 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006366 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006367 }
Dave Hansen03319322011-03-22 16:32:56 -07006368
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006369 if (pmd_trans_unstable(pmd))
6370 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006371 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6372 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006373 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006374 mc.precharge++; /* increment precharge temporarily */
6375 pte_unmap_unlock(pte - 1, ptl);
6376 cond_resched();
6377
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006378 return 0;
6379}
6380
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006381static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6382{
6383 unsigned long precharge;
6384 struct vm_area_struct *vma;
6385
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006386 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006387 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6388 struct mm_walk mem_cgroup_count_precharge_walk = {
6389 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6390 .mm = mm,
6391 .private = vma,
6392 };
6393 if (is_vm_hugetlb_page(vma))
6394 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006395 walk_page_range(vma->vm_start, vma->vm_end,
6396 &mem_cgroup_count_precharge_walk);
6397 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006398 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006399
6400 precharge = mc.precharge;
6401 mc.precharge = 0;
6402
6403 return precharge;
6404}
6405
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006406static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6407{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006408 unsigned long precharge = mem_cgroup_count_precharge(mm);
6409
6410 VM_BUG_ON(mc.moving_task);
6411 mc.moving_task = current;
6412 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006413}
6414
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006415/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6416static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006417{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006418 struct mem_cgroup *from = mc.from;
6419 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006420 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006421
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006422 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006423 if (mc.precharge) {
6424 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6425 mc.precharge = 0;
6426 }
6427 /*
6428 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6429 * we must uncharge here.
6430 */
6431 if (mc.moved_charge) {
6432 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6433 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006434 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006435 /* we must fixup refcnts and charges */
6436 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006437 /* uncharge swap account from the old cgroup */
6438 if (!mem_cgroup_is_root(mc.from))
6439 res_counter_uncharge(&mc.from->memsw,
6440 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006441
6442 for (i = 0; i < mc.moved_swap; i++)
6443 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006444
6445 if (!mem_cgroup_is_root(mc.to)) {
6446 /*
6447 * we charged both to->res and to->memsw, so we should
6448 * uncharge to->res.
6449 */
6450 res_counter_uncharge(&mc.to->res,
6451 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006452 }
Li Zefan40503772013-07-08 16:00:34 -07006453 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006454 mc.moved_swap = 0;
6455 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006456 memcg_oom_recover(from);
6457 memcg_oom_recover(to);
6458 wake_up_all(&mc.waitq);
6459}
6460
6461static void mem_cgroup_clear_mc(void)
6462{
6463 struct mem_cgroup *from = mc.from;
6464
6465 /*
6466 * we must clear moving_task before waking up waiters at the end of
6467 * task migration.
6468 */
6469 mc.moving_task = NULL;
6470 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006471 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006472 mc.from = NULL;
6473 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006474 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006475 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006476}
6477
Tejun Heoeb954192013-08-08 20:11:23 -04006478static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006479 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006480{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006481 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006482 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006483 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006484 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006485
Glauber Costaee5e8472013-02-22 16:34:50 -08006486 /*
6487 * We are now commited to this value whatever it is. Changes in this
6488 * tunable will only affect upcoming migrations, not the current one.
6489 * So we need to save it, and keep it going.
6490 */
6491 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6492 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006493 struct mm_struct *mm;
6494 struct mem_cgroup *from = mem_cgroup_from_task(p);
6495
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006496 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006497
6498 mm = get_task_mm(p);
6499 if (!mm)
6500 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006501 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006502 if (mm->owner == p) {
6503 VM_BUG_ON(mc.from);
6504 VM_BUG_ON(mc.to);
6505 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006506 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006507 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006508 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006509 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006510 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006511 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006512 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006513 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006514 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006515
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006516 ret = mem_cgroup_precharge_mc(mm);
6517 if (ret)
6518 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006519 }
6520 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006521 }
6522 return ret;
6523}
6524
Tejun Heoeb954192013-08-08 20:11:23 -04006525static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006526 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006527{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006528 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006529}
6530
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006531static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6532 unsigned long addr, unsigned long end,
6533 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006534{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006535 int ret = 0;
6536 struct vm_area_struct *vma = walk->private;
6537 pte_t *pte;
6538 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006539 enum mc_target_type target_type;
6540 union mc_target target;
6541 struct page *page;
6542 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006543
Naoya Horiguchi12724852012-03-21 16:34:28 -07006544 /*
6545 * We don't take compound_lock() here but no race with splitting thp
6546 * happens because:
6547 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6548 * under splitting, which means there's no concurrent thp split,
6549 * - if another thread runs into split_huge_page() just after we
6550 * entered this if-block, the thread must wait for page table lock
6551 * to be unlocked in __split_huge_page_splitting(), where the main
6552 * part of thp split is not executed yet.
6553 */
6554 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006555 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006556 spin_unlock(&vma->vm_mm->page_table_lock);
6557 return 0;
6558 }
6559 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6560 if (target_type == MC_TARGET_PAGE) {
6561 page = target.page;
6562 if (!isolate_lru_page(page)) {
6563 pc = lookup_page_cgroup(page);
6564 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006565 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006566 mc.precharge -= HPAGE_PMD_NR;
6567 mc.moved_charge += HPAGE_PMD_NR;
6568 }
6569 putback_lru_page(page);
6570 }
6571 put_page(page);
6572 }
6573 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006574 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006575 }
6576
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006577 if (pmd_trans_unstable(pmd))
6578 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006579retry:
6580 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6581 for (; addr != end; addr += PAGE_SIZE) {
6582 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006583 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006584
6585 if (!mc.precharge)
6586 break;
6587
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006588 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006589 case MC_TARGET_PAGE:
6590 page = target.page;
6591 if (isolate_lru_page(page))
6592 goto put;
6593 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006594 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006595 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006596 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006597 /* we uncharge from mc.from later. */
6598 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006599 }
6600 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006601put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006602 put_page(page);
6603 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006604 case MC_TARGET_SWAP:
6605 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006606 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006607 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006608 /* we fixup refcnts and charges later. */
6609 mc.moved_swap++;
6610 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006611 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006612 default:
6613 break;
6614 }
6615 }
6616 pte_unmap_unlock(pte - 1, ptl);
6617 cond_resched();
6618
6619 if (addr != end) {
6620 /*
6621 * We have consumed all precharges we got in can_attach().
6622 * We try charge one by one, but don't do any additional
6623 * charges to mc.to if we have failed in charge once in attach()
6624 * phase.
6625 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006626 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006627 if (!ret)
6628 goto retry;
6629 }
6630
6631 return ret;
6632}
6633
6634static void mem_cgroup_move_charge(struct mm_struct *mm)
6635{
6636 struct vm_area_struct *vma;
6637
6638 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006639retry:
6640 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6641 /*
6642 * Someone who are holding the mmap_sem might be waiting in
6643 * waitq. So we cancel all extra charges, wake up all waiters,
6644 * and retry. Because we cancel precharges, we might not be able
6645 * to move enough charges, but moving charge is a best-effort
6646 * feature anyway, so it wouldn't be a big problem.
6647 */
6648 __mem_cgroup_clear_mc();
6649 cond_resched();
6650 goto retry;
6651 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006652 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6653 int ret;
6654 struct mm_walk mem_cgroup_move_charge_walk = {
6655 .pmd_entry = mem_cgroup_move_charge_pte_range,
6656 .mm = mm,
6657 .private = vma,
6658 };
6659 if (is_vm_hugetlb_page(vma))
6660 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006661 ret = walk_page_range(vma->vm_start, vma->vm_end,
6662 &mem_cgroup_move_charge_walk);
6663 if (ret)
6664 /*
6665 * means we have consumed all precharges and failed in
6666 * doing additional charge. Just abandon here.
6667 */
6668 break;
6669 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006670 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006671}
6672
Tejun Heoeb954192013-08-08 20:11:23 -04006673static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006674 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006675{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006676 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006677 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006678
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006679 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006680 if (mc.to)
6681 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006682 mmput(mm);
6683 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006684 if (mc.to)
6685 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006686}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006687#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006688static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006689 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006690{
6691 return 0;
6692}
Tejun Heoeb954192013-08-08 20:11:23 -04006693static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006694 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006695{
6696}
Tejun Heoeb954192013-08-08 20:11:23 -04006697static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006698 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006699{
6700}
6701#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006702
Tejun Heof00baae2013-04-15 13:41:15 -07006703/*
6704 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6705 * to verify sane_behavior flag on each mount attempt.
6706 */
Tejun Heoeb954192013-08-08 20:11:23 -04006707static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006708{
6709 /*
6710 * use_hierarchy is forced with sane_behavior. cgroup core
6711 * guarantees that @root doesn't have any children, so turning it
6712 * on for the root memcg is enough.
6713 */
Tejun Heoeb954192013-08-08 20:11:23 -04006714 if (cgroup_sane_behavior(root_css->cgroup))
6715 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006716}
6717
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006718struct cgroup_subsys mem_cgroup_subsys = {
6719 .name = "memory",
6720 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006721 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006722 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006723 .css_offline = mem_cgroup_css_offline,
6724 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006725 .can_attach = mem_cgroup_can_attach,
6726 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006727 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006728 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006729 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006730 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006731 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006732};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006733
Andrew Mortonc255a452012-07-31 16:43:02 -07006734#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006735static int __init enable_swap_account(char *s)
6736{
Michal Hockoa2c89902011-05-24 17:12:50 -07006737 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006738 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006739 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006740 really_do_swap_account = 0;
6741 return 1;
6742}
Michal Hockoa2c89902011-05-24 17:12:50 -07006743__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006744
Michal Hocko2d110852013-02-22 16:34:43 -08006745static void __init memsw_file_init(void)
6746{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006747 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006748}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006749
6750static void __init enable_swap_cgroup(void)
6751{
6752 if (!mem_cgroup_disabled() && really_do_swap_account) {
6753 do_swap_account = 1;
6754 memsw_file_init();
6755 }
6756}
6757
Michal Hocko2d110852013-02-22 16:34:43 -08006758#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006759static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006760{
6761}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006762#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006763
6764/*
Michal Hocko10813122013-02-22 16:35:41 -08006765 * subsys_initcall() for memory controller.
6766 *
6767 * Some parts like hotcpu_notifier() have to be initialized from this context
6768 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6769 * everything that doesn't depend on a specific mem_cgroup structure should
6770 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006771 */
6772static int __init mem_cgroup_init(void)
6773{
6774 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006775 enable_swap_cgroup();
Michal Hockoe4777492013-02-22 16:35:40 -08006776 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006777 return 0;
6778}
6779subsys_initcall(mem_cgroup_init);