blob: 5ee0af463f2ecad7d377ba60822f1e096f91601a [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",
Sha Zhengju3ea67d02013-09-12 15:13:53 -070092 "writeback",
Johannes Weineraf7c4b02012-05-29 15:07:08 -070093 "swap",
94};
95
Johannes Weinere9f89742011-03-23 16:42:37 -070096enum mem_cgroup_events_index {
97 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
98 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
Ying Han456f9982011-05-26 16:25:38 -070099 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
100 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
Johannes Weinere9f89742011-03-23 16:42:37 -0700101 MEM_CGROUP_EVENTS_NSTATS,
102};
Johannes Weineraf7c4b02012-05-29 15:07:08 -0700103
104static const char * const mem_cgroup_events_names[] = {
105 "pgpgin",
106 "pgpgout",
107 "pgfault",
108 "pgmajfault",
109};
110
Sha Zhengju58cf1882013-02-22 16:32:05 -0800111static const char * const mem_cgroup_lru_names[] = {
112 "inactive_anon",
113 "active_anon",
114 "inactive_file",
115 "active_file",
116 "unevictable",
117};
118
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700119/*
120 * Per memcg event counter is incremented at every pagein/pageout. With THP,
121 * it will be incremated by the number of pages. This counter is used for
122 * for trigger some periodic events. This is straightforward and better
123 * than using jiffies etc. to handle periodic memcg event.
124 */
125enum mem_cgroup_events_target {
126 MEM_CGROUP_TARGET_THRESH,
Michal Hocko7d910c02013-09-12 15:13:28 -0700127 MEM_CGROUP_TARGET_SOFTLIMIT,
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -0700128 MEM_CGROUP_TARGET_NUMAINFO,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700129 MEM_CGROUP_NTARGETS,
130};
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700131#define THRESHOLDS_EVENTS_TARGET 128
132#define SOFTLIMIT_EVENTS_TARGET 1024
133#define NUMAINFO_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700134
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800135struct mem_cgroup_stat_cpu {
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700136 long count[MEM_CGROUP_STAT_NSTATS];
Johannes Weinere9f89742011-03-23 16:42:37 -0700137 unsigned long events[MEM_CGROUP_EVENTS_NSTATS];
Johannes Weiner13114712012-05-29 15:07:07 -0700138 unsigned long nr_page_events;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700139 unsigned long targets[MEM_CGROUP_NTARGETS];
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800140};
141
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800142struct mem_cgroup_reclaim_iter {
Michal Hocko5f578162013-04-29 15:07:17 -0700143 /*
144 * last scanned hierarchy member. Valid only if last_dead_count
145 * matches memcg->dead_count of the hierarchy root group.
146 */
Michal Hocko542f85f2013-04-29 15:07:15 -0700147 struct mem_cgroup *last_visited;
Michal Hocko5f578162013-04-29 15:07:17 -0700148 unsigned long last_dead_count;
149
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800150 /* scan generation, increased every round-trip */
151 unsigned int generation;
152};
153
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800154/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800155 * per-zone information in memory controller.
156 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800157struct mem_cgroup_per_zone {
Johannes Weiner6290df52012-01-12 17:18:10 -0800158 struct lruvec lruvec;
Hugh Dickins1eb49272012-03-21 16:34:19 -0700159 unsigned long lru_size[NR_LRU_LISTS];
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800160
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800161 struct mem_cgroup_reclaim_iter reclaim_iter[DEF_PRIORITY + 1];
162
Hugh Dickinsd79154b2012-03-21 16:34:18 -0700163 struct mem_cgroup *memcg; /* Back pointer, we cannot */
Balbir Singh4e416952009-09-23 15:56:39 -0700164 /* use container_of */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800165};
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800166
167struct mem_cgroup_per_node {
168 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
169};
170
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800171struct mem_cgroup_threshold {
172 struct eventfd_ctx *eventfd;
173 u64 threshold;
174};
175
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700176/* For threshold */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800177struct mem_cgroup_threshold_ary {
Sha Zhengju748dad32012-05-29 15:06:57 -0700178 /* An array index points to threshold just below or equal to usage. */
Phil Carmody5407a562010-05-26 14:42:42 -0700179 int current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800180 /* Size of entries[] */
181 unsigned int size;
182 /* Array of thresholds */
183 struct mem_cgroup_threshold entries[0];
184};
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700185
186struct mem_cgroup_thresholds {
187 /* Primary thresholds array */
188 struct mem_cgroup_threshold_ary *primary;
189 /*
190 * Spare threshold array.
191 * This is needed to make mem_cgroup_unregister_event() "never fail".
192 * It must be able to store at least primary->size - 1 entries.
193 */
194 struct mem_cgroup_threshold_ary *spare;
195};
196
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700197/* for OOM */
198struct mem_cgroup_eventfd_list {
199 struct list_head list;
200 struct eventfd_ctx *eventfd;
201};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800202
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700203static void mem_cgroup_threshold(struct mem_cgroup *memcg);
204static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800205
Balbir Singhf64c3f52009-09-23 15:56:37 -0700206/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800207 * The memory controller data structure. The memory controller controls both
208 * page cache and RSS per cgroup. We would eventually like to provide
209 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
210 * to help the administrator determine what knobs to tune.
211 *
212 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800213 * we hit the water mark. May be even add a low water mark, such that
214 * no reclaim occurs from a cgroup at it's low water mark, this is
215 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800216 */
217struct mem_cgroup {
218 struct cgroup_subsys_state css;
219 /*
220 * the counter to account for memory usage
221 */
222 struct res_counter res;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700223
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700224 /* vmpressure notifications */
225 struct vmpressure vmpressure;
226
Li Zefan465939a2013-07-08 16:00:38 -0700227 /*
228 * the counter to account for mem+swap usage.
229 */
230 struct res_counter memsw;
Hugh Dickins59927fb2012-03-15 15:17:07 -0700231
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800232 /*
Glauber Costa510fc4e2012-12-18 14:21:47 -0800233 * the counter to account for kernel memory usage.
234 */
235 struct res_counter kmem;
236 /*
Balbir Singh18f59ea2009-01-07 18:08:07 -0800237 * Should the accounting and control be hierarchical, per subtree?
238 */
239 bool use_hierarchy;
Glauber Costa510fc4e2012-12-18 14:21:47 -0800240 unsigned long kmem_account_flags; /* See KMEM_ACCOUNTED_*, below */
Michal Hocko79dfdac2011-07-26 16:08:23 -0700241
242 bool oom_lock;
243 atomic_t under_oom;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700244 atomic_t oom_wakeups;
Michal Hocko79dfdac2011-07-26 16:08:23 -0700245
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -0700246 int swappiness;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -0700247 /* OOM-Killer disable */
248 int oom_kill_disable;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -0800249
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -0700250 /* set when res.limit == memsw.limit */
251 bool memsw_is_minimum;
252
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800253 /* protect arrays of thresholds */
254 struct mutex thresholds_lock;
255
256 /* thresholds for memory usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700257 struct mem_cgroup_thresholds thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700258
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800259 /* thresholds for mem+swap usage. RCU-protected */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -0700260 struct mem_cgroup_thresholds memsw_thresholds;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700261
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700262 /* For oom notifier event fd */
263 struct list_head oom_notify;
Johannes Weiner185efc02011-09-14 16:21:58 -0700264
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800265 /*
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800266 * Should we move charges of a task when a task is moved into this
267 * mem_cgroup ? And what type of charges should we move ?
268 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700269 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800270 /*
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700271 * set > 0 if pages under this cgroup are moving to other cgroup.
272 */
273 atomic_t moving_account;
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -0700274 /* taken only while moving_account > 0 */
275 spinlock_t move_lock;
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -0700276 /*
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800277 * percpu counter.
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800278 */
Kirill A. Shutemov3a7951b2012-05-29 15:06:56 -0700279 struct mem_cgroup_stat_cpu __percpu *stat;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700280 /*
281 * used when a cpu is offlined or other synchronizations
282 * See mem_cgroup_read_stat().
283 */
284 struct mem_cgroup_stat_cpu nocpu_base;
285 spinlock_t pcp_counter_lock;
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000286
Michal Hocko5f578162013-04-29 15:07:17 -0700287 atomic_t dead_count;
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700288#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000289 struct tcp_memcontrol tcp_mem;
290#endif
Glauber Costa2633d7a2012-12-18 14:22:34 -0800291#if defined(CONFIG_MEMCG_KMEM)
292 /* analogous to slab_common's slab_caches list. per-memcg */
293 struct list_head memcg_slab_caches;
294 /* Not a spinlock, we can take a lot of time walking the list */
295 struct mutex slab_caches_mutex;
296 /* Index in the kmem_cache->memcg_params->memcg_caches array */
297 int kmemcg_id;
298#endif
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800299
300 int last_scanned_node;
301#if MAX_NUMNODES > 1
302 nodemask_t scan_nodes;
303 atomic_t numainfo_events;
304 atomic_t numainfo_updating;
305#endif
Michal Hocko7d910c02013-09-12 15:13:28 -0700306 /*
307 * Protects soft_contributed transitions.
308 * See mem_cgroup_update_soft_limit
309 */
310 spinlock_t soft_lock;
311
312 /*
313 * If true then this group has increased parents' children_in_excess
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700314 * when it got over the soft limit.
Michal Hocko7d910c02013-09-12 15:13:28 -0700315 * When a group falls bellow the soft limit, parents' children_in_excess
316 * is decreased and soft_contributed changed to false.
317 */
318 bool soft_contributed;
319
320 /* Number of children that are in soft limit excess */
321 atomic_t children_in_excess;
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700322
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700323 struct mem_cgroup_per_node *nodeinfo[0];
324 /* WARNING: nodeinfo must be the last member here */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800325};
326
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800327static size_t memcg_size(void)
328{
329 return sizeof(struct mem_cgroup) +
330 nr_node_ids * sizeof(struct mem_cgroup_per_node);
331}
332
Glauber Costa510fc4e2012-12-18 14:21:47 -0800333/* internal only representation about the status of kmem accounting. */
334enum {
335 KMEM_ACCOUNTED_ACTIVE = 0, /* accounted by this cgroup itself */
Glauber Costaa8964b92012-12-18 14:22:09 -0800336 KMEM_ACCOUNTED_ACTIVATED, /* static key enabled. */
Glauber Costa7de37682012-12-18 14:22:07 -0800337 KMEM_ACCOUNTED_DEAD, /* dead memcg with pending kmem charges */
Glauber Costa510fc4e2012-12-18 14:21:47 -0800338};
339
Glauber Costaa8964b92012-12-18 14:22:09 -0800340/* We account when limit is on, but only after call sites are patched */
341#define KMEM_ACCOUNTED_MASK \
342 ((1 << KMEM_ACCOUNTED_ACTIVE) | (1 << KMEM_ACCOUNTED_ACTIVATED))
Glauber Costa510fc4e2012-12-18 14:21:47 -0800343
344#ifdef CONFIG_MEMCG_KMEM
345static inline void memcg_kmem_set_active(struct mem_cgroup *memcg)
346{
347 set_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
348}
Glauber Costa7de37682012-12-18 14:22:07 -0800349
350static bool memcg_kmem_is_active(struct mem_cgroup *memcg)
351{
352 return test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags);
353}
354
Glauber Costaa8964b92012-12-18 14:22:09 -0800355static void memcg_kmem_set_activated(struct mem_cgroup *memcg)
356{
357 set_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
358}
359
Glauber Costa55007d82012-12-18 14:22:38 -0800360static void memcg_kmem_clear_activated(struct mem_cgroup *memcg)
361{
362 clear_bit(KMEM_ACCOUNTED_ACTIVATED, &memcg->kmem_account_flags);
363}
364
Glauber Costa7de37682012-12-18 14:22:07 -0800365static void memcg_kmem_mark_dead(struct mem_cgroup *memcg)
366{
Li Zefan10d5ebf2013-07-08 16:00:33 -0700367 /*
368 * Our caller must use css_get() first, because memcg_uncharge_kmem()
369 * will call css_put() if it sees the memcg is dead.
370 */
371 smp_wmb();
Glauber Costa7de37682012-12-18 14:22:07 -0800372 if (test_bit(KMEM_ACCOUNTED_ACTIVE, &memcg->kmem_account_flags))
373 set_bit(KMEM_ACCOUNTED_DEAD, &memcg->kmem_account_flags);
374}
375
376static bool memcg_kmem_test_and_clear_dead(struct mem_cgroup *memcg)
377{
378 return test_and_clear_bit(KMEM_ACCOUNTED_DEAD,
379 &memcg->kmem_account_flags);
380}
Glauber Costa510fc4e2012-12-18 14:21:47 -0800381#endif
382
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800383/* Stuffs for move charges at task migration. */
384/*
Glauber Costaee5e8472013-02-22 16:34:50 -0800385 * Types of charges to be moved. "move_charge_at_immitgrate" and
386 * "immigrate_flags" are treated as a left-shifted bitmap of these types.
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800387 */
388enum move_type {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800389 MOVE_CHARGE_TYPE_ANON, /* private anonymous page and swap of it */
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700390 MOVE_CHARGE_TYPE_FILE, /* file page(including tmpfs) and swap of it */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800391 NR_MOVE_TYPE,
392};
393
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800394/* "mc" and its members are protected by cgroup_mutex */
395static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800396 spinlock_t lock; /* for from, to */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800397 struct mem_cgroup *from;
398 struct mem_cgroup *to;
Glauber Costaee5e8472013-02-22 16:34:50 -0800399 unsigned long immigrate_flags;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800400 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800401 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800402 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800403 struct task_struct *moving_task; /* a task moving charges */
404 wait_queue_head_t waitq; /* a waitq for other context */
405} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700406 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800407 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
408};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800409
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700410static bool move_anon(void)
411{
Glauber Costaee5e8472013-02-22 16:34:50 -0800412 return test_bit(MOVE_CHARGE_TYPE_ANON, &mc.immigrate_flags);
Daisuke Nishimura90254a62010-05-26 14:42:38 -0700413}
414
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700415static bool move_file(void)
416{
Glauber Costaee5e8472013-02-22 16:34:50 -0800417 return test_bit(MOVE_CHARGE_TYPE_FILE, &mc.immigrate_flags);
Daisuke Nishimura87946a72010-05-26 14:42:39 -0700418}
419
Balbir Singh4e416952009-09-23 15:56:39 -0700420/*
421 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
422 * limit reclaim to prevent infinite loops, if they ever occur.
423 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700424#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
Balbir Singh4e416952009-09-23 15:56:39 -0700425
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800426enum charge_type {
427 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -0700428 MEM_CGROUP_CHARGE_TYPE_ANON,
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800429 MEM_CGROUP_CHARGE_TYPE_SWAPOUT, /* for accounting swapcache */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700430 MEM_CGROUP_CHARGE_TYPE_DROP, /* a page was unused swap cache */
KAMEZAWA Hiroyukic05555b2008-10-18 20:28:11 -0700431 NR_CHARGE_TYPE,
432};
433
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800434/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800435enum res_type {
436 _MEM,
437 _MEMSWAP,
438 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800439 _KMEM,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800440};
441
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700442#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
443#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800444#define MEMFILE_ATTR(val) ((val) & 0xffff)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700445/* Used for OOM nofiier */
446#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800447
Balbir Singh75822b42009-09-23 15:56:38 -0700448/*
449 * Reclaim flags for mem_cgroup_hierarchical_reclaim
450 */
451#define MEM_CGROUP_RECLAIM_NOSWAP_BIT 0x0
452#define MEM_CGROUP_RECLAIM_NOSWAP (1 << MEM_CGROUP_RECLAIM_NOSWAP_BIT)
453#define MEM_CGROUP_RECLAIM_SHRINK_BIT 0x1
454#define MEM_CGROUP_RECLAIM_SHRINK (1 << MEM_CGROUP_RECLAIM_SHRINK_BIT)
455
Glauber Costa09998212013-02-22 16:34:55 -0800456/*
457 * The memcg_create_mutex will be held whenever a new cgroup is created.
458 * As a consequence, any change that needs to protect against new child cgroups
459 * appearing has to hold it as well.
460 */
461static DEFINE_MUTEX(memcg_create_mutex);
462
Wanpeng Lib2145142012-07-31 16:46:01 -0700463struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s)
464{
Tejun Heoa7c6d552013-08-08 20:11:23 -0400465 return s ? container_of(s, struct mem_cgroup, css) : NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -0700466}
467
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700468/* Some nice accessors for the vmpressure. */
469struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
470{
471 if (!memcg)
472 memcg = root_mem_cgroup;
473 return &memcg->vmpressure;
474}
475
476struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr)
477{
478 return &container_of(vmpr, struct mem_cgroup, vmpressure)->css;
479}
480
481struct vmpressure *css_to_vmpressure(struct cgroup_subsys_state *css)
482{
483 return &mem_cgroup_from_css(css)->vmpressure;
484}
485
Michal Hocko7ffc0ed2012-10-08 16:33:13 -0700486static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
487{
488 return (memcg == root_mem_cgroup);
489}
490
Glauber Costae1aab162011-12-11 21:47:03 +0000491/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700492#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000493
Glauber Costae1aab162011-12-11 21:47:03 +0000494void sock_update_memcg(struct sock *sk)
495{
Glauber Costa376be5f2012-01-20 04:57:14 +0000496 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000497 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700498 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000499
500 BUG_ON(!sk->sk_prot->proto_cgroup);
501
Glauber Costaf3f511e2012-01-05 20:16:39 +0000502 /* Socket cloning can throw us here with sk_cgrp already
503 * filled. It won't however, necessarily happen from
504 * process context. So the test for root memcg given
505 * the current task's memcg won't help us in this case.
506 *
507 * Respecting the original socket's memcg is a better
508 * decision in this case.
509 */
510 if (sk->sk_cgrp) {
511 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700512 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000513 return;
514 }
515
Glauber Costae1aab162011-12-11 21:47:03 +0000516 rcu_read_lock();
517 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700518 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Li Zefan5347e5a2013-07-08 16:00:30 -0700519 if (!mem_cgroup_is_root(memcg) &&
520 memcg_proto_active(cg_proto) && css_tryget(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700521 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000522 }
523 rcu_read_unlock();
524 }
525}
526EXPORT_SYMBOL(sock_update_memcg);
527
528void sock_release_memcg(struct sock *sk)
529{
Glauber Costa376be5f2012-01-20 04:57:14 +0000530 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000531 struct mem_cgroup *memcg;
532 WARN_ON(!sk->sk_cgrp->memcg);
533 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700534 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000535 }
536}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000537
538struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
539{
540 if (!memcg || mem_cgroup_is_root(memcg))
541 return NULL;
542
543 return &memcg->tcp_mem.cg_proto;
544}
545EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000546
Glauber Costa3f134612012-05-29 15:07:11 -0700547static void disarm_sock_keys(struct mem_cgroup *memcg)
548{
549 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
550 return;
551 static_key_slow_dec(&memcg_socket_limit_enabled);
552}
553#else
554static void disarm_sock_keys(struct mem_cgroup *memcg)
555{
556}
557#endif
558
Glauber Costaa8964b92012-12-18 14:22:09 -0800559#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800560/*
561 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
562 * There are two main reasons for not using the css_id for this:
563 * 1) this works better in sparse environments, where we have a lot of memcgs,
564 * but only a few kmem-limited. Or also, if we have, for instance, 200
565 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
566 * 200 entry array for that.
567 *
568 * 2) In order not to violate the cgroup API, we would like to do all memory
569 * allocation in ->create(). At that point, we haven't yet allocated the
570 * css_id. Having a separate index prevents us from messing with the cgroup
571 * core for this
572 *
573 * The current size of the caches array is stored in
574 * memcg_limited_groups_array_size. It will double each time we have to
575 * increase it.
576 */
577static DEFINE_IDA(kmem_limited_groups);
Glauber Costa749c5412012-12-18 14:23:01 -0800578int memcg_limited_groups_array_size;
579
Glauber Costa55007d82012-12-18 14:22:38 -0800580/*
581 * MIN_SIZE is different than 1, because we would like to avoid going through
582 * the alloc/free process all the time. In a small machine, 4 kmem-limited
583 * cgroups is a reasonable guess. In the future, it could be a parameter or
584 * tunable, but that is strictly not necessary.
585 *
586 * MAX_SIZE should be as large as the number of css_ids. Ideally, we could get
587 * this constant directly from cgroup, but it is understandable that this is
588 * better kept as an internal representation in cgroup.c. In any case, the
589 * css_id space is not getting any smaller, and we don't have to necessarily
590 * increase ours as well if it increases.
591 */
592#define MEMCG_CACHES_MIN_SIZE 4
593#define MEMCG_CACHES_MAX_SIZE 65535
594
Glauber Costad7f25f82012-12-18 14:22:40 -0800595/*
596 * A lot of the calls to the cache allocation functions are expected to be
597 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
598 * conditional to this static branch, we'll have to allow modules that does
599 * kmem_cache_alloc and the such to see this symbol as well
600 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800601struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800602EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800603
604static void disarm_kmem_keys(struct mem_cgroup *memcg)
605{
Glauber Costa55007d82012-12-18 14:22:38 -0800606 if (memcg_kmem_is_active(memcg)) {
Glauber Costaa8964b92012-12-18 14:22:09 -0800607 static_key_slow_dec(&memcg_kmem_enabled_key);
Glauber Costa55007d82012-12-18 14:22:38 -0800608 ida_simple_remove(&kmem_limited_groups, memcg->kmemcg_id);
609 }
Glauber Costabea207c2012-12-18 14:22:11 -0800610 /*
611 * This check can't live in kmem destruction function,
612 * since the charges will outlive the cgroup
613 */
614 WARN_ON(res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0);
Glauber Costaa8964b92012-12-18 14:22:09 -0800615}
616#else
617static void disarm_kmem_keys(struct mem_cgroup *memcg)
618{
619}
620#endif /* CONFIG_MEMCG_KMEM */
621
622static void disarm_static_keys(struct mem_cgroup *memcg)
623{
624 disarm_sock_keys(memcg);
625 disarm_kmem_keys(memcg);
626}
627
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700628static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800629
Balbir Singhf64c3f52009-09-23 15:56:37 -0700630static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700631mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700632{
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800633 VM_BUG_ON((unsigned)nid >= nr_node_ids);
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700634 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700635}
636
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700637struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100638{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700639 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100640}
641
Balbir Singhf64c3f52009-09-23 15:56:37 -0700642static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700643page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700644{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700645 int nid = page_to_nid(page);
646 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700647
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700648 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700649}
650
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700651/*
652 * Implementation Note: reading percpu statistics for memcg.
653 *
654 * Both of vmstat[] and percpu_counter has threshold and do periodic
655 * synchronization to implement "quick" read. There are trade-off between
656 * reading cost and precision of value. Then, we may have a chance to implement
657 * a periodic synchronizion of counter in memcg's counter.
658 *
659 * But this _read() function is used for user interface now. The user accounts
660 * memory usage by memory cgroup and he _always_ requires exact value because
661 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
662 * have to visit all online cpus and make sum. So, for now, unnecessary
663 * synchronization is not implemented. (just implemented for cpu hotplug)
664 *
665 * If there are kernel internal actions which can make use of some not-exact
666 * value, and reading all cpu value can be performance bottleneck in some
667 * common workload, threashold and synchonization as vmstat[] should be
668 * implemented.
669 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700670static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700671 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800672{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700673 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800674 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800675
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700676 get_online_cpus();
677 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700678 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700679#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700680 spin_lock(&memcg->pcp_counter_lock);
681 val += memcg->nocpu_base.count[idx];
682 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700683#endif
684 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800685 return val;
686}
687
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700688static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700689 bool charge)
690{
691 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700692 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700693}
694
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700695static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700696 enum mem_cgroup_events_index idx)
697{
698 unsigned long val = 0;
699 int cpu;
700
701 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700702 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700703#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700704 spin_lock(&memcg->pcp_counter_lock);
705 val += memcg->nocpu_base.events[idx];
706 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700707#endif
708 return val;
709}
710
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700711static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700712 struct page *page,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700713 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800714{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800715 preempt_disable();
716
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700717 /*
718 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
719 * counted as CACHE even if it's on ANON LRU.
720 */
721 if (anon)
722 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700723 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800724 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700725 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700726 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700727
David Rientjesb070e652013-05-07 16:18:09 -0700728 if (PageTransHuge(page))
729 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
730 nr_pages);
731
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800732 /* pagein of a big page is an event. So, ignore page size */
733 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700734 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800735 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700736 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800737 nr_pages = -nr_pages; /* for event */
738 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800739
Johannes Weiner13114712012-05-29 15:07:07 -0700740 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800741
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800742 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800743}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800744
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700745unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700746mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700747{
748 struct mem_cgroup_per_zone *mz;
749
750 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
751 return mz->lru_size[lru];
752}
753
754static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700755mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700756 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700757{
758 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab932012-03-21 16:34:19 -0700759 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700760 unsigned long ret = 0;
761
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700762 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700763
Hugh Dickinsf156ab932012-03-21 16:34:19 -0700764 for_each_lru(lru) {
765 if (BIT(lru) & lru_mask)
766 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700767 }
768 return ret;
769}
770
771static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700772mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700773 int nid, unsigned int lru_mask)
774{
Ying Han889976d2011-05-26 16:25:33 -0700775 u64 total = 0;
776 int zid;
777
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700778 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700779 total += mem_cgroup_zone_nr_lru_pages(memcg,
780 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700781
Ying Han889976d2011-05-26 16:25:33 -0700782 return total;
783}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700784
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700785static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700786 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800787{
Ying Han889976d2011-05-26 16:25:33 -0700788 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800789 u64 total = 0;
790
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800791 for_each_node_state(nid, N_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700792 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800793 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800794}
795
Johannes Weinerf53d7ce32012-01-12 17:18:23 -0800796static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
797 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800798{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700799 unsigned long val, next;
800
Johannes Weiner13114712012-05-29 15:07:07 -0700801 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700802 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700803 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce32012-01-12 17:18:23 -0800804 if ((long)next - (long)val < 0) {
805 switch (target) {
806 case MEM_CGROUP_TARGET_THRESH:
807 next = val + THRESHOLDS_EVENTS_TARGET;
808 break;
Michal Hocko7d910c02013-09-12 15:13:28 -0700809 case MEM_CGROUP_TARGET_SOFTLIMIT:
810 next = val + SOFTLIMIT_EVENTS_TARGET;
811 break;
Johannes Weinerf53d7ce32012-01-12 17:18:23 -0800812 case MEM_CGROUP_TARGET_NUMAINFO:
813 next = val + NUMAINFO_EVENTS_TARGET;
814 break;
815 default:
816 break;
817 }
818 __this_cpu_write(memcg->stat->targets[target], next);
819 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700820 }
Johannes Weinerf53d7ce32012-01-12 17:18:23 -0800821 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800822}
823
824/*
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700825 * Called from rate-limited memcg_check_events when enough
Michal Hocko7d910c02013-09-12 15:13:28 -0700826 * MEM_CGROUP_TARGET_SOFTLIMIT events are accumulated and it makes sure
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700827 * that all the parents up the hierarchy will be notified that this group
Michal Hocko7d910c02013-09-12 15:13:28 -0700828 * is in excess or that it is not in excess anymore. mmecg->soft_contributed
829 * makes the transition a single action whenever the state flips from one to
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700830 * the other.
Michal Hocko7d910c02013-09-12 15:13:28 -0700831 */
832static void mem_cgroup_update_soft_limit(struct mem_cgroup *memcg)
833{
834 unsigned long long excess = res_counter_soft_limit_excess(&memcg->res);
835 struct mem_cgroup *parent = memcg;
836 int delta = 0;
837
838 spin_lock(&memcg->soft_lock);
839 if (excess) {
840 if (!memcg->soft_contributed) {
841 delta = 1;
842 memcg->soft_contributed = true;
843 }
844 } else {
845 if (memcg->soft_contributed) {
846 delta = -1;
847 memcg->soft_contributed = false;
848 }
849 }
850
851 /*
852 * Necessary to update all ancestors when hierarchy is used
853 * because their event counter is not touched.
854 */
855 while (delta && (parent = parent_mem_cgroup(parent)))
856 atomic_add(delta, &parent->children_in_excess);
857 spin_unlock(&memcg->soft_lock);
858}
859
860/*
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800861 * Check events in order.
862 *
863 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700864static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800865{
Steven Rostedt47994012011-11-02 13:38:33 -0700866 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800867 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce32012-01-12 17:18:23 -0800868 if (unlikely(mem_cgroup_event_ratelimit(memcg,
869 MEM_CGROUP_TARGET_THRESH))) {
Michal Hocko7d910c02013-09-12 15:13:28 -0700870 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800871 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce32012-01-12 17:18:23 -0800872
Michal Hocko7d910c02013-09-12 15:13:28 -0700873 do_softlimit = mem_cgroup_event_ratelimit(memcg,
874 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -0700875#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce32012-01-12 17:18:23 -0800876 do_numainfo = mem_cgroup_event_ratelimit(memcg,
877 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -0700878#endif
Johannes Weinerf53d7ce32012-01-12 17:18:23 -0800879 preempt_enable();
880
881 mem_cgroup_threshold(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -0700882 if (unlikely(do_softlimit))
883 mem_cgroup_update_soft_limit(memcg);
Johannes Weinerf53d7ce32012-01-12 17:18:23 -0800884#if MAX_NUMNODES > 1
885 if (unlikely(do_numainfo))
886 atomic_inc(&memcg->numainfo_events);
887#endif
888 } else
889 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800890}
891
Balbir Singhcf475ad2008-04-29 01:00:16 -0700892struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800893{
Balbir Singh31a78f22008-09-28 23:09:31 +0100894 /*
895 * mm_update_next_owner() may clear mm->owner to NULL
896 * if it races with swapoff, page migration, etc.
897 * So this can be called with p == NULL.
898 */
899 if (unlikely(!p))
900 return NULL;
901
Tejun Heo8af01f52013-08-08 20:11:22 -0400902 return mem_cgroup_from_css(task_css(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800903}
904
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700905struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800906{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700907 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700908
909 if (!mm)
910 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800911 /*
912 * Because we have no locks, mm->owner's may be being moved to other
913 * cgroup. We use css_tryget() here even if this looks
914 * pessimistic (rather than adding locks here).
915 */
916 rcu_read_lock();
917 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700918 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
919 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800920 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700921 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800922 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700923 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800924}
925
Michal Hockode577802013-09-12 15:13:26 -0700926static enum mem_cgroup_filter_t
927mem_cgroup_filter(struct mem_cgroup *memcg, struct mem_cgroup *root,
928 mem_cgroup_iter_filter cond)
929{
930 if (!cond)
931 return VISIT;
932 return cond(memcg, root);
933}
934
Michal Hocko16248d82013-04-29 15:07:19 -0700935/*
936 * Returns a next (in a pre-order walk) alive memcg (with elevated css
937 * ref. count) or NULL if the whole root's subtree has been visited.
938 *
939 * helper function to be used by mem_cgroup_iter
940 */
941static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
Michal Hockode577802013-09-12 15:13:26 -0700942 struct mem_cgroup *last_visited, mem_cgroup_iter_filter cond)
Michal Hocko16248d82013-04-29 15:07:19 -0700943{
Tejun Heo492eb212013-08-08 20:11:25 -0400944 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700945
Tejun Heobd8815a2013-08-08 20:11:27 -0400946 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -0700947skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -0400948 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -0700949
950 /*
951 * Even if we found a group we have to make sure it is
952 * alive. css && !memcg means that the groups should be
953 * skipped and we should continue the tree walk.
954 * last_visited css is safe to use because it is
955 * protected by css_get and the tree walk is rcu safe.
956 */
Tejun Heo492eb212013-08-08 20:11:25 -0400957 if (next_css) {
958 struct mem_cgroup *mem = mem_cgroup_from_css(next_css);
959
Michal Hockode577802013-09-12 15:13:26 -0700960 switch (mem_cgroup_filter(mem, root, cond)) {
961 case SKIP:
Tejun Heo492eb212013-08-08 20:11:25 -0400962 prev_css = next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700963 goto skip_node;
Michal Hockode577802013-09-12 15:13:26 -0700964 case SKIP_TREE:
965 if (mem == root)
966 return NULL;
967 /*
968 * css_rightmost_descendant is not an optimal way to
969 * skip through a subtree (especially for imbalanced
970 * trees leaning to right) but that's what we have right
971 * now. More effective solution would be traversing
972 * right-up for first non-NULL without calling
973 * css_next_descendant_pre afterwards.
974 */
975 prev_css = css_rightmost_descendant(next_css);
976 goto skip_node;
977 case VISIT:
978 if (css_tryget(&mem->css))
979 return mem;
980 else {
981 prev_css = next_css;
982 goto skip_node;
983 }
984 break;
Michal Hocko16248d82013-04-29 15:07:19 -0700985 }
986 }
987
988 return NULL;
989}
990
Johannes Weiner519ebea2013-07-03 15:04:51 -0700991static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
992{
993 /*
994 * When a group in the hierarchy below root is destroyed, the
995 * hierarchy iterator can no longer be trusted since it might
996 * have pointed to the destroyed group. Invalidate it.
997 */
998 atomic_inc(&root->dead_count);
999}
1000
1001static struct mem_cgroup *
1002mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
1003 struct mem_cgroup *root,
1004 int *sequence)
1005{
1006 struct mem_cgroup *position = NULL;
1007 /*
1008 * A cgroup destruction happens in two stages: offlining and
1009 * release. They are separated by a RCU grace period.
1010 *
1011 * If the iterator is valid, we may still race with an
1012 * offlining. The RCU lock ensures the object won't be
1013 * released, tryget will fail if we lost the race.
1014 */
1015 *sequence = atomic_read(&root->dead_count);
1016 if (iter->last_dead_count == *sequence) {
1017 smp_rmb();
1018 position = iter->last_visited;
1019 if (position && !css_tryget(&position->css))
1020 position = NULL;
1021 }
1022 return position;
1023}
1024
1025static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
1026 struct mem_cgroup *last_visited,
1027 struct mem_cgroup *new_position,
1028 int sequence)
1029{
1030 if (last_visited)
1031 css_put(&last_visited->css);
1032 /*
1033 * We store the sequence count from the time @last_visited was
1034 * loaded successfully instead of rereading it here so that we
1035 * don't lose destruction events in between. We could have
1036 * raced with the destruction of @new_position after all.
1037 */
1038 iter->last_visited = new_position;
1039 smp_wmb();
1040 iter->last_dead_count = sequence;
1041}
1042
Johannes Weiner56600482012-01-12 17:17:59 -08001043/**
1044 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1045 * @root: hierarchy root
1046 * @prev: previously returned memcg, NULL on first invocation
1047 * @reclaim: cookie for shared reclaim walks, NULL for full walks
Michal Hockode577802013-09-12 15:13:26 -07001048 * @cond: filter for visited nodes, NULL for no filter
Johannes Weiner56600482012-01-12 17:17:59 -08001049 *
1050 * Returns references to children of the hierarchy below @root, or
1051 * @root itself, or %NULL after a full round-trip.
1052 *
1053 * Caller must pass the return value in @prev on subsequent
1054 * invocations for reference counting, or use mem_cgroup_iter_break()
1055 * to cancel a hierarchy walk before the round-trip is complete.
1056 *
1057 * Reclaimers can specify a zone and a priority level in @reclaim to
1058 * divide up the memcgs in the hierarchy among all concurrent
1059 * reclaimers operating on the same zone and priority.
1060 */
Michal Hockode577802013-09-12 15:13:26 -07001061struct mem_cgroup *mem_cgroup_iter_cond(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -08001062 struct mem_cgroup *prev,
Michal Hockode577802013-09-12 15:13:26 -07001063 struct mem_cgroup_reclaim_cookie *reclaim,
1064 mem_cgroup_iter_filter cond)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001065{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001066 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001067 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001068
Michal Hockode577802013-09-12 15:13:26 -07001069 if (mem_cgroup_disabled()) {
1070 /* first call must return non-NULL, second return NULL */
1071 return (struct mem_cgroup *)(unsigned long)!prev;
1072 }
Johannes Weiner56600482012-01-12 17:17:59 -08001073
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001074 if (!root)
1075 root = root_mem_cgroup;
1076
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001077 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -07001078 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001079
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001080 if (!root->use_hierarchy && root != root_mem_cgroup) {
1081 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001082 goto out_css_put;
Michal Hockode577802013-09-12 15:13:26 -07001083 if (mem_cgroup_filter(root, root, cond) == VISIT)
1084 return root;
1085 return NULL;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001086 }
1087
Michal Hocko542f85f2013-04-29 15:07:15 -07001088 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001089 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001090 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001091 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001092
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001093 if (reclaim) {
1094 int nid = zone_to_nid(reclaim->zone);
1095 int zid = zone_idx(reclaim->zone);
1096 struct mem_cgroup_per_zone *mz;
1097
1098 mz = mem_cgroup_zoneinfo(root, nid, zid);
1099 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001100 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001101 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001102 goto out_unlock;
1103 }
Michal Hocko5f578162013-04-29 15:07:17 -07001104
Johannes Weiner519ebea2013-07-03 15:04:51 -07001105 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001106 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001107
Michal Hockode577802013-09-12 15:13:26 -07001108 memcg = __mem_cgroup_iter_next(root, last_visited, cond);
Michal Hocko542f85f2013-04-29 15:07:15 -07001109
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001110 if (reclaim) {
Johannes Weiner519ebea2013-07-03 15:04:51 -07001111 mem_cgroup_iter_update(iter, last_visited, memcg, seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001112
Michal Hocko19f39402013-04-29 15:07:18 -07001113 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001114 iter->generation++;
1115 else if (!prev && memcg)
1116 reclaim->generation = iter->generation;
1117 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001118
Michal Hockode577802013-09-12 15:13:26 -07001119 /*
1120 * We have finished the whole tree walk or no group has been
1121 * visited because filter told us to skip the root node.
1122 */
1123 if (!memcg && (prev || (cond && !last_visited)))
Michal Hocko542f85f2013-04-29 15:07:15 -07001124 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001125 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001126out_unlock:
1127 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001128out_css_put:
1129 if (prev && prev != root)
1130 css_put(&prev->css);
1131
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001132 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001133}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001134
Johannes Weiner56600482012-01-12 17:17:59 -08001135/**
1136 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1137 * @root: hierarchy root
1138 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1139 */
1140void mem_cgroup_iter_break(struct mem_cgroup *root,
1141 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001142{
1143 if (!root)
1144 root = root_mem_cgroup;
1145 if (prev && prev != root)
1146 css_put(&prev->css);
1147}
1148
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001149/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001150 * Iteration constructs for visiting all cgroups (under a tree). If
1151 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1152 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001153 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001154#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001155 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001156 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001157 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001158
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001159#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001160 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001161 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001162 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001163
David Rientjes68ae5642012-12-12 13:51:57 -08001164void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001165{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001166 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001167
Ying Han456f9982011-05-26 16:25:38 -07001168 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001169 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1170 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001171 goto out;
1172
1173 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001174 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001175 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1176 break;
1177 case PGMAJFAULT:
1178 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001179 break;
1180 default:
1181 BUG();
1182 }
1183out:
1184 rcu_read_unlock();
1185}
David Rientjes68ae5642012-12-12 13:51:57 -08001186EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001187
Johannes Weiner925b7672012-01-12 17:18:15 -08001188/**
1189 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1190 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001191 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001192 *
1193 * Returns the lru list vector holding pages for the given @zone and
1194 * @mem. This can be the global zone lruvec, if the memory controller
1195 * is disabled.
1196 */
1197struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1198 struct mem_cgroup *memcg)
1199{
1200 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001201 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001202
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001203 if (mem_cgroup_disabled()) {
1204 lruvec = &zone->lruvec;
1205 goto out;
1206 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001207
1208 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001209 lruvec = &mz->lruvec;
1210out:
1211 /*
1212 * Since a node can be onlined after the mem_cgroup was created,
1213 * we have to be prepared to initialize lruvec->zone here;
1214 * and if offlined then reonlined, we need to reinitialize it.
1215 */
1216 if (unlikely(lruvec->zone != zone))
1217 lruvec->zone = zone;
1218 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001219}
1220
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001221/*
1222 * Following LRU functions are allowed to be used without PCG_LOCK.
1223 * Operations are called by routine of global LRU independently from memcg.
1224 * What we have to take care of here is validness of pc->mem_cgroup.
1225 *
1226 * Changes to pc->mem_cgroup happens when
1227 * 1. charge
1228 * 2. moving account
1229 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1230 * It is added to LRU before charge.
1231 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1232 * When moving account, the page is not on LRU. It's isolated.
1233 */
1234
Johannes Weiner925b7672012-01-12 17:18:15 -08001235/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001236 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001237 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001238 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001239 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001240struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001241{
1242 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001243 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001244 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001245 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001246
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001247 if (mem_cgroup_disabled()) {
1248 lruvec = &zone->lruvec;
1249 goto out;
1250 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001251
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001252 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001253 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001254
1255 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001256 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001257 * an uncharged page off lru does nothing to secure
1258 * its former mem_cgroup from sudden removal.
1259 *
1260 * Our caller holds lru_lock, and PageCgroupUsed is updated
1261 * under page_cgroup lock: between them, they make all uses
1262 * of pc->mem_cgroup safe.
1263 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001264 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001265 pc->mem_cgroup = memcg = root_mem_cgroup;
1266
Johannes Weiner925b7672012-01-12 17:18:15 -08001267 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001268 lruvec = &mz->lruvec;
1269out:
1270 /*
1271 * Since a node can be onlined after the mem_cgroup was created,
1272 * we have to be prepared to initialize lruvec->zone here;
1273 * and if offlined then reonlined, we need to reinitialize it.
1274 */
1275 if (unlikely(lruvec->zone != zone))
1276 lruvec->zone = zone;
1277 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001278}
1279
1280/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001281 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1282 * @lruvec: mem_cgroup per zone lru vector
1283 * @lru: index of lru list the page is sitting on
1284 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001285 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001286 * This function must be called when a page is added to or removed from an
1287 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001288 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001289void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1290 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001291{
1292 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001293 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001294
1295 if (mem_cgroup_disabled())
1296 return;
1297
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001298 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1299 lru_size = mz->lru_size + lru;
1300 *lru_size += nr_pages;
1301 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001302}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001303
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001304/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001305 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001306 * hierarchy subtree
1307 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001308bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1309 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001310{
Johannes Weiner91c637342012-05-29 15:06:24 -07001311 if (root_memcg == memcg)
1312 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001313 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001314 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001315 return css_is_ancestor(&memcg->css, &root_memcg->css);
1316}
1317
1318static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1319 struct mem_cgroup *memcg)
1320{
1321 bool ret;
1322
Johannes Weiner91c637342012-05-29 15:06:24 -07001323 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001324 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001325 rcu_read_unlock();
1326 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001327}
1328
David Rientjesffbdccf2013-07-03 15:01:23 -07001329bool task_in_mem_cgroup(struct task_struct *task,
1330 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001331{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001332 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001333 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001334 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001335
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001336 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001337 if (p) {
1338 curr = try_get_mem_cgroup_from_mm(p->mm);
1339 task_unlock(p);
1340 } else {
1341 /*
1342 * All threads may have already detached their mm's, but the oom
1343 * killer still needs to detect if they have already been oom
1344 * killed to prevent needlessly killing additional tasks.
1345 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001346 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001347 curr = mem_cgroup_from_task(task);
1348 if (curr)
1349 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001350 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001351 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001352 if (!curr)
David Rientjesffbdccf2013-07-03 15:01:23 -07001353 return false;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001354 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001355 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001356 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001357 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1358 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001359 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001360 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001361 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001362 return ret;
1363}
1364
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001365int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001366{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001367 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001368 unsigned long inactive;
1369 unsigned long active;
1370 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001371
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001372 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1373 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001374
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001375 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1376 if (gb)
1377 inactive_ratio = int_sqrt(10 * gb);
1378 else
1379 inactive_ratio = 1;
1380
Johannes Weiner9b272972011-11-02 13:38:23 -07001381 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001382}
1383
Balbir Singh6d61ef42009-01-07 18:08:06 -08001384#define mem_cgroup_from_res_counter(counter, member) \
1385 container_of(counter, struct mem_cgroup, member)
1386
Johannes Weiner19942822011-02-01 15:52:43 -08001387/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001388 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001389 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001390 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001391 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001392 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001393 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001394static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001395{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001396 unsigned long long margin;
1397
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001398 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001399 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001400 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001401 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001402}
1403
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001404int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001405{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001406 /* root ? */
Tejun Heo63876982013-08-08 20:11:23 -04001407 if (!css_parent(&memcg->css))
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001408 return vm_swappiness;
1409
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001410 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001411}
1412
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001413/*
1414 * memcg->moving_account is used for checking possibility that some thread is
1415 * calling move_account(). When a thread on CPU-A starts moving pages under
1416 * a memcg, other threads should check memcg->moving_account under
1417 * rcu_read_lock(), like this:
1418 *
1419 * CPU-A CPU-B
1420 * rcu_read_lock()
1421 * memcg->moving_account+1 if (memcg->mocing_account)
1422 * take heavy locks.
1423 * synchronize_rcu() update something.
1424 * rcu_read_unlock()
1425 * start move here.
1426 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001427
1428/* for quick checking without looking up memcg */
1429atomic_t memcg_moving __read_mostly;
1430
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001431static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001432{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001433 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001434 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001435 synchronize_rcu();
1436}
1437
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001438static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001439{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001440 /*
1441 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1442 * We check NULL in callee rather than caller.
1443 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001444 if (memcg) {
1445 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001446 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001447 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001448}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001449
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001450/*
1451 * 2 routines for checking "mem" is under move_account() or not.
1452 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001453 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1454 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001455 * pc->mem_cgroup may be overwritten.
1456 *
1457 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1458 * under hierarchy of moving cgroups. This is for
1459 * waiting at hith-memory prressure caused by "move".
1460 */
1461
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001462static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001463{
1464 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001465 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001466}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001467
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001468static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001469{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001470 struct mem_cgroup *from;
1471 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001472 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001473 /*
1474 * Unlike task_move routines, we access mc.to, mc.from not under
1475 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1476 */
1477 spin_lock(&mc.lock);
1478 from = mc.from;
1479 to = mc.to;
1480 if (!from)
1481 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001482
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001483 ret = mem_cgroup_same_or_subtree(memcg, from)
1484 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001485unlock:
1486 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001487 return ret;
1488}
1489
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001490static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001491{
1492 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001493 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001494 DEFINE_WAIT(wait);
1495 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1496 /* moving charge context might have finished. */
1497 if (mc.moving_task)
1498 schedule();
1499 finish_wait(&mc.waitq, &wait);
1500 return true;
1501 }
1502 }
1503 return false;
1504}
1505
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001506/*
1507 * Take this lock when
1508 * - a code tries to modify page's memcg while it's USED.
1509 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001510 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001511 */
1512static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1513 unsigned long *flags)
1514{
1515 spin_lock_irqsave(&memcg->move_lock, *flags);
1516}
1517
1518static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1519 unsigned long *flags)
1520{
1521 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1522}
1523
Sha Zhengju58cf1882013-02-22 16:32:05 -08001524#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001525/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001526 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001527 * @memcg: The memory cgroup that went over limit
1528 * @p: Task that is going to be killed
1529 *
1530 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1531 * enabled
1532 */
1533void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1534{
1535 struct cgroup *task_cgrp;
1536 struct cgroup *mem_cgrp;
1537 /*
1538 * Need a buffer in BSS, can't rely on allocations. The code relies
1539 * on the assumption that OOM is serialized for memory controller.
1540 * If this assumption is broken, revisit this code.
1541 */
1542 static char memcg_name[PATH_MAX];
1543 int ret;
Sha Zhengju58cf1882013-02-22 16:32:05 -08001544 struct mem_cgroup *iter;
1545 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001546
Sha Zhengju58cf1882013-02-22 16:32:05 -08001547 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001548 return;
1549
Balbir Singhe2224322009-04-02 16:57:39 -07001550 rcu_read_lock();
1551
1552 mem_cgrp = memcg->css.cgroup;
1553 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1554
1555 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1556 if (ret < 0) {
1557 /*
1558 * Unfortunately, we are unable to convert to a useful name
1559 * But we'll still print out the usage information
1560 */
1561 rcu_read_unlock();
1562 goto done;
1563 }
1564 rcu_read_unlock();
1565
Andrew Mortond0451972013-02-22 16:32:06 -08001566 pr_info("Task in %s killed", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001567
1568 rcu_read_lock();
1569 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1570 if (ret < 0) {
1571 rcu_read_unlock();
1572 goto done;
1573 }
1574 rcu_read_unlock();
1575
1576 /*
1577 * Continues from above, so we don't need an KERN_ level
1578 */
Andrew Mortond0451972013-02-22 16:32:06 -08001579 pr_cont(" as a result of limit of %s\n", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001580done:
1581
Andrew Mortond0451972013-02-22 16:32:06 -08001582 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001583 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1584 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1585 res_counter_read_u64(&memcg->res, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001586 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001587 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1588 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1589 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001590 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
Glauber Costa510fc4e2012-12-18 14:21:47 -08001591 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1592 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1593 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Sha Zhengju58cf1882013-02-22 16:32:05 -08001594
1595 for_each_mem_cgroup_tree(iter, memcg) {
1596 pr_info("Memory cgroup stats");
1597
1598 rcu_read_lock();
1599 ret = cgroup_path(iter->css.cgroup, memcg_name, PATH_MAX);
1600 if (!ret)
1601 pr_cont(" for %s", memcg_name);
1602 rcu_read_unlock();
1603 pr_cont(":");
1604
1605 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1606 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1607 continue;
1608 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1609 K(mem_cgroup_read_stat(iter, i)));
1610 }
1611
1612 for (i = 0; i < NR_LRU_LISTS; i++)
1613 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1614 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1615
1616 pr_cont("\n");
1617 }
Balbir Singhe2224322009-04-02 16:57:39 -07001618}
1619
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001620/*
1621 * This function returns the number of memcg under hierarchy tree. Returns
1622 * 1(self count) if no children.
1623 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001624static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001625{
1626 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001627 struct mem_cgroup *iter;
1628
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001629 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001630 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001631 return num;
1632}
1633
Balbir Singh6d61ef42009-01-07 18:08:06 -08001634/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001635 * Return the memory (and swap, if configured) limit for a memcg.
1636 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001637static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001638{
1639 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001640
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001641 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001642
David Rientjesa63d83f2010-08-09 17:19:46 -07001643 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001644 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001645 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001646 if (mem_cgroup_swappiness(memcg)) {
1647 u64 memsw;
1648
1649 limit += total_swap_pages << PAGE_SHIFT;
1650 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1651
1652 /*
1653 * If memsw is finite and limits the amount of swap space
1654 * available to this memcg, return that limit.
1655 */
1656 limit = min(limit, memsw);
1657 }
1658
1659 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001660}
1661
David Rientjes19965462012-12-11 16:00:26 -08001662static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1663 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001664{
1665 struct mem_cgroup *iter;
1666 unsigned long chosen_points = 0;
1667 unsigned long totalpages;
1668 unsigned int points = 0;
1669 struct task_struct *chosen = NULL;
1670
David Rientjes876aafb2012-07-31 16:43:48 -07001671 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001672 * If current has a pending SIGKILL or is exiting, then automatically
1673 * select it. The goal is to allow it to allocate so that it may
1674 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001675 */
David Rientjes465adcf2013-04-29 15:08:45 -07001676 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001677 set_thread_flag(TIF_MEMDIE);
1678 return;
1679 }
1680
1681 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001682 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1683 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001684 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001685 struct task_struct *task;
1686
Tejun Heo72ec7022013-08-08 20:11:26 -04001687 css_task_iter_start(&iter->css, &it);
1688 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001689 switch (oom_scan_process_thread(task, totalpages, NULL,
1690 false)) {
1691 case OOM_SCAN_SELECT:
1692 if (chosen)
1693 put_task_struct(chosen);
1694 chosen = task;
1695 chosen_points = ULONG_MAX;
1696 get_task_struct(chosen);
1697 /* fall through */
1698 case OOM_SCAN_CONTINUE:
1699 continue;
1700 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001701 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001702 mem_cgroup_iter_break(memcg, iter);
1703 if (chosen)
1704 put_task_struct(chosen);
1705 return;
1706 case OOM_SCAN_OK:
1707 break;
1708 };
1709 points = oom_badness(task, memcg, NULL, totalpages);
1710 if (points > chosen_points) {
1711 if (chosen)
1712 put_task_struct(chosen);
1713 chosen = task;
1714 chosen_points = points;
1715 get_task_struct(chosen);
1716 }
1717 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001718 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001719 }
1720
1721 if (!chosen)
1722 return;
1723 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001724 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1725 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001726}
1727
Johannes Weiner56600482012-01-12 17:17:59 -08001728static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1729 gfp_t gfp_mask,
1730 unsigned long flags)
1731{
1732 unsigned long total = 0;
1733 bool noswap = false;
1734 int loop;
1735
1736 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1737 noswap = true;
1738 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1739 noswap = true;
1740
1741 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1742 if (loop)
1743 drain_all_stock_async(memcg);
1744 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1745 /*
1746 * Allow limit shrinkers, which are triggered directly
1747 * by userspace, to catch signals and stop reclaim
1748 * after minimal progress, regardless of the margin.
1749 */
1750 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1751 break;
1752 if (mem_cgroup_margin(memcg))
1753 break;
1754 /*
1755 * If nothing was reclaimed after two attempts, there
1756 * may be no reclaimable pages in this hierarchy.
1757 */
1758 if (loop && !total)
1759 break;
1760 }
1761 return total;
1762}
1763
Michal Hockoe8831102013-09-12 15:13:23 -07001764#if MAX_NUMNODES > 1
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001765/**
1766 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001767 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001768 * @nid: the node ID to be checked.
1769 * @noswap : specify true here if the user wants flle only information.
1770 *
1771 * This function returns whether the specified memcg contains any
1772 * reclaimable pages on a node. Returns true if there are any reclaimable
1773 * pages in the node.
1774 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001775static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001776 int nid, bool noswap)
1777{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001778 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001779 return true;
1780 if (noswap || !total_swap_pages)
1781 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001782 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001783 return true;
1784 return false;
1785
1786}
Ying Han889976d2011-05-26 16:25:33 -07001787
1788/*
1789 * Always updating the nodemask is not very good - even if we have an empty
1790 * list or the wrong list here, we can start from some node and traverse all
1791 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1792 *
1793 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001794static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001795{
1796 int nid;
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -07001797 /*
1798 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1799 * pagein/pageout changes since the last update.
1800 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001801 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -07001802 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001803 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001804 return;
1805
Ying Han889976d2011-05-26 16:25:33 -07001806 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001807 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001808
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001809 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001810
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001811 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1812 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001813 }
KAMEZAWA Hiroyuki453a9bf32011-07-08 15:39:43 -07001814
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001815 atomic_set(&memcg->numainfo_events, 0);
1816 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001817}
1818
1819/*
1820 * Selecting a node where we start reclaim from. Because what we need is just
1821 * reducing usage counter, start from anywhere is O,K. Considering
1822 * memory reclaim from current node, there are pros. and cons.
1823 *
1824 * Freeing memory from current node means freeing memory from a node which
1825 * we'll use or we've used. So, it may make LRU bad. And if several threads
1826 * hit limits, it will see a contention on a node. But freeing from remote
1827 * node means more costs for memory reclaim because of memory latency.
1828 *
1829 * Now, we use round-robin. Better algorithm is welcomed.
1830 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001831int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001832{
1833 int node;
1834
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001835 mem_cgroup_may_update_nodemask(memcg);
1836 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001837
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001838 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001839 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001840 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001841 /*
1842 * We call this when we hit limit, not when pages are added to LRU.
1843 * No LRU may hold pages because all pages are UNEVICTABLE or
1844 * memcg is too small and all pages are not on LRU. In that case,
1845 * we use curret node.
1846 */
1847 if (unlikely(node == MAX_NUMNODES))
1848 node = numa_node_id();
1849
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001850 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001851 return node;
1852}
1853
1854#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001855int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001856{
1857 return 0;
1858}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001859
Ying Han889976d2011-05-26 16:25:33 -07001860#endif
1861
Michal Hocko3b387222013-09-12 15:13:21 -07001862/*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001863 * A group is eligible for the soft limit reclaim under the given root
1864 * hierarchy if
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001865 * a) it is over its soft limit
1866 * b) any parent up the hierarchy is over its soft limit
Michal Hocko7d910c02013-09-12 15:13:28 -07001867 *
1868 * If the given group doesn't have any children over the limit then it
1869 * doesn't make any sense to iterate its subtree.
Michal Hocko3b387222013-09-12 15:13:21 -07001870 */
Michal Hockode577802013-09-12 15:13:26 -07001871enum mem_cgroup_filter_t
1872mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg,
Michal Hockoa5b7c872013-09-12 15:13:25 -07001873 struct mem_cgroup *root)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001874{
Michal Hockoe839b6a2013-09-12 15:13:30 -07001875 struct mem_cgroup *parent;
1876
1877 if (!memcg)
1878 memcg = root_mem_cgroup;
1879 parent = memcg;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001880
Michal Hocko3b387222013-09-12 15:13:21 -07001881 if (res_counter_soft_limit_excess(&memcg->res))
Michal Hockode577802013-09-12 15:13:26 -07001882 return VISIT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001883
Michal Hocko3b387222013-09-12 15:13:21 -07001884 /*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001885 * If any parent up to the root in the hierarchy is over its soft limit
1886 * then we have to obey and reclaim from this group as well.
Michal Hocko3b387222013-09-12 15:13:21 -07001887 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001888 while ((parent = parent_mem_cgroup(parent))) {
Michal Hocko3b387222013-09-12 15:13:21 -07001889 if (res_counter_soft_limit_excess(&parent->res))
Michal Hockode577802013-09-12 15:13:26 -07001890 return VISIT;
Michal Hockoa5b7c872013-09-12 15:13:25 -07001891 if (parent == root)
1892 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001893 }
Michal Hocko3b387222013-09-12 15:13:21 -07001894
Michal Hocko7d910c02013-09-12 15:13:28 -07001895 if (!atomic_read(&memcg->children_in_excess))
1896 return SKIP_TREE;
Michal Hockode577802013-09-12 15:13:26 -07001897 return SKIP;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001898}
1899
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001900static DEFINE_SPINLOCK(memcg_oom_lock);
1901
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001902/*
1903 * Check OOM-Killer is already running under our hierarchy.
1904 * If someone is running, return false.
1905 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001906static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001907{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001908 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001909
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001910 spin_lock(&memcg_oom_lock);
1911
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001912 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001913 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001914 /*
1915 * this subtree of our hierarchy is already locked
1916 * so we cannot give a lock.
1917 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001918 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001919 mem_cgroup_iter_break(memcg, iter);
1920 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001921 } else
1922 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001923 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001924
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001925 if (failed) {
1926 /*
1927 * OK, we failed to lock the whole subtree so we have
1928 * to clean up what we set up to the failing subtree
1929 */
1930 for_each_mem_cgroup_tree(iter, memcg) {
1931 if (iter == failed) {
1932 mem_cgroup_iter_break(memcg, iter);
1933 break;
1934 }
1935 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001936 }
Michal Hocko79dfdac2011-07-26 16:08:23 -07001937 }
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001938
1939 spin_unlock(&memcg_oom_lock);
1940
1941 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001942}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001943
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001944static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001945{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001946 struct mem_cgroup *iter;
1947
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001948 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001949 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001950 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001951 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001952}
1953
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001954static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001955{
1956 struct mem_cgroup *iter;
1957
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001958 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001959 atomic_inc(&iter->under_oom);
1960}
1961
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001962static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001963{
1964 struct mem_cgroup *iter;
1965
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001966 /*
1967 * When a new child is created while the hierarchy is under oom,
1968 * mem_cgroup_oom_lock() may not be called. We have to use
1969 * atomic_add_unless() here.
1970 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001971 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001972 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001973}
1974
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001975static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1976
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001977struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001978 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001979 wait_queue_t wait;
1980};
1981
1982static int memcg_oom_wake_function(wait_queue_t *wait,
1983 unsigned mode, int sync, void *arg)
1984{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001985 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1986 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001987 struct oom_wait_info *oom_wait_info;
1988
1989 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001990 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001991
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001992 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001993 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001994 * Then we can use css_is_ancestor without taking care of RCU.
1995 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001996 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1997 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001998 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001999 return autoremove_wake_function(wait, mode, sync, arg);
2000}
2001
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002002static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002003{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002004 atomic_inc(&memcg->oom_wakeups);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002005 /* for filtering, pass "memcg" as argument. */
2006 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002007}
2008
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002009static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002010{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002011 if (memcg && atomic_read(&memcg->under_oom))
2012 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002013}
2014
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002015/*
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002016 * try to call OOM killer
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002017 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002018static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002019{
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002020 bool locked;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002021 int wakeups;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002022
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002023 if (!current->memcg_oom.may_oom)
2024 return;
2025
2026 current->memcg_oom.in_memcg_oom = 1;
Michal Hocko79dfdac2011-07-26 16:08:23 -07002027
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002028 /*
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002029 * As with any blocking lock, a contender needs to start
2030 * listening for wakeups before attempting the trylock,
2031 * otherwise it can miss the wakeup from the unlock and sleep
2032 * indefinitely. This is just open-coded because our locking
2033 * is so particular to memcg hierarchies.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002034 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002035 wakeups = atomic_read(&memcg->oom_wakeups);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002036 mem_cgroup_mark_under_oom(memcg);
2037
2038 locked = mem_cgroup_oom_trylock(memcg);
2039
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002040 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002041 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002042
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002043 if (locked && !memcg->oom_kill_disable) {
2044 mem_cgroup_unmark_under_oom(memcg);
David Rientjese845e192012-03-21 16:34:10 -07002045 mem_cgroup_out_of_memory(memcg, mask, order);
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002046 mem_cgroup_oom_unlock(memcg);
2047 /*
2048 * There is no guarantee that an OOM-lock contender
2049 * sees the wakeups triggered by the OOM kill
2050 * uncharges. Wake any sleepers explicitely.
2051 */
2052 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002053 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002054 /*
2055 * A system call can just return -ENOMEM, but if this
2056 * is a page fault and somebody else is handling the
2057 * OOM already, we need to sleep on the OOM waitqueue
2058 * for this memcg until the situation is resolved.
2059 * Which can take some time because it might be
2060 * handled by a userspace task.
2061 *
2062 * However, this is the charge context, which means
2063 * that we may sit on a large call stack and hold
2064 * various filesystem locks, the mmap_sem etc. and we
2065 * don't want the OOM handler to deadlock on them
2066 * while we sit here and wait. Store the current OOM
2067 * context in the task_struct, then return -ENOMEM.
2068 * At the end of the page fault handler, with the
2069 * stack unwound, pagefault_out_of_memory() will check
2070 * back with us by calling
2071 * mem_cgroup_oom_synchronize(), possibly putting the
2072 * task to sleep.
2073 */
2074 current->memcg_oom.oom_locked = locked;
2075 current->memcg_oom.wakeups = wakeups;
2076 css_get(&memcg->css);
2077 current->memcg_oom.wait_on_memcg = memcg;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002078 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002079}
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002080
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002081/**
2082 * mem_cgroup_oom_synchronize - complete memcg OOM handling
2083 *
2084 * This has to be called at the end of a page fault if the the memcg
2085 * OOM handler was enabled and the fault is returning %VM_FAULT_OOM.
2086 *
2087 * Memcg supports userspace OOM handling, so failed allocations must
2088 * sleep on a waitqueue until the userspace task resolves the
2089 * situation. Sleeping directly in the charge context with all kinds
2090 * of locks held is not a good idea, instead we remember an OOM state
2091 * in the task and mem_cgroup_oom_synchronize() has to be called at
2092 * the end of the page fault to put the task to sleep and clean up the
2093 * OOM state.
2094 *
2095 * Returns %true if an ongoing memcg OOM situation was detected and
2096 * finalized, %false otherwise.
2097 */
2098bool mem_cgroup_oom_synchronize(void)
2099{
2100 struct oom_wait_info owait;
2101 struct mem_cgroup *memcg;
2102
2103 /* OOM is global, do not handle */
2104 if (!current->memcg_oom.in_memcg_oom)
2105 return false;
2106
2107 /*
2108 * We invoked the OOM killer but there is a chance that a kill
2109 * did not free up any charges. Everybody else might already
2110 * be sleeping, so restart the fault and keep the rampage
2111 * going until some charges are released.
2112 */
2113 memcg = current->memcg_oom.wait_on_memcg;
2114 if (!memcg)
2115 goto out;
2116
2117 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
2118 goto out_memcg;
2119
2120 owait.memcg = memcg;
2121 owait.wait.flags = 0;
2122 owait.wait.func = memcg_oom_wake_function;
2123 owait.wait.private = current;
2124 INIT_LIST_HEAD(&owait.wait.task_list);
2125
2126 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
2127 /* Only sleep if we didn't miss any wakeups since OOM */
2128 if (atomic_read(&memcg->oom_wakeups) == current->memcg_oom.wakeups)
2129 schedule();
2130 finish_wait(&memcg_oom_waitq, &owait.wait);
2131out_memcg:
2132 mem_cgroup_unmark_under_oom(memcg);
2133 if (current->memcg_oom.oom_locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002134 mem_cgroup_oom_unlock(memcg);
2135 /*
2136 * There is no guarantee that an OOM-lock contender
2137 * sees the wakeups triggered by the OOM kill
2138 * uncharges. Wake any sleepers explicitely.
2139 */
2140 memcg_oom_recover(memcg);
2141 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002142 css_put(&memcg->css);
2143 current->memcg_oom.wait_on_memcg = NULL;
2144out:
2145 current->memcg_oom.in_memcg_oom = 0;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002146 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002147}
2148
Balbir Singhd69b0422009-06-17 16:26:34 -07002149/*
2150 * Currently used to update mapped file statistics, but the routine can be
2151 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002152 *
2153 * Notes: Race condition
2154 *
2155 * We usually use page_cgroup_lock() for accessing page_cgroup member but
2156 * it tends to be costly. But considering some conditions, we doesn't need
2157 * to do so _always_.
2158 *
2159 * Considering "charge", lock_page_cgroup() is not required because all
2160 * file-stat operations happen after a page is attached to radix-tree. There
2161 * are no race with "charge".
2162 *
2163 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2164 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2165 * if there are race with "uncharge". Statistics itself is properly handled
2166 * by flags.
2167 *
2168 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002169 * small, we check mm->moving_account and detect there are possibility of race
2170 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002171 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002172
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002173void __mem_cgroup_begin_update_page_stat(struct page *page,
2174 bool *locked, unsigned long *flags)
2175{
2176 struct mem_cgroup *memcg;
2177 struct page_cgroup *pc;
2178
2179 pc = lookup_page_cgroup(page);
2180again:
2181 memcg = pc->mem_cgroup;
2182 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2183 return;
2184 /*
2185 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002186 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002187 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002188 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002189 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002190 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002191 return;
2192
2193 move_lock_mem_cgroup(memcg, flags);
2194 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2195 move_unlock_mem_cgroup(memcg, flags);
2196 goto again;
2197 }
2198 *locked = true;
2199}
2200
2201void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2202{
2203 struct page_cgroup *pc = lookup_page_cgroup(page);
2204
2205 /*
2206 * It's guaranteed that pc->mem_cgroup never changes while
2207 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002208 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002209 */
2210 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2211}
2212
Greg Thelen2a7106f2011-01-13 15:47:37 -08002213void mem_cgroup_update_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -07002214 enum mem_cgroup_stat_index idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002215{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002216 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002217 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002218 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002219
Johannes Weinercfa44942012-01-12 17:18:38 -08002220 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002221 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002222
Sha Zhengju658b72c2013-09-12 15:13:52 -07002223 VM_BUG_ON(!rcu_read_lock_held());
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002224 memcg = pc->mem_cgroup;
2225 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002226 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002227
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002228 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002229}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002230
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002231/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002232 * size of first charge trial. "32" comes from vmscan.c's magic value.
2233 * TODO: maybe necessary to use big numbers in big irons.
2234 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002235#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002236struct memcg_stock_pcp {
2237 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002238 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002239 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002240 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002241#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002242};
2243static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002244static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002245
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002246/**
2247 * consume_stock: Try to consume stocked charge on this cpu.
2248 * @memcg: memcg to consume from.
2249 * @nr_pages: how many pages to charge.
2250 *
2251 * The charges will only happen if @memcg matches the current cpu's memcg
2252 * stock, and at least @nr_pages are available in that stock. Failure to
2253 * service an allocation will refill the stock.
2254 *
2255 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002256 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002257static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002258{
2259 struct memcg_stock_pcp *stock;
2260 bool ret = true;
2261
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002262 if (nr_pages > CHARGE_BATCH)
2263 return false;
2264
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002265 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002266 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2267 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002268 else /* need to call res_counter_charge */
2269 ret = false;
2270 put_cpu_var(memcg_stock);
2271 return ret;
2272}
2273
2274/*
2275 * Returns stocks cached in percpu to res_counter and reset cached information.
2276 */
2277static void drain_stock(struct memcg_stock_pcp *stock)
2278{
2279 struct mem_cgroup *old = stock->cached;
2280
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002281 if (stock->nr_pages) {
2282 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2283
2284 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002285 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002286 res_counter_uncharge(&old->memsw, bytes);
2287 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002288 }
2289 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002290}
2291
2292/*
2293 * This must be called under preempt disabled or must be called by
2294 * a thread which is pinned to local cpu.
2295 */
2296static void drain_local_stock(struct work_struct *dummy)
2297{
2298 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2299 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002300 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002301}
2302
Michal Hockoe4777492013-02-22 16:35:40 -08002303static void __init memcg_stock_init(void)
2304{
2305 int cpu;
2306
2307 for_each_possible_cpu(cpu) {
2308 struct memcg_stock_pcp *stock =
2309 &per_cpu(memcg_stock, cpu);
2310 INIT_WORK(&stock->work, drain_local_stock);
2311 }
2312}
2313
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002314/*
2315 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002316 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002317 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002318static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002319{
2320 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2321
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002322 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002323 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002324 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002325 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002326 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002327 put_cpu_var(memcg_stock);
2328}
2329
2330/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002331 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002332 * of the hierarchy under it. sync flag says whether we should block
2333 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002334 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002335static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002336{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002337 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002338
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002339 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002340 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002341 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002342 for_each_online_cpu(cpu) {
2343 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002344 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002345
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002346 memcg = stock->cached;
2347 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002348 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002349 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002350 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002351 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2352 if (cpu == curcpu)
2353 drain_local_stock(&stock->work);
2354 else
2355 schedule_work_on(cpu, &stock->work);
2356 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002357 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002358 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002359
2360 if (!sync)
2361 goto out;
2362
2363 for_each_online_cpu(cpu) {
2364 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002365 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002366 flush_work(&stock->work);
2367 }
2368out:
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002369 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002370}
2371
2372/*
2373 * Tries to drain stocked charges in other cpus. This function is asynchronous
2374 * and just put a work per cpu for draining localy on each cpu. Caller can
2375 * expects some charges will be back to res_counter later but cannot wait for
2376 * it.
2377 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002378static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002379{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002380 /*
2381 * If someone calls draining, avoid adding more kworker runs.
2382 */
2383 if (!mutex_trylock(&percpu_charge_mutex))
2384 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002385 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002386 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002387}
2388
2389/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002390static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002391{
2392 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002393 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002394 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002395 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002396}
2397
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002398/*
2399 * This function drains percpu counter value from DEAD cpu and
2400 * move it to local cpu. Note that this function can be preempted.
2401 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002402static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002403{
2404 int i;
2405
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002406 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002407 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002408 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002409
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002410 per_cpu(memcg->stat->count[i], cpu) = 0;
2411 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002412 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002413 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002414 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002415
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002416 per_cpu(memcg->stat->events[i], cpu) = 0;
2417 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002418 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002419 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002420}
2421
Paul Gortmaker0db06282013-06-19 14:53:51 -04002422static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002423 unsigned long action,
2424 void *hcpu)
2425{
2426 int cpu = (unsigned long)hcpu;
2427 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002428 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002429
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002430 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002431 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002432
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002433 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002434 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002435
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002436 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002437 mem_cgroup_drain_pcp_counter(iter, cpu);
2438
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002439 stock = &per_cpu(memcg_stock, cpu);
2440 drain_stock(stock);
2441 return NOTIFY_OK;
2442}
2443
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002444
2445/* See __mem_cgroup_try_charge() for details */
2446enum {
2447 CHARGE_OK, /* success */
2448 CHARGE_RETRY, /* need to retry but retry is not bad */
2449 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2450 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002451};
2452
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002453static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002454 unsigned int nr_pages, unsigned int min_pages,
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002455 bool invoke_oom)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002456{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002457 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002458 struct mem_cgroup *mem_over_limit;
2459 struct res_counter *fail_res;
2460 unsigned long flags = 0;
2461 int ret;
2462
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002463 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002464
2465 if (likely(!ret)) {
2466 if (!do_swap_account)
2467 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002468 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002469 if (likely(!ret))
2470 return CHARGE_OK;
2471
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002472 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002473 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2474 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2475 } else
2476 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002477 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002478 * Never reclaim on behalf of optional batching, retry with a
2479 * single page instead.
2480 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002481 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002482 return CHARGE_RETRY;
2483
2484 if (!(gfp_mask & __GFP_WAIT))
2485 return CHARGE_WOULDBLOCK;
2486
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002487 if (gfp_mask & __GFP_NORETRY)
2488 return CHARGE_NOMEM;
2489
Johannes Weiner56600482012-01-12 17:17:59 -08002490 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002491 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002492 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002493 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002494 * Even though the limit is exceeded at this point, reclaim
2495 * may have been able to free some pages. Retry the charge
2496 * before killing the task.
2497 *
2498 * Only for regular pages, though: huge pages are rather
2499 * unlikely to succeed so close to the limit, and we fall back
2500 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002501 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002502 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002503 return CHARGE_RETRY;
2504
2505 /*
2506 * At task move, charge accounts can be doubly counted. So, it's
2507 * better to wait until the end of task_move if something is going on.
2508 */
2509 if (mem_cgroup_wait_acct_move(mem_over_limit))
2510 return CHARGE_RETRY;
2511
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002512 if (invoke_oom)
2513 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(csize));
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002514
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002515 return CHARGE_NOMEM;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002516}
2517
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002518/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002519 * __mem_cgroup_try_charge() does
2520 * 1. detect memcg to be charged against from passed *mm and *ptr,
2521 * 2. update res_counter
2522 * 3. call memory reclaim if necessary.
2523 *
2524 * In some special case, if the task is fatal, fatal_signal_pending() or
2525 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2526 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2527 * as possible without any hazards. 2: all pages should have a valid
2528 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2529 * pointer, that is treated as a charge to root_mem_cgroup.
2530 *
2531 * So __mem_cgroup_try_charge() will return
2532 * 0 ... on success, filling *ptr with a valid memcg pointer.
2533 * -ENOMEM ... charge failure because of resource limits.
2534 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2535 *
2536 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2537 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002538 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002539static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002540 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002541 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002542 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002543 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002544{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002545 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002546 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002547 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002548 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002549
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002550 /*
2551 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2552 * in system level. So, allow to go ahead dying process in addition to
2553 * MEMDIE process.
2554 */
2555 if (unlikely(test_thread_flag(TIF_MEMDIE)
2556 || fatal_signal_pending(current)))
2557 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002558
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002559 /*
Hugh Dickins3be912772008-02-07 00:14:19 -08002560 * We always charge the cgroup the mm_struct belongs to.
2561 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002562 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002563 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002564 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002565 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002566 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002567again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002568 if (*ptr) { /* css should be a valid one */
2569 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002570 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002571 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002572 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002573 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002574 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002575 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002576 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002577
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002578 rcu_read_lock();
2579 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002580 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002581 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002582 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002583 * race with swapoff. Then, we have small risk of mis-accouning.
2584 * But such kind of mis-account by race always happens because
2585 * we don't have cgroup_mutex(). It's overkill and we allo that
2586 * small race, here.
2587 * (*) swapoff at el will charge against mm-struct not against
2588 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002589 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002590 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002591 if (!memcg)
2592 memcg = root_mem_cgroup;
2593 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002594 rcu_read_unlock();
2595 goto done;
2596 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002597 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002598 /*
2599 * It seems dagerous to access memcg without css_get().
2600 * But considering how consume_stok works, it's not
2601 * necessary. If consume_stock success, some charges
2602 * from this memcg are cached on this cpu. So, we
2603 * don't need to call css_get()/css_tryget() before
2604 * calling consume_stock().
2605 */
2606 rcu_read_unlock();
2607 goto done;
2608 }
2609 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002610 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002611 rcu_read_unlock();
2612 goto again;
2613 }
2614 rcu_read_unlock();
2615 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002616
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002617 do {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002618 bool invoke_oom = oom && !nr_oom_retries;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002619
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002620 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002621 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002622 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002623 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002624 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002625
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002626 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch,
2627 nr_pages, invoke_oom);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002628 switch (ret) {
2629 case CHARGE_OK:
2630 break;
2631 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002632 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002633 css_put(&memcg->css);
2634 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002635 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002636 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002637 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002638 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002639 case CHARGE_NOMEM: /* OOM routine works */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002640 if (!oom || invoke_oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002641 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002642 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002643 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002644 nr_oom_retries--;
2645 break;
Balbir Singh66e17072008-02-07 00:13:56 -08002646 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002647 } while (ret != CHARGE_OK);
2648
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002649 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002650 refill_stock(memcg, batch - nr_pages);
2651 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002652done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002653 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002654 return 0;
2655nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002656 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002657 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002658bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002659 *ptr = root_mem_cgroup;
2660 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002661}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002662
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002663/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002664 * Somemtimes we have to undo a charge we got by try_charge().
2665 * This function is for that and do uncharge, put css's refcnt.
2666 * gotten by try_charge().
2667 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002668static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002669 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002670{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002671 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002672 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002673
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002674 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002675 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002676 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002677 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002678}
2679
2680/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002681 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2682 * This is useful when moving usage to parent cgroup.
2683 */
2684static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2685 unsigned int nr_pages)
2686{
2687 unsigned long bytes = nr_pages * PAGE_SIZE;
2688
2689 if (mem_cgroup_is_root(memcg))
2690 return;
2691
2692 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2693 if (do_swap_account)
2694 res_counter_uncharge_until(&memcg->memsw,
2695 memcg->memsw.parent, bytes);
2696}
2697
2698/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002699 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002700 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2701 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2702 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002703 */
2704static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2705{
2706 struct cgroup_subsys_state *css;
2707
2708 /* ID 0 is unused ID */
2709 if (!id)
2710 return NULL;
2711 css = css_lookup(&mem_cgroup_subsys, id);
2712 if (!css)
2713 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002714 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002715}
2716
Wu Fengguange42d9d52009-12-16 12:19:59 +01002717struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002718{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002719 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002720 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002721 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002722 swp_entry_t ent;
2723
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002724 VM_BUG_ON(!PageLocked(page));
2725
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002726 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002727 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002728 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002729 memcg = pc->mem_cgroup;
2730 if (memcg && !css_tryget(&memcg->css))
2731 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002732 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002733 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002734 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002735 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002736 memcg = mem_cgroup_lookup(id);
2737 if (memcg && !css_tryget(&memcg->css))
2738 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002739 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002740 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002741 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002742 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002743}
2744
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002745static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002746 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002747 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002748 enum charge_type ctype,
2749 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002750{
Johannes Weinerce587e62012-04-24 20:22:33 +02002751 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002752 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002753 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002754 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002755 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002756
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002757 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002758 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002759 /*
2760 * we don't need page_cgroup_lock about tail pages, becase they are not
2761 * accessed by any other context at this point.
2762 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002763
2764 /*
2765 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2766 * may already be on some other mem_cgroup's LRU. Take care of it.
2767 */
2768 if (lrucare) {
2769 zone = page_zone(page);
2770 spin_lock_irq(&zone->lru_lock);
2771 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002772 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002773 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002774 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002775 was_on_lru = true;
2776 }
2777 }
2778
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002779 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002780 /*
2781 * We access a page_cgroup asynchronously without lock_page_cgroup().
2782 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2783 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2784 * before USED bit, we need memory barrier here.
2785 * See mem_cgroup_add_lru_list(), etc.
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002786 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002787 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002788 SetPageCgroupUsed(pc);
Hugh Dickins3be912772008-02-07 00:14:19 -08002789
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002790 if (lrucare) {
2791 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002792 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002793 VM_BUG_ON(PageLRU(page));
2794 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002795 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002796 }
2797 spin_unlock_irq(&zone->lru_lock);
2798 }
2799
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002800 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002801 anon = true;
2802 else
2803 anon = false;
2804
David Rientjesb070e652013-05-07 16:18:09 -07002805 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002806 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002807
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002808 /*
Michal Hockoe8831102013-09-12 15:13:23 -07002809 * "charge_statistics" updated event counter.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002810 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002811 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002812}
2813
Glauber Costa7cf27982012-12-18 14:22:55 -08002814static DEFINE_MUTEX(set_limit_mutex);
2815
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002816#ifdef CONFIG_MEMCG_KMEM
2817static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2818{
2819 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2820 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2821}
2822
Glauber Costa1f458cb2012-12-18 14:22:50 -08002823/*
2824 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2825 * in the memcg_cache_params struct.
2826 */
2827static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2828{
2829 struct kmem_cache *cachep;
2830
2831 VM_BUG_ON(p->is_root_cache);
2832 cachep = p->root_cache;
2833 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2834}
2835
Glauber Costa749c5412012-12-18 14:23:01 -08002836#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002837static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2838 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002839{
Tejun Heo182446d2013-08-08 20:11:24 -04002840 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002841 struct memcg_cache_params *params;
2842
2843 if (!memcg_can_account_kmem(memcg))
2844 return -EIO;
2845
2846 print_slabinfo_header(m);
2847
2848 mutex_lock(&memcg->slab_caches_mutex);
2849 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2850 cache_show(memcg_params_to_cache(params), m);
2851 mutex_unlock(&memcg->slab_caches_mutex);
2852
2853 return 0;
2854}
2855#endif
2856
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002857static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2858{
2859 struct res_counter *fail_res;
2860 struct mem_cgroup *_memcg;
2861 int ret = 0;
2862 bool may_oom;
2863
2864 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2865 if (ret)
2866 return ret;
2867
2868 /*
2869 * Conditions under which we can wait for the oom_killer. Those are
2870 * the same conditions tested by the core page allocator
2871 */
2872 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2873
2874 _memcg = memcg;
2875 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2876 &_memcg, may_oom);
2877
2878 if (ret == -EINTR) {
2879 /*
2880 * __mem_cgroup_try_charge() chosed to bypass to root due to
2881 * OOM kill or fatal signal. Since our only options are to
2882 * either fail the allocation or charge it to this cgroup, do
2883 * it as a temporary condition. But we can't fail. From a
2884 * kmem/slab perspective, the cache has already been selected,
2885 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2886 * our minds.
2887 *
2888 * This condition will only trigger if the task entered
2889 * memcg_charge_kmem in a sane state, but was OOM-killed during
2890 * __mem_cgroup_try_charge() above. Tasks that were already
2891 * dying when the allocation triggers should have been already
2892 * directed to the root cgroup in memcontrol.h
2893 */
2894 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2895 if (do_swap_account)
2896 res_counter_charge_nofail(&memcg->memsw, size,
2897 &fail_res);
2898 ret = 0;
2899 } else if (ret)
2900 res_counter_uncharge(&memcg->kmem, size);
2901
2902 return ret;
2903}
2904
2905static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2906{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002907 res_counter_uncharge(&memcg->res, size);
2908 if (do_swap_account)
2909 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002910
2911 /* Not down to 0 */
2912 if (res_counter_uncharge(&memcg->kmem, size))
2913 return;
2914
Li Zefan10d5ebf2013-07-08 16:00:33 -07002915 /*
2916 * Releases a reference taken in kmem_cgroup_css_offline in case
2917 * this last uncharge is racing with the offlining code or it is
2918 * outliving the memcg existence.
2919 *
2920 * The memory barrier imposed by test&clear is paired with the
2921 * explicit one in memcg_kmem_mark_dead().
2922 */
Glauber Costa7de37682012-12-18 14:22:07 -08002923 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002924 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002925}
2926
Glauber Costa2633d7a2012-12-18 14:22:34 -08002927void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2928{
2929 if (!memcg)
2930 return;
2931
2932 mutex_lock(&memcg->slab_caches_mutex);
2933 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2934 mutex_unlock(&memcg->slab_caches_mutex);
2935}
2936
2937/*
2938 * helper for acessing a memcg's index. It will be used as an index in the
2939 * child cache array in kmem_cache, and also to derive its name. This function
2940 * will return -1 when this is not a kmem-limited memcg.
2941 */
2942int memcg_cache_id(struct mem_cgroup *memcg)
2943{
2944 return memcg ? memcg->kmemcg_id : -1;
2945}
2946
Glauber Costa55007d82012-12-18 14:22:38 -08002947/*
2948 * This ends up being protected by the set_limit mutex, during normal
2949 * operation, because that is its main call site.
2950 *
2951 * But when we create a new cache, we can call this as well if its parent
2952 * is kmem-limited. That will have to hold set_limit_mutex as well.
2953 */
2954int memcg_update_cache_sizes(struct mem_cgroup *memcg)
2955{
2956 int num, ret;
2957
2958 num = ida_simple_get(&kmem_limited_groups,
2959 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2960 if (num < 0)
2961 return num;
2962 /*
2963 * After this point, kmem_accounted (that we test atomically in
2964 * the beginning of this conditional), is no longer 0. This
2965 * guarantees only one process will set the following boolean
2966 * to true. We don't need test_and_set because we're protected
2967 * by the set_limit_mutex anyway.
2968 */
2969 memcg_kmem_set_activated(memcg);
2970
2971 ret = memcg_update_all_caches(num+1);
2972 if (ret) {
2973 ida_simple_remove(&kmem_limited_groups, num);
2974 memcg_kmem_clear_activated(memcg);
2975 return ret;
2976 }
2977
2978 memcg->kmemcg_id = num;
2979 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
2980 mutex_init(&memcg->slab_caches_mutex);
2981 return 0;
2982}
2983
2984static size_t memcg_caches_array_size(int num_groups)
2985{
2986 ssize_t size;
2987 if (num_groups <= 0)
2988 return 0;
2989
2990 size = 2 * num_groups;
2991 if (size < MEMCG_CACHES_MIN_SIZE)
2992 size = MEMCG_CACHES_MIN_SIZE;
2993 else if (size > MEMCG_CACHES_MAX_SIZE)
2994 size = MEMCG_CACHES_MAX_SIZE;
2995
2996 return size;
2997}
2998
2999/*
3000 * We should update the current array size iff all caches updates succeed. This
3001 * can only be done from the slab side. The slab mutex needs to be held when
3002 * calling this.
3003 */
3004void memcg_update_array_size(int num)
3005{
3006 if (num > memcg_limited_groups_array_size)
3007 memcg_limited_groups_array_size = memcg_caches_array_size(num);
3008}
3009
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08003010static void kmem_cache_destroy_work_func(struct work_struct *w);
3011
Glauber Costa55007d82012-12-18 14:22:38 -08003012int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
3013{
3014 struct memcg_cache_params *cur_params = s->memcg_params;
3015
3016 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
3017
3018 if (num_groups > memcg_limited_groups_array_size) {
3019 int i;
3020 ssize_t size = memcg_caches_array_size(num_groups);
3021
3022 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003023 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003024
3025 s->memcg_params = kzalloc(size, GFP_KERNEL);
3026 if (!s->memcg_params) {
3027 s->memcg_params = cur_params;
3028 return -ENOMEM;
3029 }
3030
3031 s->memcg_params->is_root_cache = true;
3032
3033 /*
3034 * There is the chance it will be bigger than
3035 * memcg_limited_groups_array_size, if we failed an allocation
3036 * in a cache, in which case all caches updated before it, will
3037 * have a bigger array.
3038 *
3039 * But if that is the case, the data after
3040 * memcg_limited_groups_array_size is certainly unused
3041 */
3042 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3043 if (!cur_params->memcg_caches[i])
3044 continue;
3045 s->memcg_params->memcg_caches[i] =
3046 cur_params->memcg_caches[i];
3047 }
3048
3049 /*
3050 * Ideally, we would wait until all caches succeed, and only
3051 * then free the old one. But this is not worth the extra
3052 * pointer per-cache we'd have to have for this.
3053 *
3054 * It is not a big deal if some caches are left with a size
3055 * bigger than the others. And all updates will reset this
3056 * anyway.
3057 */
3058 kfree(cur_params);
3059 }
3060 return 0;
3061}
3062
Glauber Costa943a4512012-12-18 14:23:03 -08003063int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3064 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08003065{
Andrey Vagin90c7a792013-09-11 14:22:18 -07003066 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003067
3068 if (!memcg_kmem_enabled())
3069 return 0;
3070
Andrey Vagin90c7a792013-09-11 14:22:18 -07003071 if (!memcg) {
3072 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003073 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003074 } else
3075 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08003076
Glauber Costa2633d7a2012-12-18 14:22:34 -08003077 s->memcg_params = kzalloc(size, GFP_KERNEL);
3078 if (!s->memcg_params)
3079 return -ENOMEM;
3080
Glauber Costa943a4512012-12-18 14:23:03 -08003081 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08003082 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08003083 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07003084 INIT_WORK(&s->memcg_params->destroy,
3085 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08003086 } else
3087 s->memcg_params->is_root_cache = true;
3088
Glauber Costa2633d7a2012-12-18 14:22:34 -08003089 return 0;
3090}
3091
3092void memcg_release_cache(struct kmem_cache *s)
3093{
Glauber Costad7f25f82012-12-18 14:22:40 -08003094 struct kmem_cache *root;
3095 struct mem_cgroup *memcg;
3096 int id;
3097
3098 /*
3099 * This happens, for instance, when a root cache goes away before we
3100 * add any memcg.
3101 */
3102 if (!s->memcg_params)
3103 return;
3104
3105 if (s->memcg_params->is_root_cache)
3106 goto out;
3107
3108 memcg = s->memcg_params->memcg;
3109 id = memcg_cache_id(memcg);
3110
3111 root = s->memcg_params->root_cache;
3112 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08003113
3114 mutex_lock(&memcg->slab_caches_mutex);
3115 list_del(&s->memcg_params->list);
3116 mutex_unlock(&memcg->slab_caches_mutex);
3117
Li Zefan20f05312013-07-08 16:00:31 -07003118 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003119out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08003120 kfree(s->memcg_params);
3121}
3122
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003123/*
3124 * During the creation a new cache, we need to disable our accounting mechanism
3125 * altogether. This is true even if we are not creating, but rather just
3126 * enqueing new caches to be created.
3127 *
3128 * This is because that process will trigger allocations; some visible, like
3129 * explicit kmallocs to auxiliary data structures, name strings and internal
3130 * cache structures; some well concealed, like INIT_WORK() that can allocate
3131 * objects during debug.
3132 *
3133 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3134 * to it. This may not be a bounded recursion: since the first cache creation
3135 * failed to complete (waiting on the allocation), we'll just try to create the
3136 * cache again, failing at the same point.
3137 *
3138 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3139 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3140 * inside the following two functions.
3141 */
3142static inline void memcg_stop_kmem_account(void)
3143{
3144 VM_BUG_ON(!current->mm);
3145 current->memcg_kmem_skip_account++;
3146}
3147
3148static inline void memcg_resume_kmem_account(void)
3149{
3150 VM_BUG_ON(!current->mm);
3151 current->memcg_kmem_skip_account--;
3152}
3153
Glauber Costa1f458cb2012-12-18 14:22:50 -08003154static void kmem_cache_destroy_work_func(struct work_struct *w)
3155{
3156 struct kmem_cache *cachep;
3157 struct memcg_cache_params *p;
3158
3159 p = container_of(w, struct memcg_cache_params, destroy);
3160
3161 cachep = memcg_params_to_cache(p);
3162
Glauber Costa22933152012-12-18 14:22:59 -08003163 /*
3164 * If we get down to 0 after shrink, we could delete right away.
3165 * However, memcg_release_pages() already puts us back in the workqueue
3166 * in that case. If we proceed deleting, we'll get a dangling
3167 * reference, and removing the object from the workqueue in that case
3168 * is unnecessary complication. We are not a fast path.
3169 *
3170 * Note that this case is fundamentally different from racing with
3171 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3172 * kmem_cache_shrink, not only we would be reinserting a dead cache
3173 * into the queue, but doing so from inside the worker racing to
3174 * destroy it.
3175 *
3176 * So if we aren't down to zero, we'll just schedule a worker and try
3177 * again
3178 */
3179 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3180 kmem_cache_shrink(cachep);
3181 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3182 return;
3183 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003184 kmem_cache_destroy(cachep);
3185}
3186
3187void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3188{
3189 if (!cachep->memcg_params->dead)
3190 return;
3191
3192 /*
Glauber Costa22933152012-12-18 14:22:59 -08003193 * There are many ways in which we can get here.
3194 *
3195 * We can get to a memory-pressure situation while the delayed work is
3196 * still pending to run. The vmscan shrinkers can then release all
3197 * cache memory and get us to destruction. If this is the case, we'll
3198 * be executed twice, which is a bug (the second time will execute over
3199 * bogus data). In this case, cancelling the work should be fine.
3200 *
3201 * But we can also get here from the worker itself, if
3202 * kmem_cache_shrink is enough to shake all the remaining objects and
3203 * get the page count to 0. In this case, we'll deadlock if we try to
3204 * cancel the work (the worker runs with an internal lock held, which
3205 * is the same lock we would hold for cancel_work_sync().)
3206 *
3207 * Since we can't possibly know who got us here, just refrain from
3208 * running if there is already work pending
3209 */
3210 if (work_pending(&cachep->memcg_params->destroy))
3211 return;
3212 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003213 * We have to defer the actual destroying to a workqueue, because
3214 * we might currently be in a context that cannot sleep.
3215 */
3216 schedule_work(&cachep->memcg_params->destroy);
3217}
3218
Glauber Costad7f25f82012-12-18 14:22:40 -08003219/*
3220 * This lock protects updaters, not readers. We want readers to be as fast as
3221 * they can, and they will either see NULL or a valid cache value. Our model
3222 * allow them to see NULL, in which case the root memcg will be selected.
3223 *
3224 * We need this lock because multiple allocations to the same cache from a non
3225 * will span more than one worker. Only one of them can create the cache.
3226 */
3227static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003228
3229/*
3230 * Called with memcg_cache_mutex held
3231 */
3232static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3233 struct kmem_cache *s)
3234{
3235 struct kmem_cache *new;
3236 static char *tmp_name = NULL;
3237
3238 lockdep_assert_held(&memcg_cache_mutex);
3239
3240 /*
3241 * kmem_cache_create_memcg duplicates the given name and
3242 * cgroup_name for this name requires RCU context.
3243 * This static temporary buffer is used to prevent from
3244 * pointless shortliving allocation.
3245 */
3246 if (!tmp_name) {
3247 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3248 if (!tmp_name)
3249 return NULL;
3250 }
3251
3252 rcu_read_lock();
3253 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3254 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3255 rcu_read_unlock();
3256
3257 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3258 (s->flags & ~SLAB_PANIC), s->ctor, s);
3259
3260 if (new)
3261 new->allocflags |= __GFP_KMEMCG;
3262
3263 return new;
3264}
3265
Glauber Costad7f25f82012-12-18 14:22:40 -08003266static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3267 struct kmem_cache *cachep)
3268{
3269 struct kmem_cache *new_cachep;
3270 int idx;
3271
3272 BUG_ON(!memcg_can_account_kmem(memcg));
3273
3274 idx = memcg_cache_id(memcg);
3275
3276 mutex_lock(&memcg_cache_mutex);
3277 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003278 if (new_cachep) {
3279 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003280 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003281 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003282
3283 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003284 if (new_cachep == NULL) {
3285 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003286 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003287 goto out;
3288 }
3289
Glauber Costa1f458cb2012-12-18 14:22:50 -08003290 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003291
3292 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3293 /*
3294 * the readers won't lock, make sure everybody sees the updated value,
3295 * so they won't put stuff in the queue again for no reason
3296 */
3297 wmb();
3298out:
3299 mutex_unlock(&memcg_cache_mutex);
3300 return new_cachep;
3301}
3302
Glauber Costa7cf27982012-12-18 14:22:55 -08003303void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3304{
3305 struct kmem_cache *c;
3306 int i;
3307
3308 if (!s->memcg_params)
3309 return;
3310 if (!s->memcg_params->is_root_cache)
3311 return;
3312
3313 /*
3314 * If the cache is being destroyed, we trust that there is no one else
3315 * requesting objects from it. Even if there are, the sanity checks in
3316 * kmem_cache_destroy should caught this ill-case.
3317 *
3318 * Still, we don't want anyone else freeing memcg_caches under our
3319 * noses, which can happen if a new memcg comes to life. As usual,
3320 * we'll take the set_limit_mutex to protect ourselves against this.
3321 */
3322 mutex_lock(&set_limit_mutex);
3323 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3324 c = s->memcg_params->memcg_caches[i];
3325 if (!c)
3326 continue;
3327
3328 /*
3329 * We will now manually delete the caches, so to avoid races
3330 * we need to cancel all pending destruction workers and
3331 * proceed with destruction ourselves.
3332 *
3333 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3334 * and that could spawn the workers again: it is likely that
3335 * the cache still have active pages until this very moment.
3336 * This would lead us back to mem_cgroup_destroy_cache.
3337 *
3338 * But that will not execute at all if the "dead" flag is not
3339 * set, so flip it down to guarantee we are in control.
3340 */
3341 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003342 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003343 kmem_cache_destroy(c);
3344 }
3345 mutex_unlock(&set_limit_mutex);
3346}
3347
Glauber Costad7f25f82012-12-18 14:22:40 -08003348struct create_work {
3349 struct mem_cgroup *memcg;
3350 struct kmem_cache *cachep;
3351 struct work_struct work;
3352};
3353
Glauber Costa1f458cb2012-12-18 14:22:50 -08003354static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3355{
3356 struct kmem_cache *cachep;
3357 struct memcg_cache_params *params;
3358
3359 if (!memcg_kmem_is_active(memcg))
3360 return;
3361
3362 mutex_lock(&memcg->slab_caches_mutex);
3363 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3364 cachep = memcg_params_to_cache(params);
3365 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003366 schedule_work(&cachep->memcg_params->destroy);
3367 }
3368 mutex_unlock(&memcg->slab_caches_mutex);
3369}
3370
Glauber Costad7f25f82012-12-18 14:22:40 -08003371static void memcg_create_cache_work_func(struct work_struct *w)
3372{
3373 struct create_work *cw;
3374
3375 cw = container_of(w, struct create_work, work);
3376 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003377 kfree(cw);
3378}
3379
3380/*
3381 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003382 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003383static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3384 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003385{
3386 struct create_work *cw;
3387
3388 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003389 if (cw == NULL) {
3390 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003391 return;
3392 }
3393
3394 cw->memcg = memcg;
3395 cw->cachep = cachep;
3396
3397 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3398 schedule_work(&cw->work);
3399}
3400
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003401static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3402 struct kmem_cache *cachep)
3403{
3404 /*
3405 * We need to stop accounting when we kmalloc, because if the
3406 * corresponding kmalloc cache is not yet created, the first allocation
3407 * in __memcg_create_cache_enqueue will recurse.
3408 *
3409 * However, it is better to enclose the whole function. Depending on
3410 * the debugging options enabled, INIT_WORK(), for instance, can
3411 * trigger an allocation. This too, will make us recurse. Because at
3412 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3413 * the safest choice is to do it like this, wrapping the whole function.
3414 */
3415 memcg_stop_kmem_account();
3416 __memcg_create_cache_enqueue(memcg, cachep);
3417 memcg_resume_kmem_account();
3418}
Glauber Costad7f25f82012-12-18 14:22:40 -08003419/*
3420 * Return the kmem_cache we're supposed to use for a slab allocation.
3421 * We try to use the current memcg's version of the cache.
3422 *
3423 * If the cache does not exist yet, if we are the first user of it,
3424 * we either create it immediately, if possible, or create it asynchronously
3425 * in a workqueue.
3426 * In the latter case, we will let the current allocation go through with
3427 * the original cache.
3428 *
3429 * Can't be called in interrupt context or from kernel threads.
3430 * This function needs to be called with rcu_read_lock() held.
3431 */
3432struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3433 gfp_t gfp)
3434{
3435 struct mem_cgroup *memcg;
3436 int idx;
3437
3438 VM_BUG_ON(!cachep->memcg_params);
3439 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3440
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003441 if (!current->mm || current->memcg_kmem_skip_account)
3442 return cachep;
3443
Glauber Costad7f25f82012-12-18 14:22:40 -08003444 rcu_read_lock();
3445 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003446
3447 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003448 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003449
3450 idx = memcg_cache_id(memcg);
3451
3452 /*
3453 * barrier to mare sure we're always seeing the up to date value. The
3454 * code updating memcg_caches will issue a write barrier to match this.
3455 */
3456 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003457 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3458 cachep = cachep->memcg_params->memcg_caches[idx];
3459 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003460 }
3461
Li Zefanca0dde92013-04-29 15:08:57 -07003462 /* The corresponding put will be done in the workqueue. */
3463 if (!css_tryget(&memcg->css))
3464 goto out;
3465 rcu_read_unlock();
3466
3467 /*
3468 * If we are in a safe context (can wait, and not in interrupt
3469 * context), we could be be predictable and return right away.
3470 * This would guarantee that the allocation being performed
3471 * already belongs in the new cache.
3472 *
3473 * However, there are some clashes that can arrive from locking.
3474 * For instance, because we acquire the slab_mutex while doing
3475 * kmem_cache_dup, this means no further allocation could happen
3476 * with the slab_mutex held.
3477 *
3478 * Also, because cache creation issue get_online_cpus(), this
3479 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3480 * that ends up reversed during cpu hotplug. (cpuset allocates
3481 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3482 * better to defer everything.
3483 */
3484 memcg_create_cache_enqueue(memcg, cachep);
3485 return cachep;
3486out:
3487 rcu_read_unlock();
3488 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003489}
3490EXPORT_SYMBOL(__memcg_kmem_get_cache);
3491
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003492/*
3493 * We need to verify if the allocation against current->mm->owner's memcg is
3494 * possible for the given order. But the page is not allocated yet, so we'll
3495 * need a further commit step to do the final arrangements.
3496 *
3497 * It is possible for the task to switch cgroups in this mean time, so at
3498 * commit time, we can't rely on task conversion any longer. We'll then use
3499 * the handle argument to return to the caller which cgroup we should commit
3500 * against. We could also return the memcg directly and avoid the pointer
3501 * passing, but a boolean return value gives better semantics considering
3502 * the compiled-out case as well.
3503 *
3504 * Returning true means the allocation is possible.
3505 */
3506bool
3507__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3508{
3509 struct mem_cgroup *memcg;
3510 int ret;
3511
3512 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003513
3514 /*
3515 * Disabling accounting is only relevant for some specific memcg
3516 * internal allocations. Therefore we would initially not have such
3517 * check here, since direct calls to the page allocator that are marked
3518 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3519 * concerned with cache allocations, and by having this test at
3520 * memcg_kmem_get_cache, we are already able to relay the allocation to
3521 * the root cache and bypass the memcg cache altogether.
3522 *
3523 * There is one exception, though: the SLUB allocator does not create
3524 * large order caches, but rather service large kmallocs directly from
3525 * the page allocator. Therefore, the following sequence when backed by
3526 * the SLUB allocator:
3527 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003528 * memcg_stop_kmem_account();
3529 * kmalloc(<large_number>)
3530 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003531 *
3532 * would effectively ignore the fact that we should skip accounting,
3533 * since it will drive us directly to this function without passing
3534 * through the cache selector memcg_kmem_get_cache. Such large
3535 * allocations are extremely rare but can happen, for instance, for the
3536 * cache arrays. We bring this test here.
3537 */
3538 if (!current->mm || current->memcg_kmem_skip_account)
3539 return true;
3540
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003541 memcg = try_get_mem_cgroup_from_mm(current->mm);
3542
3543 /*
3544 * very rare case described in mem_cgroup_from_task. Unfortunately there
3545 * isn't much we can do without complicating this too much, and it would
3546 * be gfp-dependent anyway. Just let it go
3547 */
3548 if (unlikely(!memcg))
3549 return true;
3550
3551 if (!memcg_can_account_kmem(memcg)) {
3552 css_put(&memcg->css);
3553 return true;
3554 }
3555
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003556 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3557 if (!ret)
3558 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003559
3560 css_put(&memcg->css);
3561 return (ret == 0);
3562}
3563
3564void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3565 int order)
3566{
3567 struct page_cgroup *pc;
3568
3569 VM_BUG_ON(mem_cgroup_is_root(memcg));
3570
3571 /* The page allocation failed. Revert */
3572 if (!page) {
3573 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003574 return;
3575 }
3576
3577 pc = lookup_page_cgroup(page);
3578 lock_page_cgroup(pc);
3579 pc->mem_cgroup = memcg;
3580 SetPageCgroupUsed(pc);
3581 unlock_page_cgroup(pc);
3582}
3583
3584void __memcg_kmem_uncharge_pages(struct page *page, int order)
3585{
3586 struct mem_cgroup *memcg = NULL;
3587 struct page_cgroup *pc;
3588
3589
3590 pc = lookup_page_cgroup(page);
3591 /*
3592 * Fast unlocked return. Theoretically might have changed, have to
3593 * check again after locking.
3594 */
3595 if (!PageCgroupUsed(pc))
3596 return;
3597
3598 lock_page_cgroup(pc);
3599 if (PageCgroupUsed(pc)) {
3600 memcg = pc->mem_cgroup;
3601 ClearPageCgroupUsed(pc);
3602 }
3603 unlock_page_cgroup(pc);
3604
3605 /*
3606 * We trust that only if there is a memcg associated with the page, it
3607 * is a valid allocation
3608 */
3609 if (!memcg)
3610 return;
3611
3612 VM_BUG_ON(mem_cgroup_is_root(memcg));
3613 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003614}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003615#else
3616static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3617{
3618}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003619#endif /* CONFIG_MEMCG_KMEM */
3620
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003621#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3622
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003623#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003624/*
3625 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003626 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3627 * charge/uncharge will be never happen and move_account() is done under
3628 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003629 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003630void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003631{
3632 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003633 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003634 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003635 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003636
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003637 if (mem_cgroup_disabled())
3638 return;
David Rientjesb070e652013-05-07 16:18:09 -07003639
3640 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003641 for (i = 1; i < HPAGE_PMD_NR; i++) {
3642 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003643 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003644 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003645 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3646 }
David Rientjesb070e652013-05-07 16:18:09 -07003647 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3648 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003649}
Hugh Dickins12d27102012-01-12 17:19:52 -08003650#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003651
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003652static inline
3653void mem_cgroup_move_account_page_stat(struct mem_cgroup *from,
3654 struct mem_cgroup *to,
3655 unsigned int nr_pages,
3656 enum mem_cgroup_stat_index idx)
3657{
3658 /* Update stat data for mem_cgroup */
3659 preempt_disable();
3660 WARN_ON_ONCE(from->stat->count[idx] < nr_pages);
3661 __this_cpu_add(from->stat->count[idx], -nr_pages);
3662 __this_cpu_add(to->stat->count[idx], nr_pages);
3663 preempt_enable();
3664}
3665
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003666/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003667 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003668 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003669 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003670 * @pc: page_cgroup of the page.
3671 * @from: mem_cgroup which the page is moved from.
3672 * @to: mem_cgroup which the page is moved to. @from != @to.
3673 *
3674 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003675 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003676 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003677 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003678 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3679 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003680 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003681static int mem_cgroup_move_account(struct page *page,
3682 unsigned int nr_pages,
3683 struct page_cgroup *pc,
3684 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003685 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003686{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003687 unsigned long flags;
3688 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003689 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003690
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003691 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003692 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003693 /*
3694 * The page is isolated from LRU. So, collapse function
3695 * will not handle this page. But page splitting can happen.
3696 * Do this check under compound_page_lock(). The caller should
3697 * hold it.
3698 */
3699 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003700 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003701 goto out;
3702
3703 lock_page_cgroup(pc);
3704
3705 ret = -EINVAL;
3706 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3707 goto unlock;
3708
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003709 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003710
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003711 if (!anon && page_mapped(page))
3712 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3713 MEM_CGROUP_STAT_FILE_MAPPED);
3714
3715 if (PageWriteback(page))
3716 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3717 MEM_CGROUP_STAT_WRITEBACK);
3718
David Rientjesb070e652013-05-07 16:18:09 -07003719 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003720
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003721 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003722 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003723 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003724 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003725 ret = 0;
3726unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003727 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003728 /*
3729 * check events
3730 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003731 memcg_check_events(to, page);
3732 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003733out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003734 return ret;
3735}
3736
Michal Hocko2ef37d32012-10-26 13:37:30 +02003737/**
3738 * mem_cgroup_move_parent - moves page to the parent group
3739 * @page: the page to move
3740 * @pc: page_cgroup of the page
3741 * @child: page's cgroup
3742 *
3743 * move charges to its parent or the root cgroup if the group has no
3744 * parent (aka use_hierarchy==0).
3745 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3746 * mem_cgroup_move_account fails) the failure is always temporary and
3747 * it signals a race with a page removal/uncharge or migration. In the
3748 * first case the page is on the way out and it will vanish from the LRU
3749 * on the next attempt and the call should be retried later.
3750 * Isolation from the LRU fails only if page has been isolated from
3751 * the LRU since we looked at it and that usually means either global
3752 * reclaim or migration going on. The page will either get back to the
3753 * LRU or vanish.
3754 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3755 * (!PageCgroupUsed) or moved to a different group. The page will
3756 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003757 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003758static int mem_cgroup_move_parent(struct page *page,
3759 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003760 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003761{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003762 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003763 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003764 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003765 int ret;
3766
Michal Hockod8423012012-10-26 13:37:29 +02003767 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003768
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003769 ret = -EBUSY;
3770 if (!get_page_unless_zero(page))
3771 goto out;
3772 if (isolate_lru_page(page))
3773 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003774
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003775 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003776
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003777 parent = parent_mem_cgroup(child);
3778 /*
3779 * If no parent, move charges to root cgroup.
3780 */
3781 if (!parent)
3782 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003783
Michal Hocko2ef37d32012-10-26 13:37:30 +02003784 if (nr_pages > 1) {
3785 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003786 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003787 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003788
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003789 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003790 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003791 if (!ret)
3792 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003793
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003794 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003795 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003796 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003797put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003798 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003799out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003800 return ret;
3801}
3802
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003803/*
3804 * Charge the memory controller for page usage.
3805 * Return
3806 * 0 if the charge was successful
3807 * < 0 if the cgroup is over its limit
3808 */
3809static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003810 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003811{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003812 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003813 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003814 bool oom = true;
3815 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003816
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003817 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003818 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003819 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003820 /*
3821 * Never OOM-kill a process for a huge page. The
3822 * fault handler will fall back to regular pages.
3823 */
3824 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003825 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003826
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003827 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003828 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003829 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003830 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003831 return 0;
3832}
3833
3834int mem_cgroup_newpage_charge(struct page *page,
3835 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003836{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003837 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003838 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003839 VM_BUG_ON(page_mapped(page));
3840 VM_BUG_ON(page->mapping && !PageAnon(page));
3841 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003842 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003843 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003844}
3845
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003846/*
3847 * While swap-in, try_charge -> commit or cancel, the page is locked.
3848 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003849 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003850 * "commit()" or removed by "cancel()"
3851 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003852static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3853 struct page *page,
3854 gfp_t mask,
3855 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003856{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003857 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003858 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003859 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003860
Johannes Weiner90deb782012-07-31 16:45:47 -07003861 pc = lookup_page_cgroup(page);
3862 /*
3863 * Every swap fault against a single page tries to charge the
3864 * page, bail as early as possible. shmem_unuse() encounters
3865 * already charged pages, too. The USED bit is protected by
3866 * the page lock, which serializes swap cache removal, which
3867 * in turn serializes uncharging.
3868 */
3869 if (PageCgroupUsed(pc))
3870 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003871 if (!do_swap_account)
3872 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003873 memcg = try_get_mem_cgroup_from_page(page);
3874 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003875 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003876 *memcgp = memcg;
3877 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003878 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003879 if (ret == -EINTR)
3880 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003881 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003882charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003883 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3884 if (ret == -EINTR)
3885 ret = 0;
3886 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003887}
3888
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003889int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3890 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3891{
3892 *memcgp = NULL;
3893 if (mem_cgroup_disabled())
3894 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07003895 /*
3896 * A racing thread's fault, or swapoff, may have already
3897 * updated the pte, and even removed page from swap cache: in
3898 * those cases unuse_pte()'s pte_same() test will fail; but
3899 * there's also a KSM case which does need to charge the page.
3900 */
3901 if (!PageSwapCache(page)) {
3902 int ret;
3903
3904 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3905 if (ret == -EINTR)
3906 ret = 0;
3907 return ret;
3908 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003909 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3910}
3911
Johannes Weiner827a03d2012-07-31 16:45:36 -07003912void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3913{
3914 if (mem_cgroup_disabled())
3915 return;
3916 if (!memcg)
3917 return;
3918 __mem_cgroup_cancel_charge(memcg, 1);
3919}
3920
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003921static void
Johannes Weiner72835c82012-01-12 17:18:32 -08003922__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003923 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003924{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003925 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003926 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08003927 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003928 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07003929
Johannes Weinerce587e62012-04-24 20:22:33 +02003930 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003931 /*
3932 * Now swap is on-memory. This means this page may be
3933 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003934 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3935 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3936 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003937 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003938 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003939 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07003940 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003941 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003942}
3943
Johannes Weiner72835c82012-01-12 17:18:32 -08003944void mem_cgroup_commit_charge_swapin(struct page *page,
3945 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003946{
Johannes Weiner72835c82012-01-12 17:18:32 -08003947 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003948 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003949}
3950
Johannes Weiner827a03d2012-07-31 16:45:36 -07003951int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3952 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003953{
Johannes Weiner827a03d2012-07-31 16:45:36 -07003954 struct mem_cgroup *memcg = NULL;
3955 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3956 int ret;
3957
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003958 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07003959 return 0;
3960 if (PageCompound(page))
3961 return 0;
3962
Johannes Weiner827a03d2012-07-31 16:45:36 -07003963 if (!PageSwapCache(page))
3964 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3965 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003966 ret = __mem_cgroup_try_charge_swapin(mm, page,
3967 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07003968 if (!ret)
3969 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3970 }
3971 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003972}
3973
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003974static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003975 unsigned int nr_pages,
3976 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003977{
3978 struct memcg_batch_info *batch = NULL;
3979 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003980
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003981 /* If swapout, usage of swap doesn't decrease */
3982 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3983 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003984
3985 batch = &current->memcg_batch;
3986 /*
3987 * In usual, we do css_get() when we remember memcg pointer.
3988 * But in this case, we keep res->usage until end of a series of
3989 * uncharges. Then, it's ok to ignore memcg's refcnt.
3990 */
3991 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003992 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003993 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003994 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003995 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003996 * the same cgroup and we have chance to coalesce uncharges.
3997 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3998 * because we want to do uncharge as soon as possible.
3999 */
4000
4001 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
4002 goto direct_uncharge;
4003
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004004 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08004005 goto direct_uncharge;
4006
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004007 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004008 * In typical case, batch->memcg == mem. This means we can
4009 * merge a series of uncharges to an uncharge of res_counter.
4010 * If not, we uncharge res_counter ony by one.
4011 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004012 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004013 goto direct_uncharge;
4014 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004015 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004016 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004017 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004018 return;
4019direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004020 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004021 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004022 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
4023 if (unlikely(batch->memcg != memcg))
4024 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004025}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004026
Balbir Singh8697d332008-02-07 00:13:59 -08004027/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004028 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004029 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004030static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07004031__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
4032 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004033{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004034 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004035 unsigned int nr_pages = 1;
4036 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004037 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004038
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004039 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004040 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07004041
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004042 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004043 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004044 VM_BUG_ON(!PageTransHuge(page));
4045 }
Balbir Singh8697d332008-02-07 00:13:59 -08004046 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08004047 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08004048 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004049 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004050 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004051 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004052
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004053 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004054
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004055 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004056
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004057 if (!PageCgroupUsed(pc))
4058 goto unlock_out;
4059
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004060 anon = PageAnon(page);
4061
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004062 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004063 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07004064 /*
4065 * Generally PageAnon tells if it's the anon statistics to be
4066 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4067 * used before page reached the stage of being marked PageAnon.
4068 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004069 anon = true;
4070 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004071 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004072 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07004073 if (page_mapped(page))
4074 goto unlock_out;
4075 /*
4076 * Pages under migration may not be uncharged. But
4077 * end_migration() /must/ be the one uncharging the
4078 * unused post-migration page and so it has to call
4079 * here with the migration bit still set. See the
4080 * res_counter handling below.
4081 */
4082 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004083 goto unlock_out;
4084 break;
4085 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4086 if (!PageAnon(page)) { /* Shared memory */
4087 if (page->mapping && !page_is_file_cache(page))
4088 goto unlock_out;
4089 } else if (page_mapped(page)) /* Anon */
4090 goto unlock_out;
4091 break;
4092 default:
4093 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004094 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004095
David Rientjesb070e652013-05-07 16:18:09 -07004096 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004097
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004098 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08004099 /*
4100 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4101 * freed from LRU. This is safe because uncharged page is expected not
4102 * to be reused (freed soon). Exception is SwapCache, it's handled by
4103 * special functions.
4104 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004105
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004106 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004107 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004108 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07004109 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004110 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004111 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004112 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004113 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07004114 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004115 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004116 /*
4117 * Migration does not charge the res_counter for the
4118 * replacement page, so leave it alone when phasing out the
4119 * page that is unused after the migration.
4120 */
4121 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004122 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004123
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004124 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004125
4126unlock_out:
4127 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004128 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08004129}
4130
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004131void mem_cgroup_uncharge_page(struct page *page)
4132{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004133 /* early check. */
4134 if (page_mapped(page))
4135 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08004136 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07004137 /*
4138 * If the page is in swap cache, uncharge should be deferred
4139 * to the swap path, which also properly accounts swap usage
4140 * and handles memcg lifetime.
4141 *
4142 * Note that this check is not stable and reclaim may add the
4143 * page to swap cache at any time after this. However, if the
4144 * page is not in swap cache by the time page->mapcount hits
4145 * 0, there won't be any page table references to the swap
4146 * slot, and reclaim will free it and not actually write the
4147 * page to disk.
4148 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07004149 if (PageSwapCache(page))
4150 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07004151 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004152}
4153
4154void mem_cgroup_uncharge_cache_page(struct page *page)
4155{
4156 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07004157 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07004158 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004159}
4160
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004161/*
4162 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4163 * In that cases, pages are freed continuously and we can expect pages
4164 * are in the same memcg. All these calls itself limits the number of
4165 * pages freed at once, then uncharge_start/end() is called properly.
4166 * This may be called prural(2) times in a context,
4167 */
4168
4169void mem_cgroup_uncharge_start(void)
4170{
4171 current->memcg_batch.do_batch++;
4172 /* We can do nest. */
4173 if (current->memcg_batch.do_batch == 1) {
4174 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004175 current->memcg_batch.nr_pages = 0;
4176 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004177 }
4178}
4179
4180void mem_cgroup_uncharge_end(void)
4181{
4182 struct memcg_batch_info *batch = &current->memcg_batch;
4183
4184 if (!batch->do_batch)
4185 return;
4186
4187 batch->do_batch--;
4188 if (batch->do_batch) /* If stacked, do nothing. */
4189 return;
4190
4191 if (!batch->memcg)
4192 return;
4193 /*
4194 * This "batch->memcg" is valid without any css_get/put etc...
4195 * bacause we hide charges behind us.
4196 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004197 if (batch->nr_pages)
4198 res_counter_uncharge(&batch->memcg->res,
4199 batch->nr_pages * PAGE_SIZE);
4200 if (batch->memsw_nr_pages)
4201 res_counter_uncharge(&batch->memcg->memsw,
4202 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004203 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004204 /* forget this pointer (for sanity check) */
4205 batch->memcg = NULL;
4206}
4207
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004208#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004209/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004210 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004211 * memcg information is recorded to swap_cgroup of "ent"
4212 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004213void
4214mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004215{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004216 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004217 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004218
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004219 if (!swapout) /* this was a swap cache but the swap is unused ! */
4220 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4221
Johannes Weiner0030f532012-07-31 16:45:25 -07004222 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004223
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004224 /*
4225 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004226 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004227 */
4228 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004229 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004230}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004231#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004232
Andrew Mortonc255a452012-07-31 16:43:02 -07004233#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004234/*
4235 * called from swap_entry_free(). remove record in swap_cgroup and
4236 * uncharge "memsw" account.
4237 */
4238void mem_cgroup_uncharge_swap(swp_entry_t ent)
4239{
4240 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004241 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004242
4243 if (!do_swap_account)
4244 return;
4245
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004246 id = swap_cgroup_record(ent, 0);
4247 rcu_read_lock();
4248 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004249 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004250 /*
4251 * We uncharge this because swap is freed.
4252 * This memcg can be obsolete one. We avoid calling css_tryget
4253 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004254 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004255 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004256 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004257 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004258 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004259 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004260}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004261
4262/**
4263 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4264 * @entry: swap entry to be moved
4265 * @from: mem_cgroup which the entry is moved from
4266 * @to: mem_cgroup which the entry is moved to
4267 *
4268 * It succeeds only when the swap_cgroup's record for this entry is the same
4269 * as the mem_cgroup's id of @from.
4270 *
4271 * Returns 0 on success, -EINVAL on failure.
4272 *
4273 * The caller must have charged to @to, IOW, called res_counter_charge() about
4274 * both res and memsw, and called css_get().
4275 */
4276static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004277 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004278{
4279 unsigned short old_id, new_id;
4280
4281 old_id = css_id(&from->css);
4282 new_id = css_id(&to->css);
4283
4284 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004285 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004286 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004287 /*
4288 * This function is only called from task migration context now.
4289 * It postpones res_counter and refcount handling till the end
4290 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004291 * improvement. But we cannot postpone css_get(to) because if
4292 * the process that has been moved to @to does swap-in, the
4293 * refcount of @to might be decreased to 0.
4294 *
4295 * We are in attach() phase, so the cgroup is guaranteed to be
4296 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004297 */
Li Zefan40503772013-07-08 16:00:34 -07004298 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004299 return 0;
4300 }
4301 return -EINVAL;
4302}
4303#else
4304static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004305 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004306{
4307 return -EINVAL;
4308}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004309#endif
4310
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004311/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004312 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4313 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004314 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004315void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4316 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004317{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004318 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004319 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004320 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004321 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004322
Johannes Weiner72835c82012-01-12 17:18:32 -08004323 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004324
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004325 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004326 return;
Balbir Singh40779602008-04-04 14:29:59 -07004327
Mel Gormanb32967f2012-11-19 12:35:47 +00004328 if (PageTransHuge(page))
4329 nr_pages <<= compound_order(page);
4330
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004331 pc = lookup_page_cgroup(page);
4332 lock_page_cgroup(pc);
4333 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004334 memcg = pc->mem_cgroup;
4335 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004336 /*
4337 * At migrating an anonymous page, its mapcount goes down
4338 * to 0 and uncharge() will be called. But, even if it's fully
4339 * unmapped, migration may fail and this page has to be
4340 * charged again. We set MIGRATION flag here and delay uncharge
4341 * until end_migration() is called
4342 *
4343 * Corner Case Thinking
4344 * A)
4345 * When the old page was mapped as Anon and it's unmap-and-freed
4346 * while migration was ongoing.
4347 * If unmap finds the old page, uncharge() of it will be delayed
4348 * until end_migration(). If unmap finds a new page, it's
4349 * uncharged when it make mapcount to be 1->0. If unmap code
4350 * finds swap_migration_entry, the new page will not be mapped
4351 * and end_migration() will find it(mapcount==0).
4352 *
4353 * B)
4354 * When the old page was mapped but migraion fails, the kernel
4355 * remaps it. A charge for it is kept by MIGRATION flag even
4356 * if mapcount goes down to 0. We can do remap successfully
4357 * without charging it again.
4358 *
4359 * C)
4360 * The "old" page is under lock_page() until the end of
4361 * migration, so, the old page itself will not be swapped-out.
4362 * If the new page is swapped out before end_migraton, our
4363 * hook to usual swap-out path will catch the event.
4364 */
4365 if (PageAnon(page))
4366 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004367 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004368 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004369 /*
4370 * If the page is not charged at this point,
4371 * we return here.
4372 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004373 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004374 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004375
Johannes Weiner72835c82012-01-12 17:18:32 -08004376 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004377 /*
4378 * We charge new page before it's used/mapped. So, even if unlock_page()
4379 * is called before end_migration, we can catch all events on this new
4380 * page. In the case new page is migrated but not remapped, new page's
4381 * mapcount will be finally 0 and we call uncharge in end_migration().
4382 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004383 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004384 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004385 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004386 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004387 /*
4388 * The page is committed to the memcg, but it's not actually
4389 * charged to the res_counter since we plan on replacing the
4390 * old one and only one page is going to be left afterwards.
4391 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004392 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004393}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004394
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004395/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004396void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004397 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004398{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004399 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004400 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004401 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004402
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004403 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004404 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004405
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004406 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004407 used = oldpage;
4408 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004409 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004410 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004411 unused = oldpage;
4412 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004413 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004414 __mem_cgroup_uncharge_common(unused,
4415 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4416 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4417 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004418 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004419 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004420 * We disallowed uncharge of pages under migration because mapcount
4421 * of the page goes down to zero, temporarly.
4422 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004423 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004424 pc = lookup_page_cgroup(oldpage);
4425 lock_page_cgroup(pc);
4426 ClearPageCgroupMigration(pc);
4427 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004428
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004429 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004430 * If a page is a file cache, radix-tree replacement is very atomic
4431 * and we can skip this check. When it was an Anon page, its mapcount
4432 * goes down to 0. But because we added MIGRATION flage, it's not
4433 * uncharged yet. There are several case but page->mapcount check
4434 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4435 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004436 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004437 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004438 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004439}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004440
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004441/*
4442 * At replace page cache, newpage is not under any memcg but it's on
4443 * LRU. So, this function doesn't touch res_counter but handles LRU
4444 * in correct way. Both pages are locked so we cannot race with uncharge.
4445 */
4446void mem_cgroup_replace_page_cache(struct page *oldpage,
4447 struct page *newpage)
4448{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004449 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004450 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004451 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004452
4453 if (mem_cgroup_disabled())
4454 return;
4455
4456 pc = lookup_page_cgroup(oldpage);
4457 /* fix accounting on old pages */
4458 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004459 if (PageCgroupUsed(pc)) {
4460 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004461 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004462 ClearPageCgroupUsed(pc);
4463 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004464 unlock_page_cgroup(pc);
4465
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004466 /*
4467 * When called from shmem_replace_page(), in some cases the
4468 * oldpage has already been charged, and in some cases not.
4469 */
4470 if (!memcg)
4471 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004472 /*
4473 * Even if newpage->mapping was NULL before starting replacement,
4474 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4475 * LRU while we overwrite pc->mem_cgroup.
4476 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004477 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004478}
4479
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004480#ifdef CONFIG_DEBUG_VM
4481static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4482{
4483 struct page_cgroup *pc;
4484
4485 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004486 /*
4487 * Can be NULL while feeding pages into the page allocator for
4488 * the first time, i.e. during boot or memory hotplug;
4489 * or when mem_cgroup_disabled().
4490 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004491 if (likely(pc) && PageCgroupUsed(pc))
4492 return pc;
4493 return NULL;
4494}
4495
4496bool mem_cgroup_bad_page_check(struct page *page)
4497{
4498 if (mem_cgroup_disabled())
4499 return false;
4500
4501 return lookup_page_cgroup_used(page) != NULL;
4502}
4503
4504void mem_cgroup_print_bad_page(struct page *page)
4505{
4506 struct page_cgroup *pc;
4507
4508 pc = lookup_page_cgroup_used(page);
4509 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004510 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4511 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004512 }
4513}
4514#endif
4515
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004516static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004517 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004518{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004519 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004520 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004521 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004522 int children = mem_cgroup_count_children(memcg);
4523 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004524 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004525
4526 /*
4527 * For keeping hierarchical_reclaim simple, how long we should retry
4528 * is depends on callers. We set our retry-count to be function
4529 * of # of children which we should visit in this loop.
4530 */
4531 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4532
4533 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004534
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004535 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004536 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004537 if (signal_pending(current)) {
4538 ret = -EINTR;
4539 break;
4540 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004541 /*
4542 * Rather than hide all in some function, I do this in
4543 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004544 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004545 */
4546 mutex_lock(&set_limit_mutex);
4547 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4548 if (memswlimit < val) {
4549 ret = -EINVAL;
4550 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004551 break;
4552 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004553
4554 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4555 if (memlimit < val)
4556 enlarge = 1;
4557
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004558 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004559 if (!ret) {
4560 if (memswlimit == val)
4561 memcg->memsw_is_minimum = true;
4562 else
4563 memcg->memsw_is_minimum = false;
4564 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004565 mutex_unlock(&set_limit_mutex);
4566
4567 if (!ret)
4568 break;
4569
Johannes Weiner56600482012-01-12 17:17:59 -08004570 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4571 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004572 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4573 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004574 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004575 retry_count--;
4576 else
4577 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004578 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004579 if (!ret && enlarge)
4580 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004581
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004582 return ret;
4583}
4584
Li Zefan338c8432009-06-17 16:27:15 -07004585static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4586 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004587{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004588 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004589 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004590 int children = mem_cgroup_count_children(memcg);
4591 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004592 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004593
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004594 /* see mem_cgroup_resize_res_limit */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004595 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004596 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004597 while (retry_count) {
4598 if (signal_pending(current)) {
4599 ret = -EINTR;
4600 break;
4601 }
4602 /*
4603 * Rather than hide all in some function, I do this in
4604 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004605 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004606 */
4607 mutex_lock(&set_limit_mutex);
4608 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4609 if (memlimit > val) {
4610 ret = -EINVAL;
4611 mutex_unlock(&set_limit_mutex);
4612 break;
4613 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004614 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4615 if (memswlimit < val)
4616 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004617 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004618 if (!ret) {
4619 if (memlimit == val)
4620 memcg->memsw_is_minimum = true;
4621 else
4622 memcg->memsw_is_minimum = false;
4623 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004624 mutex_unlock(&set_limit_mutex);
4625
4626 if (!ret)
4627 break;
4628
Johannes Weiner56600482012-01-12 17:17:59 -08004629 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4630 MEM_CGROUP_RECLAIM_NOSWAP |
4631 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004632 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004633 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004634 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004635 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004636 else
4637 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004638 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004639 if (!ret && enlarge)
4640 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004641 return ret;
4642}
4643
Michal Hocko2ef37d32012-10-26 13:37:30 +02004644/**
4645 * mem_cgroup_force_empty_list - clears LRU of a group
4646 * @memcg: group to clear
4647 * @node: NUMA node
4648 * @zid: zone id
4649 * @lru: lru to to clear
4650 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004651 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004652 * reclaim the pages page themselves - pages are moved to the parent (or root)
4653 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004654 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004655static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004656 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004657{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004658 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004659 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004660 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004661 struct page *busy;
4662 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004663
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004664 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004665 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4666 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004667
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004668 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004669 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004670 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004671 struct page *page;
4672
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004673 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004674 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004675 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004676 break;
4677 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004678 page = list_entry(list->prev, struct page, lru);
4679 if (busy == page) {
4680 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004681 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004682 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004683 continue;
4684 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004685 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004686
Johannes Weiner925b7672012-01-12 17:18:15 -08004687 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004688
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004689 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004690 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004691 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004692 cond_resched();
4693 } else
4694 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004695 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004696}
4697
4698/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004699 * make mem_cgroup's charge to be 0 if there is no task by moving
4700 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004701 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004702 *
4703 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004704 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004705static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004706{
Michal Hockoc26251f2012-10-26 13:37:28 +02004707 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004708 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004709
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004710 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004711 /* This is for making all *used* pages to be on LRU. */
4712 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004713 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004714 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004715 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004716 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004717 enum lru_list lru;
4718 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004719 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004720 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004721 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004722 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004723 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004724 mem_cgroup_end_move(memcg);
4725 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004726 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004727
Michal Hocko2ef37d32012-10-26 13:37:30 +02004728 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004729 * Kernel memory may not necessarily be trackable to a specific
4730 * process. So they are not migrated, and therefore we can't
4731 * expect their value to drop to 0 here.
4732 * Having res filled up with kmem only is enough.
4733 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004734 * This is a safety check because mem_cgroup_force_empty_list
4735 * could have raced with mem_cgroup_replace_page_cache callers
4736 * so the lru seemed empty but the page could have been added
4737 * right after the check. RES_USAGE should be safe as we always
4738 * charge before adding to the LRU.
4739 */
Glauber Costabea207c2012-12-18 14:22:11 -08004740 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4741 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4742 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004743}
4744
4745/*
Glauber Costab5f99b52013-02-22 16:34:53 -08004746 * This mainly exists for tests during the setting of set of use_hierarchy.
4747 * Since this is the very setting we are changing, the current hierarchy value
4748 * is meaningless
4749 */
4750static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4751{
Tejun Heo492eb212013-08-08 20:11:25 -04004752 struct cgroup_subsys_state *pos;
Glauber Costab5f99b52013-02-22 16:34:53 -08004753
4754 /* bounce at first found */
Tejun Heo492eb212013-08-08 20:11:25 -04004755 css_for_each_child(pos, &memcg->css)
Glauber Costab5f99b52013-02-22 16:34:53 -08004756 return true;
4757 return false;
4758}
4759
4760/*
Glauber Costa09998212013-02-22 16:34:55 -08004761 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4762 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
Glauber Costab5f99b52013-02-22 16:34:53 -08004763 * from mem_cgroup_count_children(), in the sense that we don't really care how
4764 * many children we have; we only need to know if we have any. It also counts
4765 * any memcg without hierarchy as infertile.
4766 */
4767static inline bool memcg_has_children(struct mem_cgroup *memcg)
4768{
4769 return memcg->use_hierarchy && __memcg_has_children(memcg);
4770}
4771
4772/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004773 * Reclaims as many pages from the given memcg as possible and moves
4774 * the rest to the parent.
4775 *
4776 * Caller is responsible for holding css reference for memcg.
4777 */
4778static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4779{
4780 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4781 struct cgroup *cgrp = memcg->css.cgroup;
4782
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004783 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004784 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4785 return -EBUSY;
4786
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004787 /* we call try-to-free pages for make this cgroup empty */
4788 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004789 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004790 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004791 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004792
Michal Hockoc26251f2012-10-26 13:37:28 +02004793 if (signal_pending(current))
4794 return -EINTR;
4795
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004796 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004797 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004798 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004799 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004800 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004801 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004802 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004803
4804 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004805 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02004806 mem_cgroup_reparent_charges(memcg);
4807
4808 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004809}
4810
Tejun Heo182446d2013-08-08 20:11:24 -04004811static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
4812 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004813{
Tejun Heo182446d2013-08-08 20:11:24 -04004814 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02004815
Michal Hockod8423012012-10-26 13:37:29 +02004816 if (mem_cgroup_is_root(memcg))
4817 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07004818 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004819}
4820
Tejun Heo182446d2013-08-08 20:11:24 -04004821static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
4822 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004823{
Tejun Heo182446d2013-08-08 20:11:24 -04004824 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004825}
4826
Tejun Heo182446d2013-08-08 20:11:24 -04004827static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
4828 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004829{
4830 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04004831 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04004832 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08004833
Glauber Costa09998212013-02-22 16:34:55 -08004834 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07004835
4836 if (memcg->use_hierarchy == val)
4837 goto out;
4838
Balbir Singh18f59ea2009-01-07 18:08:07 -08004839 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004840 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08004841 * in the child subtrees. If it is unset, then the change can
4842 * occur, provided the current cgroup has no children.
4843 *
4844 * For the root cgroup, parent_mem is NULL, we allow value to be
4845 * set if there are no children.
4846 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004847 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08004848 (val == 1 || val == 0)) {
Glauber Costab5f99b52013-02-22 16:34:53 -08004849 if (!__memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004850 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004851 else
4852 retval = -EBUSY;
4853 } else
4854 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07004855
4856out:
Glauber Costa09998212013-02-22 16:34:55 -08004857 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004858
4859 return retval;
4860}
4861
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004862
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004863static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004864 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004865{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004866 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004867 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004868
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004869 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004870 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004871 val += mem_cgroup_read_stat(iter, idx);
4872
4873 if (val < 0) /* race ? */
4874 val = 0;
4875 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004876}
4877
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004878static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004879{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004880 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004881
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004882 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004883 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00004884 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004885 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00004886 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004887 }
4888
David Rientjesb070e652013-05-07 16:18:09 -07004889 /*
4890 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4891 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4892 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004893 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4894 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004895
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004896 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004897 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004898
4899 return val << PAGE_SHIFT;
4900}
4901
Tejun Heo182446d2013-08-08 20:11:24 -04004902static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
4903 struct cftype *cft, struct file *file,
4904 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004905{
Tejun Heo182446d2013-08-08 20:11:24 -04004906 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07004907 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004908 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004909 int name, len;
4910 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004911
4912 type = MEMFILE_TYPE(cft->private);
4913 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004914
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004915 switch (type) {
4916 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004917 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004918 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004919 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004920 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004921 break;
4922 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004923 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004924 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004925 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004926 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004927 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004928 case _KMEM:
4929 val = res_counter_read_u64(&memcg->kmem, name);
4930 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004931 default:
4932 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004933 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004934
4935 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4936 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004937}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004938
Tejun Heo182446d2013-08-08 20:11:24 -04004939static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004940{
4941 int ret = -EINVAL;
4942#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04004943 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004944 /*
4945 * For simplicity, we won't allow this to be disabled. It also can't
4946 * be changed if the cgroup has children already, or if tasks had
4947 * already joined.
4948 *
4949 * If tasks join before we set the limit, a person looking at
4950 * kmem.usage_in_bytes will have no way to determine when it took
4951 * place, which makes the value quite meaningless.
4952 *
4953 * After it first became limited, changes in the value of the limit are
4954 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004955 */
Glauber Costa09998212013-02-22 16:34:55 -08004956 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004957 mutex_lock(&set_limit_mutex);
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004958 if (!memcg->kmem_account_flags && val != RES_COUNTER_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04004959 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08004960 ret = -EBUSY;
4961 goto out;
4962 }
4963 ret = res_counter_set_limit(&memcg->kmem, val);
4964 VM_BUG_ON(ret);
4965
Glauber Costa55007d82012-12-18 14:22:38 -08004966 ret = memcg_update_cache_sizes(memcg);
4967 if (ret) {
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004968 res_counter_set_limit(&memcg->kmem, RES_COUNTER_MAX);
Glauber Costa55007d82012-12-18 14:22:38 -08004969 goto out;
4970 }
Glauber Costa692e89a2013-02-22 16:34:56 -08004971 static_key_slow_inc(&memcg_kmem_enabled_key);
4972 /*
4973 * setting the active bit after the inc will guarantee no one
4974 * starts accounting before all call sites are patched
4975 */
4976 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004977 } else
4978 ret = res_counter_set_limit(&memcg->kmem, val);
4979out:
4980 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08004981 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004982#endif
4983 return ret;
4984}
4985
Hugh Dickins6d0439902013-02-22 16:35:50 -08004986#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08004987static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004988{
Glauber Costa55007d82012-12-18 14:22:38 -08004989 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004990 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4991 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08004992 goto out;
4993
Glauber Costa510fc4e2012-12-18 14:21:47 -08004994 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08004995 /*
4996 * When that happen, we need to disable the static branch only on those
4997 * memcgs that enabled it. To achieve this, we would be forced to
4998 * complicate the code by keeping track of which memcgs were the ones
4999 * that actually enabled limits, and which ones got it from its
5000 * parents.
5001 *
5002 * It is a lot simpler just to do static_key_slow_inc() on every child
5003 * that is accounted.
5004 */
Glauber Costa55007d82012-12-18 14:22:38 -08005005 if (!memcg_kmem_is_active(memcg))
5006 goto out;
5007
5008 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07005009 * __mem_cgroup_free() will issue static_key_slow_dec() because this
5010 * memcg is active already. If the later initialization fails then the
5011 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08005012 */
Glauber Costa55007d82012-12-18 14:22:38 -08005013 static_key_slow_inc(&memcg_kmem_enabled_key);
5014
5015 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07005016 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005017 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07005018 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005019 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08005020out:
5021 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005022}
Hugh Dickins6d0439902013-02-22 16:35:50 -08005023#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08005024
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005025/*
5026 * The user of this function is...
5027 * RES_LIMIT.
5028 */
Tejun Heo182446d2013-08-08 20:11:24 -04005029static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07005030 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005031{
Tejun Heo182446d2013-08-08 20:11:24 -04005032 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005033 enum res_type type;
5034 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005035 unsigned long long val;
5036 int ret;
5037
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005038 type = MEMFILE_TYPE(cft->private);
5039 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07005040
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005041 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005042 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07005043 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
5044 ret = -EINVAL;
5045 break;
5046 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005047 /* This function does all necessary parse...reuse it */
5048 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005049 if (ret)
5050 break;
5051 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005052 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005053 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005054 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005055 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04005056 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005057 else
5058 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005059 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07005060 case RES_SOFT_LIMIT:
5061 ret = res_counter_memparse_write_strategy(buffer, &val);
5062 if (ret)
5063 break;
5064 /*
5065 * For memsw, soft limits are hard to implement in terms
5066 * of semantics, for now, we support soft limits for
5067 * control without swap
5068 */
5069 if (type == _MEM)
5070 ret = res_counter_set_soft_limit(&memcg->res, val);
5071 else
5072 ret = -EINVAL;
5073 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005074 default:
5075 ret = -EINVAL; /* should be BUG() ? */
5076 break;
5077 }
5078 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005079}
5080
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005081static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5082 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5083{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005084 unsigned long long min_limit, min_memsw_limit, tmp;
5085
5086 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5087 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005088 if (!memcg->use_hierarchy)
5089 goto out;
5090
Tejun Heo63876982013-08-08 20:11:23 -04005091 while (css_parent(&memcg->css)) {
5092 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005093 if (!memcg->use_hierarchy)
5094 break;
5095 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5096 min_limit = min(min_limit, tmp);
5097 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5098 min_memsw_limit = min(min_memsw_limit, tmp);
5099 }
5100out:
5101 *mem_limit = min_limit;
5102 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005103}
5104
Tejun Heo182446d2013-08-08 20:11:24 -04005105static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005106{
Tejun Heo182446d2013-08-08 20:11:24 -04005107 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005108 int name;
5109 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005110
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005111 type = MEMFILE_TYPE(event);
5112 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07005113
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005114 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005115 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005116 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005117 res_counter_reset_max(&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_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005120 else if (type == _KMEM)
5121 res_counter_reset_max(&memcg->kmem);
5122 else
5123 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005124 break;
5125 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005126 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005127 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005128 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005129 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005130 else if (type == _KMEM)
5131 res_counter_reset_failcnt(&memcg->kmem);
5132 else
5133 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005134 break;
5135 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07005136
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07005137 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005138}
5139
Tejun Heo182446d2013-08-08 20:11:24 -04005140static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005141 struct cftype *cft)
5142{
Tejun Heo182446d2013-08-08 20:11:24 -04005143 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005144}
5145
Daisuke Nishimura02491442010-03-10 15:22:17 -08005146#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04005147static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005148 struct cftype *cft, u64 val)
5149{
Tejun Heo182446d2013-08-08 20:11:24 -04005150 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005151
5152 if (val >= (1 << NR_MOVE_TYPE))
5153 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005154
Glauber Costaee5e8472013-02-22 16:34:50 -08005155 /*
5156 * No kind of locking is needed in here, because ->can_attach() will
5157 * check this value once in the beginning of the process, and then carry
5158 * on with stale data. This means that changes to this value will only
5159 * affect task migrations starting after the change.
5160 */
5161 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005162 return 0;
5163}
Daisuke Nishimura02491442010-03-10 15:22:17 -08005164#else
Tejun Heo182446d2013-08-08 20:11:24 -04005165static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005166 struct cftype *cft, u64 val)
5167{
5168 return -ENOSYS;
5169}
5170#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005171
Ying Han406eb0c2011-05-26 16:25:37 -07005172#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04005173static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
5174 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07005175{
5176 int nid;
5177 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5178 unsigned long node_nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005179 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005180
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005181 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005182 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005183 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005184 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005185 seq_printf(m, " N%d=%lu", nid, node_nr);
5186 }
5187 seq_putc(m, '\n');
5188
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005189 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005190 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005191 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005192 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005193 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005194 seq_printf(m, " N%d=%lu", nid, node_nr);
5195 }
5196 seq_putc(m, '\n');
5197
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005198 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005199 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005200 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005201 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005202 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005203 seq_printf(m, " N%d=%lu", nid, node_nr);
5204 }
5205 seq_putc(m, '\n');
5206
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005207 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005208 seq_printf(m, "unevictable=%lu", unevictable_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005209 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005210 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005211 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005212 seq_printf(m, " N%d=%lu", nid, node_nr);
5213 }
5214 seq_putc(m, '\n');
5215 return 0;
5216}
5217#endif /* CONFIG_NUMA */
5218
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005219static inline void mem_cgroup_lru_names_not_uptodate(void)
5220{
5221 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5222}
5223
Tejun Heo182446d2013-08-08 20:11:24 -04005224static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005225 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005226{
Tejun Heo182446d2013-08-08 20:11:24 -04005227 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005228 struct mem_cgroup *mi;
5229 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005230
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005231 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005232 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005233 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005234 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5235 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005236 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005237
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005238 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5239 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5240 mem_cgroup_read_events(memcg, i));
5241
5242 for (i = 0; i < NR_LRU_LISTS; i++)
5243 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5244 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5245
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005246 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005247 {
5248 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005249 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005250 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005251 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005252 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5253 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005254 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005255
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005256 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5257 long long val = 0;
5258
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005259 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005260 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005261 for_each_mem_cgroup_tree(mi, memcg)
5262 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5263 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5264 }
5265
5266 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5267 unsigned long long val = 0;
5268
5269 for_each_mem_cgroup_tree(mi, memcg)
5270 val += mem_cgroup_read_events(mi, i);
5271 seq_printf(m, "total_%s %llu\n",
5272 mem_cgroup_events_names[i], val);
5273 }
5274
5275 for (i = 0; i < NR_LRU_LISTS; i++) {
5276 unsigned long long val = 0;
5277
5278 for_each_mem_cgroup_tree(mi, memcg)
5279 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5280 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005281 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005282
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005283#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005284 {
5285 int nid, zid;
5286 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005287 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005288 unsigned long recent_rotated[2] = {0, 0};
5289 unsigned long recent_scanned[2] = {0, 0};
5290
5291 for_each_online_node(nid)
5292 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005293 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005294 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005295
Hugh Dickins89abfab2012-05-29 15:06:53 -07005296 recent_rotated[0] += rstat->recent_rotated[0];
5297 recent_rotated[1] += rstat->recent_rotated[1];
5298 recent_scanned[0] += rstat->recent_scanned[0];
5299 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005300 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005301 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5302 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5303 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5304 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005305 }
5306#endif
5307
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005308 return 0;
5309}
5310
Tejun Heo182446d2013-08-08 20:11:24 -04005311static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5312 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005313{
Tejun Heo182446d2013-08-08 20:11:24 -04005314 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005315
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005316 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005317}
5318
Tejun Heo182446d2013-08-08 20:11:24 -04005319static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5320 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005321{
Tejun Heo182446d2013-08-08 20:11:24 -04005322 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005323 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005324
Tejun Heo63876982013-08-08 20:11:23 -04005325 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005326 return -EINVAL;
5327
Glauber Costa09998212013-02-22 16:34:55 -08005328 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005329
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005330 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005331 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005332 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005333 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005334 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005335
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005336 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005337
Glauber Costa09998212013-02-22 16:34:55 -08005338 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005339
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005340 return 0;
5341}
5342
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005343static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5344{
5345 struct mem_cgroup_threshold_ary *t;
5346 u64 usage;
5347 int i;
5348
5349 rcu_read_lock();
5350 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005351 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005352 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005353 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005354
5355 if (!t)
5356 goto unlock;
5357
5358 usage = mem_cgroup_usage(memcg, swap);
5359
5360 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005361 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005362 * If it's not true, a threshold was crossed after last
5363 * call of __mem_cgroup_threshold().
5364 */
Phil Carmody5407a562010-05-26 14:42:42 -07005365 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005366
5367 /*
5368 * Iterate backward over array of thresholds starting from
5369 * current_threshold and check if a threshold is crossed.
5370 * If none of thresholds below usage is crossed, we read
5371 * only one element of the array here.
5372 */
5373 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5374 eventfd_signal(t->entries[i].eventfd, 1);
5375
5376 /* i = current_threshold + 1 */
5377 i++;
5378
5379 /*
5380 * Iterate forward over array of thresholds starting from
5381 * current_threshold+1 and check if a threshold is crossed.
5382 * If none of thresholds above usage is crossed, we read
5383 * only one element of the array here.
5384 */
5385 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5386 eventfd_signal(t->entries[i].eventfd, 1);
5387
5388 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005389 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005390unlock:
5391 rcu_read_unlock();
5392}
5393
5394static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5395{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005396 while (memcg) {
5397 __mem_cgroup_threshold(memcg, false);
5398 if (do_swap_account)
5399 __mem_cgroup_threshold(memcg, true);
5400
5401 memcg = parent_mem_cgroup(memcg);
5402 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005403}
5404
5405static int compare_thresholds(const void *a, const void *b)
5406{
5407 const struct mem_cgroup_threshold *_a = a;
5408 const struct mem_cgroup_threshold *_b = b;
5409
Greg Thelen2bff24a2013-09-11 14:23:08 -07005410 if (_a->threshold > _b->threshold)
5411 return 1;
5412
5413 if (_a->threshold < _b->threshold)
5414 return -1;
5415
5416 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005417}
5418
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005419static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005420{
5421 struct mem_cgroup_eventfd_list *ev;
5422
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005423 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005424 eventfd_signal(ev->eventfd, 1);
5425 return 0;
5426}
5427
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005428static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005429{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005430 struct mem_cgroup *iter;
5431
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005432 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005433 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005434}
5435
Tejun Heo81eeaf02013-08-08 20:11:26 -04005436static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005437 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005438{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005439 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005440 struct mem_cgroup_thresholds *thresholds;
5441 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005442 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005443 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005444 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005445
5446 ret = res_counter_memparse_write_strategy(args, &threshold);
5447 if (ret)
5448 return ret;
5449
5450 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005451
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005452 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005453 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005454 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005455 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005456 else
5457 BUG();
5458
5459 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5460
5461 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005462 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005463 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5464
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005465 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005466
5467 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005468 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005469 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005470 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005471 ret = -ENOMEM;
5472 goto unlock;
5473 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005474 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005475
5476 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005477 if (thresholds->primary) {
5478 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005479 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005480 }
5481
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005482 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005483 new->entries[size - 1].eventfd = eventfd;
5484 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005485
5486 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005487 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005488 compare_thresholds, NULL);
5489
5490 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005491 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005492 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005493 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005494 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005495 * new->current_threshold will not be used until
5496 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005497 * it here.
5498 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005499 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005500 } else
5501 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005502 }
5503
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005504 /* Free old spare buffer and save old primary buffer as spare */
5505 kfree(thresholds->spare);
5506 thresholds->spare = thresholds->primary;
5507
5508 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005509
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005510 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005511 synchronize_rcu();
5512
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005513unlock:
5514 mutex_unlock(&memcg->thresholds_lock);
5515
5516 return ret;
5517}
5518
Tejun Heo81eeaf02013-08-08 20:11:26 -04005519static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005520 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005521{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005522 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005523 struct mem_cgroup_thresholds *thresholds;
5524 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005525 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005526 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005527 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005528
5529 mutex_lock(&memcg->thresholds_lock);
5530 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005531 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005532 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005533 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005534 else
5535 BUG();
5536
Anton Vorontsov371528c2012-02-24 05:14:46 +04005537 if (!thresholds->primary)
5538 goto unlock;
5539
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005540 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5541
5542 /* Check if a threshold crossed before removing */
5543 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5544
5545 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005546 size = 0;
5547 for (i = 0; i < thresholds->primary->size; i++) {
5548 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005549 size++;
5550 }
5551
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005552 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005553
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005554 /* Set thresholds array to NULL if we don't have thresholds */
5555 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005556 kfree(new);
5557 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005558 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005559 }
5560
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005561 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005562
5563 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005564 new->current_threshold = -1;
5565 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5566 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005567 continue;
5568
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005569 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005570 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005571 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005572 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005573 * until rcu_assign_pointer(), so it's safe to increment
5574 * it here.
5575 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005576 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005577 }
5578 j++;
5579 }
5580
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005581swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005582 /* Swap primary and spare array */
5583 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005584 /* If all events are unregistered, free the spare array */
5585 if (!new) {
5586 kfree(thresholds->spare);
5587 thresholds->spare = NULL;
5588 }
5589
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005590 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005591
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005592 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005593 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005594unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005595 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005596}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005597
Tejun Heo81eeaf02013-08-08 20:11:26 -04005598static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005599 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5600{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005601 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005602 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005603 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005604
5605 BUG_ON(type != _OOM_TYPE);
5606 event = kmalloc(sizeof(*event), GFP_KERNEL);
5607 if (!event)
5608 return -ENOMEM;
5609
Michal Hocko1af8efe2011-07-26 16:08:24 -07005610 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005611
5612 event->eventfd = eventfd;
5613 list_add(&event->list, &memcg->oom_notify);
5614
5615 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005616 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005617 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005618 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005619
5620 return 0;
5621}
5622
Tejun Heo81eeaf02013-08-08 20:11:26 -04005623static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005624 struct cftype *cft, struct eventfd_ctx *eventfd)
5625{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005626 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005627 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005628 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005629
5630 BUG_ON(type != _OOM_TYPE);
5631
Michal Hocko1af8efe2011-07-26 16:08:24 -07005632 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005633
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005634 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005635 if (ev->eventfd == eventfd) {
5636 list_del(&ev->list);
5637 kfree(ev);
5638 }
5639 }
5640
Michal Hocko1af8efe2011-07-26 16:08:24 -07005641 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005642}
5643
Tejun Heo182446d2013-08-08 20:11:24 -04005644static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005645 struct cftype *cft, struct cgroup_map_cb *cb)
5646{
Tejun Heo182446d2013-08-08 20:11:24 -04005647 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005648
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005649 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005650
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005651 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005652 cb->fill(cb, "under_oom", 1);
5653 else
5654 cb->fill(cb, "under_oom", 0);
5655 return 0;
5656}
5657
Tejun Heo182446d2013-08-08 20:11:24 -04005658static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005659 struct cftype *cft, u64 val)
5660{
Tejun Heo182446d2013-08-08 20:11:24 -04005661 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005662 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005663
5664 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005665 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005666 return -EINVAL;
5667
Glauber Costa09998212013-02-22 16:34:55 -08005668 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005669 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005670 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005671 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005672 return -EINVAL;
5673 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005674 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005675 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005676 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005677 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005678 return 0;
5679}
5680
Andrew Mortonc255a452012-07-31 16:43:02 -07005681#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005682static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005683{
Glauber Costa55007d82012-12-18 14:22:38 -08005684 int ret;
5685
Glauber Costa2633d7a2012-12-18 14:22:34 -08005686 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005687 ret = memcg_propagate_kmem(memcg);
5688 if (ret)
5689 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005690
Glauber Costa1d62e432012-04-09 19:36:33 -03005691 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005692}
Glauber Costae5671df2011-12-11 21:47:01 +00005693
Li Zefan10d5ebf2013-07-08 16:00:33 -07005694static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005695{
Glauber Costa1d62e432012-04-09 19:36:33 -03005696 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005697}
5698
5699static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5700{
5701 if (!memcg_kmem_is_active(memcg))
5702 return;
5703
5704 /*
5705 * kmem charges can outlive the cgroup. In the case of slab
5706 * pages, for instance, a page contain objects from various
5707 * processes. As we prevent from taking a reference for every
5708 * such allocation we have to be careful when doing uncharge
5709 * (see memcg_uncharge_kmem) and here during offlining.
5710 *
5711 * The idea is that that only the _last_ uncharge which sees
5712 * the dead memcg will drop the last reference. An additional
5713 * reference is taken here before the group is marked dead
5714 * which is then paired with css_put during uncharge resp. here.
5715 *
5716 * Although this might sound strange as this path is called from
5717 * css_offline() when the referencemight have dropped down to 0
5718 * and shouldn't be incremented anymore (css_tryget would fail)
5719 * we do not have other options because of the kmem allocations
5720 * lifetime.
5721 */
5722 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005723
5724 memcg_kmem_mark_dead(memcg);
5725
5726 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5727 return;
5728
Glauber Costa7de37682012-12-18 14:22:07 -08005729 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005730 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005731}
Glauber Costae5671df2011-12-11 21:47:01 +00005732#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005733static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005734{
5735 return 0;
5736}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005737
Li Zefan10d5ebf2013-07-08 16:00:33 -07005738static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5739{
5740}
5741
5742static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005743{
5744}
Glauber Costae5671df2011-12-11 21:47:01 +00005745#endif
5746
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005747static struct cftype mem_cgroup_files[] = {
5748 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005749 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005750 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005751 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005752 .register_event = mem_cgroup_usage_register_event,
5753 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005754 },
5755 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005756 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005757 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005758 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005759 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005760 },
5761 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005762 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005763 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005764 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005765 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005766 },
5767 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005768 .name = "soft_limit_in_bytes",
5769 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5770 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005771 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005772 },
5773 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005774 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005775 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005776 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005777 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005778 },
Balbir Singh8697d332008-02-07 00:13:59 -08005779 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005780 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005781 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005782 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005783 {
5784 .name = "force_empty",
5785 .trigger = mem_cgroup_force_empty_write,
5786 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005787 {
5788 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005789 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005790 .write_u64 = mem_cgroup_hierarchy_write,
5791 .read_u64 = mem_cgroup_hierarchy_read,
5792 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005793 {
5794 .name = "swappiness",
5795 .read_u64 = mem_cgroup_swappiness_read,
5796 .write_u64 = mem_cgroup_swappiness_write,
5797 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005798 {
5799 .name = "move_charge_at_immigrate",
5800 .read_u64 = mem_cgroup_move_charge_read,
5801 .write_u64 = mem_cgroup_move_charge_write,
5802 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005803 {
5804 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005805 .read_map = mem_cgroup_oom_control_read,
5806 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005807 .register_event = mem_cgroup_oom_register_event,
5808 .unregister_event = mem_cgroup_oom_unregister_event,
5809 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5810 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005811 {
5812 .name = "pressure_level",
5813 .register_event = vmpressure_register_event,
5814 .unregister_event = vmpressure_unregister_event,
5815 },
Ying Han406eb0c2011-05-26 16:25:37 -07005816#ifdef CONFIG_NUMA
5817 {
5818 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005819 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005820 },
5821#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005822#ifdef CONFIG_MEMCG_KMEM
5823 {
5824 .name = "kmem.limit_in_bytes",
5825 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5826 .write_string = mem_cgroup_write,
5827 .read = mem_cgroup_read,
5828 },
5829 {
5830 .name = "kmem.usage_in_bytes",
5831 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5832 .read = mem_cgroup_read,
5833 },
5834 {
5835 .name = "kmem.failcnt",
5836 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5837 .trigger = mem_cgroup_reset,
5838 .read = mem_cgroup_read,
5839 },
5840 {
5841 .name = "kmem.max_usage_in_bytes",
5842 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5843 .trigger = mem_cgroup_reset,
5844 .read = mem_cgroup_read,
5845 },
Glauber Costa749c5412012-12-18 14:23:01 -08005846#ifdef CONFIG_SLABINFO
5847 {
5848 .name = "kmem.slabinfo",
5849 .read_seq_string = mem_cgroup_slabinfo_read,
5850 },
5851#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005852#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005853 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005854};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005855
Michal Hocko2d110852013-02-22 16:34:43 -08005856#ifdef CONFIG_MEMCG_SWAP
5857static struct cftype memsw_cgroup_files[] = {
5858 {
5859 .name = "memsw.usage_in_bytes",
5860 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5861 .read = mem_cgroup_read,
5862 .register_event = mem_cgroup_usage_register_event,
5863 .unregister_event = mem_cgroup_usage_unregister_event,
5864 },
5865 {
5866 .name = "memsw.max_usage_in_bytes",
5867 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5868 .trigger = mem_cgroup_reset,
5869 .read = mem_cgroup_read,
5870 },
5871 {
5872 .name = "memsw.limit_in_bytes",
5873 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5874 .write_string = mem_cgroup_write,
5875 .read = mem_cgroup_read,
5876 },
5877 {
5878 .name = "memsw.failcnt",
5879 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5880 .trigger = mem_cgroup_reset,
5881 .read = mem_cgroup_read,
5882 },
5883 { }, /* terminate */
5884};
5885#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005886static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005887{
5888 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005889 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005890 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005891 /*
5892 * This routine is called against possible nodes.
5893 * But it's BUG to call kmalloc() against offline node.
5894 *
5895 * TODO: this routine can waste much memory for nodes which will
5896 * never be onlined. It's better to use memory hotplug callback
5897 * function.
5898 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005899 if (!node_state(node, N_NORMAL_MEMORY))
5900 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005901 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005902 if (!pn)
5903 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005904
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005905 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5906 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005907 lruvec_init(&mz->lruvec);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005908 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005909 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005910 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005911 return 0;
5912}
5913
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005914static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005915{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005916 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005917}
5918
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005919static struct mem_cgroup *mem_cgroup_alloc(void)
5920{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005921 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005922 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005923
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005924 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08005925 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005926 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005927 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005928 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005929
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005930 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005931 return NULL;
5932
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005933 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5934 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005935 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005936 spin_lock_init(&memcg->pcp_counter_lock);
5937 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005938
5939out_free:
5940 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005941 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005942 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005943 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005944 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005945}
5946
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005947/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005948 * At destroying mem_cgroup, references from swap_cgroup can remain.
5949 * (scanning all at force_empty is too costly...)
5950 *
5951 * Instead of clearing all references at force_empty, we remember
5952 * the number of reference from swap_cgroup and free mem_cgroup when
5953 * it goes down to 0.
5954 *
5955 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005956 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005957
5958static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005959{
Glauber Costac8b2a362012-12-18 14:22:13 -08005960 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005961 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07005962
Glauber Costac8b2a362012-12-18 14:22:13 -08005963 free_css_id(&mem_cgroup_subsys, &memcg->css);
5964
5965 for_each_node(node)
5966 free_mem_cgroup_per_zone_info(memcg, node);
5967
5968 free_percpu(memcg->stat);
5969
Glauber Costa3f134612012-05-29 15:07:11 -07005970 /*
5971 * We need to make sure that (at least for now), the jump label
5972 * destruction code runs outside of the cgroup lock. This is because
5973 * get_online_cpus(), which is called from the static_branch update,
5974 * can't be called inside the cgroup_lock. cpusets are the ones
5975 * enforcing this dependency, so if they ever change, we might as well.
5976 *
5977 * schedule_work() will guarantee this happens. Be careful if you need
5978 * to move this code around, and make sure it is outside
5979 * the cgroup_lock.
5980 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005981 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07005982 if (size < PAGE_SIZE)
5983 kfree(memcg);
5984 else
5985 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005986}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005987
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005988/*
5989 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5990 */
Glauber Costae1aab162011-12-11 21:47:03 +00005991struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005992{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005993 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005994 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005995 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005996}
Glauber Costae1aab162011-12-11 21:47:03 +00005997EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005998
Li Zefan0eb253e2009-01-15 13:51:25 -08005999static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04006000mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006001{
Glauber Costad142e3e2013-02-22 16:34:52 -08006002 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006003 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006004 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006005
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006006 memcg = mem_cgroup_alloc();
6007 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006008 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006009
Bob Liu3ed28fa2012-01-12 17:19:04 -08006010 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006011 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006012 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07006013
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006014 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04006015 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08006016 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08006017 res_counter_init(&memcg->res, NULL);
6018 res_counter_init(&memcg->memsw, NULL);
6019 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08006020 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08006021
Glauber Costad142e3e2013-02-22 16:34:52 -08006022 memcg->last_scanned_node = MAX_NUMNODES;
6023 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08006024 memcg->move_charge_at_immigrate = 0;
6025 mutex_init(&memcg->thresholds_lock);
6026 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07006027 vmpressure_init(&memcg->vmpressure);
Michal Hocko7d910c02013-09-12 15:13:28 -07006028 spin_lock_init(&memcg->soft_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08006029
6030 return &memcg->css;
6031
6032free_out:
6033 __mem_cgroup_free(memcg);
6034 return ERR_PTR(error);
6035}
6036
6037static int
Tejun Heoeb954192013-08-08 20:11:23 -04006038mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08006039{
Tejun Heoeb954192013-08-08 20:11:23 -04006040 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6041 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08006042 int error = 0;
6043
Tejun Heo63876982013-08-08 20:11:23 -04006044 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08006045 return 0;
6046
Glauber Costa09998212013-02-22 16:34:55 -08006047 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006048
6049 memcg->use_hierarchy = parent->use_hierarchy;
6050 memcg->oom_kill_disable = parent->oom_kill_disable;
6051 memcg->swappiness = mem_cgroup_swappiness(parent);
6052
6053 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006054 res_counter_init(&memcg->res, &parent->res);
6055 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006056 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08006057
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006058 /*
Li Zefan8d76a972013-07-08 16:00:36 -07006059 * No need to take a reference to the parent because cgroup
6060 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006061 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08006062 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006063 res_counter_init(&memcg->res, NULL);
6064 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006065 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006066 /*
6067 * Deeper hierachy with use_hierarchy == false doesn't make
6068 * much sense so let cgroup subsystem know about this
6069 * unfortunate state in our controller.
6070 */
Glauber Costad142e3e2013-02-22 16:34:52 -08006071 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006072 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08006073 }
Glauber Costacbe128e32012-04-09 19:36:34 -03006074
6075 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08006076 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006077 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006078}
6079
Michal Hocko5f578162013-04-29 15:07:17 -07006080/*
6081 * Announce all parents that a group from their hierarchy is gone.
6082 */
6083static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
6084{
6085 struct mem_cgroup *parent = memcg;
6086
6087 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07006088 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07006089
6090 /*
6091 * if the root memcg is not hierarchical we have to check it
6092 * explicitely.
6093 */
6094 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07006095 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07006096}
6097
Tejun Heoeb954192013-08-08 20:11:23 -04006098static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006099{
Tejun Heoeb954192013-08-08 20:11:23 -04006100 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07006101
Li Zefan10d5ebf2013-07-08 16:00:33 -07006102 kmem_cgroup_css_offline(memcg);
6103
Michal Hocko5f578162013-04-29 15:07:17 -07006104 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02006105 mem_cgroup_reparent_charges(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -07006106 if (memcg->soft_contributed) {
6107 while ((memcg = parent_mem_cgroup(memcg)))
6108 atomic_dec(&memcg->children_in_excess);
6109 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08006110 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07006111 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006112}
6113
Tejun Heoeb954192013-08-08 20:11:23 -04006114static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006115{
Tejun Heoeb954192013-08-08 20:11:23 -04006116 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08006117
Li Zefan10d5ebf2013-07-08 16:00:33 -07006118 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07006119 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006120}
6121
Daisuke Nishimura02491442010-03-10 15:22:17 -08006122#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006123/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006124#define PRECHARGE_COUNT_AT_ONCE 256
6125static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006126{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006127 int ret = 0;
6128 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006129 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006130
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006131 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006132 mc.precharge += count;
6133 /* we don't need css_get for root */
6134 return ret;
6135 }
6136 /* try to charge at once */
6137 if (count > 1) {
6138 struct res_counter *dummy;
6139 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006140 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006141 * by cgroup_lock_live_cgroup() that it is not removed and we
6142 * are still under the same cgroup_mutex. So we can postpone
6143 * css_get().
6144 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006145 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006146 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006147 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006148 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006149 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006150 goto one_by_one;
6151 }
6152 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006153 return ret;
6154 }
6155one_by_one:
6156 /* fall back to one by one charge */
6157 while (count--) {
6158 if (signal_pending(current)) {
6159 ret = -EINTR;
6160 break;
6161 }
6162 if (!batch_count--) {
6163 batch_count = PRECHARGE_COUNT_AT_ONCE;
6164 cond_resched();
6165 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006166 ret = __mem_cgroup_try_charge(NULL,
6167 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006168 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006169 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006170 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006171 mc.precharge++;
6172 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006173 return ret;
6174}
6175
6176/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006177 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006178 * @vma: the vma the pte to be checked belongs
6179 * @addr: the address corresponding to the pte to be checked
6180 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08006181 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006182 *
6183 * Returns
6184 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6185 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6186 * move charge. if @target is not NULL, the page is stored in target->page
6187 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006188 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6189 * target for charge migration. if @target is not NULL, the entry is stored
6190 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006191 *
6192 * Called with pte lock held.
6193 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006194union mc_target {
6195 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006196 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006197};
6198
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006199enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006200 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006201 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006202 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006203};
6204
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006205static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6206 unsigned long addr, pte_t ptent)
6207{
6208 struct page *page = vm_normal_page(vma, addr, ptent);
6209
6210 if (!page || !page_mapped(page))
6211 return NULL;
6212 if (PageAnon(page)) {
6213 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006214 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006215 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006216 } else if (!move_file())
6217 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006218 return NULL;
6219 if (!get_page_unless_zero(page))
6220 return NULL;
6221
6222 return page;
6223}
6224
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006225#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006226static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6227 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6228{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006229 struct page *page = NULL;
6230 swp_entry_t ent = pte_to_swp_entry(ptent);
6231
6232 if (!move_anon() || non_swap_entry(ent))
6233 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006234 /*
6235 * Because lookup_swap_cache() updates some statistics counter,
6236 * we call find_get_page() with swapper_space directly.
6237 */
Shaohua Li33806f02013-02-22 16:34:37 -08006238 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006239 if (do_swap_account)
6240 entry->val = ent.val;
6241
6242 return page;
6243}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006244#else
6245static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6246 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6247{
6248 return NULL;
6249}
6250#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006251
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006252static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6253 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6254{
6255 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006256 struct address_space *mapping;
6257 pgoff_t pgoff;
6258
6259 if (!vma->vm_file) /* anonymous vma */
6260 return NULL;
6261 if (!move_file())
6262 return NULL;
6263
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006264 mapping = vma->vm_file->f_mapping;
6265 if (pte_none(ptent))
6266 pgoff = linear_page_index(vma, addr);
6267 else /* pte_file(ptent) is true */
6268 pgoff = pte_to_pgoff(ptent);
6269
6270 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006271 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006272
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006273#ifdef CONFIG_SWAP
6274 /* shmem/tmpfs may report page out on swap: account for that too. */
6275 if (radix_tree_exceptional_entry(page)) {
6276 swp_entry_t swap = radix_to_swp_entry(page);
6277 if (do_swap_account)
6278 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006279 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006280 }
6281#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006282 return page;
6283}
6284
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006285static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006286 unsigned long addr, pte_t ptent, union mc_target *target)
6287{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006288 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006289 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006290 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006291 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006292
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006293 if (pte_present(ptent))
6294 page = mc_handle_present_pte(vma, addr, ptent);
6295 else if (is_swap_pte(ptent))
6296 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006297 else if (pte_none(ptent) || pte_file(ptent))
6298 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006299
6300 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006301 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006302 if (page) {
6303 pc = lookup_page_cgroup(page);
6304 /*
6305 * Do only loose check w/o page_cgroup lock.
6306 * mem_cgroup_move_account() checks the pc is valid or not under
6307 * the lock.
6308 */
6309 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6310 ret = MC_TARGET_PAGE;
6311 if (target)
6312 target->page = page;
6313 }
6314 if (!ret || !target)
6315 put_page(page);
6316 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006317 /* There is a swap entry and a page doesn't exist or isn't charged */
6318 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08006319 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006320 ret = MC_TARGET_SWAP;
6321 if (target)
6322 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006323 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006324 return ret;
6325}
6326
Naoya Horiguchi12724852012-03-21 16:34:28 -07006327#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6328/*
6329 * We don't consider swapping or file mapped pages because THP does not
6330 * support them for now.
6331 * Caller should make sure that pmd_trans_huge(pmd) is true.
6332 */
6333static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6334 unsigned long addr, pmd_t pmd, union mc_target *target)
6335{
6336 struct page *page = NULL;
6337 struct page_cgroup *pc;
6338 enum mc_target_type ret = MC_TARGET_NONE;
6339
6340 page = pmd_page(pmd);
6341 VM_BUG_ON(!page || !PageHead(page));
6342 if (!move_anon())
6343 return ret;
6344 pc = lookup_page_cgroup(page);
6345 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6346 ret = MC_TARGET_PAGE;
6347 if (target) {
6348 get_page(page);
6349 target->page = page;
6350 }
6351 }
6352 return ret;
6353}
6354#else
6355static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6356 unsigned long addr, pmd_t pmd, union mc_target *target)
6357{
6358 return MC_TARGET_NONE;
6359}
6360#endif
6361
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006362static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6363 unsigned long addr, unsigned long end,
6364 struct mm_walk *walk)
6365{
6366 struct vm_area_struct *vma = walk->private;
6367 pte_t *pte;
6368 spinlock_t *ptl;
6369
Naoya Horiguchi12724852012-03-21 16:34:28 -07006370 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6371 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6372 mc.precharge += HPAGE_PMD_NR;
6373 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006374 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006375 }
Dave Hansen03319322011-03-22 16:32:56 -07006376
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006377 if (pmd_trans_unstable(pmd))
6378 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006379 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6380 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006381 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006382 mc.precharge++; /* increment precharge temporarily */
6383 pte_unmap_unlock(pte - 1, ptl);
6384 cond_resched();
6385
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006386 return 0;
6387}
6388
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006389static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6390{
6391 unsigned long precharge;
6392 struct vm_area_struct *vma;
6393
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006394 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006395 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6396 struct mm_walk mem_cgroup_count_precharge_walk = {
6397 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6398 .mm = mm,
6399 .private = vma,
6400 };
6401 if (is_vm_hugetlb_page(vma))
6402 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006403 walk_page_range(vma->vm_start, vma->vm_end,
6404 &mem_cgroup_count_precharge_walk);
6405 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006406 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006407
6408 precharge = mc.precharge;
6409 mc.precharge = 0;
6410
6411 return precharge;
6412}
6413
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006414static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6415{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006416 unsigned long precharge = mem_cgroup_count_precharge(mm);
6417
6418 VM_BUG_ON(mc.moving_task);
6419 mc.moving_task = current;
6420 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006421}
6422
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006423/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6424static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006425{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006426 struct mem_cgroup *from = mc.from;
6427 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006428 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006429
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006430 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006431 if (mc.precharge) {
6432 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6433 mc.precharge = 0;
6434 }
6435 /*
6436 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6437 * we must uncharge here.
6438 */
6439 if (mc.moved_charge) {
6440 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6441 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006442 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006443 /* we must fixup refcnts and charges */
6444 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006445 /* uncharge swap account from the old cgroup */
6446 if (!mem_cgroup_is_root(mc.from))
6447 res_counter_uncharge(&mc.from->memsw,
6448 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006449
6450 for (i = 0; i < mc.moved_swap; i++)
6451 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006452
6453 if (!mem_cgroup_is_root(mc.to)) {
6454 /*
6455 * we charged both to->res and to->memsw, so we should
6456 * uncharge to->res.
6457 */
6458 res_counter_uncharge(&mc.to->res,
6459 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006460 }
Li Zefan40503772013-07-08 16:00:34 -07006461 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006462 mc.moved_swap = 0;
6463 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006464 memcg_oom_recover(from);
6465 memcg_oom_recover(to);
6466 wake_up_all(&mc.waitq);
6467}
6468
6469static void mem_cgroup_clear_mc(void)
6470{
6471 struct mem_cgroup *from = mc.from;
6472
6473 /*
6474 * we must clear moving_task before waking up waiters at the end of
6475 * task migration.
6476 */
6477 mc.moving_task = NULL;
6478 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006479 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006480 mc.from = NULL;
6481 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006482 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006483 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006484}
6485
Tejun Heoeb954192013-08-08 20:11:23 -04006486static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006487 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006488{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006489 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006490 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006491 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006492 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006493
Glauber Costaee5e8472013-02-22 16:34:50 -08006494 /*
6495 * We are now commited to this value whatever it is. Changes in this
6496 * tunable will only affect upcoming migrations, not the current one.
6497 * So we need to save it, and keep it going.
6498 */
6499 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6500 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006501 struct mm_struct *mm;
6502 struct mem_cgroup *from = mem_cgroup_from_task(p);
6503
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006504 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006505
6506 mm = get_task_mm(p);
6507 if (!mm)
6508 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006509 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006510 if (mm->owner == p) {
6511 VM_BUG_ON(mc.from);
6512 VM_BUG_ON(mc.to);
6513 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006514 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006515 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006516 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006517 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006518 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006519 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006520 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006521 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006522 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006523
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006524 ret = mem_cgroup_precharge_mc(mm);
6525 if (ret)
6526 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006527 }
6528 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006529 }
6530 return ret;
6531}
6532
Tejun Heoeb954192013-08-08 20:11:23 -04006533static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006534 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006535{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006536 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006537}
6538
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006539static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6540 unsigned long addr, unsigned long end,
6541 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006542{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006543 int ret = 0;
6544 struct vm_area_struct *vma = walk->private;
6545 pte_t *pte;
6546 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006547 enum mc_target_type target_type;
6548 union mc_target target;
6549 struct page *page;
6550 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006551
Naoya Horiguchi12724852012-03-21 16:34:28 -07006552 /*
6553 * We don't take compound_lock() here but no race with splitting thp
6554 * happens because:
6555 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6556 * under splitting, which means there's no concurrent thp split,
6557 * - if another thread runs into split_huge_page() just after we
6558 * entered this if-block, the thread must wait for page table lock
6559 * to be unlocked in __split_huge_page_splitting(), where the main
6560 * part of thp split is not executed yet.
6561 */
6562 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006563 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006564 spin_unlock(&vma->vm_mm->page_table_lock);
6565 return 0;
6566 }
6567 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6568 if (target_type == MC_TARGET_PAGE) {
6569 page = target.page;
6570 if (!isolate_lru_page(page)) {
6571 pc = lookup_page_cgroup(page);
6572 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006573 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006574 mc.precharge -= HPAGE_PMD_NR;
6575 mc.moved_charge += HPAGE_PMD_NR;
6576 }
6577 putback_lru_page(page);
6578 }
6579 put_page(page);
6580 }
6581 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006582 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006583 }
6584
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006585 if (pmd_trans_unstable(pmd))
6586 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006587retry:
6588 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6589 for (; addr != end; addr += PAGE_SIZE) {
6590 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006591 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006592
6593 if (!mc.precharge)
6594 break;
6595
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006596 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006597 case MC_TARGET_PAGE:
6598 page = target.page;
6599 if (isolate_lru_page(page))
6600 goto put;
6601 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006602 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006603 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006604 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006605 /* we uncharge from mc.from later. */
6606 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006607 }
6608 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006609put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006610 put_page(page);
6611 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006612 case MC_TARGET_SWAP:
6613 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006614 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006615 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006616 /* we fixup refcnts and charges later. */
6617 mc.moved_swap++;
6618 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006619 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006620 default:
6621 break;
6622 }
6623 }
6624 pte_unmap_unlock(pte - 1, ptl);
6625 cond_resched();
6626
6627 if (addr != end) {
6628 /*
6629 * We have consumed all precharges we got in can_attach().
6630 * We try charge one by one, but don't do any additional
6631 * charges to mc.to if we have failed in charge once in attach()
6632 * phase.
6633 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006634 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006635 if (!ret)
6636 goto retry;
6637 }
6638
6639 return ret;
6640}
6641
6642static void mem_cgroup_move_charge(struct mm_struct *mm)
6643{
6644 struct vm_area_struct *vma;
6645
6646 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006647retry:
6648 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6649 /*
6650 * Someone who are holding the mmap_sem might be waiting in
6651 * waitq. So we cancel all extra charges, wake up all waiters,
6652 * and retry. Because we cancel precharges, we might not be able
6653 * to move enough charges, but moving charge is a best-effort
6654 * feature anyway, so it wouldn't be a big problem.
6655 */
6656 __mem_cgroup_clear_mc();
6657 cond_resched();
6658 goto retry;
6659 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006660 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6661 int ret;
6662 struct mm_walk mem_cgroup_move_charge_walk = {
6663 .pmd_entry = mem_cgroup_move_charge_pte_range,
6664 .mm = mm,
6665 .private = vma,
6666 };
6667 if (is_vm_hugetlb_page(vma))
6668 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006669 ret = walk_page_range(vma->vm_start, vma->vm_end,
6670 &mem_cgroup_move_charge_walk);
6671 if (ret)
6672 /*
6673 * means we have consumed all precharges and failed in
6674 * doing additional charge. Just abandon here.
6675 */
6676 break;
6677 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006678 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006679}
6680
Tejun Heoeb954192013-08-08 20:11:23 -04006681static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006682 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006683{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006684 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006685 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006686
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006687 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006688 if (mc.to)
6689 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006690 mmput(mm);
6691 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006692 if (mc.to)
6693 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006694}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006695#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006696static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006697 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006698{
6699 return 0;
6700}
Tejun Heoeb954192013-08-08 20:11:23 -04006701static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006702 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006703{
6704}
Tejun Heoeb954192013-08-08 20:11:23 -04006705static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006706 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006707{
6708}
6709#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006710
Tejun Heof00baae2013-04-15 13:41:15 -07006711/*
6712 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6713 * to verify sane_behavior flag on each mount attempt.
6714 */
Tejun Heoeb954192013-08-08 20:11:23 -04006715static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006716{
6717 /*
6718 * use_hierarchy is forced with sane_behavior. cgroup core
6719 * guarantees that @root doesn't have any children, so turning it
6720 * on for the root memcg is enough.
6721 */
Tejun Heoeb954192013-08-08 20:11:23 -04006722 if (cgroup_sane_behavior(root_css->cgroup))
6723 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006724}
6725
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006726struct cgroup_subsys mem_cgroup_subsys = {
6727 .name = "memory",
6728 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006729 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006730 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006731 .css_offline = mem_cgroup_css_offline,
6732 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006733 .can_attach = mem_cgroup_can_attach,
6734 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006735 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006736 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006737 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006738 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006739 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006740};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006741
Andrew Mortonc255a452012-07-31 16:43:02 -07006742#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006743static int __init enable_swap_account(char *s)
6744{
Michal Hockoa2c89902011-05-24 17:12:50 -07006745 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006746 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006747 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006748 really_do_swap_account = 0;
6749 return 1;
6750}
Michal Hockoa2c89902011-05-24 17:12:50 -07006751__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006752
Michal Hocko2d110852013-02-22 16:34:43 -08006753static void __init memsw_file_init(void)
6754{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006755 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006756}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006757
6758static void __init enable_swap_cgroup(void)
6759{
6760 if (!mem_cgroup_disabled() && really_do_swap_account) {
6761 do_swap_account = 1;
6762 memsw_file_init();
6763 }
6764}
6765
Michal Hocko2d110852013-02-22 16:34:43 -08006766#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006767static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006768{
6769}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006770#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006771
6772/*
Michal Hocko10813122013-02-22 16:35:41 -08006773 * subsys_initcall() for memory controller.
6774 *
6775 * Some parts like hotcpu_notifier() have to be initialized from this context
6776 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6777 * everything that doesn't depend on a specific mem_cgroup structure should
6778 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006779 */
6780static int __init mem_cgroup_init(void)
6781{
6782 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006783 enable_swap_cgroup();
Michal Hockoe4777492013-02-22 16:35:40 -08006784 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006785 return 0;
6786}
6787subsys_initcall(mem_cgroup_init);