blob: 0093bc36c5fc7694214a8fddc02bdeb6382c7a99 [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 Weinerf53d7ce32012-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 Weinerf53d7ce32012-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 Weinerf53d7ce32012-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 Weinerf53d7ce32012-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 Weinerf53d7ce32012-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 Weinerf53d7ce32012-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 Weinerf53d7ce32012-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 Weinerf53d7ce32012-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 Weinerf53d7ce32012-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
Sha Zhengju658b72c2013-09-12 15:13:52 -07002228 VM_BUG_ON(!rcu_read_lock_held());
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002229 memcg = pc->mem_cgroup;
2230 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002231 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002232
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002233 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002234}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002235
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002236/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002237 * size of first charge trial. "32" comes from vmscan.c's magic value.
2238 * TODO: maybe necessary to use big numbers in big irons.
2239 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002240#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002241struct memcg_stock_pcp {
2242 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002243 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002244 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002245 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002246#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002247};
2248static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002249static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002250
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002251/**
2252 * consume_stock: Try to consume stocked charge on this cpu.
2253 * @memcg: memcg to consume from.
2254 * @nr_pages: how many pages to charge.
2255 *
2256 * The charges will only happen if @memcg matches the current cpu's memcg
2257 * stock, and at least @nr_pages are available in that stock. Failure to
2258 * service an allocation will refill the stock.
2259 *
2260 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002261 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002262static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002263{
2264 struct memcg_stock_pcp *stock;
2265 bool ret = true;
2266
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002267 if (nr_pages > CHARGE_BATCH)
2268 return false;
2269
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002270 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002271 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2272 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002273 else /* need to call res_counter_charge */
2274 ret = false;
2275 put_cpu_var(memcg_stock);
2276 return ret;
2277}
2278
2279/*
2280 * Returns stocks cached in percpu to res_counter and reset cached information.
2281 */
2282static void drain_stock(struct memcg_stock_pcp *stock)
2283{
2284 struct mem_cgroup *old = stock->cached;
2285
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002286 if (stock->nr_pages) {
2287 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2288
2289 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002290 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002291 res_counter_uncharge(&old->memsw, bytes);
2292 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002293 }
2294 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002295}
2296
2297/*
2298 * This must be called under preempt disabled or must be called by
2299 * a thread which is pinned to local cpu.
2300 */
2301static void drain_local_stock(struct work_struct *dummy)
2302{
2303 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2304 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002305 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002306}
2307
Michal Hockoe4777492013-02-22 16:35:40 -08002308static void __init memcg_stock_init(void)
2309{
2310 int cpu;
2311
2312 for_each_possible_cpu(cpu) {
2313 struct memcg_stock_pcp *stock =
2314 &per_cpu(memcg_stock, cpu);
2315 INIT_WORK(&stock->work, drain_local_stock);
2316 }
2317}
2318
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002319/*
2320 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002321 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002322 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002323static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002324{
2325 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2326
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002327 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002328 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002329 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002330 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002331 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002332 put_cpu_var(memcg_stock);
2333}
2334
2335/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002336 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002337 * of the hierarchy under it. sync flag says whether we should block
2338 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002339 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002340static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002341{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002342 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002343
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002344 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002345 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002346 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002347 for_each_online_cpu(cpu) {
2348 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002349 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002350
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002351 memcg = stock->cached;
2352 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002353 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002354 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002355 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002356 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2357 if (cpu == curcpu)
2358 drain_local_stock(&stock->work);
2359 else
2360 schedule_work_on(cpu, &stock->work);
2361 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002362 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002363 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002364
2365 if (!sync)
2366 goto out;
2367
2368 for_each_online_cpu(cpu) {
2369 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002370 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002371 flush_work(&stock->work);
2372 }
2373out:
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002374 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002375}
2376
2377/*
2378 * Tries to drain stocked charges in other cpus. This function is asynchronous
2379 * and just put a work per cpu for draining localy on each cpu. Caller can
2380 * expects some charges will be back to res_counter later but cannot wait for
2381 * it.
2382 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002383static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002384{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002385 /*
2386 * If someone calls draining, avoid adding more kworker runs.
2387 */
2388 if (!mutex_trylock(&percpu_charge_mutex))
2389 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002390 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002391 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002392}
2393
2394/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002395static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002396{
2397 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002398 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002399 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002400 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002401}
2402
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002403/*
2404 * This function drains percpu counter value from DEAD cpu and
2405 * move it to local cpu. Note that this function can be preempted.
2406 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002407static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002408{
2409 int i;
2410
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002411 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002412 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002413 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002414
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002415 per_cpu(memcg->stat->count[i], cpu) = 0;
2416 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002417 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002418 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002419 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002420
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002421 per_cpu(memcg->stat->events[i], cpu) = 0;
2422 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002423 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002424 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002425}
2426
Paul Gortmaker0db06282013-06-19 14:53:51 -04002427static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002428 unsigned long action,
2429 void *hcpu)
2430{
2431 int cpu = (unsigned long)hcpu;
2432 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002433 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002434
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002435 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002436 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002437
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002438 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002439 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002440
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002441 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002442 mem_cgroup_drain_pcp_counter(iter, cpu);
2443
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002444 stock = &per_cpu(memcg_stock, cpu);
2445 drain_stock(stock);
2446 return NOTIFY_OK;
2447}
2448
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002449
2450/* See __mem_cgroup_try_charge() for details */
2451enum {
2452 CHARGE_OK, /* success */
2453 CHARGE_RETRY, /* need to retry but retry is not bad */
2454 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2455 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002456};
2457
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002458static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002459 unsigned int nr_pages, unsigned int min_pages,
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002460 bool invoke_oom)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002461{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002462 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002463 struct mem_cgroup *mem_over_limit;
2464 struct res_counter *fail_res;
2465 unsigned long flags = 0;
2466 int ret;
2467
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002468 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002469
2470 if (likely(!ret)) {
2471 if (!do_swap_account)
2472 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002473 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002474 if (likely(!ret))
2475 return CHARGE_OK;
2476
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002477 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002478 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2479 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2480 } else
2481 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002482 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002483 * Never reclaim on behalf of optional batching, retry with a
2484 * single page instead.
2485 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002486 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002487 return CHARGE_RETRY;
2488
2489 if (!(gfp_mask & __GFP_WAIT))
2490 return CHARGE_WOULDBLOCK;
2491
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002492 if (gfp_mask & __GFP_NORETRY)
2493 return CHARGE_NOMEM;
2494
Johannes Weiner56600482012-01-12 17:17:59 -08002495 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002496 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002497 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002498 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002499 * Even though the limit is exceeded at this point, reclaim
2500 * may have been able to free some pages. Retry the charge
2501 * before killing the task.
2502 *
2503 * Only for regular pages, though: huge pages are rather
2504 * unlikely to succeed so close to the limit, and we fall back
2505 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002506 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002507 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002508 return CHARGE_RETRY;
2509
2510 /*
2511 * At task move, charge accounts can be doubly counted. So, it's
2512 * better to wait until the end of task_move if something is going on.
2513 */
2514 if (mem_cgroup_wait_acct_move(mem_over_limit))
2515 return CHARGE_RETRY;
2516
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002517 if (invoke_oom)
2518 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(csize));
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002519
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002520 return CHARGE_NOMEM;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002521}
2522
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002523/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002524 * __mem_cgroup_try_charge() does
2525 * 1. detect memcg to be charged against from passed *mm and *ptr,
2526 * 2. update res_counter
2527 * 3. call memory reclaim if necessary.
2528 *
2529 * In some special case, if the task is fatal, fatal_signal_pending() or
2530 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2531 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2532 * as possible without any hazards. 2: all pages should have a valid
2533 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2534 * pointer, that is treated as a charge to root_mem_cgroup.
2535 *
2536 * So __mem_cgroup_try_charge() will return
2537 * 0 ... on success, filling *ptr with a valid memcg pointer.
2538 * -ENOMEM ... charge failure because of resource limits.
2539 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2540 *
2541 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2542 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002543 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002544static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002545 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002546 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002547 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002548 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002549{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002550 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002551 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002552 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002553 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002554
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002555 /*
2556 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2557 * in system level. So, allow to go ahead dying process in addition to
2558 * MEMDIE process.
2559 */
2560 if (unlikely(test_thread_flag(TIF_MEMDIE)
2561 || fatal_signal_pending(current)))
2562 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002563
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002564 /*
Hugh Dickins3be912772008-02-07 00:14:19 -08002565 * We always charge the cgroup the mm_struct belongs to.
2566 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002567 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002568 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002569 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002570 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002571 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002572again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002573 if (*ptr) { /* css should be a valid one */
2574 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002575 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002576 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002577 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002578 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002579 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002580 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002581 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002582
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002583 rcu_read_lock();
2584 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002585 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002586 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002587 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002588 * race with swapoff. Then, we have small risk of mis-accouning.
2589 * But such kind of mis-account by race always happens because
2590 * we don't have cgroup_mutex(). It's overkill and we allo that
2591 * small race, here.
2592 * (*) swapoff at el will charge against mm-struct not against
2593 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002594 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002595 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002596 if (!memcg)
2597 memcg = root_mem_cgroup;
2598 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002599 rcu_read_unlock();
2600 goto done;
2601 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002602 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002603 /*
2604 * It seems dagerous to access memcg without css_get().
2605 * But considering how consume_stok works, it's not
2606 * necessary. If consume_stock success, some charges
2607 * from this memcg are cached on this cpu. So, we
2608 * don't need to call css_get()/css_tryget() before
2609 * calling consume_stock().
2610 */
2611 rcu_read_unlock();
2612 goto done;
2613 }
2614 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002615 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002616 rcu_read_unlock();
2617 goto again;
2618 }
2619 rcu_read_unlock();
2620 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002621
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002622 do {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002623 bool invoke_oom = oom && !nr_oom_retries;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002624
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002625 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002626 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002627 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002628 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002629 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002630
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002631 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch,
2632 nr_pages, invoke_oom);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002633 switch (ret) {
2634 case CHARGE_OK:
2635 break;
2636 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002637 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002638 css_put(&memcg->css);
2639 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002640 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002641 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002642 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002643 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002644 case CHARGE_NOMEM: /* OOM routine works */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002645 if (!oom || invoke_oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002646 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002647 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002648 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002649 nr_oom_retries--;
2650 break;
Balbir Singh66e17072008-02-07 00:13:56 -08002651 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002652 } while (ret != CHARGE_OK);
2653
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002654 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002655 refill_stock(memcg, batch - nr_pages);
2656 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002657done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002658 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002659 return 0;
2660nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002661 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002662 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002663bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002664 *ptr = root_mem_cgroup;
2665 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002666}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002667
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002668/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002669 * Somemtimes we have to undo a charge we got by try_charge().
2670 * This function is for that and do uncharge, put css's refcnt.
2671 * gotten by try_charge().
2672 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002673static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002674 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002675{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002676 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002677 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002678
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002679 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002680 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002681 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002682 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002683}
2684
2685/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002686 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2687 * This is useful when moving usage to parent cgroup.
2688 */
2689static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2690 unsigned int nr_pages)
2691{
2692 unsigned long bytes = nr_pages * PAGE_SIZE;
2693
2694 if (mem_cgroup_is_root(memcg))
2695 return;
2696
2697 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2698 if (do_swap_account)
2699 res_counter_uncharge_until(&memcg->memsw,
2700 memcg->memsw.parent, bytes);
2701}
2702
2703/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002704 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002705 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2706 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2707 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002708 */
2709static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2710{
2711 struct cgroup_subsys_state *css;
2712
2713 /* ID 0 is unused ID */
2714 if (!id)
2715 return NULL;
2716 css = css_lookup(&mem_cgroup_subsys, id);
2717 if (!css)
2718 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002719 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002720}
2721
Wu Fengguange42d9d52009-12-16 12:19:59 +01002722struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002723{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002724 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002725 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002726 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002727 swp_entry_t ent;
2728
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002729 VM_BUG_ON(!PageLocked(page));
2730
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002731 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002732 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002733 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002734 memcg = pc->mem_cgroup;
2735 if (memcg && !css_tryget(&memcg->css))
2736 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002737 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002738 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002739 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002740 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002741 memcg = mem_cgroup_lookup(id);
2742 if (memcg && !css_tryget(&memcg->css))
2743 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002744 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002745 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002746 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002747 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002748}
2749
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002750static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002751 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002752 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002753 enum charge_type ctype,
2754 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002755{
Johannes Weinerce587e62012-04-24 20:22:33 +02002756 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002757 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002758 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002759 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002760 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002761
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002762 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002763 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002764 /*
2765 * we don't need page_cgroup_lock about tail pages, becase they are not
2766 * accessed by any other context at this point.
2767 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002768
2769 /*
2770 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2771 * may already be on some other mem_cgroup's LRU. Take care of it.
2772 */
2773 if (lrucare) {
2774 zone = page_zone(page);
2775 spin_lock_irq(&zone->lru_lock);
2776 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002777 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002778 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002779 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002780 was_on_lru = true;
2781 }
2782 }
2783
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002784 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002785 /*
2786 * We access a page_cgroup asynchronously without lock_page_cgroup().
2787 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2788 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2789 * before USED bit, we need memory barrier here.
2790 * See mem_cgroup_add_lru_list(), etc.
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002791 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002792 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002793 SetPageCgroupUsed(pc);
Hugh Dickins3be912772008-02-07 00:14:19 -08002794
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002795 if (lrucare) {
2796 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002797 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002798 VM_BUG_ON(PageLRU(page));
2799 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002800 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002801 }
2802 spin_unlock_irq(&zone->lru_lock);
2803 }
2804
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002805 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002806 anon = true;
2807 else
2808 anon = false;
2809
David Rientjesb070e652013-05-07 16:18:09 -07002810 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002811 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002812
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002813 /*
Michal Hockoe8831102013-09-12 15:13:23 -07002814 * "charge_statistics" updated event counter.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002815 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002816 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002817}
2818
Glauber Costa7cf27982012-12-18 14:22:55 -08002819static DEFINE_MUTEX(set_limit_mutex);
2820
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002821#ifdef CONFIG_MEMCG_KMEM
2822static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2823{
2824 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2825 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2826}
2827
Glauber Costa1f458cb2012-12-18 14:22:50 -08002828/*
2829 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2830 * in the memcg_cache_params struct.
2831 */
2832static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2833{
2834 struct kmem_cache *cachep;
2835
2836 VM_BUG_ON(p->is_root_cache);
2837 cachep = p->root_cache;
2838 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2839}
2840
Glauber Costa749c5412012-12-18 14:23:01 -08002841#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002842static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2843 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002844{
Tejun Heo182446d2013-08-08 20:11:24 -04002845 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002846 struct memcg_cache_params *params;
2847
2848 if (!memcg_can_account_kmem(memcg))
2849 return -EIO;
2850
2851 print_slabinfo_header(m);
2852
2853 mutex_lock(&memcg->slab_caches_mutex);
2854 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2855 cache_show(memcg_params_to_cache(params), m);
2856 mutex_unlock(&memcg->slab_caches_mutex);
2857
2858 return 0;
2859}
2860#endif
2861
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002862static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2863{
2864 struct res_counter *fail_res;
2865 struct mem_cgroup *_memcg;
2866 int ret = 0;
2867 bool may_oom;
2868
2869 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2870 if (ret)
2871 return ret;
2872
2873 /*
2874 * Conditions under which we can wait for the oom_killer. Those are
2875 * the same conditions tested by the core page allocator
2876 */
2877 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2878
2879 _memcg = memcg;
2880 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2881 &_memcg, may_oom);
2882
2883 if (ret == -EINTR) {
2884 /*
2885 * __mem_cgroup_try_charge() chosed to bypass to root due to
2886 * OOM kill or fatal signal. Since our only options are to
2887 * either fail the allocation or charge it to this cgroup, do
2888 * it as a temporary condition. But we can't fail. From a
2889 * kmem/slab perspective, the cache has already been selected,
2890 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2891 * our minds.
2892 *
2893 * This condition will only trigger if the task entered
2894 * memcg_charge_kmem in a sane state, but was OOM-killed during
2895 * __mem_cgroup_try_charge() above. Tasks that were already
2896 * dying when the allocation triggers should have been already
2897 * directed to the root cgroup in memcontrol.h
2898 */
2899 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2900 if (do_swap_account)
2901 res_counter_charge_nofail(&memcg->memsw, size,
2902 &fail_res);
2903 ret = 0;
2904 } else if (ret)
2905 res_counter_uncharge(&memcg->kmem, size);
2906
2907 return ret;
2908}
2909
2910static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2911{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002912 res_counter_uncharge(&memcg->res, size);
2913 if (do_swap_account)
2914 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002915
2916 /* Not down to 0 */
2917 if (res_counter_uncharge(&memcg->kmem, size))
2918 return;
2919
Li Zefan10d5ebf2013-07-08 16:00:33 -07002920 /*
2921 * Releases a reference taken in kmem_cgroup_css_offline in case
2922 * this last uncharge is racing with the offlining code or it is
2923 * outliving the memcg existence.
2924 *
2925 * The memory barrier imposed by test&clear is paired with the
2926 * explicit one in memcg_kmem_mark_dead().
2927 */
Glauber Costa7de37682012-12-18 14:22:07 -08002928 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002929 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002930}
2931
Glauber Costa2633d7a2012-12-18 14:22:34 -08002932void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2933{
2934 if (!memcg)
2935 return;
2936
2937 mutex_lock(&memcg->slab_caches_mutex);
2938 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2939 mutex_unlock(&memcg->slab_caches_mutex);
2940}
2941
2942/*
2943 * helper for acessing a memcg's index. It will be used as an index in the
2944 * child cache array in kmem_cache, and also to derive its name. This function
2945 * will return -1 when this is not a kmem-limited memcg.
2946 */
2947int memcg_cache_id(struct mem_cgroup *memcg)
2948{
2949 return memcg ? memcg->kmemcg_id : -1;
2950}
2951
Glauber Costa55007d82012-12-18 14:22:38 -08002952/*
2953 * This ends up being protected by the set_limit mutex, during normal
2954 * operation, because that is its main call site.
2955 *
2956 * But when we create a new cache, we can call this as well if its parent
2957 * is kmem-limited. That will have to hold set_limit_mutex as well.
2958 */
2959int memcg_update_cache_sizes(struct mem_cgroup *memcg)
2960{
2961 int num, ret;
2962
2963 num = ida_simple_get(&kmem_limited_groups,
2964 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2965 if (num < 0)
2966 return num;
2967 /*
2968 * After this point, kmem_accounted (that we test atomically in
2969 * the beginning of this conditional), is no longer 0. This
2970 * guarantees only one process will set the following boolean
2971 * to true. We don't need test_and_set because we're protected
2972 * by the set_limit_mutex anyway.
2973 */
2974 memcg_kmem_set_activated(memcg);
2975
2976 ret = memcg_update_all_caches(num+1);
2977 if (ret) {
2978 ida_simple_remove(&kmem_limited_groups, num);
2979 memcg_kmem_clear_activated(memcg);
2980 return ret;
2981 }
2982
2983 memcg->kmemcg_id = num;
2984 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
2985 mutex_init(&memcg->slab_caches_mutex);
2986 return 0;
2987}
2988
2989static size_t memcg_caches_array_size(int num_groups)
2990{
2991 ssize_t size;
2992 if (num_groups <= 0)
2993 return 0;
2994
2995 size = 2 * num_groups;
2996 if (size < MEMCG_CACHES_MIN_SIZE)
2997 size = MEMCG_CACHES_MIN_SIZE;
2998 else if (size > MEMCG_CACHES_MAX_SIZE)
2999 size = MEMCG_CACHES_MAX_SIZE;
3000
3001 return size;
3002}
3003
3004/*
3005 * We should update the current array size iff all caches updates succeed. This
3006 * can only be done from the slab side. The slab mutex needs to be held when
3007 * calling this.
3008 */
3009void memcg_update_array_size(int num)
3010{
3011 if (num > memcg_limited_groups_array_size)
3012 memcg_limited_groups_array_size = memcg_caches_array_size(num);
3013}
3014
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08003015static void kmem_cache_destroy_work_func(struct work_struct *w);
3016
Glauber Costa55007d82012-12-18 14:22:38 -08003017int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
3018{
3019 struct memcg_cache_params *cur_params = s->memcg_params;
3020
3021 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
3022
3023 if (num_groups > memcg_limited_groups_array_size) {
3024 int i;
3025 ssize_t size = memcg_caches_array_size(num_groups);
3026
3027 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003028 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003029
3030 s->memcg_params = kzalloc(size, GFP_KERNEL);
3031 if (!s->memcg_params) {
3032 s->memcg_params = cur_params;
3033 return -ENOMEM;
3034 }
3035
3036 s->memcg_params->is_root_cache = true;
3037
3038 /*
3039 * There is the chance it will be bigger than
3040 * memcg_limited_groups_array_size, if we failed an allocation
3041 * in a cache, in which case all caches updated before it, will
3042 * have a bigger array.
3043 *
3044 * But if that is the case, the data after
3045 * memcg_limited_groups_array_size is certainly unused
3046 */
3047 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3048 if (!cur_params->memcg_caches[i])
3049 continue;
3050 s->memcg_params->memcg_caches[i] =
3051 cur_params->memcg_caches[i];
3052 }
3053
3054 /*
3055 * Ideally, we would wait until all caches succeed, and only
3056 * then free the old one. But this is not worth the extra
3057 * pointer per-cache we'd have to have for this.
3058 *
3059 * It is not a big deal if some caches are left with a size
3060 * bigger than the others. And all updates will reset this
3061 * anyway.
3062 */
3063 kfree(cur_params);
3064 }
3065 return 0;
3066}
3067
Glauber Costa943a4512012-12-18 14:23:03 -08003068int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3069 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08003070{
Andrey Vagin90c7a792013-09-11 14:22:18 -07003071 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003072
3073 if (!memcg_kmem_enabled())
3074 return 0;
3075
Andrey Vagin90c7a792013-09-11 14:22:18 -07003076 if (!memcg) {
3077 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003078 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003079 } else
3080 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08003081
Glauber Costa2633d7a2012-12-18 14:22:34 -08003082 s->memcg_params = kzalloc(size, GFP_KERNEL);
3083 if (!s->memcg_params)
3084 return -ENOMEM;
3085
Glauber Costa943a4512012-12-18 14:23:03 -08003086 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08003087 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08003088 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07003089 INIT_WORK(&s->memcg_params->destroy,
3090 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08003091 } else
3092 s->memcg_params->is_root_cache = true;
3093
Glauber Costa2633d7a2012-12-18 14:22:34 -08003094 return 0;
3095}
3096
3097void memcg_release_cache(struct kmem_cache *s)
3098{
Glauber Costad7f25f82012-12-18 14:22:40 -08003099 struct kmem_cache *root;
3100 struct mem_cgroup *memcg;
3101 int id;
3102
3103 /*
3104 * This happens, for instance, when a root cache goes away before we
3105 * add any memcg.
3106 */
3107 if (!s->memcg_params)
3108 return;
3109
3110 if (s->memcg_params->is_root_cache)
3111 goto out;
3112
3113 memcg = s->memcg_params->memcg;
3114 id = memcg_cache_id(memcg);
3115
3116 root = s->memcg_params->root_cache;
3117 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08003118
3119 mutex_lock(&memcg->slab_caches_mutex);
3120 list_del(&s->memcg_params->list);
3121 mutex_unlock(&memcg->slab_caches_mutex);
3122
Li Zefan20f05312013-07-08 16:00:31 -07003123 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003124out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08003125 kfree(s->memcg_params);
3126}
3127
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003128/*
3129 * During the creation a new cache, we need to disable our accounting mechanism
3130 * altogether. This is true even if we are not creating, but rather just
3131 * enqueing new caches to be created.
3132 *
3133 * This is because that process will trigger allocations; some visible, like
3134 * explicit kmallocs to auxiliary data structures, name strings and internal
3135 * cache structures; some well concealed, like INIT_WORK() that can allocate
3136 * objects during debug.
3137 *
3138 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3139 * to it. This may not be a bounded recursion: since the first cache creation
3140 * failed to complete (waiting on the allocation), we'll just try to create the
3141 * cache again, failing at the same point.
3142 *
3143 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3144 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3145 * inside the following two functions.
3146 */
3147static inline void memcg_stop_kmem_account(void)
3148{
3149 VM_BUG_ON(!current->mm);
3150 current->memcg_kmem_skip_account++;
3151}
3152
3153static inline void memcg_resume_kmem_account(void)
3154{
3155 VM_BUG_ON(!current->mm);
3156 current->memcg_kmem_skip_account--;
3157}
3158
Glauber Costa1f458cb2012-12-18 14:22:50 -08003159static void kmem_cache_destroy_work_func(struct work_struct *w)
3160{
3161 struct kmem_cache *cachep;
3162 struct memcg_cache_params *p;
3163
3164 p = container_of(w, struct memcg_cache_params, destroy);
3165
3166 cachep = memcg_params_to_cache(p);
3167
Glauber Costa22933152012-12-18 14:22:59 -08003168 /*
3169 * If we get down to 0 after shrink, we could delete right away.
3170 * However, memcg_release_pages() already puts us back in the workqueue
3171 * in that case. If we proceed deleting, we'll get a dangling
3172 * reference, and removing the object from the workqueue in that case
3173 * is unnecessary complication. We are not a fast path.
3174 *
3175 * Note that this case is fundamentally different from racing with
3176 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3177 * kmem_cache_shrink, not only we would be reinserting a dead cache
3178 * into the queue, but doing so from inside the worker racing to
3179 * destroy it.
3180 *
3181 * So if we aren't down to zero, we'll just schedule a worker and try
3182 * again
3183 */
3184 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3185 kmem_cache_shrink(cachep);
3186 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3187 return;
3188 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003189 kmem_cache_destroy(cachep);
3190}
3191
3192void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3193{
3194 if (!cachep->memcg_params->dead)
3195 return;
3196
3197 /*
Glauber Costa22933152012-12-18 14:22:59 -08003198 * There are many ways in which we can get here.
3199 *
3200 * We can get to a memory-pressure situation while the delayed work is
3201 * still pending to run. The vmscan shrinkers can then release all
3202 * cache memory and get us to destruction. If this is the case, we'll
3203 * be executed twice, which is a bug (the second time will execute over
3204 * bogus data). In this case, cancelling the work should be fine.
3205 *
3206 * But we can also get here from the worker itself, if
3207 * kmem_cache_shrink is enough to shake all the remaining objects and
3208 * get the page count to 0. In this case, we'll deadlock if we try to
3209 * cancel the work (the worker runs with an internal lock held, which
3210 * is the same lock we would hold for cancel_work_sync().)
3211 *
3212 * Since we can't possibly know who got us here, just refrain from
3213 * running if there is already work pending
3214 */
3215 if (work_pending(&cachep->memcg_params->destroy))
3216 return;
3217 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003218 * We have to defer the actual destroying to a workqueue, because
3219 * we might currently be in a context that cannot sleep.
3220 */
3221 schedule_work(&cachep->memcg_params->destroy);
3222}
3223
Glauber Costad7f25f82012-12-18 14:22:40 -08003224/*
3225 * This lock protects updaters, not readers. We want readers to be as fast as
3226 * they can, and they will either see NULL or a valid cache value. Our model
3227 * allow them to see NULL, in which case the root memcg will be selected.
3228 *
3229 * We need this lock because multiple allocations to the same cache from a non
3230 * will span more than one worker. Only one of them can create the cache.
3231 */
3232static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003233
3234/*
3235 * Called with memcg_cache_mutex held
3236 */
3237static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3238 struct kmem_cache *s)
3239{
3240 struct kmem_cache *new;
3241 static char *tmp_name = NULL;
3242
3243 lockdep_assert_held(&memcg_cache_mutex);
3244
3245 /*
3246 * kmem_cache_create_memcg duplicates the given name and
3247 * cgroup_name for this name requires RCU context.
3248 * This static temporary buffer is used to prevent from
3249 * pointless shortliving allocation.
3250 */
3251 if (!tmp_name) {
3252 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3253 if (!tmp_name)
3254 return NULL;
3255 }
3256
3257 rcu_read_lock();
3258 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3259 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3260 rcu_read_unlock();
3261
3262 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3263 (s->flags & ~SLAB_PANIC), s->ctor, s);
3264
3265 if (new)
3266 new->allocflags |= __GFP_KMEMCG;
3267
3268 return new;
3269}
3270
Glauber Costad7f25f82012-12-18 14:22:40 -08003271static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3272 struct kmem_cache *cachep)
3273{
3274 struct kmem_cache *new_cachep;
3275 int idx;
3276
3277 BUG_ON(!memcg_can_account_kmem(memcg));
3278
3279 idx = memcg_cache_id(memcg);
3280
3281 mutex_lock(&memcg_cache_mutex);
3282 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003283 if (new_cachep) {
3284 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003285 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003286 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003287
3288 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003289 if (new_cachep == NULL) {
3290 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003291 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003292 goto out;
3293 }
3294
Glauber Costa1f458cb2012-12-18 14:22:50 -08003295 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003296
3297 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3298 /*
3299 * the readers won't lock, make sure everybody sees the updated value,
3300 * so they won't put stuff in the queue again for no reason
3301 */
3302 wmb();
3303out:
3304 mutex_unlock(&memcg_cache_mutex);
3305 return new_cachep;
3306}
3307
Glauber Costa7cf27982012-12-18 14:22:55 -08003308void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3309{
3310 struct kmem_cache *c;
3311 int i;
3312
3313 if (!s->memcg_params)
3314 return;
3315 if (!s->memcg_params->is_root_cache)
3316 return;
3317
3318 /*
3319 * If the cache is being destroyed, we trust that there is no one else
3320 * requesting objects from it. Even if there are, the sanity checks in
3321 * kmem_cache_destroy should caught this ill-case.
3322 *
3323 * Still, we don't want anyone else freeing memcg_caches under our
3324 * noses, which can happen if a new memcg comes to life. As usual,
3325 * we'll take the set_limit_mutex to protect ourselves against this.
3326 */
3327 mutex_lock(&set_limit_mutex);
3328 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3329 c = s->memcg_params->memcg_caches[i];
3330 if (!c)
3331 continue;
3332
3333 /*
3334 * We will now manually delete the caches, so to avoid races
3335 * we need to cancel all pending destruction workers and
3336 * proceed with destruction ourselves.
3337 *
3338 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3339 * and that could spawn the workers again: it is likely that
3340 * the cache still have active pages until this very moment.
3341 * This would lead us back to mem_cgroup_destroy_cache.
3342 *
3343 * But that will not execute at all if the "dead" flag is not
3344 * set, so flip it down to guarantee we are in control.
3345 */
3346 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003347 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003348 kmem_cache_destroy(c);
3349 }
3350 mutex_unlock(&set_limit_mutex);
3351}
3352
Glauber Costad7f25f82012-12-18 14:22:40 -08003353struct create_work {
3354 struct mem_cgroup *memcg;
3355 struct kmem_cache *cachep;
3356 struct work_struct work;
3357};
3358
Glauber Costa1f458cb2012-12-18 14:22:50 -08003359static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3360{
3361 struct kmem_cache *cachep;
3362 struct memcg_cache_params *params;
3363
3364 if (!memcg_kmem_is_active(memcg))
3365 return;
3366
3367 mutex_lock(&memcg->slab_caches_mutex);
3368 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3369 cachep = memcg_params_to_cache(params);
3370 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003371 schedule_work(&cachep->memcg_params->destroy);
3372 }
3373 mutex_unlock(&memcg->slab_caches_mutex);
3374}
3375
Glauber Costad7f25f82012-12-18 14:22:40 -08003376static void memcg_create_cache_work_func(struct work_struct *w)
3377{
3378 struct create_work *cw;
3379
3380 cw = container_of(w, struct create_work, work);
3381 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003382 kfree(cw);
3383}
3384
3385/*
3386 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003387 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003388static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3389 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003390{
3391 struct create_work *cw;
3392
3393 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003394 if (cw == NULL) {
3395 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003396 return;
3397 }
3398
3399 cw->memcg = memcg;
3400 cw->cachep = cachep;
3401
3402 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3403 schedule_work(&cw->work);
3404}
3405
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003406static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3407 struct kmem_cache *cachep)
3408{
3409 /*
3410 * We need to stop accounting when we kmalloc, because if the
3411 * corresponding kmalloc cache is not yet created, the first allocation
3412 * in __memcg_create_cache_enqueue will recurse.
3413 *
3414 * However, it is better to enclose the whole function. Depending on
3415 * the debugging options enabled, INIT_WORK(), for instance, can
3416 * trigger an allocation. This too, will make us recurse. Because at
3417 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3418 * the safest choice is to do it like this, wrapping the whole function.
3419 */
3420 memcg_stop_kmem_account();
3421 __memcg_create_cache_enqueue(memcg, cachep);
3422 memcg_resume_kmem_account();
3423}
Glauber Costad7f25f82012-12-18 14:22:40 -08003424/*
3425 * Return the kmem_cache we're supposed to use for a slab allocation.
3426 * We try to use the current memcg's version of the cache.
3427 *
3428 * If the cache does not exist yet, if we are the first user of it,
3429 * we either create it immediately, if possible, or create it asynchronously
3430 * in a workqueue.
3431 * In the latter case, we will let the current allocation go through with
3432 * the original cache.
3433 *
3434 * Can't be called in interrupt context or from kernel threads.
3435 * This function needs to be called with rcu_read_lock() held.
3436 */
3437struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3438 gfp_t gfp)
3439{
3440 struct mem_cgroup *memcg;
3441 int idx;
3442
3443 VM_BUG_ON(!cachep->memcg_params);
3444 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3445
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003446 if (!current->mm || current->memcg_kmem_skip_account)
3447 return cachep;
3448
Glauber Costad7f25f82012-12-18 14:22:40 -08003449 rcu_read_lock();
3450 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003451
3452 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003453 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003454
3455 idx = memcg_cache_id(memcg);
3456
3457 /*
3458 * barrier to mare sure we're always seeing the up to date value. The
3459 * code updating memcg_caches will issue a write barrier to match this.
3460 */
3461 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003462 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3463 cachep = cachep->memcg_params->memcg_caches[idx];
3464 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003465 }
3466
Li Zefanca0dde92013-04-29 15:08:57 -07003467 /* The corresponding put will be done in the workqueue. */
3468 if (!css_tryget(&memcg->css))
3469 goto out;
3470 rcu_read_unlock();
3471
3472 /*
3473 * If we are in a safe context (can wait, and not in interrupt
3474 * context), we could be be predictable and return right away.
3475 * This would guarantee that the allocation being performed
3476 * already belongs in the new cache.
3477 *
3478 * However, there are some clashes that can arrive from locking.
3479 * For instance, because we acquire the slab_mutex while doing
3480 * kmem_cache_dup, this means no further allocation could happen
3481 * with the slab_mutex held.
3482 *
3483 * Also, because cache creation issue get_online_cpus(), this
3484 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3485 * that ends up reversed during cpu hotplug. (cpuset allocates
3486 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3487 * better to defer everything.
3488 */
3489 memcg_create_cache_enqueue(memcg, cachep);
3490 return cachep;
3491out:
3492 rcu_read_unlock();
3493 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003494}
3495EXPORT_SYMBOL(__memcg_kmem_get_cache);
3496
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003497/*
3498 * We need to verify if the allocation against current->mm->owner's memcg is
3499 * possible for the given order. But the page is not allocated yet, so we'll
3500 * need a further commit step to do the final arrangements.
3501 *
3502 * It is possible for the task to switch cgroups in this mean time, so at
3503 * commit time, we can't rely on task conversion any longer. We'll then use
3504 * the handle argument to return to the caller which cgroup we should commit
3505 * against. We could also return the memcg directly and avoid the pointer
3506 * passing, but a boolean return value gives better semantics considering
3507 * the compiled-out case as well.
3508 *
3509 * Returning true means the allocation is possible.
3510 */
3511bool
3512__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3513{
3514 struct mem_cgroup *memcg;
3515 int ret;
3516
3517 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003518
3519 /*
3520 * Disabling accounting is only relevant for some specific memcg
3521 * internal allocations. Therefore we would initially not have such
3522 * check here, since direct calls to the page allocator that are marked
3523 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3524 * concerned with cache allocations, and by having this test at
3525 * memcg_kmem_get_cache, we are already able to relay the allocation to
3526 * the root cache and bypass the memcg cache altogether.
3527 *
3528 * There is one exception, though: the SLUB allocator does not create
3529 * large order caches, but rather service large kmallocs directly from
3530 * the page allocator. Therefore, the following sequence when backed by
3531 * the SLUB allocator:
3532 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003533 * memcg_stop_kmem_account();
3534 * kmalloc(<large_number>)
3535 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003536 *
3537 * would effectively ignore the fact that we should skip accounting,
3538 * since it will drive us directly to this function without passing
3539 * through the cache selector memcg_kmem_get_cache. Such large
3540 * allocations are extremely rare but can happen, for instance, for the
3541 * cache arrays. We bring this test here.
3542 */
3543 if (!current->mm || current->memcg_kmem_skip_account)
3544 return true;
3545
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003546 memcg = try_get_mem_cgroup_from_mm(current->mm);
3547
3548 /*
3549 * very rare case described in mem_cgroup_from_task. Unfortunately there
3550 * isn't much we can do without complicating this too much, and it would
3551 * be gfp-dependent anyway. Just let it go
3552 */
3553 if (unlikely(!memcg))
3554 return true;
3555
3556 if (!memcg_can_account_kmem(memcg)) {
3557 css_put(&memcg->css);
3558 return true;
3559 }
3560
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003561 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3562 if (!ret)
3563 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003564
3565 css_put(&memcg->css);
3566 return (ret == 0);
3567}
3568
3569void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3570 int order)
3571{
3572 struct page_cgroup *pc;
3573
3574 VM_BUG_ON(mem_cgroup_is_root(memcg));
3575
3576 /* The page allocation failed. Revert */
3577 if (!page) {
3578 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003579 return;
3580 }
3581
3582 pc = lookup_page_cgroup(page);
3583 lock_page_cgroup(pc);
3584 pc->mem_cgroup = memcg;
3585 SetPageCgroupUsed(pc);
3586 unlock_page_cgroup(pc);
3587}
3588
3589void __memcg_kmem_uncharge_pages(struct page *page, int order)
3590{
3591 struct mem_cgroup *memcg = NULL;
3592 struct page_cgroup *pc;
3593
3594
3595 pc = lookup_page_cgroup(page);
3596 /*
3597 * Fast unlocked return. Theoretically might have changed, have to
3598 * check again after locking.
3599 */
3600 if (!PageCgroupUsed(pc))
3601 return;
3602
3603 lock_page_cgroup(pc);
3604 if (PageCgroupUsed(pc)) {
3605 memcg = pc->mem_cgroup;
3606 ClearPageCgroupUsed(pc);
3607 }
3608 unlock_page_cgroup(pc);
3609
3610 /*
3611 * We trust that only if there is a memcg associated with the page, it
3612 * is a valid allocation
3613 */
3614 if (!memcg)
3615 return;
3616
3617 VM_BUG_ON(mem_cgroup_is_root(memcg));
3618 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003619}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003620#else
3621static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3622{
3623}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003624#endif /* CONFIG_MEMCG_KMEM */
3625
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003626#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3627
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003628#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003629/*
3630 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003631 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3632 * charge/uncharge will be never happen and move_account() is done under
3633 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003634 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003635void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003636{
3637 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003638 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003639 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003640 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003641
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003642 if (mem_cgroup_disabled())
3643 return;
David Rientjesb070e652013-05-07 16:18:09 -07003644
3645 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003646 for (i = 1; i < HPAGE_PMD_NR; i++) {
3647 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003648 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003649 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003650 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3651 }
David Rientjesb070e652013-05-07 16:18:09 -07003652 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3653 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003654}
Hugh Dickins12d27102012-01-12 17:19:52 -08003655#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003656
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003657/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003658 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003659 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003660 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003661 * @pc: page_cgroup of the page.
3662 * @from: mem_cgroup which the page is moved from.
3663 * @to: mem_cgroup which the page is moved to. @from != @to.
3664 *
3665 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003666 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003667 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003668 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003669 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3670 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003671 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003672static int mem_cgroup_move_account(struct page *page,
3673 unsigned int nr_pages,
3674 struct page_cgroup *pc,
3675 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003676 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003677{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003678 unsigned long flags;
3679 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003680 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003681
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003682 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003683 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003684 /*
3685 * The page is isolated from LRU. So, collapse function
3686 * will not handle this page. But page splitting can happen.
3687 * Do this check under compound_page_lock(). The caller should
3688 * hold it.
3689 */
3690 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003691 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003692 goto out;
3693
3694 lock_page_cgroup(pc);
3695
3696 ret = -EINVAL;
3697 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3698 goto unlock;
3699
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003700 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003701
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07003702 if (!anon && page_mapped(page)) {
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -08003703 /* Update mapped_file data for mem_cgroup */
3704 preempt_disable();
3705 __this_cpu_dec(from->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3706 __this_cpu_inc(to->stat->count[MEM_CGROUP_STAT_FILE_MAPPED]);
3707 preempt_enable();
Balbir Singhd69b0422009-06-17 16:26:34 -07003708 }
David Rientjesb070e652013-05-07 16:18:09 -07003709 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003710
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003711 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003712 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003713 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003714 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003715 ret = 0;
3716unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003717 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003718 /*
3719 * check events
3720 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003721 memcg_check_events(to, page);
3722 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003723out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003724 return ret;
3725}
3726
Michal Hocko2ef37d32012-10-26 13:37:30 +02003727/**
3728 * mem_cgroup_move_parent - moves page to the parent group
3729 * @page: the page to move
3730 * @pc: page_cgroup of the page
3731 * @child: page's cgroup
3732 *
3733 * move charges to its parent or the root cgroup if the group has no
3734 * parent (aka use_hierarchy==0).
3735 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3736 * mem_cgroup_move_account fails) the failure is always temporary and
3737 * it signals a race with a page removal/uncharge or migration. In the
3738 * first case the page is on the way out and it will vanish from the LRU
3739 * on the next attempt and the call should be retried later.
3740 * Isolation from the LRU fails only if page has been isolated from
3741 * the LRU since we looked at it and that usually means either global
3742 * reclaim or migration going on. The page will either get back to the
3743 * LRU or vanish.
3744 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3745 * (!PageCgroupUsed) or moved to a different group. The page will
3746 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003747 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003748static int mem_cgroup_move_parent(struct page *page,
3749 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003750 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003751{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003752 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003753 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003754 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003755 int ret;
3756
Michal Hockod8423012012-10-26 13:37:29 +02003757 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003758
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003759 ret = -EBUSY;
3760 if (!get_page_unless_zero(page))
3761 goto out;
3762 if (isolate_lru_page(page))
3763 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003764
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003765 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003766
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003767 parent = parent_mem_cgroup(child);
3768 /*
3769 * If no parent, move charges to root cgroup.
3770 */
3771 if (!parent)
3772 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003773
Michal Hocko2ef37d32012-10-26 13:37:30 +02003774 if (nr_pages > 1) {
3775 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003776 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003777 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003778
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003779 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003780 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003781 if (!ret)
3782 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003783
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003784 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003785 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003786 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003787put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003788 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003789out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003790 return ret;
3791}
3792
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003793/*
3794 * Charge the memory controller for page usage.
3795 * Return
3796 * 0 if the charge was successful
3797 * < 0 if the cgroup is over its limit
3798 */
3799static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003800 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003801{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003802 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003803 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003804 bool oom = true;
3805 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003806
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003807 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003808 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003809 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003810 /*
3811 * Never OOM-kill a process for a huge page. The
3812 * fault handler will fall back to regular pages.
3813 */
3814 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003815 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003816
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003817 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003818 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003819 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003820 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003821 return 0;
3822}
3823
3824int mem_cgroup_newpage_charge(struct page *page,
3825 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003826{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003827 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003828 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003829 VM_BUG_ON(page_mapped(page));
3830 VM_BUG_ON(page->mapping && !PageAnon(page));
3831 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003832 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003833 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003834}
3835
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003836/*
3837 * While swap-in, try_charge -> commit or cancel, the page is locked.
3838 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003839 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003840 * "commit()" or removed by "cancel()"
3841 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003842static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3843 struct page *page,
3844 gfp_t mask,
3845 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003846{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003847 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003848 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003849 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003850
Johannes Weiner90deb782012-07-31 16:45:47 -07003851 pc = lookup_page_cgroup(page);
3852 /*
3853 * Every swap fault against a single page tries to charge the
3854 * page, bail as early as possible. shmem_unuse() encounters
3855 * already charged pages, too. The USED bit is protected by
3856 * the page lock, which serializes swap cache removal, which
3857 * in turn serializes uncharging.
3858 */
3859 if (PageCgroupUsed(pc))
3860 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003861 if (!do_swap_account)
3862 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003863 memcg = try_get_mem_cgroup_from_page(page);
3864 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003865 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003866 *memcgp = memcg;
3867 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003868 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003869 if (ret == -EINTR)
3870 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003871 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003872charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003873 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3874 if (ret == -EINTR)
3875 ret = 0;
3876 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003877}
3878
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003879int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3880 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3881{
3882 *memcgp = NULL;
3883 if (mem_cgroup_disabled())
3884 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07003885 /*
3886 * A racing thread's fault, or swapoff, may have already
3887 * updated the pte, and even removed page from swap cache: in
3888 * those cases unuse_pte()'s pte_same() test will fail; but
3889 * there's also a KSM case which does need to charge the page.
3890 */
3891 if (!PageSwapCache(page)) {
3892 int ret;
3893
3894 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3895 if (ret == -EINTR)
3896 ret = 0;
3897 return ret;
3898 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003899 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3900}
3901
Johannes Weiner827a03d2012-07-31 16:45:36 -07003902void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3903{
3904 if (mem_cgroup_disabled())
3905 return;
3906 if (!memcg)
3907 return;
3908 __mem_cgroup_cancel_charge(memcg, 1);
3909}
3910
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003911static void
Johannes Weiner72835c82012-01-12 17:18:32 -08003912__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003913 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003914{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003915 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003916 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08003917 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003918 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07003919
Johannes Weinerce587e62012-04-24 20:22:33 +02003920 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003921 /*
3922 * Now swap is on-memory. This means this page may be
3923 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003924 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3925 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3926 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003927 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003928 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003929 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07003930 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003931 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003932}
3933
Johannes Weiner72835c82012-01-12 17:18:32 -08003934void mem_cgroup_commit_charge_swapin(struct page *page,
3935 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003936{
Johannes Weiner72835c82012-01-12 17:18:32 -08003937 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003938 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003939}
3940
Johannes Weiner827a03d2012-07-31 16:45:36 -07003941int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3942 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003943{
Johannes Weiner827a03d2012-07-31 16:45:36 -07003944 struct mem_cgroup *memcg = NULL;
3945 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3946 int ret;
3947
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003948 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07003949 return 0;
3950 if (PageCompound(page))
3951 return 0;
3952
Johannes Weiner827a03d2012-07-31 16:45:36 -07003953 if (!PageSwapCache(page))
3954 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3955 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003956 ret = __mem_cgroup_try_charge_swapin(mm, page,
3957 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07003958 if (!ret)
3959 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3960 }
3961 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003962}
3963
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003964static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003965 unsigned int nr_pages,
3966 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003967{
3968 struct memcg_batch_info *batch = NULL;
3969 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003970
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003971 /* If swapout, usage of swap doesn't decrease */
3972 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3973 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003974
3975 batch = &current->memcg_batch;
3976 /*
3977 * In usual, we do css_get() when we remember memcg pointer.
3978 * But in this case, we keep res->usage until end of a series of
3979 * uncharges. Then, it's ok to ignore memcg's refcnt.
3980 */
3981 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003982 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003983 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003984 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003985 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003986 * the same cgroup and we have chance to coalesce uncharges.
3987 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3988 * because we want to do uncharge as soon as possible.
3989 */
3990
3991 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
3992 goto direct_uncharge;
3993
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003994 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08003995 goto direct_uncharge;
3996
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003997 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003998 * In typical case, batch->memcg == mem. This means we can
3999 * merge a series of uncharges to an uncharge of res_counter.
4000 * If not, we uncharge res_counter ony by one.
4001 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004002 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004003 goto direct_uncharge;
4004 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004005 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004006 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004007 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004008 return;
4009direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004010 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004011 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004012 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
4013 if (unlikely(batch->memcg != memcg))
4014 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004015}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004016
Balbir Singh8697d332008-02-07 00:13:59 -08004017/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004018 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004019 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004020static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07004021__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
4022 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004023{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004024 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004025 unsigned int nr_pages = 1;
4026 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004027 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004028
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004029 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004030 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07004031
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004032 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004033 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004034 VM_BUG_ON(!PageTransHuge(page));
4035 }
Balbir Singh8697d332008-02-07 00:13:59 -08004036 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08004037 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08004038 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004039 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004040 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004041 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004042
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004043 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004044
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004045 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004046
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004047 if (!PageCgroupUsed(pc))
4048 goto unlock_out;
4049
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004050 anon = PageAnon(page);
4051
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004052 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004053 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07004054 /*
4055 * Generally PageAnon tells if it's the anon statistics to be
4056 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4057 * used before page reached the stage of being marked PageAnon.
4058 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004059 anon = true;
4060 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004061 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004062 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07004063 if (page_mapped(page))
4064 goto unlock_out;
4065 /*
4066 * Pages under migration may not be uncharged. But
4067 * end_migration() /must/ be the one uncharging the
4068 * unused post-migration page and so it has to call
4069 * here with the migration bit still set. See the
4070 * res_counter handling below.
4071 */
4072 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004073 goto unlock_out;
4074 break;
4075 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4076 if (!PageAnon(page)) { /* Shared memory */
4077 if (page->mapping && !page_is_file_cache(page))
4078 goto unlock_out;
4079 } else if (page_mapped(page)) /* Anon */
4080 goto unlock_out;
4081 break;
4082 default:
4083 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004084 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004085
David Rientjesb070e652013-05-07 16:18:09 -07004086 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004087
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004088 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08004089 /*
4090 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4091 * freed from LRU. This is safe because uncharged page is expected not
4092 * to be reused (freed soon). Exception is SwapCache, it's handled by
4093 * special functions.
4094 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004095
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004096 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004097 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004098 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07004099 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004100 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004101 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004102 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004103 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07004104 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004105 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004106 /*
4107 * Migration does not charge the res_counter for the
4108 * replacement page, so leave it alone when phasing out the
4109 * page that is unused after the migration.
4110 */
4111 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004112 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004113
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004114 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004115
4116unlock_out:
4117 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004118 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08004119}
4120
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004121void mem_cgroup_uncharge_page(struct page *page)
4122{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004123 /* early check. */
4124 if (page_mapped(page))
4125 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08004126 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07004127 /*
4128 * If the page is in swap cache, uncharge should be deferred
4129 * to the swap path, which also properly accounts swap usage
4130 * and handles memcg lifetime.
4131 *
4132 * Note that this check is not stable and reclaim may add the
4133 * page to swap cache at any time after this. However, if the
4134 * page is not in swap cache by the time page->mapcount hits
4135 * 0, there won't be any page table references to the swap
4136 * slot, and reclaim will free it and not actually write the
4137 * page to disk.
4138 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07004139 if (PageSwapCache(page))
4140 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07004141 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004142}
4143
4144void mem_cgroup_uncharge_cache_page(struct page *page)
4145{
4146 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07004147 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07004148 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004149}
4150
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004151/*
4152 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4153 * In that cases, pages are freed continuously and we can expect pages
4154 * are in the same memcg. All these calls itself limits the number of
4155 * pages freed at once, then uncharge_start/end() is called properly.
4156 * This may be called prural(2) times in a context,
4157 */
4158
4159void mem_cgroup_uncharge_start(void)
4160{
4161 current->memcg_batch.do_batch++;
4162 /* We can do nest. */
4163 if (current->memcg_batch.do_batch == 1) {
4164 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004165 current->memcg_batch.nr_pages = 0;
4166 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004167 }
4168}
4169
4170void mem_cgroup_uncharge_end(void)
4171{
4172 struct memcg_batch_info *batch = &current->memcg_batch;
4173
4174 if (!batch->do_batch)
4175 return;
4176
4177 batch->do_batch--;
4178 if (batch->do_batch) /* If stacked, do nothing. */
4179 return;
4180
4181 if (!batch->memcg)
4182 return;
4183 /*
4184 * This "batch->memcg" is valid without any css_get/put etc...
4185 * bacause we hide charges behind us.
4186 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004187 if (batch->nr_pages)
4188 res_counter_uncharge(&batch->memcg->res,
4189 batch->nr_pages * PAGE_SIZE);
4190 if (batch->memsw_nr_pages)
4191 res_counter_uncharge(&batch->memcg->memsw,
4192 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004193 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004194 /* forget this pointer (for sanity check) */
4195 batch->memcg = NULL;
4196}
4197
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004198#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004199/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004200 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004201 * memcg information is recorded to swap_cgroup of "ent"
4202 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004203void
4204mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004205{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004206 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004207 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004208
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004209 if (!swapout) /* this was a swap cache but the swap is unused ! */
4210 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4211
Johannes Weiner0030f532012-07-31 16:45:25 -07004212 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004213
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004214 /*
4215 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004216 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004217 */
4218 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004219 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004220}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004221#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004222
Andrew Mortonc255a452012-07-31 16:43:02 -07004223#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004224/*
4225 * called from swap_entry_free(). remove record in swap_cgroup and
4226 * uncharge "memsw" account.
4227 */
4228void mem_cgroup_uncharge_swap(swp_entry_t ent)
4229{
4230 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004231 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004232
4233 if (!do_swap_account)
4234 return;
4235
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004236 id = swap_cgroup_record(ent, 0);
4237 rcu_read_lock();
4238 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004239 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004240 /*
4241 * We uncharge this because swap is freed.
4242 * This memcg can be obsolete one. We avoid calling css_tryget
4243 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004244 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004245 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004246 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004247 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004248 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004249 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004250}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004251
4252/**
4253 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4254 * @entry: swap entry to be moved
4255 * @from: mem_cgroup which the entry is moved from
4256 * @to: mem_cgroup which the entry is moved to
4257 *
4258 * It succeeds only when the swap_cgroup's record for this entry is the same
4259 * as the mem_cgroup's id of @from.
4260 *
4261 * Returns 0 on success, -EINVAL on failure.
4262 *
4263 * The caller must have charged to @to, IOW, called res_counter_charge() about
4264 * both res and memsw, and called css_get().
4265 */
4266static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004267 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004268{
4269 unsigned short old_id, new_id;
4270
4271 old_id = css_id(&from->css);
4272 new_id = css_id(&to->css);
4273
4274 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004275 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004276 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004277 /*
4278 * This function is only called from task migration context now.
4279 * It postpones res_counter and refcount handling till the end
4280 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004281 * improvement. But we cannot postpone css_get(to) because if
4282 * the process that has been moved to @to does swap-in, the
4283 * refcount of @to might be decreased to 0.
4284 *
4285 * We are in attach() phase, so the cgroup is guaranteed to be
4286 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004287 */
Li Zefan40503772013-07-08 16:00:34 -07004288 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004289 return 0;
4290 }
4291 return -EINVAL;
4292}
4293#else
4294static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004295 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004296{
4297 return -EINVAL;
4298}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004299#endif
4300
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004301/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004302 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4303 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004304 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004305void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4306 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004307{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004308 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004309 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004310 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004311 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004312
Johannes Weiner72835c82012-01-12 17:18:32 -08004313 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004314
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004315 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004316 return;
Balbir Singh40779602008-04-04 14:29:59 -07004317
Mel Gormanb32967f2012-11-19 12:35:47 +00004318 if (PageTransHuge(page))
4319 nr_pages <<= compound_order(page);
4320
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004321 pc = lookup_page_cgroup(page);
4322 lock_page_cgroup(pc);
4323 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004324 memcg = pc->mem_cgroup;
4325 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004326 /*
4327 * At migrating an anonymous page, its mapcount goes down
4328 * to 0 and uncharge() will be called. But, even if it's fully
4329 * unmapped, migration may fail and this page has to be
4330 * charged again. We set MIGRATION flag here and delay uncharge
4331 * until end_migration() is called
4332 *
4333 * Corner Case Thinking
4334 * A)
4335 * When the old page was mapped as Anon and it's unmap-and-freed
4336 * while migration was ongoing.
4337 * If unmap finds the old page, uncharge() of it will be delayed
4338 * until end_migration(). If unmap finds a new page, it's
4339 * uncharged when it make mapcount to be 1->0. If unmap code
4340 * finds swap_migration_entry, the new page will not be mapped
4341 * and end_migration() will find it(mapcount==0).
4342 *
4343 * B)
4344 * When the old page was mapped but migraion fails, the kernel
4345 * remaps it. A charge for it is kept by MIGRATION flag even
4346 * if mapcount goes down to 0. We can do remap successfully
4347 * without charging it again.
4348 *
4349 * C)
4350 * The "old" page is under lock_page() until the end of
4351 * migration, so, the old page itself will not be swapped-out.
4352 * If the new page is swapped out before end_migraton, our
4353 * hook to usual swap-out path will catch the event.
4354 */
4355 if (PageAnon(page))
4356 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004357 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004358 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004359 /*
4360 * If the page is not charged at this point,
4361 * we return here.
4362 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004363 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004364 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004365
Johannes Weiner72835c82012-01-12 17:18:32 -08004366 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004367 /*
4368 * We charge new page before it's used/mapped. So, even if unlock_page()
4369 * is called before end_migration, we can catch all events on this new
4370 * page. In the case new page is migrated but not remapped, new page's
4371 * mapcount will be finally 0 and we call uncharge in end_migration().
4372 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004373 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004374 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004375 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004376 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004377 /*
4378 * The page is committed to the memcg, but it's not actually
4379 * charged to the res_counter since we plan on replacing the
4380 * old one and only one page is going to be left afterwards.
4381 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004382 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004383}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004384
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004385/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004386void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004387 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004388{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004389 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004390 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004391 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004392
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004393 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004394 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004395
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004396 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004397 used = oldpage;
4398 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004399 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004400 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004401 unused = oldpage;
4402 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004403 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004404 __mem_cgroup_uncharge_common(unused,
4405 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4406 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4407 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004408 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004409 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004410 * We disallowed uncharge of pages under migration because mapcount
4411 * of the page goes down to zero, temporarly.
4412 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004413 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004414 pc = lookup_page_cgroup(oldpage);
4415 lock_page_cgroup(pc);
4416 ClearPageCgroupMigration(pc);
4417 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004418
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004419 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004420 * If a page is a file cache, radix-tree replacement is very atomic
4421 * and we can skip this check. When it was an Anon page, its mapcount
4422 * goes down to 0. But because we added MIGRATION flage, it's not
4423 * uncharged yet. There are several case but page->mapcount check
4424 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4425 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004426 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004427 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004428 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004429}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004430
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004431/*
4432 * At replace page cache, newpage is not under any memcg but it's on
4433 * LRU. So, this function doesn't touch res_counter but handles LRU
4434 * in correct way. Both pages are locked so we cannot race with uncharge.
4435 */
4436void mem_cgroup_replace_page_cache(struct page *oldpage,
4437 struct page *newpage)
4438{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004439 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004440 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004441 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004442
4443 if (mem_cgroup_disabled())
4444 return;
4445
4446 pc = lookup_page_cgroup(oldpage);
4447 /* fix accounting on old pages */
4448 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004449 if (PageCgroupUsed(pc)) {
4450 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004451 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004452 ClearPageCgroupUsed(pc);
4453 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004454 unlock_page_cgroup(pc);
4455
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004456 /*
4457 * When called from shmem_replace_page(), in some cases the
4458 * oldpage has already been charged, and in some cases not.
4459 */
4460 if (!memcg)
4461 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004462 /*
4463 * Even if newpage->mapping was NULL before starting replacement,
4464 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4465 * LRU while we overwrite pc->mem_cgroup.
4466 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004467 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004468}
4469
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004470#ifdef CONFIG_DEBUG_VM
4471static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4472{
4473 struct page_cgroup *pc;
4474
4475 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004476 /*
4477 * Can be NULL while feeding pages into the page allocator for
4478 * the first time, i.e. during boot or memory hotplug;
4479 * or when mem_cgroup_disabled().
4480 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004481 if (likely(pc) && PageCgroupUsed(pc))
4482 return pc;
4483 return NULL;
4484}
4485
4486bool mem_cgroup_bad_page_check(struct page *page)
4487{
4488 if (mem_cgroup_disabled())
4489 return false;
4490
4491 return lookup_page_cgroup_used(page) != NULL;
4492}
4493
4494void mem_cgroup_print_bad_page(struct page *page)
4495{
4496 struct page_cgroup *pc;
4497
4498 pc = lookup_page_cgroup_used(page);
4499 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004500 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4501 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004502 }
4503}
4504#endif
4505
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004506static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004507 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004508{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004509 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004510 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004511 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004512 int children = mem_cgroup_count_children(memcg);
4513 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004514 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004515
4516 /*
4517 * For keeping hierarchical_reclaim simple, how long we should retry
4518 * is depends on callers. We set our retry-count to be function
4519 * of # of children which we should visit in this loop.
4520 */
4521 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4522
4523 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004524
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004525 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004526 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004527 if (signal_pending(current)) {
4528 ret = -EINTR;
4529 break;
4530 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004531 /*
4532 * Rather than hide all in some function, I do this in
4533 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004534 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004535 */
4536 mutex_lock(&set_limit_mutex);
4537 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4538 if (memswlimit < val) {
4539 ret = -EINVAL;
4540 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004541 break;
4542 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004543
4544 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4545 if (memlimit < val)
4546 enlarge = 1;
4547
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004548 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004549 if (!ret) {
4550 if (memswlimit == val)
4551 memcg->memsw_is_minimum = true;
4552 else
4553 memcg->memsw_is_minimum = false;
4554 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004555 mutex_unlock(&set_limit_mutex);
4556
4557 if (!ret)
4558 break;
4559
Johannes Weiner56600482012-01-12 17:17:59 -08004560 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4561 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004562 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4563 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004564 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004565 retry_count--;
4566 else
4567 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004568 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004569 if (!ret && enlarge)
4570 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004571
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004572 return ret;
4573}
4574
Li Zefan338c8432009-06-17 16:27:15 -07004575static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4576 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004577{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004578 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004579 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004580 int children = mem_cgroup_count_children(memcg);
4581 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004582 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004583
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004584 /* see mem_cgroup_resize_res_limit */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004585 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004586 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004587 while (retry_count) {
4588 if (signal_pending(current)) {
4589 ret = -EINTR;
4590 break;
4591 }
4592 /*
4593 * Rather than hide all in some function, I do this in
4594 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004595 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004596 */
4597 mutex_lock(&set_limit_mutex);
4598 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4599 if (memlimit > val) {
4600 ret = -EINVAL;
4601 mutex_unlock(&set_limit_mutex);
4602 break;
4603 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004604 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4605 if (memswlimit < val)
4606 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004607 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004608 if (!ret) {
4609 if (memlimit == val)
4610 memcg->memsw_is_minimum = true;
4611 else
4612 memcg->memsw_is_minimum = false;
4613 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004614 mutex_unlock(&set_limit_mutex);
4615
4616 if (!ret)
4617 break;
4618
Johannes Weiner56600482012-01-12 17:17:59 -08004619 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4620 MEM_CGROUP_RECLAIM_NOSWAP |
4621 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004622 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004623 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004624 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004625 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004626 else
4627 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004628 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004629 if (!ret && enlarge)
4630 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004631 return ret;
4632}
4633
Michal Hocko2ef37d32012-10-26 13:37:30 +02004634/**
4635 * mem_cgroup_force_empty_list - clears LRU of a group
4636 * @memcg: group to clear
4637 * @node: NUMA node
4638 * @zid: zone id
4639 * @lru: lru to to clear
4640 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004641 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004642 * reclaim the pages page themselves - pages are moved to the parent (or root)
4643 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004644 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004645static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004646 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004647{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004648 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004649 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004650 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004651 struct page *busy;
4652 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004653
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004654 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004655 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4656 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004657
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004658 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004659 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004660 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004661 struct page *page;
4662
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004663 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004664 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004665 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004666 break;
4667 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004668 page = list_entry(list->prev, struct page, lru);
4669 if (busy == page) {
4670 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004671 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004672 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004673 continue;
4674 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004675 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004676
Johannes Weiner925b7672012-01-12 17:18:15 -08004677 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004678
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004679 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004680 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004681 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004682 cond_resched();
4683 } else
4684 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004685 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004686}
4687
4688/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004689 * make mem_cgroup's charge to be 0 if there is no task by moving
4690 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004691 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004692 *
4693 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004694 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004695static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004696{
Michal Hockoc26251f2012-10-26 13:37:28 +02004697 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004698 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004699
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004700 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004701 /* This is for making all *used* pages to be on LRU. */
4702 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004703 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004704 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004705 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004706 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004707 enum lru_list lru;
4708 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004709 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004710 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004711 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004712 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004713 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004714 mem_cgroup_end_move(memcg);
4715 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004716 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004717
Michal Hocko2ef37d32012-10-26 13:37:30 +02004718 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004719 * Kernel memory may not necessarily be trackable to a specific
4720 * process. So they are not migrated, and therefore we can't
4721 * expect their value to drop to 0 here.
4722 * Having res filled up with kmem only is enough.
4723 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004724 * This is a safety check because mem_cgroup_force_empty_list
4725 * could have raced with mem_cgroup_replace_page_cache callers
4726 * so the lru seemed empty but the page could have been added
4727 * right after the check. RES_USAGE should be safe as we always
4728 * charge before adding to the LRU.
4729 */
Glauber Costabea207c2012-12-18 14:22:11 -08004730 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4731 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4732 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004733}
4734
4735/*
Glauber Costab5f99b52013-02-22 16:34:53 -08004736 * This mainly exists for tests during the setting of set of use_hierarchy.
4737 * Since this is the very setting we are changing, the current hierarchy value
4738 * is meaningless
4739 */
4740static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4741{
Tejun Heo492eb212013-08-08 20:11:25 -04004742 struct cgroup_subsys_state *pos;
Glauber Costab5f99b52013-02-22 16:34:53 -08004743
4744 /* bounce at first found */
Tejun Heo492eb212013-08-08 20:11:25 -04004745 css_for_each_child(pos, &memcg->css)
Glauber Costab5f99b52013-02-22 16:34:53 -08004746 return true;
4747 return false;
4748}
4749
4750/*
Glauber Costa09998212013-02-22 16:34:55 -08004751 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4752 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
Glauber Costab5f99b52013-02-22 16:34:53 -08004753 * from mem_cgroup_count_children(), in the sense that we don't really care how
4754 * many children we have; we only need to know if we have any. It also counts
4755 * any memcg without hierarchy as infertile.
4756 */
4757static inline bool memcg_has_children(struct mem_cgroup *memcg)
4758{
4759 return memcg->use_hierarchy && __memcg_has_children(memcg);
4760}
4761
4762/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004763 * Reclaims as many pages from the given memcg as possible and moves
4764 * the rest to the parent.
4765 *
4766 * Caller is responsible for holding css reference for memcg.
4767 */
4768static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4769{
4770 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4771 struct cgroup *cgrp = memcg->css.cgroup;
4772
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004773 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004774 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4775 return -EBUSY;
4776
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004777 /* we call try-to-free pages for make this cgroup empty */
4778 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004779 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004780 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004781 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004782
Michal Hockoc26251f2012-10-26 13:37:28 +02004783 if (signal_pending(current))
4784 return -EINTR;
4785
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004786 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004787 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004788 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004789 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004790 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004791 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004792 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004793
4794 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004795 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02004796 mem_cgroup_reparent_charges(memcg);
4797
4798 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004799}
4800
Tejun Heo182446d2013-08-08 20:11:24 -04004801static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
4802 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004803{
Tejun Heo182446d2013-08-08 20:11:24 -04004804 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02004805
Michal Hockod8423012012-10-26 13:37:29 +02004806 if (mem_cgroup_is_root(memcg))
4807 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07004808 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004809}
4810
Tejun Heo182446d2013-08-08 20:11:24 -04004811static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
4812 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004813{
Tejun Heo182446d2013-08-08 20:11:24 -04004814 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004815}
4816
Tejun Heo182446d2013-08-08 20:11:24 -04004817static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
4818 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004819{
4820 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04004821 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04004822 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08004823
Glauber Costa09998212013-02-22 16:34:55 -08004824 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07004825
4826 if (memcg->use_hierarchy == val)
4827 goto out;
4828
Balbir Singh18f59ea2009-01-07 18:08:07 -08004829 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004830 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08004831 * in the child subtrees. If it is unset, then the change can
4832 * occur, provided the current cgroup has no children.
4833 *
4834 * For the root cgroup, parent_mem is NULL, we allow value to be
4835 * set if there are no children.
4836 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004837 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08004838 (val == 1 || val == 0)) {
Glauber Costab5f99b52013-02-22 16:34:53 -08004839 if (!__memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004840 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004841 else
4842 retval = -EBUSY;
4843 } else
4844 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07004845
4846out:
Glauber Costa09998212013-02-22 16:34:55 -08004847 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004848
4849 return retval;
4850}
4851
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004852
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004853static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004854 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004855{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004856 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004857 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004858
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004859 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004860 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004861 val += mem_cgroup_read_stat(iter, idx);
4862
4863 if (val < 0) /* race ? */
4864 val = 0;
4865 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004866}
4867
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004868static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004869{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004870 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004871
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004872 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004873 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00004874 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004875 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00004876 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004877 }
4878
David Rientjesb070e652013-05-07 16:18:09 -07004879 /*
4880 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4881 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4882 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004883 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4884 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004885
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004886 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004887 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004888
4889 return val << PAGE_SHIFT;
4890}
4891
Tejun Heo182446d2013-08-08 20:11:24 -04004892static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
4893 struct cftype *cft, struct file *file,
4894 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004895{
Tejun Heo182446d2013-08-08 20:11:24 -04004896 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07004897 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004898 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004899 int name, len;
4900 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004901
4902 type = MEMFILE_TYPE(cft->private);
4903 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004904
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004905 switch (type) {
4906 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004907 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004908 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004909 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004910 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004911 break;
4912 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004913 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004914 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004915 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004916 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004917 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004918 case _KMEM:
4919 val = res_counter_read_u64(&memcg->kmem, name);
4920 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004921 default:
4922 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004923 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004924
4925 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4926 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004927}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004928
Tejun Heo182446d2013-08-08 20:11:24 -04004929static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004930{
4931 int ret = -EINVAL;
4932#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04004933 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004934 /*
4935 * For simplicity, we won't allow this to be disabled. It also can't
4936 * be changed if the cgroup has children already, or if tasks had
4937 * already joined.
4938 *
4939 * If tasks join before we set the limit, a person looking at
4940 * kmem.usage_in_bytes will have no way to determine when it took
4941 * place, which makes the value quite meaningless.
4942 *
4943 * After it first became limited, changes in the value of the limit are
4944 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004945 */
Glauber Costa09998212013-02-22 16:34:55 -08004946 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004947 mutex_lock(&set_limit_mutex);
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004948 if (!memcg->kmem_account_flags && val != RES_COUNTER_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04004949 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08004950 ret = -EBUSY;
4951 goto out;
4952 }
4953 ret = res_counter_set_limit(&memcg->kmem, val);
4954 VM_BUG_ON(ret);
4955
Glauber Costa55007d82012-12-18 14:22:38 -08004956 ret = memcg_update_cache_sizes(memcg);
4957 if (ret) {
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004958 res_counter_set_limit(&memcg->kmem, RES_COUNTER_MAX);
Glauber Costa55007d82012-12-18 14:22:38 -08004959 goto out;
4960 }
Glauber Costa692e89a2013-02-22 16:34:56 -08004961 static_key_slow_inc(&memcg_kmem_enabled_key);
4962 /*
4963 * setting the active bit after the inc will guarantee no one
4964 * starts accounting before all call sites are patched
4965 */
4966 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004967 } else
4968 ret = res_counter_set_limit(&memcg->kmem, val);
4969out:
4970 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08004971 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004972#endif
4973 return ret;
4974}
4975
Hugh Dickins6d0439902013-02-22 16:35:50 -08004976#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08004977static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004978{
Glauber Costa55007d82012-12-18 14:22:38 -08004979 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004980 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4981 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08004982 goto out;
4983
Glauber Costa510fc4e2012-12-18 14:21:47 -08004984 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08004985 /*
4986 * When that happen, we need to disable the static branch only on those
4987 * memcgs that enabled it. To achieve this, we would be forced to
4988 * complicate the code by keeping track of which memcgs were the ones
4989 * that actually enabled limits, and which ones got it from its
4990 * parents.
4991 *
4992 * It is a lot simpler just to do static_key_slow_inc() on every child
4993 * that is accounted.
4994 */
Glauber Costa55007d82012-12-18 14:22:38 -08004995 if (!memcg_kmem_is_active(memcg))
4996 goto out;
4997
4998 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07004999 * __mem_cgroup_free() will issue static_key_slow_dec() because this
5000 * memcg is active already. If the later initialization fails then the
5001 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08005002 */
Glauber Costa55007d82012-12-18 14:22:38 -08005003 static_key_slow_inc(&memcg_kmem_enabled_key);
5004
5005 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07005006 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005007 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07005008 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005009 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08005010out:
5011 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005012}
Hugh Dickins6d0439902013-02-22 16:35:50 -08005013#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08005014
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005015/*
5016 * The user of this function is...
5017 * RES_LIMIT.
5018 */
Tejun Heo182446d2013-08-08 20:11:24 -04005019static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07005020 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005021{
Tejun Heo182446d2013-08-08 20:11:24 -04005022 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005023 enum res_type type;
5024 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005025 unsigned long long val;
5026 int ret;
5027
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005028 type = MEMFILE_TYPE(cft->private);
5029 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07005030
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005031 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005032 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07005033 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
5034 ret = -EINVAL;
5035 break;
5036 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005037 /* This function does all necessary parse...reuse it */
5038 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005039 if (ret)
5040 break;
5041 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005042 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005043 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005044 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005045 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04005046 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005047 else
5048 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005049 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07005050 case RES_SOFT_LIMIT:
5051 ret = res_counter_memparse_write_strategy(buffer, &val);
5052 if (ret)
5053 break;
5054 /*
5055 * For memsw, soft limits are hard to implement in terms
5056 * of semantics, for now, we support soft limits for
5057 * control without swap
5058 */
5059 if (type == _MEM)
5060 ret = res_counter_set_soft_limit(&memcg->res, val);
5061 else
5062 ret = -EINVAL;
5063 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005064 default:
5065 ret = -EINVAL; /* should be BUG() ? */
5066 break;
5067 }
5068 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005069}
5070
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005071static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5072 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5073{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005074 unsigned long long min_limit, min_memsw_limit, tmp;
5075
5076 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5077 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005078 if (!memcg->use_hierarchy)
5079 goto out;
5080
Tejun Heo63876982013-08-08 20:11:23 -04005081 while (css_parent(&memcg->css)) {
5082 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005083 if (!memcg->use_hierarchy)
5084 break;
5085 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5086 min_limit = min(min_limit, tmp);
5087 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5088 min_memsw_limit = min(min_memsw_limit, tmp);
5089 }
5090out:
5091 *mem_limit = min_limit;
5092 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005093}
5094
Tejun Heo182446d2013-08-08 20:11:24 -04005095static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005096{
Tejun Heo182446d2013-08-08 20:11:24 -04005097 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005098 int name;
5099 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005100
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005101 type = MEMFILE_TYPE(event);
5102 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07005103
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005104 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005105 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005106 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005107 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005108 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005109 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005110 else if (type == _KMEM)
5111 res_counter_reset_max(&memcg->kmem);
5112 else
5113 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005114 break;
5115 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005116 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005117 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005118 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005119 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005120 else if (type == _KMEM)
5121 res_counter_reset_failcnt(&memcg->kmem);
5122 else
5123 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005124 break;
5125 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07005126
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07005127 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005128}
5129
Tejun Heo182446d2013-08-08 20:11:24 -04005130static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005131 struct cftype *cft)
5132{
Tejun Heo182446d2013-08-08 20:11:24 -04005133 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005134}
5135
Daisuke Nishimura02491442010-03-10 15:22:17 -08005136#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04005137static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005138 struct cftype *cft, u64 val)
5139{
Tejun Heo182446d2013-08-08 20:11:24 -04005140 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005141
5142 if (val >= (1 << NR_MOVE_TYPE))
5143 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005144
Glauber Costaee5e8472013-02-22 16:34:50 -08005145 /*
5146 * No kind of locking is needed in here, because ->can_attach() will
5147 * check this value once in the beginning of the process, and then carry
5148 * on with stale data. This means that changes to this value will only
5149 * affect task migrations starting after the change.
5150 */
5151 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005152 return 0;
5153}
Daisuke Nishimura02491442010-03-10 15:22:17 -08005154#else
Tejun Heo182446d2013-08-08 20:11:24 -04005155static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005156 struct cftype *cft, u64 val)
5157{
5158 return -ENOSYS;
5159}
5160#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005161
Ying Han406eb0c2011-05-26 16:25:37 -07005162#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04005163static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
5164 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07005165{
5166 int nid;
5167 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5168 unsigned long node_nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005169 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005170
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005171 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005172 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005173 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005174 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005175 seq_printf(m, " N%d=%lu", nid, node_nr);
5176 }
5177 seq_putc(m, '\n');
5178
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005179 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005180 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005181 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005182 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005183 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005184 seq_printf(m, " N%d=%lu", nid, node_nr);
5185 }
5186 seq_putc(m, '\n');
5187
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005188 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005189 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005190 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005191 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005192 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005193 seq_printf(m, " N%d=%lu", nid, node_nr);
5194 }
5195 seq_putc(m, '\n');
5196
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005197 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005198 seq_printf(m, "unevictable=%lu", unevictable_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005199 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005200 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005201 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005202 seq_printf(m, " N%d=%lu", nid, node_nr);
5203 }
5204 seq_putc(m, '\n');
5205 return 0;
5206}
5207#endif /* CONFIG_NUMA */
5208
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005209static inline void mem_cgroup_lru_names_not_uptodate(void)
5210{
5211 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5212}
5213
Tejun Heo182446d2013-08-08 20:11:24 -04005214static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005215 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005216{
Tejun Heo182446d2013-08-08 20:11:24 -04005217 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005218 struct mem_cgroup *mi;
5219 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005220
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005221 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005222 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005223 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005224 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5225 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005226 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005227
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005228 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5229 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5230 mem_cgroup_read_events(memcg, i));
5231
5232 for (i = 0; i < NR_LRU_LISTS; i++)
5233 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5234 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5235
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005236 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005237 {
5238 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005239 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005240 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005241 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005242 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5243 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005244 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005245
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005246 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5247 long long val = 0;
5248
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005249 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005250 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005251 for_each_mem_cgroup_tree(mi, memcg)
5252 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5253 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5254 }
5255
5256 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5257 unsigned long long val = 0;
5258
5259 for_each_mem_cgroup_tree(mi, memcg)
5260 val += mem_cgroup_read_events(mi, i);
5261 seq_printf(m, "total_%s %llu\n",
5262 mem_cgroup_events_names[i], val);
5263 }
5264
5265 for (i = 0; i < NR_LRU_LISTS; i++) {
5266 unsigned long long val = 0;
5267
5268 for_each_mem_cgroup_tree(mi, memcg)
5269 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5270 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005271 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005272
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005273#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005274 {
5275 int nid, zid;
5276 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005277 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005278 unsigned long recent_rotated[2] = {0, 0};
5279 unsigned long recent_scanned[2] = {0, 0};
5280
5281 for_each_online_node(nid)
5282 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005283 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005284 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005285
Hugh Dickins89abfab2012-05-29 15:06:53 -07005286 recent_rotated[0] += rstat->recent_rotated[0];
5287 recent_rotated[1] += rstat->recent_rotated[1];
5288 recent_scanned[0] += rstat->recent_scanned[0];
5289 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005290 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005291 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5292 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5293 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5294 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005295 }
5296#endif
5297
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005298 return 0;
5299}
5300
Tejun Heo182446d2013-08-08 20:11:24 -04005301static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5302 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005303{
Tejun Heo182446d2013-08-08 20:11:24 -04005304 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005305
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005306 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005307}
5308
Tejun Heo182446d2013-08-08 20:11:24 -04005309static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5310 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005311{
Tejun Heo182446d2013-08-08 20:11:24 -04005312 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005313 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005314
Tejun Heo63876982013-08-08 20:11:23 -04005315 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005316 return -EINVAL;
5317
Glauber Costa09998212013-02-22 16:34:55 -08005318 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005319
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005320 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005321 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005322 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005323 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005324 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005325
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005326 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005327
Glauber Costa09998212013-02-22 16:34:55 -08005328 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005329
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005330 return 0;
5331}
5332
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005333static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5334{
5335 struct mem_cgroup_threshold_ary *t;
5336 u64 usage;
5337 int i;
5338
5339 rcu_read_lock();
5340 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005341 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005342 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005343 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005344
5345 if (!t)
5346 goto unlock;
5347
5348 usage = mem_cgroup_usage(memcg, swap);
5349
5350 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005351 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005352 * If it's not true, a threshold was crossed after last
5353 * call of __mem_cgroup_threshold().
5354 */
Phil Carmody5407a562010-05-26 14:42:42 -07005355 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005356
5357 /*
5358 * Iterate backward over array of thresholds starting from
5359 * current_threshold and check if a threshold is crossed.
5360 * If none of thresholds below usage is crossed, we read
5361 * only one element of the array here.
5362 */
5363 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5364 eventfd_signal(t->entries[i].eventfd, 1);
5365
5366 /* i = current_threshold + 1 */
5367 i++;
5368
5369 /*
5370 * Iterate forward over array of thresholds starting from
5371 * current_threshold+1 and check if a threshold is crossed.
5372 * If none of thresholds above usage is crossed, we read
5373 * only one element of the array here.
5374 */
5375 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5376 eventfd_signal(t->entries[i].eventfd, 1);
5377
5378 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005379 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005380unlock:
5381 rcu_read_unlock();
5382}
5383
5384static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5385{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005386 while (memcg) {
5387 __mem_cgroup_threshold(memcg, false);
5388 if (do_swap_account)
5389 __mem_cgroup_threshold(memcg, true);
5390
5391 memcg = parent_mem_cgroup(memcg);
5392 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005393}
5394
5395static int compare_thresholds(const void *a, const void *b)
5396{
5397 const struct mem_cgroup_threshold *_a = a;
5398 const struct mem_cgroup_threshold *_b = b;
5399
Greg Thelen2bff24a2013-09-11 14:23:08 -07005400 if (_a->threshold > _b->threshold)
5401 return 1;
5402
5403 if (_a->threshold < _b->threshold)
5404 return -1;
5405
5406 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005407}
5408
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005409static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005410{
5411 struct mem_cgroup_eventfd_list *ev;
5412
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005413 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005414 eventfd_signal(ev->eventfd, 1);
5415 return 0;
5416}
5417
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005418static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005419{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005420 struct mem_cgroup *iter;
5421
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005422 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005423 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005424}
5425
Tejun Heo81eeaf02013-08-08 20:11:26 -04005426static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005427 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005428{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005429 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005430 struct mem_cgroup_thresholds *thresholds;
5431 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005432 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005433 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005434 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005435
5436 ret = res_counter_memparse_write_strategy(args, &threshold);
5437 if (ret)
5438 return ret;
5439
5440 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005441
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005442 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005443 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005444 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005445 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005446 else
5447 BUG();
5448
5449 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5450
5451 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005452 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005453 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5454
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005455 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005456
5457 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005458 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005459 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005460 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005461 ret = -ENOMEM;
5462 goto unlock;
5463 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005464 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005465
5466 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005467 if (thresholds->primary) {
5468 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005469 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005470 }
5471
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005472 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005473 new->entries[size - 1].eventfd = eventfd;
5474 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005475
5476 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005477 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005478 compare_thresholds, NULL);
5479
5480 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005481 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005482 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005483 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005484 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005485 * new->current_threshold will not be used until
5486 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005487 * it here.
5488 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005489 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005490 } else
5491 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005492 }
5493
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005494 /* Free old spare buffer and save old primary buffer as spare */
5495 kfree(thresholds->spare);
5496 thresholds->spare = thresholds->primary;
5497
5498 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005499
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005500 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005501 synchronize_rcu();
5502
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005503unlock:
5504 mutex_unlock(&memcg->thresholds_lock);
5505
5506 return ret;
5507}
5508
Tejun Heo81eeaf02013-08-08 20:11:26 -04005509static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005510 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005511{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005512 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005513 struct mem_cgroup_thresholds *thresholds;
5514 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005515 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005516 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005517 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005518
5519 mutex_lock(&memcg->thresholds_lock);
5520 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005521 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005522 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005523 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005524 else
5525 BUG();
5526
Anton Vorontsov371528c2012-02-24 05:14:46 +04005527 if (!thresholds->primary)
5528 goto unlock;
5529
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005530 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5531
5532 /* Check if a threshold crossed before removing */
5533 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5534
5535 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005536 size = 0;
5537 for (i = 0; i < thresholds->primary->size; i++) {
5538 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005539 size++;
5540 }
5541
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005542 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005543
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005544 /* Set thresholds array to NULL if we don't have thresholds */
5545 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005546 kfree(new);
5547 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005548 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005549 }
5550
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005551 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005552
5553 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005554 new->current_threshold = -1;
5555 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5556 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005557 continue;
5558
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005559 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005560 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005561 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005562 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005563 * until rcu_assign_pointer(), so it's safe to increment
5564 * it here.
5565 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005566 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005567 }
5568 j++;
5569 }
5570
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005571swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005572 /* Swap primary and spare array */
5573 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005574 /* If all events are unregistered, free the spare array */
5575 if (!new) {
5576 kfree(thresholds->spare);
5577 thresholds->spare = NULL;
5578 }
5579
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005580 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005581
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005582 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005583 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005584unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005585 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005586}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005587
Tejun Heo81eeaf02013-08-08 20:11:26 -04005588static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005589 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5590{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005591 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005592 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005593 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005594
5595 BUG_ON(type != _OOM_TYPE);
5596 event = kmalloc(sizeof(*event), GFP_KERNEL);
5597 if (!event)
5598 return -ENOMEM;
5599
Michal Hocko1af8efe2011-07-26 16:08:24 -07005600 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005601
5602 event->eventfd = eventfd;
5603 list_add(&event->list, &memcg->oom_notify);
5604
5605 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005606 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005607 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005608 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005609
5610 return 0;
5611}
5612
Tejun Heo81eeaf02013-08-08 20:11:26 -04005613static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005614 struct cftype *cft, struct eventfd_ctx *eventfd)
5615{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005616 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005617 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005618 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005619
5620 BUG_ON(type != _OOM_TYPE);
5621
Michal Hocko1af8efe2011-07-26 16:08:24 -07005622 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005623
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005624 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005625 if (ev->eventfd == eventfd) {
5626 list_del(&ev->list);
5627 kfree(ev);
5628 }
5629 }
5630
Michal Hocko1af8efe2011-07-26 16:08:24 -07005631 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005632}
5633
Tejun Heo182446d2013-08-08 20:11:24 -04005634static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005635 struct cftype *cft, struct cgroup_map_cb *cb)
5636{
Tejun Heo182446d2013-08-08 20:11:24 -04005637 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005638
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005639 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005640
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005641 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005642 cb->fill(cb, "under_oom", 1);
5643 else
5644 cb->fill(cb, "under_oom", 0);
5645 return 0;
5646}
5647
Tejun Heo182446d2013-08-08 20:11:24 -04005648static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005649 struct cftype *cft, u64 val)
5650{
Tejun Heo182446d2013-08-08 20:11:24 -04005651 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005652 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005653
5654 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005655 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005656 return -EINVAL;
5657
Glauber Costa09998212013-02-22 16:34:55 -08005658 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005659 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005660 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005661 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005662 return -EINVAL;
5663 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005664 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005665 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005666 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005667 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005668 return 0;
5669}
5670
Andrew Mortonc255a452012-07-31 16:43:02 -07005671#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005672static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005673{
Glauber Costa55007d82012-12-18 14:22:38 -08005674 int ret;
5675
Glauber Costa2633d7a2012-12-18 14:22:34 -08005676 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005677 ret = memcg_propagate_kmem(memcg);
5678 if (ret)
5679 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005680
Glauber Costa1d62e432012-04-09 19:36:33 -03005681 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005682}
Glauber Costae5671df2011-12-11 21:47:01 +00005683
Li Zefan10d5ebf2013-07-08 16:00:33 -07005684static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005685{
Glauber Costa1d62e432012-04-09 19:36:33 -03005686 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005687}
5688
5689static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5690{
5691 if (!memcg_kmem_is_active(memcg))
5692 return;
5693
5694 /*
5695 * kmem charges can outlive the cgroup. In the case of slab
5696 * pages, for instance, a page contain objects from various
5697 * processes. As we prevent from taking a reference for every
5698 * such allocation we have to be careful when doing uncharge
5699 * (see memcg_uncharge_kmem) and here during offlining.
5700 *
5701 * The idea is that that only the _last_ uncharge which sees
5702 * the dead memcg will drop the last reference. An additional
5703 * reference is taken here before the group is marked dead
5704 * which is then paired with css_put during uncharge resp. here.
5705 *
5706 * Although this might sound strange as this path is called from
5707 * css_offline() when the referencemight have dropped down to 0
5708 * and shouldn't be incremented anymore (css_tryget would fail)
5709 * we do not have other options because of the kmem allocations
5710 * lifetime.
5711 */
5712 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005713
5714 memcg_kmem_mark_dead(memcg);
5715
5716 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5717 return;
5718
Glauber Costa7de37682012-12-18 14:22:07 -08005719 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005720 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005721}
Glauber Costae5671df2011-12-11 21:47:01 +00005722#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005723static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005724{
5725 return 0;
5726}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005727
Li Zefan10d5ebf2013-07-08 16:00:33 -07005728static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5729{
5730}
5731
5732static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005733{
5734}
Glauber Costae5671df2011-12-11 21:47:01 +00005735#endif
5736
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005737static struct cftype mem_cgroup_files[] = {
5738 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005739 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005740 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005741 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005742 .register_event = mem_cgroup_usage_register_event,
5743 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005744 },
5745 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005746 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005747 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005748 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005749 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005750 },
5751 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005752 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005753 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005754 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005755 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005756 },
5757 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005758 .name = "soft_limit_in_bytes",
5759 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5760 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005761 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005762 },
5763 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005764 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005765 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005766 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005767 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005768 },
Balbir Singh8697d332008-02-07 00:13:59 -08005769 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005770 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005771 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005772 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005773 {
5774 .name = "force_empty",
5775 .trigger = mem_cgroup_force_empty_write,
5776 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005777 {
5778 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005779 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005780 .write_u64 = mem_cgroup_hierarchy_write,
5781 .read_u64 = mem_cgroup_hierarchy_read,
5782 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005783 {
5784 .name = "swappiness",
5785 .read_u64 = mem_cgroup_swappiness_read,
5786 .write_u64 = mem_cgroup_swappiness_write,
5787 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005788 {
5789 .name = "move_charge_at_immigrate",
5790 .read_u64 = mem_cgroup_move_charge_read,
5791 .write_u64 = mem_cgroup_move_charge_write,
5792 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005793 {
5794 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005795 .read_map = mem_cgroup_oom_control_read,
5796 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005797 .register_event = mem_cgroup_oom_register_event,
5798 .unregister_event = mem_cgroup_oom_unregister_event,
5799 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5800 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005801 {
5802 .name = "pressure_level",
5803 .register_event = vmpressure_register_event,
5804 .unregister_event = vmpressure_unregister_event,
5805 },
Ying Han406eb0c2011-05-26 16:25:37 -07005806#ifdef CONFIG_NUMA
5807 {
5808 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005809 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005810 },
5811#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005812#ifdef CONFIG_MEMCG_KMEM
5813 {
5814 .name = "kmem.limit_in_bytes",
5815 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5816 .write_string = mem_cgroup_write,
5817 .read = mem_cgroup_read,
5818 },
5819 {
5820 .name = "kmem.usage_in_bytes",
5821 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5822 .read = mem_cgroup_read,
5823 },
5824 {
5825 .name = "kmem.failcnt",
5826 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5827 .trigger = mem_cgroup_reset,
5828 .read = mem_cgroup_read,
5829 },
5830 {
5831 .name = "kmem.max_usage_in_bytes",
5832 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5833 .trigger = mem_cgroup_reset,
5834 .read = mem_cgroup_read,
5835 },
Glauber Costa749c5412012-12-18 14:23:01 -08005836#ifdef CONFIG_SLABINFO
5837 {
5838 .name = "kmem.slabinfo",
5839 .read_seq_string = mem_cgroup_slabinfo_read,
5840 },
5841#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005842#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005843 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005844};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005845
Michal Hocko2d110852013-02-22 16:34:43 -08005846#ifdef CONFIG_MEMCG_SWAP
5847static struct cftype memsw_cgroup_files[] = {
5848 {
5849 .name = "memsw.usage_in_bytes",
5850 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5851 .read = mem_cgroup_read,
5852 .register_event = mem_cgroup_usage_register_event,
5853 .unregister_event = mem_cgroup_usage_unregister_event,
5854 },
5855 {
5856 .name = "memsw.max_usage_in_bytes",
5857 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5858 .trigger = mem_cgroup_reset,
5859 .read = mem_cgroup_read,
5860 },
5861 {
5862 .name = "memsw.limit_in_bytes",
5863 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5864 .write_string = mem_cgroup_write,
5865 .read = mem_cgroup_read,
5866 },
5867 {
5868 .name = "memsw.failcnt",
5869 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5870 .trigger = mem_cgroup_reset,
5871 .read = mem_cgroup_read,
5872 },
5873 { }, /* terminate */
5874};
5875#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005876static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005877{
5878 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005879 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005880 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005881 /*
5882 * This routine is called against possible nodes.
5883 * But it's BUG to call kmalloc() against offline node.
5884 *
5885 * TODO: this routine can waste much memory for nodes which will
5886 * never be onlined. It's better to use memory hotplug callback
5887 * function.
5888 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005889 if (!node_state(node, N_NORMAL_MEMORY))
5890 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005891 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005892 if (!pn)
5893 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005894
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005895 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5896 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005897 lruvec_init(&mz->lruvec);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005898 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005899 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005900 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005901 return 0;
5902}
5903
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005904static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005905{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005906 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005907}
5908
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005909static struct mem_cgroup *mem_cgroup_alloc(void)
5910{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005911 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005912 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005913
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005914 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08005915 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005916 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005917 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005918 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005919
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005920 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005921 return NULL;
5922
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005923 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5924 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005925 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005926 spin_lock_init(&memcg->pcp_counter_lock);
5927 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005928
5929out_free:
5930 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005931 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005932 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005933 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005934 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005935}
5936
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005937/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005938 * At destroying mem_cgroup, references from swap_cgroup can remain.
5939 * (scanning all at force_empty is too costly...)
5940 *
5941 * Instead of clearing all references at force_empty, we remember
5942 * the number of reference from swap_cgroup and free mem_cgroup when
5943 * it goes down to 0.
5944 *
5945 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005946 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005947
5948static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005949{
Glauber Costac8b2a362012-12-18 14:22:13 -08005950 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005951 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07005952
Glauber Costac8b2a362012-12-18 14:22:13 -08005953 free_css_id(&mem_cgroup_subsys, &memcg->css);
5954
5955 for_each_node(node)
5956 free_mem_cgroup_per_zone_info(memcg, node);
5957
5958 free_percpu(memcg->stat);
5959
Glauber Costa3f134612012-05-29 15:07:11 -07005960 /*
5961 * We need to make sure that (at least for now), the jump label
5962 * destruction code runs outside of the cgroup lock. This is because
5963 * get_online_cpus(), which is called from the static_branch update,
5964 * can't be called inside the cgroup_lock. cpusets are the ones
5965 * enforcing this dependency, so if they ever change, we might as well.
5966 *
5967 * schedule_work() will guarantee this happens. Be careful if you need
5968 * to move this code around, and make sure it is outside
5969 * the cgroup_lock.
5970 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005971 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07005972 if (size < PAGE_SIZE)
5973 kfree(memcg);
5974 else
5975 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005976}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005977
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005978/*
5979 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5980 */
Glauber Costae1aab162011-12-11 21:47:03 +00005981struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005982{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005983 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005984 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005985 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005986}
Glauber Costae1aab162011-12-11 21:47:03 +00005987EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005988
Li Zefan0eb253e2009-01-15 13:51:25 -08005989static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04005990mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005991{
Glauber Costad142e3e2013-02-22 16:34:52 -08005992 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005993 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005994 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005995
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005996 memcg = mem_cgroup_alloc();
5997 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005998 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005999
Bob Liu3ed28fa2012-01-12 17:19:04 -08006000 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006001 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006002 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07006003
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006004 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04006005 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08006006 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08006007 res_counter_init(&memcg->res, NULL);
6008 res_counter_init(&memcg->memsw, NULL);
6009 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08006010 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08006011
Glauber Costad142e3e2013-02-22 16:34:52 -08006012 memcg->last_scanned_node = MAX_NUMNODES;
6013 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08006014 memcg->move_charge_at_immigrate = 0;
6015 mutex_init(&memcg->thresholds_lock);
6016 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07006017 vmpressure_init(&memcg->vmpressure);
Michal Hocko7d910c02013-09-12 15:13:28 -07006018 spin_lock_init(&memcg->soft_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08006019
6020 return &memcg->css;
6021
6022free_out:
6023 __mem_cgroup_free(memcg);
6024 return ERR_PTR(error);
6025}
6026
6027static int
Tejun Heoeb954192013-08-08 20:11:23 -04006028mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08006029{
Tejun Heoeb954192013-08-08 20:11:23 -04006030 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6031 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08006032 int error = 0;
6033
Tejun Heo63876982013-08-08 20:11:23 -04006034 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08006035 return 0;
6036
Glauber Costa09998212013-02-22 16:34:55 -08006037 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006038
6039 memcg->use_hierarchy = parent->use_hierarchy;
6040 memcg->oom_kill_disable = parent->oom_kill_disable;
6041 memcg->swappiness = mem_cgroup_swappiness(parent);
6042
6043 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006044 res_counter_init(&memcg->res, &parent->res);
6045 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006046 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08006047
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006048 /*
Li Zefan8d76a972013-07-08 16:00:36 -07006049 * No need to take a reference to the parent because cgroup
6050 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006051 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08006052 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006053 res_counter_init(&memcg->res, NULL);
6054 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006055 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006056 /*
6057 * Deeper hierachy with use_hierarchy == false doesn't make
6058 * much sense so let cgroup subsystem know about this
6059 * unfortunate state in our controller.
6060 */
Glauber Costad142e3e2013-02-22 16:34:52 -08006061 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006062 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08006063 }
Glauber Costacbe128e32012-04-09 19:36:34 -03006064
6065 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08006066 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006067 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006068}
6069
Michal Hocko5f578162013-04-29 15:07:17 -07006070/*
6071 * Announce all parents that a group from their hierarchy is gone.
6072 */
6073static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
6074{
6075 struct mem_cgroup *parent = memcg;
6076
6077 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07006078 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07006079
6080 /*
6081 * if the root memcg is not hierarchical we have to check it
6082 * explicitely.
6083 */
6084 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07006085 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07006086}
6087
Tejun Heoeb954192013-08-08 20:11:23 -04006088static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006089{
Tejun Heoeb954192013-08-08 20:11:23 -04006090 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07006091
Li Zefan10d5ebf2013-07-08 16:00:33 -07006092 kmem_cgroup_css_offline(memcg);
6093
Michal Hocko5f578162013-04-29 15:07:17 -07006094 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02006095 mem_cgroup_reparent_charges(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -07006096 if (memcg->soft_contributed) {
6097 while ((memcg = parent_mem_cgroup(memcg)))
6098 atomic_dec(&memcg->children_in_excess);
Michal Hocko1be171d2013-09-12 15:13:32 -07006099
6100 if (memcg != root_mem_cgroup && !root_mem_cgroup->use_hierarchy)
6101 atomic_dec(&root_mem_cgroup->children_in_excess);
Michal Hocko7d910c02013-09-12 15:13:28 -07006102 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08006103 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07006104 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006105}
6106
Tejun Heoeb954192013-08-08 20:11:23 -04006107static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006108{
Tejun Heoeb954192013-08-08 20:11:23 -04006109 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08006110
Li Zefan10d5ebf2013-07-08 16:00:33 -07006111 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07006112 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006113}
6114
Daisuke Nishimura02491442010-03-10 15:22:17 -08006115#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006116/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006117#define PRECHARGE_COUNT_AT_ONCE 256
6118static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006119{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006120 int ret = 0;
6121 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006122 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006123
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006124 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006125 mc.precharge += count;
6126 /* we don't need css_get for root */
6127 return ret;
6128 }
6129 /* try to charge at once */
6130 if (count > 1) {
6131 struct res_counter *dummy;
6132 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006133 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006134 * by cgroup_lock_live_cgroup() that it is not removed and we
6135 * are still under the same cgroup_mutex. So we can postpone
6136 * css_get().
6137 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006138 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006139 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006140 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006141 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006142 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006143 goto one_by_one;
6144 }
6145 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006146 return ret;
6147 }
6148one_by_one:
6149 /* fall back to one by one charge */
6150 while (count--) {
6151 if (signal_pending(current)) {
6152 ret = -EINTR;
6153 break;
6154 }
6155 if (!batch_count--) {
6156 batch_count = PRECHARGE_COUNT_AT_ONCE;
6157 cond_resched();
6158 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006159 ret = __mem_cgroup_try_charge(NULL,
6160 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006161 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006162 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006163 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006164 mc.precharge++;
6165 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006166 return ret;
6167}
6168
6169/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006170 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006171 * @vma: the vma the pte to be checked belongs
6172 * @addr: the address corresponding to the pte to be checked
6173 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08006174 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006175 *
6176 * Returns
6177 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6178 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6179 * move charge. if @target is not NULL, the page is stored in target->page
6180 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006181 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6182 * target for charge migration. if @target is not NULL, the entry is stored
6183 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006184 *
6185 * Called with pte lock held.
6186 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006187union mc_target {
6188 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006189 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006190};
6191
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006192enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006193 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006194 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006195 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006196};
6197
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006198static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6199 unsigned long addr, pte_t ptent)
6200{
6201 struct page *page = vm_normal_page(vma, addr, ptent);
6202
6203 if (!page || !page_mapped(page))
6204 return NULL;
6205 if (PageAnon(page)) {
6206 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006207 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006208 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006209 } else if (!move_file())
6210 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006211 return NULL;
6212 if (!get_page_unless_zero(page))
6213 return NULL;
6214
6215 return page;
6216}
6217
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006218#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006219static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6220 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6221{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006222 struct page *page = NULL;
6223 swp_entry_t ent = pte_to_swp_entry(ptent);
6224
6225 if (!move_anon() || non_swap_entry(ent))
6226 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006227 /*
6228 * Because lookup_swap_cache() updates some statistics counter,
6229 * we call find_get_page() with swapper_space directly.
6230 */
Shaohua Li33806f02013-02-22 16:34:37 -08006231 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006232 if (do_swap_account)
6233 entry->val = ent.val;
6234
6235 return page;
6236}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006237#else
6238static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6239 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6240{
6241 return NULL;
6242}
6243#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006244
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006245static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6246 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6247{
6248 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006249 struct address_space *mapping;
6250 pgoff_t pgoff;
6251
6252 if (!vma->vm_file) /* anonymous vma */
6253 return NULL;
6254 if (!move_file())
6255 return NULL;
6256
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006257 mapping = vma->vm_file->f_mapping;
6258 if (pte_none(ptent))
6259 pgoff = linear_page_index(vma, addr);
6260 else /* pte_file(ptent) is true */
6261 pgoff = pte_to_pgoff(ptent);
6262
6263 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006264 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006265
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006266#ifdef CONFIG_SWAP
6267 /* shmem/tmpfs may report page out on swap: account for that too. */
6268 if (radix_tree_exceptional_entry(page)) {
6269 swp_entry_t swap = radix_to_swp_entry(page);
6270 if (do_swap_account)
6271 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006272 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006273 }
6274#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006275 return page;
6276}
6277
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006278static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006279 unsigned long addr, pte_t ptent, union mc_target *target)
6280{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006281 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006282 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006283 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006284 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006285
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006286 if (pte_present(ptent))
6287 page = mc_handle_present_pte(vma, addr, ptent);
6288 else if (is_swap_pte(ptent))
6289 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006290 else if (pte_none(ptent) || pte_file(ptent))
6291 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006292
6293 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006294 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006295 if (page) {
6296 pc = lookup_page_cgroup(page);
6297 /*
6298 * Do only loose check w/o page_cgroup lock.
6299 * mem_cgroup_move_account() checks the pc is valid or not under
6300 * the lock.
6301 */
6302 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6303 ret = MC_TARGET_PAGE;
6304 if (target)
6305 target->page = page;
6306 }
6307 if (!ret || !target)
6308 put_page(page);
6309 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006310 /* There is a swap entry and a page doesn't exist or isn't charged */
6311 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08006312 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006313 ret = MC_TARGET_SWAP;
6314 if (target)
6315 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006316 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006317 return ret;
6318}
6319
Naoya Horiguchi12724852012-03-21 16:34:28 -07006320#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6321/*
6322 * We don't consider swapping or file mapped pages because THP does not
6323 * support them for now.
6324 * Caller should make sure that pmd_trans_huge(pmd) is true.
6325 */
6326static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6327 unsigned long addr, pmd_t pmd, union mc_target *target)
6328{
6329 struct page *page = NULL;
6330 struct page_cgroup *pc;
6331 enum mc_target_type ret = MC_TARGET_NONE;
6332
6333 page = pmd_page(pmd);
6334 VM_BUG_ON(!page || !PageHead(page));
6335 if (!move_anon())
6336 return ret;
6337 pc = lookup_page_cgroup(page);
6338 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6339 ret = MC_TARGET_PAGE;
6340 if (target) {
6341 get_page(page);
6342 target->page = page;
6343 }
6344 }
6345 return ret;
6346}
6347#else
6348static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6349 unsigned long addr, pmd_t pmd, union mc_target *target)
6350{
6351 return MC_TARGET_NONE;
6352}
6353#endif
6354
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006355static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6356 unsigned long addr, unsigned long end,
6357 struct mm_walk *walk)
6358{
6359 struct vm_area_struct *vma = walk->private;
6360 pte_t *pte;
6361 spinlock_t *ptl;
6362
Naoya Horiguchi12724852012-03-21 16:34:28 -07006363 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6364 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6365 mc.precharge += HPAGE_PMD_NR;
6366 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006367 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006368 }
Dave Hansen03319322011-03-22 16:32:56 -07006369
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006370 if (pmd_trans_unstable(pmd))
6371 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006372 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6373 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006374 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006375 mc.precharge++; /* increment precharge temporarily */
6376 pte_unmap_unlock(pte - 1, ptl);
6377 cond_resched();
6378
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006379 return 0;
6380}
6381
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006382static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6383{
6384 unsigned long precharge;
6385 struct vm_area_struct *vma;
6386
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006387 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006388 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6389 struct mm_walk mem_cgroup_count_precharge_walk = {
6390 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6391 .mm = mm,
6392 .private = vma,
6393 };
6394 if (is_vm_hugetlb_page(vma))
6395 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006396 walk_page_range(vma->vm_start, vma->vm_end,
6397 &mem_cgroup_count_precharge_walk);
6398 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006399 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006400
6401 precharge = mc.precharge;
6402 mc.precharge = 0;
6403
6404 return precharge;
6405}
6406
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006407static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6408{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006409 unsigned long precharge = mem_cgroup_count_precharge(mm);
6410
6411 VM_BUG_ON(mc.moving_task);
6412 mc.moving_task = current;
6413 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006414}
6415
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006416/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6417static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006418{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006419 struct mem_cgroup *from = mc.from;
6420 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006421 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006422
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006423 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006424 if (mc.precharge) {
6425 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6426 mc.precharge = 0;
6427 }
6428 /*
6429 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6430 * we must uncharge here.
6431 */
6432 if (mc.moved_charge) {
6433 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6434 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006435 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006436 /* we must fixup refcnts and charges */
6437 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006438 /* uncharge swap account from the old cgroup */
6439 if (!mem_cgroup_is_root(mc.from))
6440 res_counter_uncharge(&mc.from->memsw,
6441 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006442
6443 for (i = 0; i < mc.moved_swap; i++)
6444 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006445
6446 if (!mem_cgroup_is_root(mc.to)) {
6447 /*
6448 * we charged both to->res and to->memsw, so we should
6449 * uncharge to->res.
6450 */
6451 res_counter_uncharge(&mc.to->res,
6452 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006453 }
Li Zefan40503772013-07-08 16:00:34 -07006454 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006455 mc.moved_swap = 0;
6456 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006457 memcg_oom_recover(from);
6458 memcg_oom_recover(to);
6459 wake_up_all(&mc.waitq);
6460}
6461
6462static void mem_cgroup_clear_mc(void)
6463{
6464 struct mem_cgroup *from = mc.from;
6465
6466 /*
6467 * we must clear moving_task before waking up waiters at the end of
6468 * task migration.
6469 */
6470 mc.moving_task = NULL;
6471 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006472 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006473 mc.from = NULL;
6474 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006475 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006476 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006477}
6478
Tejun Heoeb954192013-08-08 20:11:23 -04006479static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006480 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006481{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006482 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006483 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006484 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006485 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006486
Glauber Costaee5e8472013-02-22 16:34:50 -08006487 /*
6488 * We are now commited to this value whatever it is. Changes in this
6489 * tunable will only affect upcoming migrations, not the current one.
6490 * So we need to save it, and keep it going.
6491 */
6492 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6493 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006494 struct mm_struct *mm;
6495 struct mem_cgroup *from = mem_cgroup_from_task(p);
6496
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006497 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006498
6499 mm = get_task_mm(p);
6500 if (!mm)
6501 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006502 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006503 if (mm->owner == p) {
6504 VM_BUG_ON(mc.from);
6505 VM_BUG_ON(mc.to);
6506 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006507 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006508 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006509 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006510 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006511 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006512 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006513 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006514 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006515 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006516
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006517 ret = mem_cgroup_precharge_mc(mm);
6518 if (ret)
6519 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006520 }
6521 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006522 }
6523 return ret;
6524}
6525
Tejun Heoeb954192013-08-08 20:11:23 -04006526static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006527 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006528{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006529 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006530}
6531
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006532static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6533 unsigned long addr, unsigned long end,
6534 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006535{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006536 int ret = 0;
6537 struct vm_area_struct *vma = walk->private;
6538 pte_t *pte;
6539 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006540 enum mc_target_type target_type;
6541 union mc_target target;
6542 struct page *page;
6543 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006544
Naoya Horiguchi12724852012-03-21 16:34:28 -07006545 /*
6546 * We don't take compound_lock() here but no race with splitting thp
6547 * happens because:
6548 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6549 * under splitting, which means there's no concurrent thp split,
6550 * - if another thread runs into split_huge_page() just after we
6551 * entered this if-block, the thread must wait for page table lock
6552 * to be unlocked in __split_huge_page_splitting(), where the main
6553 * part of thp split is not executed yet.
6554 */
6555 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006556 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006557 spin_unlock(&vma->vm_mm->page_table_lock);
6558 return 0;
6559 }
6560 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6561 if (target_type == MC_TARGET_PAGE) {
6562 page = target.page;
6563 if (!isolate_lru_page(page)) {
6564 pc = lookup_page_cgroup(page);
6565 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006566 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006567 mc.precharge -= HPAGE_PMD_NR;
6568 mc.moved_charge += HPAGE_PMD_NR;
6569 }
6570 putback_lru_page(page);
6571 }
6572 put_page(page);
6573 }
6574 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006575 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006576 }
6577
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006578 if (pmd_trans_unstable(pmd))
6579 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006580retry:
6581 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6582 for (; addr != end; addr += PAGE_SIZE) {
6583 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006584 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006585
6586 if (!mc.precharge)
6587 break;
6588
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006589 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006590 case MC_TARGET_PAGE:
6591 page = target.page;
6592 if (isolate_lru_page(page))
6593 goto put;
6594 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006595 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006596 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006597 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006598 /* we uncharge from mc.from later. */
6599 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006600 }
6601 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006602put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006603 put_page(page);
6604 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006605 case MC_TARGET_SWAP:
6606 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006607 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006608 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006609 /* we fixup refcnts and charges later. */
6610 mc.moved_swap++;
6611 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006612 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006613 default:
6614 break;
6615 }
6616 }
6617 pte_unmap_unlock(pte - 1, ptl);
6618 cond_resched();
6619
6620 if (addr != end) {
6621 /*
6622 * We have consumed all precharges we got in can_attach().
6623 * We try charge one by one, but don't do any additional
6624 * charges to mc.to if we have failed in charge once in attach()
6625 * phase.
6626 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006627 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006628 if (!ret)
6629 goto retry;
6630 }
6631
6632 return ret;
6633}
6634
6635static void mem_cgroup_move_charge(struct mm_struct *mm)
6636{
6637 struct vm_area_struct *vma;
6638
6639 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006640retry:
6641 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6642 /*
6643 * Someone who are holding the mmap_sem might be waiting in
6644 * waitq. So we cancel all extra charges, wake up all waiters,
6645 * and retry. Because we cancel precharges, we might not be able
6646 * to move enough charges, but moving charge is a best-effort
6647 * feature anyway, so it wouldn't be a big problem.
6648 */
6649 __mem_cgroup_clear_mc();
6650 cond_resched();
6651 goto retry;
6652 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006653 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6654 int ret;
6655 struct mm_walk mem_cgroup_move_charge_walk = {
6656 .pmd_entry = mem_cgroup_move_charge_pte_range,
6657 .mm = mm,
6658 .private = vma,
6659 };
6660 if (is_vm_hugetlb_page(vma))
6661 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006662 ret = walk_page_range(vma->vm_start, vma->vm_end,
6663 &mem_cgroup_move_charge_walk);
6664 if (ret)
6665 /*
6666 * means we have consumed all precharges and failed in
6667 * doing additional charge. Just abandon here.
6668 */
6669 break;
6670 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006671 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006672}
6673
Tejun Heoeb954192013-08-08 20:11:23 -04006674static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006675 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006676{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006677 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006678 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006679
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006680 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006681 if (mc.to)
6682 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006683 mmput(mm);
6684 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006685 if (mc.to)
6686 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006687}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006688#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006689static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006690 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006691{
6692 return 0;
6693}
Tejun Heoeb954192013-08-08 20:11:23 -04006694static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006695 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006696{
6697}
Tejun Heoeb954192013-08-08 20:11:23 -04006698static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006699 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006700{
6701}
6702#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006703
Tejun Heof00baae2013-04-15 13:41:15 -07006704/*
6705 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6706 * to verify sane_behavior flag on each mount attempt.
6707 */
Tejun Heoeb954192013-08-08 20:11:23 -04006708static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006709{
6710 /*
6711 * use_hierarchy is forced with sane_behavior. cgroup core
6712 * guarantees that @root doesn't have any children, so turning it
6713 * on for the root memcg is enough.
6714 */
Tejun Heoeb954192013-08-08 20:11:23 -04006715 if (cgroup_sane_behavior(root_css->cgroup))
6716 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006717}
6718
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006719struct cgroup_subsys mem_cgroup_subsys = {
6720 .name = "memory",
6721 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006722 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006723 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006724 .css_offline = mem_cgroup_css_offline,
6725 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006726 .can_attach = mem_cgroup_can_attach,
6727 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006728 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006729 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006730 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006731 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006732 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006733};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006734
Andrew Mortonc255a452012-07-31 16:43:02 -07006735#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006736static int __init enable_swap_account(char *s)
6737{
Michal Hockoa2c89902011-05-24 17:12:50 -07006738 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006739 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006740 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006741 really_do_swap_account = 0;
6742 return 1;
6743}
Michal Hockoa2c89902011-05-24 17:12:50 -07006744__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006745
Michal Hocko2d110852013-02-22 16:34:43 -08006746static void __init memsw_file_init(void)
6747{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006748 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006749}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006750
6751static void __init enable_swap_cgroup(void)
6752{
6753 if (!mem_cgroup_disabled() && really_do_swap_account) {
6754 do_swap_account = 1;
6755 memsw_file_init();
6756 }
6757}
6758
Michal Hocko2d110852013-02-22 16:34:43 -08006759#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006760static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006761{
6762}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006763#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006764
6765/*
Michal Hocko10813122013-02-22 16:35:41 -08006766 * subsys_initcall() for memory controller.
6767 *
6768 * Some parts like hotcpu_notifier() have to be initialized from this context
6769 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6770 * everything that doesn't depend on a specific mem_cgroup structure should
6771 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006772 */
6773static int __init mem_cgroup_init(void)
6774{
6775 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006776 enable_swap_cgroup();
Michal Hockoe4777492013-02-22 16:35:40 -08006777 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006778 return 0;
6779}
6780subsys_initcall(mem_cgroup_init);