blob: 5cf7726764cc02f3e4619fb997488d262f087776 [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 Weinerf53d7ce2012-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 Weinerf53d7ce2012-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 Weinerf53d7ce2012-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 Weinerf53d7ce2012-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 Weinerf53d7ce2012-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 Weinerf53d7ce2012-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 Weinerf53d7ce2012-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 Weinerf53d7ce2012-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 Weinerf53d7ce2012-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{
Andrew Morton31200552013-09-24 15:27:35 -07001875 struct mem_cgroup *parent = memcg;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001876
Michal Hocko3b387222013-09-12 15:13:21 -07001877 if (res_counter_soft_limit_excess(&memcg->res))
Michal Hockode577802013-09-12 15:13:26 -07001878 return VISIT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001879
Michal Hocko3b387222013-09-12 15:13:21 -07001880 /*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001881 * If any parent up to the root in the hierarchy is over its soft limit
1882 * then we have to obey and reclaim from this group as well.
Michal Hocko3b387222013-09-12 15:13:21 -07001883 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001884 while ((parent = parent_mem_cgroup(parent))) {
Michal Hocko3b387222013-09-12 15:13:21 -07001885 if (res_counter_soft_limit_excess(&parent->res))
Michal Hockode577802013-09-12 15:13:26 -07001886 return VISIT;
Michal Hockoa5b7c872013-09-12 15:13:25 -07001887 if (parent == root)
1888 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001889 }
Michal Hocko3b387222013-09-12 15:13:21 -07001890
Michal Hocko7d910c02013-09-12 15:13:28 -07001891 if (!atomic_read(&memcg->children_in_excess))
1892 return SKIP_TREE;
Michal Hockode577802013-09-12 15:13:26 -07001893 return SKIP;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001894}
1895
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001896static DEFINE_SPINLOCK(memcg_oom_lock);
1897
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001898/*
1899 * Check OOM-Killer is already running under our hierarchy.
1900 * If someone is running, return false.
1901 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001902static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001903{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001904 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001905
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001906 spin_lock(&memcg_oom_lock);
1907
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001908 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001909 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001910 /*
1911 * this subtree of our hierarchy is already locked
1912 * so we cannot give a lock.
1913 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001914 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001915 mem_cgroup_iter_break(memcg, iter);
1916 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001917 } else
1918 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001919 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001920
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001921 if (failed) {
1922 /*
1923 * OK, we failed to lock the whole subtree so we have
1924 * to clean up what we set up to the failing subtree
1925 */
1926 for_each_mem_cgroup_tree(iter, memcg) {
1927 if (iter == failed) {
1928 mem_cgroup_iter_break(memcg, iter);
1929 break;
1930 }
1931 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001932 }
Michal Hocko79dfdac2011-07-26 16:08:23 -07001933 }
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001934
1935 spin_unlock(&memcg_oom_lock);
1936
1937 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001938}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001939
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001940static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001941{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001942 struct mem_cgroup *iter;
1943
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001944 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001945 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001946 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001947 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001948}
1949
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001950static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001951{
1952 struct mem_cgroup *iter;
1953
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001954 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001955 atomic_inc(&iter->under_oom);
1956}
1957
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001958static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001959{
1960 struct mem_cgroup *iter;
1961
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001962 /*
1963 * When a new child is created while the hierarchy is under oom,
1964 * mem_cgroup_oom_lock() may not be called. We have to use
1965 * atomic_add_unless() here.
1966 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001967 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001968 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001969}
1970
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001971static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1972
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001973struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001974 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001975 wait_queue_t wait;
1976};
1977
1978static int memcg_oom_wake_function(wait_queue_t *wait,
1979 unsigned mode, int sync, void *arg)
1980{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001981 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1982 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001983 struct oom_wait_info *oom_wait_info;
1984
1985 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001986 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001987
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001988 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001989 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001990 * Then we can use css_is_ancestor without taking care of RCU.
1991 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001992 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
1993 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001994 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001995 return autoremove_wake_function(wait, mode, sync, arg);
1996}
1997
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001998static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001999{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002000 atomic_inc(&memcg->oom_wakeups);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002001 /* for filtering, pass "memcg" as argument. */
2002 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002003}
2004
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002005static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002006{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002007 if (memcg && atomic_read(&memcg->under_oom))
2008 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002009}
2010
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002011/*
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002012 * try to call OOM killer
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002013 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002014static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002015{
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002016 bool locked;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002017 int wakeups;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002018
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002019 if (!current->memcg_oom.may_oom)
2020 return;
2021
2022 current->memcg_oom.in_memcg_oom = 1;
Michal Hocko79dfdac2011-07-26 16:08:23 -07002023
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002024 /*
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002025 * As with any blocking lock, a contender needs to start
2026 * listening for wakeups before attempting the trylock,
2027 * otherwise it can miss the wakeup from the unlock and sleep
2028 * indefinitely. This is just open-coded because our locking
2029 * is so particular to memcg hierarchies.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002030 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002031 wakeups = atomic_read(&memcg->oom_wakeups);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002032 mem_cgroup_mark_under_oom(memcg);
2033
2034 locked = mem_cgroup_oom_trylock(memcg);
2035
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002036 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002037 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002038
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002039 if (locked && !memcg->oom_kill_disable) {
2040 mem_cgroup_unmark_under_oom(memcg);
David Rientjese845e192012-03-21 16:34:10 -07002041 mem_cgroup_out_of_memory(memcg, mask, order);
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002042 mem_cgroup_oom_unlock(memcg);
2043 /*
2044 * There is no guarantee that an OOM-lock contender
2045 * sees the wakeups triggered by the OOM kill
2046 * uncharges. Wake any sleepers explicitely.
2047 */
2048 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002049 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002050 /*
2051 * A system call can just return -ENOMEM, but if this
2052 * is a page fault and somebody else is handling the
2053 * OOM already, we need to sleep on the OOM waitqueue
2054 * for this memcg until the situation is resolved.
2055 * Which can take some time because it might be
2056 * handled by a userspace task.
2057 *
2058 * However, this is the charge context, which means
2059 * that we may sit on a large call stack and hold
2060 * various filesystem locks, the mmap_sem etc. and we
2061 * don't want the OOM handler to deadlock on them
2062 * while we sit here and wait. Store the current OOM
2063 * context in the task_struct, then return -ENOMEM.
2064 * At the end of the page fault handler, with the
2065 * stack unwound, pagefault_out_of_memory() will check
2066 * back with us by calling
2067 * mem_cgroup_oom_synchronize(), possibly putting the
2068 * task to sleep.
2069 */
2070 current->memcg_oom.oom_locked = locked;
2071 current->memcg_oom.wakeups = wakeups;
2072 css_get(&memcg->css);
2073 current->memcg_oom.wait_on_memcg = memcg;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002074 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002075}
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002076
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002077/**
2078 * mem_cgroup_oom_synchronize - complete memcg OOM handling
2079 *
2080 * This has to be called at the end of a page fault if the the memcg
2081 * OOM handler was enabled and the fault is returning %VM_FAULT_OOM.
2082 *
2083 * Memcg supports userspace OOM handling, so failed allocations must
2084 * sleep on a waitqueue until the userspace task resolves the
2085 * situation. Sleeping directly in the charge context with all kinds
2086 * of locks held is not a good idea, instead we remember an OOM state
2087 * in the task and mem_cgroup_oom_synchronize() has to be called at
2088 * the end of the page fault to put the task to sleep and clean up the
2089 * OOM state.
2090 *
2091 * Returns %true if an ongoing memcg OOM situation was detected and
2092 * finalized, %false otherwise.
2093 */
2094bool mem_cgroup_oom_synchronize(void)
2095{
2096 struct oom_wait_info owait;
2097 struct mem_cgroup *memcg;
2098
2099 /* OOM is global, do not handle */
2100 if (!current->memcg_oom.in_memcg_oom)
2101 return false;
2102
2103 /*
2104 * We invoked the OOM killer but there is a chance that a kill
2105 * did not free up any charges. Everybody else might already
2106 * be sleeping, so restart the fault and keep the rampage
2107 * going until some charges are released.
2108 */
2109 memcg = current->memcg_oom.wait_on_memcg;
2110 if (!memcg)
2111 goto out;
2112
2113 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
2114 goto out_memcg;
2115
2116 owait.memcg = memcg;
2117 owait.wait.flags = 0;
2118 owait.wait.func = memcg_oom_wake_function;
2119 owait.wait.private = current;
2120 INIT_LIST_HEAD(&owait.wait.task_list);
2121
2122 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
2123 /* Only sleep if we didn't miss any wakeups since OOM */
2124 if (atomic_read(&memcg->oom_wakeups) == current->memcg_oom.wakeups)
2125 schedule();
2126 finish_wait(&memcg_oom_waitq, &owait.wait);
2127out_memcg:
2128 mem_cgroup_unmark_under_oom(memcg);
2129 if (current->memcg_oom.oom_locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002130 mem_cgroup_oom_unlock(memcg);
2131 /*
2132 * There is no guarantee that an OOM-lock contender
2133 * sees the wakeups triggered by the OOM kill
2134 * uncharges. Wake any sleepers explicitely.
2135 */
2136 memcg_oom_recover(memcg);
2137 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002138 css_put(&memcg->css);
2139 current->memcg_oom.wait_on_memcg = NULL;
2140out:
2141 current->memcg_oom.in_memcg_oom = 0;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002142 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002143}
2144
Balbir Singhd69b0422009-06-17 16:26:34 -07002145/*
2146 * Currently used to update mapped file statistics, but the routine can be
2147 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002148 *
2149 * Notes: Race condition
2150 *
2151 * We usually use page_cgroup_lock() for accessing page_cgroup member but
2152 * it tends to be costly. But considering some conditions, we doesn't need
2153 * to do so _always_.
2154 *
2155 * Considering "charge", lock_page_cgroup() is not required because all
2156 * file-stat operations happen after a page is attached to radix-tree. There
2157 * are no race with "charge".
2158 *
2159 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2160 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2161 * if there are race with "uncharge". Statistics itself is properly handled
2162 * by flags.
2163 *
2164 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002165 * small, we check mm->moving_account and detect there are possibility of race
2166 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002167 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002168
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002169void __mem_cgroup_begin_update_page_stat(struct page *page,
2170 bool *locked, unsigned long *flags)
2171{
2172 struct mem_cgroup *memcg;
2173 struct page_cgroup *pc;
2174
2175 pc = lookup_page_cgroup(page);
2176again:
2177 memcg = pc->mem_cgroup;
2178 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2179 return;
2180 /*
2181 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002182 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002183 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002184 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002185 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002186 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002187 return;
2188
2189 move_lock_mem_cgroup(memcg, flags);
2190 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2191 move_unlock_mem_cgroup(memcg, flags);
2192 goto again;
2193 }
2194 *locked = true;
2195}
2196
2197void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2198{
2199 struct page_cgroup *pc = lookup_page_cgroup(page);
2200
2201 /*
2202 * It's guaranteed that pc->mem_cgroup never changes while
2203 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002204 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002205 */
2206 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2207}
2208
Greg Thelen2a7106f2011-01-13 15:47:37 -08002209void mem_cgroup_update_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -07002210 enum mem_cgroup_stat_index idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002211{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002212 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002213 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002214 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002215
Johannes Weinercfa44942012-01-12 17:18:38 -08002216 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002217 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002218
Sha Zhengju658b72c2013-09-12 15:13:52 -07002219 VM_BUG_ON(!rcu_read_lock_held());
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002220 memcg = pc->mem_cgroup;
2221 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002222 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002223
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002224 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002225}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002226
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002227/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002228 * size of first charge trial. "32" comes from vmscan.c's magic value.
2229 * TODO: maybe necessary to use big numbers in big irons.
2230 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002231#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002232struct memcg_stock_pcp {
2233 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002234 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002235 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002236 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002237#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002238};
2239static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002240static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002241
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002242/**
2243 * consume_stock: Try to consume stocked charge on this cpu.
2244 * @memcg: memcg to consume from.
2245 * @nr_pages: how many pages to charge.
2246 *
2247 * The charges will only happen if @memcg matches the current cpu's memcg
2248 * stock, and at least @nr_pages are available in that stock. Failure to
2249 * service an allocation will refill the stock.
2250 *
2251 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002252 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002253static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002254{
2255 struct memcg_stock_pcp *stock;
2256 bool ret = true;
2257
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002258 if (nr_pages > CHARGE_BATCH)
2259 return false;
2260
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002261 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002262 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2263 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002264 else /* need to call res_counter_charge */
2265 ret = false;
2266 put_cpu_var(memcg_stock);
2267 return ret;
2268}
2269
2270/*
2271 * Returns stocks cached in percpu to res_counter and reset cached information.
2272 */
2273static void drain_stock(struct memcg_stock_pcp *stock)
2274{
2275 struct mem_cgroup *old = stock->cached;
2276
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002277 if (stock->nr_pages) {
2278 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2279
2280 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002281 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002282 res_counter_uncharge(&old->memsw, bytes);
2283 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002284 }
2285 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002286}
2287
2288/*
2289 * This must be called under preempt disabled or must be called by
2290 * a thread which is pinned to local cpu.
2291 */
2292static void drain_local_stock(struct work_struct *dummy)
2293{
2294 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2295 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002296 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002297}
2298
Michal Hockoe4777492013-02-22 16:35:40 -08002299static void __init memcg_stock_init(void)
2300{
2301 int cpu;
2302
2303 for_each_possible_cpu(cpu) {
2304 struct memcg_stock_pcp *stock =
2305 &per_cpu(memcg_stock, cpu);
2306 INIT_WORK(&stock->work, drain_local_stock);
2307 }
2308}
2309
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002310/*
2311 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002312 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002313 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002314static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002315{
2316 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2317
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002318 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002319 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002320 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002321 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002322 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002323 put_cpu_var(memcg_stock);
2324}
2325
2326/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002327 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002328 * of the hierarchy under it. sync flag says whether we should block
2329 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002330 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002331static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002332{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002333 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002334
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002335 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002336 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002337 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002338 for_each_online_cpu(cpu) {
2339 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002340 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002341
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002342 memcg = stock->cached;
2343 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002344 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002345 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002346 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002347 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2348 if (cpu == curcpu)
2349 drain_local_stock(&stock->work);
2350 else
2351 schedule_work_on(cpu, &stock->work);
2352 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002353 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002354 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002355
2356 if (!sync)
2357 goto out;
2358
2359 for_each_online_cpu(cpu) {
2360 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002361 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002362 flush_work(&stock->work);
2363 }
2364out:
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002365 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002366}
2367
2368/*
2369 * Tries to drain stocked charges in other cpus. This function is asynchronous
2370 * and just put a work per cpu for draining localy on each cpu. Caller can
2371 * expects some charges will be back to res_counter later but cannot wait for
2372 * it.
2373 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002374static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002375{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002376 /*
2377 * If someone calls draining, avoid adding more kworker runs.
2378 */
2379 if (!mutex_trylock(&percpu_charge_mutex))
2380 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002381 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002382 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002383}
2384
2385/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002386static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002387{
2388 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002389 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002390 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002391 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002392}
2393
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002394/*
2395 * This function drains percpu counter value from DEAD cpu and
2396 * move it to local cpu. Note that this function can be preempted.
2397 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002398static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002399{
2400 int i;
2401
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002402 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002403 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002404 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002405
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002406 per_cpu(memcg->stat->count[i], cpu) = 0;
2407 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002408 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002409 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002410 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002411
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002412 per_cpu(memcg->stat->events[i], cpu) = 0;
2413 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002414 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002415 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002416}
2417
Paul Gortmaker0db06282013-06-19 14:53:51 -04002418static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002419 unsigned long action,
2420 void *hcpu)
2421{
2422 int cpu = (unsigned long)hcpu;
2423 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002424 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002425
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002426 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002427 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002428
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002429 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002430 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002431
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002432 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002433 mem_cgroup_drain_pcp_counter(iter, cpu);
2434
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002435 stock = &per_cpu(memcg_stock, cpu);
2436 drain_stock(stock);
2437 return NOTIFY_OK;
2438}
2439
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002440
2441/* See __mem_cgroup_try_charge() for details */
2442enum {
2443 CHARGE_OK, /* success */
2444 CHARGE_RETRY, /* need to retry but retry is not bad */
2445 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2446 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002447};
2448
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002449static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002450 unsigned int nr_pages, unsigned int min_pages,
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002451 bool invoke_oom)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002452{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002453 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002454 struct mem_cgroup *mem_over_limit;
2455 struct res_counter *fail_res;
2456 unsigned long flags = 0;
2457 int ret;
2458
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002459 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002460
2461 if (likely(!ret)) {
2462 if (!do_swap_account)
2463 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002464 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002465 if (likely(!ret))
2466 return CHARGE_OK;
2467
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002468 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002469 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2470 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2471 } else
2472 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002473 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002474 * Never reclaim on behalf of optional batching, retry with a
2475 * single page instead.
2476 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002477 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002478 return CHARGE_RETRY;
2479
2480 if (!(gfp_mask & __GFP_WAIT))
2481 return CHARGE_WOULDBLOCK;
2482
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002483 if (gfp_mask & __GFP_NORETRY)
2484 return CHARGE_NOMEM;
2485
Johannes Weiner56600482012-01-12 17:17:59 -08002486 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002487 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002488 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002489 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002490 * Even though the limit is exceeded at this point, reclaim
2491 * may have been able to free some pages. Retry the charge
2492 * before killing the task.
2493 *
2494 * Only for regular pages, though: huge pages are rather
2495 * unlikely to succeed so close to the limit, and we fall back
2496 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002497 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002498 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002499 return CHARGE_RETRY;
2500
2501 /*
2502 * At task move, charge accounts can be doubly counted. So, it's
2503 * better to wait until the end of task_move if something is going on.
2504 */
2505 if (mem_cgroup_wait_acct_move(mem_over_limit))
2506 return CHARGE_RETRY;
2507
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002508 if (invoke_oom)
2509 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(csize));
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002510
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002511 return CHARGE_NOMEM;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002512}
2513
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002514/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002515 * __mem_cgroup_try_charge() does
2516 * 1. detect memcg to be charged against from passed *mm and *ptr,
2517 * 2. update res_counter
2518 * 3. call memory reclaim if necessary.
2519 *
2520 * In some special case, if the task is fatal, fatal_signal_pending() or
2521 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2522 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2523 * as possible without any hazards. 2: all pages should have a valid
2524 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2525 * pointer, that is treated as a charge to root_mem_cgroup.
2526 *
2527 * So __mem_cgroup_try_charge() will return
2528 * 0 ... on success, filling *ptr with a valid memcg pointer.
2529 * -ENOMEM ... charge failure because of resource limits.
2530 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2531 *
2532 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2533 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002534 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002535static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002536 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002537 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002538 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002539 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002540{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002541 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002542 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002543 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002544 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002545
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002546 /*
2547 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2548 * in system level. So, allow to go ahead dying process in addition to
2549 * MEMDIE process.
2550 */
2551 if (unlikely(test_thread_flag(TIF_MEMDIE)
2552 || fatal_signal_pending(current)))
2553 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002554
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002555 /*
Hugh Dickins3be912772008-02-07 00:14:19 -08002556 * We always charge the cgroup the mm_struct belongs to.
2557 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002558 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002559 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002560 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002561 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002562 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002563again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002564 if (*ptr) { /* css should be a valid one */
2565 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002566 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002567 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002568 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002569 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002570 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002571 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002572 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002573
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002574 rcu_read_lock();
2575 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002576 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002577 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002578 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002579 * race with swapoff. Then, we have small risk of mis-accouning.
2580 * But such kind of mis-account by race always happens because
2581 * we don't have cgroup_mutex(). It's overkill and we allo that
2582 * small race, here.
2583 * (*) swapoff at el will charge against mm-struct not against
2584 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002585 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002586 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002587 if (!memcg)
2588 memcg = root_mem_cgroup;
2589 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002590 rcu_read_unlock();
2591 goto done;
2592 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002593 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002594 /*
2595 * It seems dagerous to access memcg without css_get().
2596 * But considering how consume_stok works, it's not
2597 * necessary. If consume_stock success, some charges
2598 * from this memcg are cached on this cpu. So, we
2599 * don't need to call css_get()/css_tryget() before
2600 * calling consume_stock().
2601 */
2602 rcu_read_unlock();
2603 goto done;
2604 }
2605 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002606 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002607 rcu_read_unlock();
2608 goto again;
2609 }
2610 rcu_read_unlock();
2611 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002612
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002613 do {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002614 bool invoke_oom = oom && !nr_oom_retries;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002615
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002616 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002617 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002618 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002619 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002620 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002621
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002622 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch,
2623 nr_pages, invoke_oom);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002624 switch (ret) {
2625 case CHARGE_OK:
2626 break;
2627 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002628 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002629 css_put(&memcg->css);
2630 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002631 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002632 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002633 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002634 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002635 case CHARGE_NOMEM: /* OOM routine works */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002636 if (!oom || invoke_oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002637 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002638 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002639 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002640 nr_oom_retries--;
2641 break;
Balbir Singh66e17072008-02-07 00:13:56 -08002642 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002643 } while (ret != CHARGE_OK);
2644
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002645 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002646 refill_stock(memcg, batch - nr_pages);
2647 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002648done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002649 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002650 return 0;
2651nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002652 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002653 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002654bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002655 *ptr = root_mem_cgroup;
2656 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002657}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002658
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002659/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002660 * Somemtimes we have to undo a charge we got by try_charge().
2661 * This function is for that and do uncharge, put css's refcnt.
2662 * gotten by try_charge().
2663 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002664static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002665 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002666{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002667 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002668 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002669
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002670 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002671 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002672 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002673 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002674}
2675
2676/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002677 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2678 * This is useful when moving usage to parent cgroup.
2679 */
2680static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2681 unsigned int nr_pages)
2682{
2683 unsigned long bytes = nr_pages * PAGE_SIZE;
2684
2685 if (mem_cgroup_is_root(memcg))
2686 return;
2687
2688 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2689 if (do_swap_account)
2690 res_counter_uncharge_until(&memcg->memsw,
2691 memcg->memsw.parent, bytes);
2692}
2693
2694/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002695 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002696 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2697 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2698 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002699 */
2700static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2701{
2702 struct cgroup_subsys_state *css;
2703
2704 /* ID 0 is unused ID */
2705 if (!id)
2706 return NULL;
2707 css = css_lookup(&mem_cgroup_subsys, id);
2708 if (!css)
2709 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002710 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002711}
2712
Wu Fengguange42d9d52009-12-16 12:19:59 +01002713struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002714{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002715 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002716 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002717 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002718 swp_entry_t ent;
2719
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002720 VM_BUG_ON(!PageLocked(page));
2721
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002722 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f632009-04-30 15:08:11 -07002723 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002724 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002725 memcg = pc->mem_cgroup;
2726 if (memcg && !css_tryget(&memcg->css))
2727 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002728 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002729 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002730 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002731 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002732 memcg = mem_cgroup_lookup(id);
2733 if (memcg && !css_tryget(&memcg->css))
2734 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002735 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002736 }
Daisuke Nishimurac0bd3f632009-04-30 15:08:11 -07002737 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002738 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002739}
2740
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002741static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002742 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002743 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002744 enum charge_type ctype,
2745 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002746{
Johannes Weinerce587e62012-04-24 20:22:33 +02002747 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002748 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002749 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002750 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002751 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002752
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002753 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002754 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002755 /*
2756 * we don't need page_cgroup_lock about tail pages, becase they are not
2757 * accessed by any other context at this point.
2758 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002759
2760 /*
2761 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2762 * may already be on some other mem_cgroup's LRU. Take care of it.
2763 */
2764 if (lrucare) {
2765 zone = page_zone(page);
2766 spin_lock_irq(&zone->lru_lock);
2767 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002768 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002769 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002770 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002771 was_on_lru = true;
2772 }
2773 }
2774
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002775 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002776 /*
2777 * We access a page_cgroup asynchronously without lock_page_cgroup().
2778 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2779 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2780 * before USED bit, we need memory barrier here.
2781 * See mem_cgroup_add_lru_list(), etc.
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002782 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002783 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002784 SetPageCgroupUsed(pc);
Hugh Dickins3be912772008-02-07 00:14:19 -08002785
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002786 if (lrucare) {
2787 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002788 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002789 VM_BUG_ON(PageLRU(page));
2790 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002791 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002792 }
2793 spin_unlock_irq(&zone->lru_lock);
2794 }
2795
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002796 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002797 anon = true;
2798 else
2799 anon = false;
2800
David Rientjesb070e652013-05-07 16:18:09 -07002801 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002802 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002803
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002804 /*
Michal Hockoe8831102013-09-12 15:13:23 -07002805 * "charge_statistics" updated event counter.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002806 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002807 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002808}
2809
Glauber Costa7cf27982012-12-18 14:22:55 -08002810static DEFINE_MUTEX(set_limit_mutex);
2811
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002812#ifdef CONFIG_MEMCG_KMEM
2813static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2814{
2815 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2816 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2817}
2818
Glauber Costa1f458cb2012-12-18 14:22:50 -08002819/*
2820 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2821 * in the memcg_cache_params struct.
2822 */
2823static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2824{
2825 struct kmem_cache *cachep;
2826
2827 VM_BUG_ON(p->is_root_cache);
2828 cachep = p->root_cache;
2829 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2830}
2831
Glauber Costa749c5412012-12-18 14:23:01 -08002832#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002833static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2834 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002835{
Tejun Heo182446d2013-08-08 20:11:24 -04002836 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002837 struct memcg_cache_params *params;
2838
2839 if (!memcg_can_account_kmem(memcg))
2840 return -EIO;
2841
2842 print_slabinfo_header(m);
2843
2844 mutex_lock(&memcg->slab_caches_mutex);
2845 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2846 cache_show(memcg_params_to_cache(params), m);
2847 mutex_unlock(&memcg->slab_caches_mutex);
2848
2849 return 0;
2850}
2851#endif
2852
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002853static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2854{
2855 struct res_counter *fail_res;
2856 struct mem_cgroup *_memcg;
2857 int ret = 0;
2858 bool may_oom;
2859
2860 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2861 if (ret)
2862 return ret;
2863
2864 /*
2865 * Conditions under which we can wait for the oom_killer. Those are
2866 * the same conditions tested by the core page allocator
2867 */
2868 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2869
2870 _memcg = memcg;
2871 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2872 &_memcg, may_oom);
2873
2874 if (ret == -EINTR) {
2875 /*
2876 * __mem_cgroup_try_charge() chosed to bypass to root due to
2877 * OOM kill or fatal signal. Since our only options are to
2878 * either fail the allocation or charge it to this cgroup, do
2879 * it as a temporary condition. But we can't fail. From a
2880 * kmem/slab perspective, the cache has already been selected,
2881 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2882 * our minds.
2883 *
2884 * This condition will only trigger if the task entered
2885 * memcg_charge_kmem in a sane state, but was OOM-killed during
2886 * __mem_cgroup_try_charge() above. Tasks that were already
2887 * dying when the allocation triggers should have been already
2888 * directed to the root cgroup in memcontrol.h
2889 */
2890 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2891 if (do_swap_account)
2892 res_counter_charge_nofail(&memcg->memsw, size,
2893 &fail_res);
2894 ret = 0;
2895 } else if (ret)
2896 res_counter_uncharge(&memcg->kmem, size);
2897
2898 return ret;
2899}
2900
2901static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2902{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002903 res_counter_uncharge(&memcg->res, size);
2904 if (do_swap_account)
2905 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002906
2907 /* Not down to 0 */
2908 if (res_counter_uncharge(&memcg->kmem, size))
2909 return;
2910
Li Zefan10d5ebf2013-07-08 16:00:33 -07002911 /*
2912 * Releases a reference taken in kmem_cgroup_css_offline in case
2913 * this last uncharge is racing with the offlining code or it is
2914 * outliving the memcg existence.
2915 *
2916 * The memory barrier imposed by test&clear is paired with the
2917 * explicit one in memcg_kmem_mark_dead().
2918 */
Glauber Costa7de37682012-12-18 14:22:07 -08002919 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002920 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002921}
2922
Glauber Costa2633d7a2012-12-18 14:22:34 -08002923void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2924{
2925 if (!memcg)
2926 return;
2927
2928 mutex_lock(&memcg->slab_caches_mutex);
2929 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2930 mutex_unlock(&memcg->slab_caches_mutex);
2931}
2932
2933/*
2934 * helper for acessing a memcg's index. It will be used as an index in the
2935 * child cache array in kmem_cache, and also to derive its name. This function
2936 * will return -1 when this is not a kmem-limited memcg.
2937 */
2938int memcg_cache_id(struct mem_cgroup *memcg)
2939{
2940 return memcg ? memcg->kmemcg_id : -1;
2941}
2942
Glauber Costa55007d82012-12-18 14:22:38 -08002943/*
2944 * This ends up being protected by the set_limit mutex, during normal
2945 * operation, because that is its main call site.
2946 *
2947 * But when we create a new cache, we can call this as well if its parent
2948 * is kmem-limited. That will have to hold set_limit_mutex as well.
2949 */
2950int memcg_update_cache_sizes(struct mem_cgroup *memcg)
2951{
2952 int num, ret;
2953
2954 num = ida_simple_get(&kmem_limited_groups,
2955 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2956 if (num < 0)
2957 return num;
2958 /*
2959 * After this point, kmem_accounted (that we test atomically in
2960 * the beginning of this conditional), is no longer 0. This
2961 * guarantees only one process will set the following boolean
2962 * to true. We don't need test_and_set because we're protected
2963 * by the set_limit_mutex anyway.
2964 */
2965 memcg_kmem_set_activated(memcg);
2966
2967 ret = memcg_update_all_caches(num+1);
2968 if (ret) {
2969 ida_simple_remove(&kmem_limited_groups, num);
2970 memcg_kmem_clear_activated(memcg);
2971 return ret;
2972 }
2973
2974 memcg->kmemcg_id = num;
2975 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
2976 mutex_init(&memcg->slab_caches_mutex);
2977 return 0;
2978}
2979
2980static size_t memcg_caches_array_size(int num_groups)
2981{
2982 ssize_t size;
2983 if (num_groups <= 0)
2984 return 0;
2985
2986 size = 2 * num_groups;
2987 if (size < MEMCG_CACHES_MIN_SIZE)
2988 size = MEMCG_CACHES_MIN_SIZE;
2989 else if (size > MEMCG_CACHES_MAX_SIZE)
2990 size = MEMCG_CACHES_MAX_SIZE;
2991
2992 return size;
2993}
2994
2995/*
2996 * We should update the current array size iff all caches updates succeed. This
2997 * can only be done from the slab side. The slab mutex needs to be held when
2998 * calling this.
2999 */
3000void memcg_update_array_size(int num)
3001{
3002 if (num > memcg_limited_groups_array_size)
3003 memcg_limited_groups_array_size = memcg_caches_array_size(num);
3004}
3005
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08003006static void kmem_cache_destroy_work_func(struct work_struct *w);
3007
Glauber Costa55007d82012-12-18 14:22:38 -08003008int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
3009{
3010 struct memcg_cache_params *cur_params = s->memcg_params;
3011
3012 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
3013
3014 if (num_groups > memcg_limited_groups_array_size) {
3015 int i;
3016 ssize_t size = memcg_caches_array_size(num_groups);
3017
3018 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003019 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003020
3021 s->memcg_params = kzalloc(size, GFP_KERNEL);
3022 if (!s->memcg_params) {
3023 s->memcg_params = cur_params;
3024 return -ENOMEM;
3025 }
3026
3027 s->memcg_params->is_root_cache = true;
3028
3029 /*
3030 * There is the chance it will be bigger than
3031 * memcg_limited_groups_array_size, if we failed an allocation
3032 * in a cache, in which case all caches updated before it, will
3033 * have a bigger array.
3034 *
3035 * But if that is the case, the data after
3036 * memcg_limited_groups_array_size is certainly unused
3037 */
3038 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3039 if (!cur_params->memcg_caches[i])
3040 continue;
3041 s->memcg_params->memcg_caches[i] =
3042 cur_params->memcg_caches[i];
3043 }
3044
3045 /*
3046 * Ideally, we would wait until all caches succeed, and only
3047 * then free the old one. But this is not worth the extra
3048 * pointer per-cache we'd have to have for this.
3049 *
3050 * It is not a big deal if some caches are left with a size
3051 * bigger than the others. And all updates will reset this
3052 * anyway.
3053 */
3054 kfree(cur_params);
3055 }
3056 return 0;
3057}
3058
Glauber Costa943a4512012-12-18 14:23:03 -08003059int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3060 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08003061{
Andrey Vagin90c7a792013-09-11 14:22:18 -07003062 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003063
3064 if (!memcg_kmem_enabled())
3065 return 0;
3066
Andrey Vagin90c7a792013-09-11 14:22:18 -07003067 if (!memcg) {
3068 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003069 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003070 } else
3071 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08003072
Glauber Costa2633d7a2012-12-18 14:22:34 -08003073 s->memcg_params = kzalloc(size, GFP_KERNEL);
3074 if (!s->memcg_params)
3075 return -ENOMEM;
3076
Glauber Costa943a4512012-12-18 14:23:03 -08003077 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08003078 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08003079 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07003080 INIT_WORK(&s->memcg_params->destroy,
3081 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08003082 } else
3083 s->memcg_params->is_root_cache = true;
3084
Glauber Costa2633d7a2012-12-18 14:22:34 -08003085 return 0;
3086}
3087
3088void memcg_release_cache(struct kmem_cache *s)
3089{
Glauber Costad7f25f82012-12-18 14:22:40 -08003090 struct kmem_cache *root;
3091 struct mem_cgroup *memcg;
3092 int id;
3093
3094 /*
3095 * This happens, for instance, when a root cache goes away before we
3096 * add any memcg.
3097 */
3098 if (!s->memcg_params)
3099 return;
3100
3101 if (s->memcg_params->is_root_cache)
3102 goto out;
3103
3104 memcg = s->memcg_params->memcg;
3105 id = memcg_cache_id(memcg);
3106
3107 root = s->memcg_params->root_cache;
3108 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08003109
3110 mutex_lock(&memcg->slab_caches_mutex);
3111 list_del(&s->memcg_params->list);
3112 mutex_unlock(&memcg->slab_caches_mutex);
3113
Li Zefan20f05312013-07-08 16:00:31 -07003114 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003115out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08003116 kfree(s->memcg_params);
3117}
3118
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003119/*
3120 * During the creation a new cache, we need to disable our accounting mechanism
3121 * altogether. This is true even if we are not creating, but rather just
3122 * enqueing new caches to be created.
3123 *
3124 * This is because that process will trigger allocations; some visible, like
3125 * explicit kmallocs to auxiliary data structures, name strings and internal
3126 * cache structures; some well concealed, like INIT_WORK() that can allocate
3127 * objects during debug.
3128 *
3129 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3130 * to it. This may not be a bounded recursion: since the first cache creation
3131 * failed to complete (waiting on the allocation), we'll just try to create the
3132 * cache again, failing at the same point.
3133 *
3134 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3135 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3136 * inside the following two functions.
3137 */
3138static inline void memcg_stop_kmem_account(void)
3139{
3140 VM_BUG_ON(!current->mm);
3141 current->memcg_kmem_skip_account++;
3142}
3143
3144static inline void memcg_resume_kmem_account(void)
3145{
3146 VM_BUG_ON(!current->mm);
3147 current->memcg_kmem_skip_account--;
3148}
3149
Glauber Costa1f458cb2012-12-18 14:22:50 -08003150static void kmem_cache_destroy_work_func(struct work_struct *w)
3151{
3152 struct kmem_cache *cachep;
3153 struct memcg_cache_params *p;
3154
3155 p = container_of(w, struct memcg_cache_params, destroy);
3156
3157 cachep = memcg_params_to_cache(p);
3158
Glauber Costa22933152012-12-18 14:22:59 -08003159 /*
3160 * If we get down to 0 after shrink, we could delete right away.
3161 * However, memcg_release_pages() already puts us back in the workqueue
3162 * in that case. If we proceed deleting, we'll get a dangling
3163 * reference, and removing the object from the workqueue in that case
3164 * is unnecessary complication. We are not a fast path.
3165 *
3166 * Note that this case is fundamentally different from racing with
3167 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3168 * kmem_cache_shrink, not only we would be reinserting a dead cache
3169 * into the queue, but doing so from inside the worker racing to
3170 * destroy it.
3171 *
3172 * So if we aren't down to zero, we'll just schedule a worker and try
3173 * again
3174 */
3175 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3176 kmem_cache_shrink(cachep);
3177 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3178 return;
3179 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003180 kmem_cache_destroy(cachep);
3181}
3182
3183void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3184{
3185 if (!cachep->memcg_params->dead)
3186 return;
3187
3188 /*
Glauber Costa22933152012-12-18 14:22:59 -08003189 * There are many ways in which we can get here.
3190 *
3191 * We can get to a memory-pressure situation while the delayed work is
3192 * still pending to run. The vmscan shrinkers can then release all
3193 * cache memory and get us to destruction. If this is the case, we'll
3194 * be executed twice, which is a bug (the second time will execute over
3195 * bogus data). In this case, cancelling the work should be fine.
3196 *
3197 * But we can also get here from the worker itself, if
3198 * kmem_cache_shrink is enough to shake all the remaining objects and
3199 * get the page count to 0. In this case, we'll deadlock if we try to
3200 * cancel the work (the worker runs with an internal lock held, which
3201 * is the same lock we would hold for cancel_work_sync().)
3202 *
3203 * Since we can't possibly know who got us here, just refrain from
3204 * running if there is already work pending
3205 */
3206 if (work_pending(&cachep->memcg_params->destroy))
3207 return;
3208 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003209 * We have to defer the actual destroying to a workqueue, because
3210 * we might currently be in a context that cannot sleep.
3211 */
3212 schedule_work(&cachep->memcg_params->destroy);
3213}
3214
Glauber Costad7f25f82012-12-18 14:22:40 -08003215/*
3216 * This lock protects updaters, not readers. We want readers to be as fast as
3217 * they can, and they will either see NULL or a valid cache value. Our model
3218 * allow them to see NULL, in which case the root memcg will be selected.
3219 *
3220 * We need this lock because multiple allocations to the same cache from a non
3221 * will span more than one worker. Only one of them can create the cache.
3222 */
3223static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003224
3225/*
3226 * Called with memcg_cache_mutex held
3227 */
3228static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3229 struct kmem_cache *s)
3230{
3231 struct kmem_cache *new;
3232 static char *tmp_name = NULL;
3233
3234 lockdep_assert_held(&memcg_cache_mutex);
3235
3236 /*
3237 * kmem_cache_create_memcg duplicates the given name and
3238 * cgroup_name for this name requires RCU context.
3239 * This static temporary buffer is used to prevent from
3240 * pointless shortliving allocation.
3241 */
3242 if (!tmp_name) {
3243 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3244 if (!tmp_name)
3245 return NULL;
3246 }
3247
3248 rcu_read_lock();
3249 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3250 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3251 rcu_read_unlock();
3252
3253 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3254 (s->flags & ~SLAB_PANIC), s->ctor, s);
3255
3256 if (new)
3257 new->allocflags |= __GFP_KMEMCG;
3258
3259 return new;
3260}
3261
Glauber Costad7f25f82012-12-18 14:22:40 -08003262static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3263 struct kmem_cache *cachep)
3264{
3265 struct kmem_cache *new_cachep;
3266 int idx;
3267
3268 BUG_ON(!memcg_can_account_kmem(memcg));
3269
3270 idx = memcg_cache_id(memcg);
3271
3272 mutex_lock(&memcg_cache_mutex);
3273 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003274 if (new_cachep) {
3275 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003276 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003277 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003278
3279 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003280 if (new_cachep == NULL) {
3281 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003282 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003283 goto out;
3284 }
3285
Glauber Costa1f458cb2012-12-18 14:22:50 -08003286 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003287
3288 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3289 /*
3290 * the readers won't lock, make sure everybody sees the updated value,
3291 * so they won't put stuff in the queue again for no reason
3292 */
3293 wmb();
3294out:
3295 mutex_unlock(&memcg_cache_mutex);
3296 return new_cachep;
3297}
3298
Glauber Costa7cf27982012-12-18 14:22:55 -08003299void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3300{
3301 struct kmem_cache *c;
3302 int i;
3303
3304 if (!s->memcg_params)
3305 return;
3306 if (!s->memcg_params->is_root_cache)
3307 return;
3308
3309 /*
3310 * If the cache is being destroyed, we trust that there is no one else
3311 * requesting objects from it. Even if there are, the sanity checks in
3312 * kmem_cache_destroy should caught this ill-case.
3313 *
3314 * Still, we don't want anyone else freeing memcg_caches under our
3315 * noses, which can happen if a new memcg comes to life. As usual,
3316 * we'll take the set_limit_mutex to protect ourselves against this.
3317 */
3318 mutex_lock(&set_limit_mutex);
3319 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3320 c = s->memcg_params->memcg_caches[i];
3321 if (!c)
3322 continue;
3323
3324 /*
3325 * We will now manually delete the caches, so to avoid races
3326 * we need to cancel all pending destruction workers and
3327 * proceed with destruction ourselves.
3328 *
3329 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3330 * and that could spawn the workers again: it is likely that
3331 * the cache still have active pages until this very moment.
3332 * This would lead us back to mem_cgroup_destroy_cache.
3333 *
3334 * But that will not execute at all if the "dead" flag is not
3335 * set, so flip it down to guarantee we are in control.
3336 */
3337 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003338 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003339 kmem_cache_destroy(c);
3340 }
3341 mutex_unlock(&set_limit_mutex);
3342}
3343
Glauber Costad7f25f82012-12-18 14:22:40 -08003344struct create_work {
3345 struct mem_cgroup *memcg;
3346 struct kmem_cache *cachep;
3347 struct work_struct work;
3348};
3349
Glauber Costa1f458cb2012-12-18 14:22:50 -08003350static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3351{
3352 struct kmem_cache *cachep;
3353 struct memcg_cache_params *params;
3354
3355 if (!memcg_kmem_is_active(memcg))
3356 return;
3357
3358 mutex_lock(&memcg->slab_caches_mutex);
3359 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3360 cachep = memcg_params_to_cache(params);
3361 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003362 schedule_work(&cachep->memcg_params->destroy);
3363 }
3364 mutex_unlock(&memcg->slab_caches_mutex);
3365}
3366
Glauber Costad7f25f82012-12-18 14:22:40 -08003367static void memcg_create_cache_work_func(struct work_struct *w)
3368{
3369 struct create_work *cw;
3370
3371 cw = container_of(w, struct create_work, work);
3372 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003373 kfree(cw);
3374}
3375
3376/*
3377 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003378 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003379static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3380 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003381{
3382 struct create_work *cw;
3383
3384 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003385 if (cw == NULL) {
3386 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003387 return;
3388 }
3389
3390 cw->memcg = memcg;
3391 cw->cachep = cachep;
3392
3393 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3394 schedule_work(&cw->work);
3395}
3396
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003397static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3398 struct kmem_cache *cachep)
3399{
3400 /*
3401 * We need to stop accounting when we kmalloc, because if the
3402 * corresponding kmalloc cache is not yet created, the first allocation
3403 * in __memcg_create_cache_enqueue will recurse.
3404 *
3405 * However, it is better to enclose the whole function. Depending on
3406 * the debugging options enabled, INIT_WORK(), for instance, can
3407 * trigger an allocation. This too, will make us recurse. Because at
3408 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3409 * the safest choice is to do it like this, wrapping the whole function.
3410 */
3411 memcg_stop_kmem_account();
3412 __memcg_create_cache_enqueue(memcg, cachep);
3413 memcg_resume_kmem_account();
3414}
Glauber Costad7f25f82012-12-18 14:22:40 -08003415/*
3416 * Return the kmem_cache we're supposed to use for a slab allocation.
3417 * We try to use the current memcg's version of the cache.
3418 *
3419 * If the cache does not exist yet, if we are the first user of it,
3420 * we either create it immediately, if possible, or create it asynchronously
3421 * in a workqueue.
3422 * In the latter case, we will let the current allocation go through with
3423 * the original cache.
3424 *
3425 * Can't be called in interrupt context or from kernel threads.
3426 * This function needs to be called with rcu_read_lock() held.
3427 */
3428struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3429 gfp_t gfp)
3430{
3431 struct mem_cgroup *memcg;
3432 int idx;
3433
3434 VM_BUG_ON(!cachep->memcg_params);
3435 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3436
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003437 if (!current->mm || current->memcg_kmem_skip_account)
3438 return cachep;
3439
Glauber Costad7f25f82012-12-18 14:22:40 -08003440 rcu_read_lock();
3441 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003442
3443 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003444 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003445
3446 idx = memcg_cache_id(memcg);
3447
3448 /*
3449 * barrier to mare sure we're always seeing the up to date value. The
3450 * code updating memcg_caches will issue a write barrier to match this.
3451 */
3452 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003453 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3454 cachep = cachep->memcg_params->memcg_caches[idx];
3455 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003456 }
3457
Li Zefanca0dde92013-04-29 15:08:57 -07003458 /* The corresponding put will be done in the workqueue. */
3459 if (!css_tryget(&memcg->css))
3460 goto out;
3461 rcu_read_unlock();
3462
3463 /*
3464 * If we are in a safe context (can wait, and not in interrupt
3465 * context), we could be be predictable and return right away.
3466 * This would guarantee that the allocation being performed
3467 * already belongs in the new cache.
3468 *
3469 * However, there are some clashes that can arrive from locking.
3470 * For instance, because we acquire the slab_mutex while doing
3471 * kmem_cache_dup, this means no further allocation could happen
3472 * with the slab_mutex held.
3473 *
3474 * Also, because cache creation issue get_online_cpus(), this
3475 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3476 * that ends up reversed during cpu hotplug. (cpuset allocates
3477 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3478 * better to defer everything.
3479 */
3480 memcg_create_cache_enqueue(memcg, cachep);
3481 return cachep;
3482out:
3483 rcu_read_unlock();
3484 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003485}
3486EXPORT_SYMBOL(__memcg_kmem_get_cache);
3487
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003488/*
3489 * We need to verify if the allocation against current->mm->owner's memcg is
3490 * possible for the given order. But the page is not allocated yet, so we'll
3491 * need a further commit step to do the final arrangements.
3492 *
3493 * It is possible for the task to switch cgroups in this mean time, so at
3494 * commit time, we can't rely on task conversion any longer. We'll then use
3495 * the handle argument to return to the caller which cgroup we should commit
3496 * against. We could also return the memcg directly and avoid the pointer
3497 * passing, but a boolean return value gives better semantics considering
3498 * the compiled-out case as well.
3499 *
3500 * Returning true means the allocation is possible.
3501 */
3502bool
3503__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3504{
3505 struct mem_cgroup *memcg;
3506 int ret;
3507
3508 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003509
3510 /*
3511 * Disabling accounting is only relevant for some specific memcg
3512 * internal allocations. Therefore we would initially not have such
3513 * check here, since direct calls to the page allocator that are marked
3514 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3515 * concerned with cache allocations, and by having this test at
3516 * memcg_kmem_get_cache, we are already able to relay the allocation to
3517 * the root cache and bypass the memcg cache altogether.
3518 *
3519 * There is one exception, though: the SLUB allocator does not create
3520 * large order caches, but rather service large kmallocs directly from
3521 * the page allocator. Therefore, the following sequence when backed by
3522 * the SLUB allocator:
3523 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003524 * memcg_stop_kmem_account();
3525 * kmalloc(<large_number>)
3526 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003527 *
3528 * would effectively ignore the fact that we should skip accounting,
3529 * since it will drive us directly to this function without passing
3530 * through the cache selector memcg_kmem_get_cache. Such large
3531 * allocations are extremely rare but can happen, for instance, for the
3532 * cache arrays. We bring this test here.
3533 */
3534 if (!current->mm || current->memcg_kmem_skip_account)
3535 return true;
3536
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003537 memcg = try_get_mem_cgroup_from_mm(current->mm);
3538
3539 /*
3540 * very rare case described in mem_cgroup_from_task. Unfortunately there
3541 * isn't much we can do without complicating this too much, and it would
3542 * be gfp-dependent anyway. Just let it go
3543 */
3544 if (unlikely(!memcg))
3545 return true;
3546
3547 if (!memcg_can_account_kmem(memcg)) {
3548 css_put(&memcg->css);
3549 return true;
3550 }
3551
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003552 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3553 if (!ret)
3554 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003555
3556 css_put(&memcg->css);
3557 return (ret == 0);
3558}
3559
3560void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3561 int order)
3562{
3563 struct page_cgroup *pc;
3564
3565 VM_BUG_ON(mem_cgroup_is_root(memcg));
3566
3567 /* The page allocation failed. Revert */
3568 if (!page) {
3569 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003570 return;
3571 }
3572
3573 pc = lookup_page_cgroup(page);
3574 lock_page_cgroup(pc);
3575 pc->mem_cgroup = memcg;
3576 SetPageCgroupUsed(pc);
3577 unlock_page_cgroup(pc);
3578}
3579
3580void __memcg_kmem_uncharge_pages(struct page *page, int order)
3581{
3582 struct mem_cgroup *memcg = NULL;
3583 struct page_cgroup *pc;
3584
3585
3586 pc = lookup_page_cgroup(page);
3587 /*
3588 * Fast unlocked return. Theoretically might have changed, have to
3589 * check again after locking.
3590 */
3591 if (!PageCgroupUsed(pc))
3592 return;
3593
3594 lock_page_cgroup(pc);
3595 if (PageCgroupUsed(pc)) {
3596 memcg = pc->mem_cgroup;
3597 ClearPageCgroupUsed(pc);
3598 }
3599 unlock_page_cgroup(pc);
3600
3601 /*
3602 * We trust that only if there is a memcg associated with the page, it
3603 * is a valid allocation
3604 */
3605 if (!memcg)
3606 return;
3607
3608 VM_BUG_ON(mem_cgroup_is_root(memcg));
3609 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003610}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003611#else
3612static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3613{
3614}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003615#endif /* CONFIG_MEMCG_KMEM */
3616
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003617#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3618
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003619#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003620/*
3621 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003622 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3623 * charge/uncharge will be never happen and move_account() is done under
3624 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003625 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003626void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003627{
3628 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003629 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003630 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003631 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003632
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003633 if (mem_cgroup_disabled())
3634 return;
David Rientjesb070e652013-05-07 16:18:09 -07003635
3636 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003637 for (i = 1; i < HPAGE_PMD_NR; i++) {
3638 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003639 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003640 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003641 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3642 }
David Rientjesb070e652013-05-07 16:18:09 -07003643 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3644 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003645}
Hugh Dickins12d27102012-01-12 17:19:52 -08003646#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003647
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003648static inline
3649void mem_cgroup_move_account_page_stat(struct mem_cgroup *from,
3650 struct mem_cgroup *to,
3651 unsigned int nr_pages,
3652 enum mem_cgroup_stat_index idx)
3653{
3654 /* Update stat data for mem_cgroup */
3655 preempt_disable();
3656 WARN_ON_ONCE(from->stat->count[idx] < nr_pages);
3657 __this_cpu_add(from->stat->count[idx], -nr_pages);
3658 __this_cpu_add(to->stat->count[idx], nr_pages);
3659 preempt_enable();
3660}
3661
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003662/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003663 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003664 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003665 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003666 * @pc: page_cgroup of the page.
3667 * @from: mem_cgroup which the page is moved from.
3668 * @to: mem_cgroup which the page is moved to. @from != @to.
3669 *
3670 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003671 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003672 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003673 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003674 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3675 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003676 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003677static int mem_cgroup_move_account(struct page *page,
3678 unsigned int nr_pages,
3679 struct page_cgroup *pc,
3680 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003681 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003682{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003683 unsigned long flags;
3684 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003685 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003686
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003687 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003688 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003689 /*
3690 * The page is isolated from LRU. So, collapse function
3691 * will not handle this page. But page splitting can happen.
3692 * Do this check under compound_page_lock(). The caller should
3693 * hold it.
3694 */
3695 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003696 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003697 goto out;
3698
3699 lock_page_cgroup(pc);
3700
3701 ret = -EINVAL;
3702 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3703 goto unlock;
3704
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003705 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003706
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003707 if (!anon && page_mapped(page))
3708 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3709 MEM_CGROUP_STAT_FILE_MAPPED);
3710
3711 if (PageWriteback(page))
3712 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3713 MEM_CGROUP_STAT_WRITEBACK);
3714
David Rientjesb070e652013-05-07 16:18:09 -07003715 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003716
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003717 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003718 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003719 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003720 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003721 ret = 0;
3722unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003723 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003724 /*
3725 * check events
3726 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003727 memcg_check_events(to, page);
3728 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003729out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003730 return ret;
3731}
3732
Michal Hocko2ef37d32012-10-26 13:37:30 +02003733/**
3734 * mem_cgroup_move_parent - moves page to the parent group
3735 * @page: the page to move
3736 * @pc: page_cgroup of the page
3737 * @child: page's cgroup
3738 *
3739 * move charges to its parent or the root cgroup if the group has no
3740 * parent (aka use_hierarchy==0).
3741 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3742 * mem_cgroup_move_account fails) the failure is always temporary and
3743 * it signals a race with a page removal/uncharge or migration. In the
3744 * first case the page is on the way out and it will vanish from the LRU
3745 * on the next attempt and the call should be retried later.
3746 * Isolation from the LRU fails only if page has been isolated from
3747 * the LRU since we looked at it and that usually means either global
3748 * reclaim or migration going on. The page will either get back to the
3749 * LRU or vanish.
3750 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3751 * (!PageCgroupUsed) or moved to a different group. The page will
3752 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003753 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003754static int mem_cgroup_move_parent(struct page *page,
3755 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003756 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003757{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003758 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003759 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003760 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003761 int ret;
3762
Michal Hockod8423012012-10-26 13:37:29 +02003763 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003764
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003765 ret = -EBUSY;
3766 if (!get_page_unless_zero(page))
3767 goto out;
3768 if (isolate_lru_page(page))
3769 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003770
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003771 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003772
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003773 parent = parent_mem_cgroup(child);
3774 /*
3775 * If no parent, move charges to root cgroup.
3776 */
3777 if (!parent)
3778 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003779
Michal Hocko2ef37d32012-10-26 13:37:30 +02003780 if (nr_pages > 1) {
3781 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003782 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003783 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003784
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003785 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003786 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003787 if (!ret)
3788 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003789
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003790 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003791 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003792 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003793put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003794 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003795out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003796 return ret;
3797}
3798
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003799/*
3800 * Charge the memory controller for page usage.
3801 * Return
3802 * 0 if the charge was successful
3803 * < 0 if the cgroup is over its limit
3804 */
3805static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003806 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003807{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003808 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003809 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003810 bool oom = true;
3811 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003812
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003813 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003814 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003815 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003816 /*
3817 * Never OOM-kill a process for a huge page. The
3818 * fault handler will fall back to regular pages.
3819 */
3820 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003821 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003822
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003823 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003824 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003825 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003826 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003827 return 0;
3828}
3829
3830int mem_cgroup_newpage_charge(struct page *page,
3831 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003832{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003833 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003834 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003835 VM_BUG_ON(page_mapped(page));
3836 VM_BUG_ON(page->mapping && !PageAnon(page));
3837 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003838 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003839 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003840}
3841
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003842/*
3843 * While swap-in, try_charge -> commit or cancel, the page is locked.
3844 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003845 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003846 * "commit()" or removed by "cancel()"
3847 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003848static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3849 struct page *page,
3850 gfp_t mask,
3851 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003852{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003853 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003854 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003855 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003856
Johannes Weiner90deb782012-07-31 16:45:47 -07003857 pc = lookup_page_cgroup(page);
3858 /*
3859 * Every swap fault against a single page tries to charge the
3860 * page, bail as early as possible. shmem_unuse() encounters
3861 * already charged pages, too. The USED bit is protected by
3862 * the page lock, which serializes swap cache removal, which
3863 * in turn serializes uncharging.
3864 */
3865 if (PageCgroupUsed(pc))
3866 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003867 if (!do_swap_account)
3868 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003869 memcg = try_get_mem_cgroup_from_page(page);
3870 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003871 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003872 *memcgp = memcg;
3873 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003874 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003875 if (ret == -EINTR)
3876 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003877 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003878charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003879 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3880 if (ret == -EINTR)
3881 ret = 0;
3882 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003883}
3884
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003885int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3886 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3887{
3888 *memcgp = NULL;
3889 if (mem_cgroup_disabled())
3890 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07003891 /*
3892 * A racing thread's fault, or swapoff, may have already
3893 * updated the pte, and even removed page from swap cache: in
3894 * those cases unuse_pte()'s pte_same() test will fail; but
3895 * there's also a KSM case which does need to charge the page.
3896 */
3897 if (!PageSwapCache(page)) {
3898 int ret;
3899
3900 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3901 if (ret == -EINTR)
3902 ret = 0;
3903 return ret;
3904 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003905 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3906}
3907
Johannes Weiner827a03d2012-07-31 16:45:36 -07003908void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3909{
3910 if (mem_cgroup_disabled())
3911 return;
3912 if (!memcg)
3913 return;
3914 __mem_cgroup_cancel_charge(memcg, 1);
3915}
3916
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003917static void
Johannes Weiner72835c82012-01-12 17:18:32 -08003918__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003919 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003920{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003921 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003922 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08003923 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003924 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07003925
Johannes Weinerce587e62012-04-24 20:22:33 +02003926 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003927 /*
3928 * Now swap is on-memory. This means this page may be
3929 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003930 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3931 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3932 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003933 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003934 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003935 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07003936 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003937 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003938}
3939
Johannes Weiner72835c82012-01-12 17:18:32 -08003940void mem_cgroup_commit_charge_swapin(struct page *page,
3941 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003942{
Johannes Weiner72835c82012-01-12 17:18:32 -08003943 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003944 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c72009-04-02 16:57:48 -07003945}
3946
Johannes Weiner827a03d2012-07-31 16:45:36 -07003947int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3948 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003949{
Johannes Weiner827a03d2012-07-31 16:45:36 -07003950 struct mem_cgroup *memcg = NULL;
3951 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3952 int ret;
3953
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003954 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07003955 return 0;
3956 if (PageCompound(page))
3957 return 0;
3958
Johannes Weiner827a03d2012-07-31 16:45:36 -07003959 if (!PageSwapCache(page))
3960 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3961 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003962 ret = __mem_cgroup_try_charge_swapin(mm, page,
3963 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07003964 if (!ret)
3965 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3966 }
3967 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003968}
3969
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003970static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003971 unsigned int nr_pages,
3972 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003973{
3974 struct memcg_batch_info *batch = NULL;
3975 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003976
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003977 /* If swapout, usage of swap doesn't decrease */
3978 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3979 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003980
3981 batch = &current->memcg_batch;
3982 /*
3983 * In usual, we do css_get() when we remember memcg pointer.
3984 * But in this case, we keep res->usage until end of a series of
3985 * uncharges. Then, it's ok to ignore memcg's refcnt.
3986 */
3987 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003988 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003989 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003990 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003991 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003992 * the same cgroup and we have chance to coalesce uncharges.
3993 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
3994 * because we want to do uncharge as soon as possible.
3995 */
3996
3997 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
3998 goto direct_uncharge;
3999
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004000 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08004001 goto direct_uncharge;
4002
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004003 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004004 * In typical case, batch->memcg == mem. This means we can
4005 * merge a series of uncharges to an uncharge of res_counter.
4006 * If not, we uncharge res_counter ony by one.
4007 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004008 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004009 goto direct_uncharge;
4010 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004011 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004012 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004013 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004014 return;
4015direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004016 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004017 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004018 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
4019 if (unlikely(batch->memcg != memcg))
4020 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004021}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004022
Balbir Singh8697d332008-02-07 00:13:59 -08004023/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004024 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004025 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004026static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07004027__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
4028 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004029{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004030 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004031 unsigned int nr_pages = 1;
4032 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004033 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004034
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004035 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004036 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07004037
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004038 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004039 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004040 VM_BUG_ON(!PageTransHuge(page));
4041 }
Balbir Singh8697d332008-02-07 00:13:59 -08004042 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08004043 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08004044 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004045 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004046 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004047 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004048
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004049 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004050
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004051 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004052
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004053 if (!PageCgroupUsed(pc))
4054 goto unlock_out;
4055
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004056 anon = PageAnon(page);
4057
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004058 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004059 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07004060 /*
4061 * Generally PageAnon tells if it's the anon statistics to be
4062 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4063 * used before page reached the stage of being marked PageAnon.
4064 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004065 anon = true;
4066 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004067 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004068 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07004069 if (page_mapped(page))
4070 goto unlock_out;
4071 /*
4072 * Pages under migration may not be uncharged. But
4073 * end_migration() /must/ be the one uncharging the
4074 * unused post-migration page and so it has to call
4075 * here with the migration bit still set. See the
4076 * res_counter handling below.
4077 */
4078 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004079 goto unlock_out;
4080 break;
4081 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4082 if (!PageAnon(page)) { /* Shared memory */
4083 if (page->mapping && !page_is_file_cache(page))
4084 goto unlock_out;
4085 } else if (page_mapped(page)) /* Anon */
4086 goto unlock_out;
4087 break;
4088 default:
4089 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004090 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004091
David Rientjesb070e652013-05-07 16:18:09 -07004092 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004093
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004094 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08004095 /*
4096 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4097 * freed from LRU. This is safe because uncharged page is expected not
4098 * to be reused (freed soon). Exception is SwapCache, it's handled by
4099 * special functions.
4100 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004101
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004102 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004103 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004104 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07004105 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004106 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004107 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004108 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004109 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07004110 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004111 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004112 /*
4113 * Migration does not charge the res_counter for the
4114 * replacement page, so leave it alone when phasing out the
4115 * page that is unused after the migration.
4116 */
4117 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004118 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004119
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004120 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004121
4122unlock_out:
4123 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004124 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08004125}
4126
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004127void mem_cgroup_uncharge_page(struct page *page)
4128{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004129 /* early check. */
4130 if (page_mapped(page))
4131 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08004132 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07004133 /*
4134 * If the page is in swap cache, uncharge should be deferred
4135 * to the swap path, which also properly accounts swap usage
4136 * and handles memcg lifetime.
4137 *
4138 * Note that this check is not stable and reclaim may add the
4139 * page to swap cache at any time after this. However, if the
4140 * page is not in swap cache by the time page->mapcount hits
4141 * 0, there won't be any page table references to the swap
4142 * slot, and reclaim will free it and not actually write the
4143 * page to disk.
4144 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07004145 if (PageSwapCache(page))
4146 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07004147 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004148}
4149
4150void mem_cgroup_uncharge_cache_page(struct page *page)
4151{
4152 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07004153 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07004154 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004155}
4156
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004157/*
4158 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4159 * In that cases, pages are freed continuously and we can expect pages
4160 * are in the same memcg. All these calls itself limits the number of
4161 * pages freed at once, then uncharge_start/end() is called properly.
4162 * This may be called prural(2) times in a context,
4163 */
4164
4165void mem_cgroup_uncharge_start(void)
4166{
4167 current->memcg_batch.do_batch++;
4168 /* We can do nest. */
4169 if (current->memcg_batch.do_batch == 1) {
4170 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004171 current->memcg_batch.nr_pages = 0;
4172 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004173 }
4174}
4175
4176void mem_cgroup_uncharge_end(void)
4177{
4178 struct memcg_batch_info *batch = &current->memcg_batch;
4179
4180 if (!batch->do_batch)
4181 return;
4182
4183 batch->do_batch--;
4184 if (batch->do_batch) /* If stacked, do nothing. */
4185 return;
4186
4187 if (!batch->memcg)
4188 return;
4189 /*
4190 * This "batch->memcg" is valid without any css_get/put etc...
4191 * bacause we hide charges behind us.
4192 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004193 if (batch->nr_pages)
4194 res_counter_uncharge(&batch->memcg->res,
4195 batch->nr_pages * PAGE_SIZE);
4196 if (batch->memsw_nr_pages)
4197 res_counter_uncharge(&batch->memcg->memsw,
4198 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004199 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004200 /* forget this pointer (for sanity check) */
4201 batch->memcg = NULL;
4202}
4203
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004204#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004205/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004206 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004207 * memcg information is recorded to swap_cgroup of "ent"
4208 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004209void
4210mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004211{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004212 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004213 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004214
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004215 if (!swapout) /* this was a swap cache but the swap is unused ! */
4216 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4217
Johannes Weiner0030f532012-07-31 16:45:25 -07004218 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004219
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004220 /*
4221 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004222 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004223 */
4224 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004225 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004226}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004227#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004228
Andrew Mortonc255a452012-07-31 16:43:02 -07004229#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004230/*
4231 * called from swap_entry_free(). remove record in swap_cgroup and
4232 * uncharge "memsw" account.
4233 */
4234void mem_cgroup_uncharge_swap(swp_entry_t ent)
4235{
4236 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004237 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004238
4239 if (!do_swap_account)
4240 return;
4241
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004242 id = swap_cgroup_record(ent, 0);
4243 rcu_read_lock();
4244 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004245 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004246 /*
4247 * We uncharge this because swap is freed.
4248 * This memcg can be obsolete one. We avoid calling css_tryget
4249 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004250 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004251 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004252 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004253 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004254 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004255 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004256}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004257
4258/**
4259 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4260 * @entry: swap entry to be moved
4261 * @from: mem_cgroup which the entry is moved from
4262 * @to: mem_cgroup which the entry is moved to
4263 *
4264 * It succeeds only when the swap_cgroup's record for this entry is the same
4265 * as the mem_cgroup's id of @from.
4266 *
4267 * Returns 0 on success, -EINVAL on failure.
4268 *
4269 * The caller must have charged to @to, IOW, called res_counter_charge() about
4270 * both res and memsw, and called css_get().
4271 */
4272static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004273 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004274{
4275 unsigned short old_id, new_id;
4276
4277 old_id = css_id(&from->css);
4278 new_id = css_id(&to->css);
4279
4280 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004281 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004282 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004283 /*
4284 * This function is only called from task migration context now.
4285 * It postpones res_counter and refcount handling till the end
4286 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004287 * improvement. But we cannot postpone css_get(to) because if
4288 * the process that has been moved to @to does swap-in, the
4289 * refcount of @to might be decreased to 0.
4290 *
4291 * We are in attach() phase, so the cgroup is guaranteed to be
4292 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004293 */
Li Zefan40503772013-07-08 16:00:34 -07004294 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004295 return 0;
4296 }
4297 return -EINVAL;
4298}
4299#else
4300static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004301 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004302{
4303 return -EINVAL;
4304}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004305#endif
4306
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004307/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004308 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4309 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004310 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004311void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4312 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004313{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004314 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004315 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004316 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004317 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004318
Johannes Weiner72835c82012-01-12 17:18:32 -08004319 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004320
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004321 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004322 return;
Balbir Singh40779602008-04-04 14:29:59 -07004323
Mel Gormanb32967f2012-11-19 12:35:47 +00004324 if (PageTransHuge(page))
4325 nr_pages <<= compound_order(page);
4326
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004327 pc = lookup_page_cgroup(page);
4328 lock_page_cgroup(pc);
4329 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004330 memcg = pc->mem_cgroup;
4331 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004332 /*
4333 * At migrating an anonymous page, its mapcount goes down
4334 * to 0 and uncharge() will be called. But, even if it's fully
4335 * unmapped, migration may fail and this page has to be
4336 * charged again. We set MIGRATION flag here and delay uncharge
4337 * until end_migration() is called
4338 *
4339 * Corner Case Thinking
4340 * A)
4341 * When the old page was mapped as Anon and it's unmap-and-freed
4342 * while migration was ongoing.
4343 * If unmap finds the old page, uncharge() of it will be delayed
4344 * until end_migration(). If unmap finds a new page, it's
4345 * uncharged when it make mapcount to be 1->0. If unmap code
4346 * finds swap_migration_entry, the new page will not be mapped
4347 * and end_migration() will find it(mapcount==0).
4348 *
4349 * B)
4350 * When the old page was mapped but migraion fails, the kernel
4351 * remaps it. A charge for it is kept by MIGRATION flag even
4352 * if mapcount goes down to 0. We can do remap successfully
4353 * without charging it again.
4354 *
4355 * C)
4356 * The "old" page is under lock_page() until the end of
4357 * migration, so, the old page itself will not be swapped-out.
4358 * If the new page is swapped out before end_migraton, our
4359 * hook to usual swap-out path will catch the event.
4360 */
4361 if (PageAnon(page))
4362 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004363 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004364 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004365 /*
4366 * If the page is not charged at this point,
4367 * we return here.
4368 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004369 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004370 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004371
Johannes Weiner72835c82012-01-12 17:18:32 -08004372 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004373 /*
4374 * We charge new page before it's used/mapped. So, even if unlock_page()
4375 * is called before end_migration, we can catch all events on this new
4376 * page. In the case new page is migrated but not remapped, new page's
4377 * mapcount will be finally 0 and we call uncharge in end_migration().
4378 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004379 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004380 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004381 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004382 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004383 /*
4384 * The page is committed to the memcg, but it's not actually
4385 * charged to the res_counter since we plan on replacing the
4386 * old one and only one page is going to be left afterwards.
4387 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004388 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004389}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004390
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004391/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004392void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004393 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004394{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004395 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004396 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004397 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004398
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004399 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004400 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004401
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004402 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004403 used = oldpage;
4404 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004405 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004406 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004407 unused = oldpage;
4408 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004409 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004410 __mem_cgroup_uncharge_common(unused,
4411 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4412 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4413 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004414 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004415 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004416 * We disallowed uncharge of pages under migration because mapcount
4417 * of the page goes down to zero, temporarly.
4418 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004419 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004420 pc = lookup_page_cgroup(oldpage);
4421 lock_page_cgroup(pc);
4422 ClearPageCgroupMigration(pc);
4423 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004424
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004425 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004426 * If a page is a file cache, radix-tree replacement is very atomic
4427 * and we can skip this check. When it was an Anon page, its mapcount
4428 * goes down to 0. But because we added MIGRATION flage, it's not
4429 * uncharged yet. There are several case but page->mapcount check
4430 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4431 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004432 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004433 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004434 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004435}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004436
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004437/*
4438 * At replace page cache, newpage is not under any memcg but it's on
4439 * LRU. So, this function doesn't touch res_counter but handles LRU
4440 * in correct way. Both pages are locked so we cannot race with uncharge.
4441 */
4442void mem_cgroup_replace_page_cache(struct page *oldpage,
4443 struct page *newpage)
4444{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004445 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004446 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004447 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004448
4449 if (mem_cgroup_disabled())
4450 return;
4451
4452 pc = lookup_page_cgroup(oldpage);
4453 /* fix accounting on old pages */
4454 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004455 if (PageCgroupUsed(pc)) {
4456 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004457 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004458 ClearPageCgroupUsed(pc);
4459 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004460 unlock_page_cgroup(pc);
4461
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004462 /*
4463 * When called from shmem_replace_page(), in some cases the
4464 * oldpage has already been charged, and in some cases not.
4465 */
4466 if (!memcg)
4467 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004468 /*
4469 * Even if newpage->mapping was NULL before starting replacement,
4470 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4471 * LRU while we overwrite pc->mem_cgroup.
4472 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004473 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004474}
4475
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004476#ifdef CONFIG_DEBUG_VM
4477static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4478{
4479 struct page_cgroup *pc;
4480
4481 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004482 /*
4483 * Can be NULL while feeding pages into the page allocator for
4484 * the first time, i.e. during boot or memory hotplug;
4485 * or when mem_cgroup_disabled().
4486 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004487 if (likely(pc) && PageCgroupUsed(pc))
4488 return pc;
4489 return NULL;
4490}
4491
4492bool mem_cgroup_bad_page_check(struct page *page)
4493{
4494 if (mem_cgroup_disabled())
4495 return false;
4496
4497 return lookup_page_cgroup_used(page) != NULL;
4498}
4499
4500void mem_cgroup_print_bad_page(struct page *page)
4501{
4502 struct page_cgroup *pc;
4503
4504 pc = lookup_page_cgroup_used(page);
4505 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004506 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4507 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004508 }
4509}
4510#endif
4511
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004512static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004513 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004514{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004515 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004516 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004517 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004518 int children = mem_cgroup_count_children(memcg);
4519 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004520 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004521
4522 /*
4523 * For keeping hierarchical_reclaim simple, how long we should retry
4524 * is depends on callers. We set our retry-count to be function
4525 * of # of children which we should visit in this loop.
4526 */
4527 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4528
4529 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004530
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004531 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004532 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004533 if (signal_pending(current)) {
4534 ret = -EINTR;
4535 break;
4536 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004537 /*
4538 * Rather than hide all in some function, I do this in
4539 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004540 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004541 */
4542 mutex_lock(&set_limit_mutex);
4543 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4544 if (memswlimit < val) {
4545 ret = -EINVAL;
4546 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004547 break;
4548 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004549
4550 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4551 if (memlimit < val)
4552 enlarge = 1;
4553
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004554 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004555 if (!ret) {
4556 if (memswlimit == val)
4557 memcg->memsw_is_minimum = true;
4558 else
4559 memcg->memsw_is_minimum = false;
4560 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004561 mutex_unlock(&set_limit_mutex);
4562
4563 if (!ret)
4564 break;
4565
Johannes Weiner56600482012-01-12 17:17:59 -08004566 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4567 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004568 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4569 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004570 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004571 retry_count--;
4572 else
4573 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004574 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004575 if (!ret && enlarge)
4576 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004577
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004578 return ret;
4579}
4580
Li Zefan338c8432009-06-17 16:27:15 -07004581static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4582 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004583{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004584 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004585 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004586 int children = mem_cgroup_count_children(memcg);
4587 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004588 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004589
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004590 /* see mem_cgroup_resize_res_limit */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004591 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004592 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004593 while (retry_count) {
4594 if (signal_pending(current)) {
4595 ret = -EINTR;
4596 break;
4597 }
4598 /*
4599 * Rather than hide all in some function, I do this in
4600 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004601 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004602 */
4603 mutex_lock(&set_limit_mutex);
4604 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4605 if (memlimit > val) {
4606 ret = -EINVAL;
4607 mutex_unlock(&set_limit_mutex);
4608 break;
4609 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004610 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4611 if (memswlimit < val)
4612 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004613 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004614 if (!ret) {
4615 if (memlimit == val)
4616 memcg->memsw_is_minimum = true;
4617 else
4618 memcg->memsw_is_minimum = false;
4619 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004620 mutex_unlock(&set_limit_mutex);
4621
4622 if (!ret)
4623 break;
4624
Johannes Weiner56600482012-01-12 17:17:59 -08004625 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4626 MEM_CGROUP_RECLAIM_NOSWAP |
4627 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004628 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004629 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004630 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004631 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004632 else
4633 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004634 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004635 if (!ret && enlarge)
4636 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004637 return ret;
4638}
4639
Michal Hocko2ef37d32012-10-26 13:37:30 +02004640/**
4641 * mem_cgroup_force_empty_list - clears LRU of a group
4642 * @memcg: group to clear
4643 * @node: NUMA node
4644 * @zid: zone id
4645 * @lru: lru to to clear
4646 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004647 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004648 * reclaim the pages page themselves - pages are moved to the parent (or root)
4649 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004650 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004651static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004652 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004653{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004654 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004655 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004656 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004657 struct page *busy;
4658 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004659
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004660 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004661 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4662 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004663
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004664 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004665 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004666 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004667 struct page *page;
4668
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004669 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004670 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004671 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004672 break;
4673 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004674 page = list_entry(list->prev, struct page, lru);
4675 if (busy == page) {
4676 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004677 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004678 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004679 continue;
4680 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004681 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004682
Johannes Weiner925b7672012-01-12 17:18:15 -08004683 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004684
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004685 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004686 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004687 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004688 cond_resched();
4689 } else
4690 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004691 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004692}
4693
4694/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004695 * make mem_cgroup's charge to be 0 if there is no task by moving
4696 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004697 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004698 *
4699 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004700 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004701static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004702{
Michal Hockoc26251f2012-10-26 13:37:28 +02004703 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004704 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004705
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004706 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004707 /* This is for making all *used* pages to be on LRU. */
4708 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004709 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004710 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004711 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004712 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004713 enum lru_list lru;
4714 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004715 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab932012-03-21 16:34:19 -07004716 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004717 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004718 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004719 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004720 mem_cgroup_end_move(memcg);
4721 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004722 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004723
Michal Hocko2ef37d32012-10-26 13:37:30 +02004724 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004725 * Kernel memory may not necessarily be trackable to a specific
4726 * process. So they are not migrated, and therefore we can't
4727 * expect their value to drop to 0 here.
4728 * Having res filled up with kmem only is enough.
4729 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004730 * This is a safety check because mem_cgroup_force_empty_list
4731 * could have raced with mem_cgroup_replace_page_cache callers
4732 * so the lru seemed empty but the page could have been added
4733 * right after the check. RES_USAGE should be safe as we always
4734 * charge before adding to the LRU.
4735 */
Glauber Costabea207c2012-12-18 14:22:11 -08004736 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4737 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4738 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004739}
4740
4741/*
Glauber Costab5f99b52013-02-22 16:34:53 -08004742 * This mainly exists for tests during the setting of set of use_hierarchy.
4743 * Since this is the very setting we are changing, the current hierarchy value
4744 * is meaningless
4745 */
4746static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4747{
Tejun Heo492eb212013-08-08 20:11:25 -04004748 struct cgroup_subsys_state *pos;
Glauber Costab5f99b52013-02-22 16:34:53 -08004749
4750 /* bounce at first found */
Tejun Heo492eb212013-08-08 20:11:25 -04004751 css_for_each_child(pos, &memcg->css)
Glauber Costab5f99b52013-02-22 16:34:53 -08004752 return true;
4753 return false;
4754}
4755
4756/*
Glauber Costa09998212013-02-22 16:34:55 -08004757 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4758 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
Glauber Costab5f99b52013-02-22 16:34:53 -08004759 * from mem_cgroup_count_children(), in the sense that we don't really care how
4760 * many children we have; we only need to know if we have any. It also counts
4761 * any memcg without hierarchy as infertile.
4762 */
4763static inline bool memcg_has_children(struct mem_cgroup *memcg)
4764{
4765 return memcg->use_hierarchy && __memcg_has_children(memcg);
4766}
4767
4768/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004769 * Reclaims as many pages from the given memcg as possible and moves
4770 * the rest to the parent.
4771 *
4772 * Caller is responsible for holding css reference for memcg.
4773 */
4774static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4775{
4776 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4777 struct cgroup *cgrp = memcg->css.cgroup;
4778
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004779 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004780 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4781 return -EBUSY;
4782
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004783 /* we call try-to-free pages for make this cgroup empty */
4784 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004785 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004786 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004787 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004788
Michal Hockoc26251f2012-10-26 13:37:28 +02004789 if (signal_pending(current))
4790 return -EINTR;
4791
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004792 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004793 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004794 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004795 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004796 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004797 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004798 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004799
4800 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004801 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02004802 mem_cgroup_reparent_charges(memcg);
4803
4804 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004805}
4806
Tejun Heo182446d2013-08-08 20:11:24 -04004807static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
4808 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004809{
Tejun Heo182446d2013-08-08 20:11:24 -04004810 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02004811
Michal Hockod8423012012-10-26 13:37:29 +02004812 if (mem_cgroup_is_root(memcg))
4813 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07004814 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004815}
4816
Tejun Heo182446d2013-08-08 20:11:24 -04004817static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
4818 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004819{
Tejun Heo182446d2013-08-08 20:11:24 -04004820 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004821}
4822
Tejun Heo182446d2013-08-08 20:11:24 -04004823static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
4824 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004825{
4826 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04004827 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04004828 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08004829
Glauber Costa09998212013-02-22 16:34:55 -08004830 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07004831
4832 if (memcg->use_hierarchy == val)
4833 goto out;
4834
Balbir Singh18f59ea2009-01-07 18:08:07 -08004835 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004836 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08004837 * in the child subtrees. If it is unset, then the change can
4838 * occur, provided the current cgroup has no children.
4839 *
4840 * For the root cgroup, parent_mem is NULL, we allow value to be
4841 * set if there are no children.
4842 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004843 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08004844 (val == 1 || val == 0)) {
Glauber Costab5f99b52013-02-22 16:34:53 -08004845 if (!__memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004846 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004847 else
4848 retval = -EBUSY;
4849 } else
4850 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07004851
4852out:
Glauber Costa09998212013-02-22 16:34:55 -08004853 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004854
4855 return retval;
4856}
4857
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004858
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004859static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004860 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004861{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004862 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004863 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004864
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004865 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004866 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004867 val += mem_cgroup_read_stat(iter, idx);
4868
4869 if (val < 0) /* race ? */
4870 val = 0;
4871 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004872}
4873
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004874static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004875{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004876 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004877
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004878 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004879 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00004880 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004881 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00004882 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004883 }
4884
David Rientjesb070e652013-05-07 16:18:09 -07004885 /*
4886 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4887 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4888 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004889 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4890 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004891
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004892 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004893 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004894
4895 return val << PAGE_SHIFT;
4896}
4897
Tejun Heo182446d2013-08-08 20:11:24 -04004898static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
4899 struct cftype *cft, struct file *file,
4900 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004901{
Tejun Heo182446d2013-08-08 20:11:24 -04004902 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07004903 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004904 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004905 int name, len;
4906 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004907
4908 type = MEMFILE_TYPE(cft->private);
4909 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004910
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004911 switch (type) {
4912 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004913 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004914 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004915 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004916 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004917 break;
4918 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004919 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004920 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004921 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004922 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004923 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004924 case _KMEM:
4925 val = res_counter_read_u64(&memcg->kmem, name);
4926 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004927 default:
4928 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004929 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004930
4931 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4932 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004933}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004934
Tejun Heo182446d2013-08-08 20:11:24 -04004935static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004936{
4937 int ret = -EINVAL;
4938#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04004939 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004940 /*
4941 * For simplicity, we won't allow this to be disabled. It also can't
4942 * be changed if the cgroup has children already, or if tasks had
4943 * already joined.
4944 *
4945 * If tasks join before we set the limit, a person looking at
4946 * kmem.usage_in_bytes will have no way to determine when it took
4947 * place, which makes the value quite meaningless.
4948 *
4949 * After it first became limited, changes in the value of the limit are
4950 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004951 */
Glauber Costa09998212013-02-22 16:34:55 -08004952 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004953 mutex_lock(&set_limit_mutex);
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004954 if (!memcg->kmem_account_flags && val != RES_COUNTER_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04004955 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08004956 ret = -EBUSY;
4957 goto out;
4958 }
4959 ret = res_counter_set_limit(&memcg->kmem, val);
4960 VM_BUG_ON(ret);
4961
Glauber Costa55007d82012-12-18 14:22:38 -08004962 ret = memcg_update_cache_sizes(memcg);
4963 if (ret) {
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004964 res_counter_set_limit(&memcg->kmem, RES_COUNTER_MAX);
Glauber Costa55007d82012-12-18 14:22:38 -08004965 goto out;
4966 }
Glauber Costa692e89a2013-02-22 16:34:56 -08004967 static_key_slow_inc(&memcg_kmem_enabled_key);
4968 /*
4969 * setting the active bit after the inc will guarantee no one
4970 * starts accounting before all call sites are patched
4971 */
4972 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004973 } else
4974 ret = res_counter_set_limit(&memcg->kmem, val);
4975out:
4976 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08004977 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004978#endif
4979 return ret;
4980}
4981
Hugh Dickins6d0439902013-02-22 16:35:50 -08004982#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08004983static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004984{
Glauber Costa55007d82012-12-18 14:22:38 -08004985 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004986 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4987 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08004988 goto out;
4989
Glauber Costa510fc4e2012-12-18 14:21:47 -08004990 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08004991 /*
4992 * When that happen, we need to disable the static branch only on those
4993 * memcgs that enabled it. To achieve this, we would be forced to
4994 * complicate the code by keeping track of which memcgs were the ones
4995 * that actually enabled limits, and which ones got it from its
4996 * parents.
4997 *
4998 * It is a lot simpler just to do static_key_slow_inc() on every child
4999 * that is accounted.
5000 */
Glauber Costa55007d82012-12-18 14:22:38 -08005001 if (!memcg_kmem_is_active(memcg))
5002 goto out;
5003
5004 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07005005 * __mem_cgroup_free() will issue static_key_slow_dec() because this
5006 * memcg is active already. If the later initialization fails then the
5007 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08005008 */
Glauber Costa55007d82012-12-18 14:22:38 -08005009 static_key_slow_inc(&memcg_kmem_enabled_key);
5010
5011 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07005012 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005013 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07005014 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005015 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08005016out:
5017 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005018}
Hugh Dickins6d0439902013-02-22 16:35:50 -08005019#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08005020
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005021/*
5022 * The user of this function is...
5023 * RES_LIMIT.
5024 */
Tejun Heo182446d2013-08-08 20:11:24 -04005025static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07005026 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005027{
Tejun Heo182446d2013-08-08 20:11:24 -04005028 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005029 enum res_type type;
5030 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005031 unsigned long long val;
5032 int ret;
5033
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005034 type = MEMFILE_TYPE(cft->private);
5035 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07005036
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005037 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005038 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07005039 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
5040 ret = -EINVAL;
5041 break;
5042 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005043 /* This function does all necessary parse...reuse it */
5044 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005045 if (ret)
5046 break;
5047 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005048 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005049 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005050 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005051 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04005052 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005053 else
5054 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005055 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07005056 case RES_SOFT_LIMIT:
5057 ret = res_counter_memparse_write_strategy(buffer, &val);
5058 if (ret)
5059 break;
5060 /*
5061 * For memsw, soft limits are hard to implement in terms
5062 * of semantics, for now, we support soft limits for
5063 * control without swap
5064 */
5065 if (type == _MEM)
5066 ret = res_counter_set_soft_limit(&memcg->res, val);
5067 else
5068 ret = -EINVAL;
5069 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005070 default:
5071 ret = -EINVAL; /* should be BUG() ? */
5072 break;
5073 }
5074 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005075}
5076
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005077static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5078 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5079{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005080 unsigned long long min_limit, min_memsw_limit, tmp;
5081
5082 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5083 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005084 if (!memcg->use_hierarchy)
5085 goto out;
5086
Tejun Heo63876982013-08-08 20:11:23 -04005087 while (css_parent(&memcg->css)) {
5088 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005089 if (!memcg->use_hierarchy)
5090 break;
5091 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5092 min_limit = min(min_limit, tmp);
5093 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5094 min_memsw_limit = min(min_memsw_limit, tmp);
5095 }
5096out:
5097 *mem_limit = min_limit;
5098 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005099}
5100
Tejun Heo182446d2013-08-08 20:11:24 -04005101static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005102{
Tejun Heo182446d2013-08-08 20:11:24 -04005103 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005104 int name;
5105 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005106
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005107 type = MEMFILE_TYPE(event);
5108 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07005109
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005110 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005111 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005112 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005113 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005114 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005115 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005116 else if (type == _KMEM)
5117 res_counter_reset_max(&memcg->kmem);
5118 else
5119 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005120 break;
5121 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005122 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005123 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005124 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005125 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005126 else if (type == _KMEM)
5127 res_counter_reset_failcnt(&memcg->kmem);
5128 else
5129 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005130 break;
5131 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07005132
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07005133 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005134}
5135
Tejun Heo182446d2013-08-08 20:11:24 -04005136static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005137 struct cftype *cft)
5138{
Tejun Heo182446d2013-08-08 20:11:24 -04005139 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005140}
5141
Daisuke Nishimura02491442010-03-10 15:22:17 -08005142#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04005143static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005144 struct cftype *cft, u64 val)
5145{
Tejun Heo182446d2013-08-08 20:11:24 -04005146 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005147
5148 if (val >= (1 << NR_MOVE_TYPE))
5149 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005150
Glauber Costaee5e8472013-02-22 16:34:50 -08005151 /*
5152 * No kind of locking is needed in here, because ->can_attach() will
5153 * check this value once in the beginning of the process, and then carry
5154 * on with stale data. This means that changes to this value will only
5155 * affect task migrations starting after the change.
5156 */
5157 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005158 return 0;
5159}
Daisuke Nishimura02491442010-03-10 15:22:17 -08005160#else
Tejun Heo182446d2013-08-08 20:11:24 -04005161static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005162 struct cftype *cft, u64 val)
5163{
5164 return -ENOSYS;
5165}
5166#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005167
Ying Han406eb0c2011-05-26 16:25:37 -07005168#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04005169static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
5170 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07005171{
5172 int nid;
5173 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5174 unsigned long node_nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005175 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005176
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005177 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005178 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005179 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005180 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005181 seq_printf(m, " N%d=%lu", nid, node_nr);
5182 }
5183 seq_putc(m, '\n');
5184
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005185 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005186 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005187 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005188 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005189 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005190 seq_printf(m, " N%d=%lu", nid, node_nr);
5191 }
5192 seq_putc(m, '\n');
5193
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005194 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005195 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005196 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005197 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005198 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005199 seq_printf(m, " N%d=%lu", nid, node_nr);
5200 }
5201 seq_putc(m, '\n');
5202
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005203 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005204 seq_printf(m, "unevictable=%lu", unevictable_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005205 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005206 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005207 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005208 seq_printf(m, " N%d=%lu", nid, node_nr);
5209 }
5210 seq_putc(m, '\n');
5211 return 0;
5212}
5213#endif /* CONFIG_NUMA */
5214
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005215static inline void mem_cgroup_lru_names_not_uptodate(void)
5216{
5217 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5218}
5219
Tejun Heo182446d2013-08-08 20:11:24 -04005220static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005221 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005222{
Tejun Heo182446d2013-08-08 20:11:24 -04005223 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005224 struct mem_cgroup *mi;
5225 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005226
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005227 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005228 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005229 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005230 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5231 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005232 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005233
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005234 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5235 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5236 mem_cgroup_read_events(memcg, i));
5237
5238 for (i = 0; i < NR_LRU_LISTS; i++)
5239 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5240 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5241
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005242 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005243 {
5244 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005245 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005246 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005247 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005248 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5249 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005250 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005251
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005252 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5253 long long val = 0;
5254
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005255 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005256 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005257 for_each_mem_cgroup_tree(mi, memcg)
5258 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5259 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5260 }
5261
5262 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5263 unsigned long long val = 0;
5264
5265 for_each_mem_cgroup_tree(mi, memcg)
5266 val += mem_cgroup_read_events(mi, i);
5267 seq_printf(m, "total_%s %llu\n",
5268 mem_cgroup_events_names[i], val);
5269 }
5270
5271 for (i = 0; i < NR_LRU_LISTS; i++) {
5272 unsigned long long val = 0;
5273
5274 for_each_mem_cgroup_tree(mi, memcg)
5275 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5276 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005277 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005278
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005279#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005280 {
5281 int nid, zid;
5282 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005283 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005284 unsigned long recent_rotated[2] = {0, 0};
5285 unsigned long recent_scanned[2] = {0, 0};
5286
5287 for_each_online_node(nid)
5288 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005289 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005290 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005291
Hugh Dickins89abfab2012-05-29 15:06:53 -07005292 recent_rotated[0] += rstat->recent_rotated[0];
5293 recent_rotated[1] += rstat->recent_rotated[1];
5294 recent_scanned[0] += rstat->recent_scanned[0];
5295 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005296 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005297 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5298 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5299 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5300 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005301 }
5302#endif
5303
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005304 return 0;
5305}
5306
Tejun Heo182446d2013-08-08 20:11:24 -04005307static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5308 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005309{
Tejun Heo182446d2013-08-08 20:11:24 -04005310 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005311
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005312 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005313}
5314
Tejun Heo182446d2013-08-08 20:11:24 -04005315static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5316 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005317{
Tejun Heo182446d2013-08-08 20:11:24 -04005318 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005319 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005320
Tejun Heo63876982013-08-08 20:11:23 -04005321 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005322 return -EINVAL;
5323
Glauber Costa09998212013-02-22 16:34:55 -08005324 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005325
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005326 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005327 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005328 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005329 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005330 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005331
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005332 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005333
Glauber Costa09998212013-02-22 16:34:55 -08005334 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005335
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005336 return 0;
5337}
5338
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005339static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5340{
5341 struct mem_cgroup_threshold_ary *t;
5342 u64 usage;
5343 int i;
5344
5345 rcu_read_lock();
5346 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005347 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005348 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005349 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005350
5351 if (!t)
5352 goto unlock;
5353
5354 usage = mem_cgroup_usage(memcg, swap);
5355
5356 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005357 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005358 * If it's not true, a threshold was crossed after last
5359 * call of __mem_cgroup_threshold().
5360 */
Phil Carmody5407a562010-05-26 14:42:42 -07005361 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005362
5363 /*
5364 * Iterate backward over array of thresholds starting from
5365 * current_threshold and check if a threshold is crossed.
5366 * If none of thresholds below usage is crossed, we read
5367 * only one element of the array here.
5368 */
5369 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5370 eventfd_signal(t->entries[i].eventfd, 1);
5371
5372 /* i = current_threshold + 1 */
5373 i++;
5374
5375 /*
5376 * Iterate forward over array of thresholds starting from
5377 * current_threshold+1 and check if a threshold is crossed.
5378 * If none of thresholds above usage is crossed, we read
5379 * only one element of the array here.
5380 */
5381 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5382 eventfd_signal(t->entries[i].eventfd, 1);
5383
5384 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005385 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005386unlock:
5387 rcu_read_unlock();
5388}
5389
5390static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5391{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005392 while (memcg) {
5393 __mem_cgroup_threshold(memcg, false);
5394 if (do_swap_account)
5395 __mem_cgroup_threshold(memcg, true);
5396
5397 memcg = parent_mem_cgroup(memcg);
5398 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005399}
5400
5401static int compare_thresholds(const void *a, const void *b)
5402{
5403 const struct mem_cgroup_threshold *_a = a;
5404 const struct mem_cgroup_threshold *_b = b;
5405
Greg Thelen2bff24a2013-09-11 14:23:08 -07005406 if (_a->threshold > _b->threshold)
5407 return 1;
5408
5409 if (_a->threshold < _b->threshold)
5410 return -1;
5411
5412 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005413}
5414
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005415static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005416{
5417 struct mem_cgroup_eventfd_list *ev;
5418
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005419 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005420 eventfd_signal(ev->eventfd, 1);
5421 return 0;
5422}
5423
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005424static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005425{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005426 struct mem_cgroup *iter;
5427
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005428 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005429 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005430}
5431
Tejun Heo81eeaf02013-08-08 20:11:26 -04005432static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005433 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005434{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005435 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005436 struct mem_cgroup_thresholds *thresholds;
5437 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005438 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005439 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005440 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005441
5442 ret = res_counter_memparse_write_strategy(args, &threshold);
5443 if (ret)
5444 return ret;
5445
5446 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005447
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005448 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005449 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005450 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005451 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005452 else
5453 BUG();
5454
5455 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5456
5457 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005458 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005459 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5460
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005461 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005462
5463 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005464 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005465 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005466 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005467 ret = -ENOMEM;
5468 goto unlock;
5469 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005470 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005471
5472 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005473 if (thresholds->primary) {
5474 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005475 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005476 }
5477
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005478 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005479 new->entries[size - 1].eventfd = eventfd;
5480 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005481
5482 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005483 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005484 compare_thresholds, NULL);
5485
5486 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005487 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005488 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005489 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005490 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005491 * new->current_threshold will not be used until
5492 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005493 * it here.
5494 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005495 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005496 } else
5497 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005498 }
5499
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005500 /* Free old spare buffer and save old primary buffer as spare */
5501 kfree(thresholds->spare);
5502 thresholds->spare = thresholds->primary;
5503
5504 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005505
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005506 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005507 synchronize_rcu();
5508
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005509unlock:
5510 mutex_unlock(&memcg->thresholds_lock);
5511
5512 return ret;
5513}
5514
Tejun Heo81eeaf02013-08-08 20:11:26 -04005515static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005516 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005517{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005518 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005519 struct mem_cgroup_thresholds *thresholds;
5520 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005521 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005522 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005523 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005524
5525 mutex_lock(&memcg->thresholds_lock);
5526 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005527 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005528 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005529 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005530 else
5531 BUG();
5532
Anton Vorontsov371528c2012-02-24 05:14:46 +04005533 if (!thresholds->primary)
5534 goto unlock;
5535
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005536 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5537
5538 /* Check if a threshold crossed before removing */
5539 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5540
5541 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005542 size = 0;
5543 for (i = 0; i < thresholds->primary->size; i++) {
5544 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005545 size++;
5546 }
5547
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005548 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005549
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005550 /* Set thresholds array to NULL if we don't have thresholds */
5551 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005552 kfree(new);
5553 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005554 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005555 }
5556
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005557 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005558
5559 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005560 new->current_threshold = -1;
5561 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5562 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005563 continue;
5564
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005565 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005566 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005567 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005568 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005569 * until rcu_assign_pointer(), so it's safe to increment
5570 * it here.
5571 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005572 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005573 }
5574 j++;
5575 }
5576
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005577swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005578 /* Swap primary and spare array */
5579 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005580 /* If all events are unregistered, free the spare array */
5581 if (!new) {
5582 kfree(thresholds->spare);
5583 thresholds->spare = NULL;
5584 }
5585
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005586 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005587
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005588 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005589 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005590unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005591 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005592}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005593
Tejun Heo81eeaf02013-08-08 20:11:26 -04005594static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005595 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5596{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005597 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005598 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005599 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005600
5601 BUG_ON(type != _OOM_TYPE);
5602 event = kmalloc(sizeof(*event), GFP_KERNEL);
5603 if (!event)
5604 return -ENOMEM;
5605
Michal Hocko1af8efe2011-07-26 16:08:24 -07005606 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005607
5608 event->eventfd = eventfd;
5609 list_add(&event->list, &memcg->oom_notify);
5610
5611 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005612 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005613 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005614 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005615
5616 return 0;
5617}
5618
Tejun Heo81eeaf02013-08-08 20:11:26 -04005619static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005620 struct cftype *cft, struct eventfd_ctx *eventfd)
5621{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005622 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005623 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005624 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005625
5626 BUG_ON(type != _OOM_TYPE);
5627
Michal Hocko1af8efe2011-07-26 16:08:24 -07005628 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005629
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005630 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005631 if (ev->eventfd == eventfd) {
5632 list_del(&ev->list);
5633 kfree(ev);
5634 }
5635 }
5636
Michal Hocko1af8efe2011-07-26 16:08:24 -07005637 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005638}
5639
Tejun Heo182446d2013-08-08 20:11:24 -04005640static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005641 struct cftype *cft, struct cgroup_map_cb *cb)
5642{
Tejun Heo182446d2013-08-08 20:11:24 -04005643 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005644
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005645 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005646
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005647 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005648 cb->fill(cb, "under_oom", 1);
5649 else
5650 cb->fill(cb, "under_oom", 0);
5651 return 0;
5652}
5653
Tejun Heo182446d2013-08-08 20:11:24 -04005654static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005655 struct cftype *cft, u64 val)
5656{
Tejun Heo182446d2013-08-08 20:11:24 -04005657 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005658 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005659
5660 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005661 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005662 return -EINVAL;
5663
Glauber Costa09998212013-02-22 16:34:55 -08005664 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005665 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005666 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005667 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005668 return -EINVAL;
5669 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005670 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005671 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005672 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005673 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005674 return 0;
5675}
5676
Andrew Mortonc255a452012-07-31 16:43:02 -07005677#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005678static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005679{
Glauber Costa55007d82012-12-18 14:22:38 -08005680 int ret;
5681
Glauber Costa2633d7a2012-12-18 14:22:34 -08005682 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005683 ret = memcg_propagate_kmem(memcg);
5684 if (ret)
5685 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005686
Glauber Costa1d62e432012-04-09 19:36:33 -03005687 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005688}
Glauber Costae5671df2011-12-11 21:47:01 +00005689
Li Zefan10d5ebf2013-07-08 16:00:33 -07005690static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005691{
Glauber Costa1d62e432012-04-09 19:36:33 -03005692 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005693}
5694
5695static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5696{
5697 if (!memcg_kmem_is_active(memcg))
5698 return;
5699
5700 /*
5701 * kmem charges can outlive the cgroup. In the case of slab
5702 * pages, for instance, a page contain objects from various
5703 * processes. As we prevent from taking a reference for every
5704 * such allocation we have to be careful when doing uncharge
5705 * (see memcg_uncharge_kmem) and here during offlining.
5706 *
5707 * The idea is that that only the _last_ uncharge which sees
5708 * the dead memcg will drop the last reference. An additional
5709 * reference is taken here before the group is marked dead
5710 * which is then paired with css_put during uncharge resp. here.
5711 *
5712 * Although this might sound strange as this path is called from
5713 * css_offline() when the referencemight have dropped down to 0
5714 * and shouldn't be incremented anymore (css_tryget would fail)
5715 * we do not have other options because of the kmem allocations
5716 * lifetime.
5717 */
5718 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005719
5720 memcg_kmem_mark_dead(memcg);
5721
5722 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5723 return;
5724
Glauber Costa7de37682012-12-18 14:22:07 -08005725 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005726 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005727}
Glauber Costae5671df2011-12-11 21:47:01 +00005728#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005729static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005730{
5731 return 0;
5732}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005733
Li Zefan10d5ebf2013-07-08 16:00:33 -07005734static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5735{
5736}
5737
5738static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005739{
5740}
Glauber Costae5671df2011-12-11 21:47:01 +00005741#endif
5742
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005743static struct cftype mem_cgroup_files[] = {
5744 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005745 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005746 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005747 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005748 .register_event = mem_cgroup_usage_register_event,
5749 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005750 },
5751 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005752 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005753 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005754 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005755 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005756 },
5757 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005758 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005759 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005760 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005761 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005762 },
5763 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005764 .name = "soft_limit_in_bytes",
5765 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5766 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005767 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005768 },
5769 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005770 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005771 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005772 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005773 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005774 },
Balbir Singh8697d332008-02-07 00:13:59 -08005775 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005776 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005777 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005778 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005779 {
5780 .name = "force_empty",
5781 .trigger = mem_cgroup_force_empty_write,
5782 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005783 {
5784 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005785 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005786 .write_u64 = mem_cgroup_hierarchy_write,
5787 .read_u64 = mem_cgroup_hierarchy_read,
5788 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005789 {
5790 .name = "swappiness",
5791 .read_u64 = mem_cgroup_swappiness_read,
5792 .write_u64 = mem_cgroup_swappiness_write,
5793 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005794 {
5795 .name = "move_charge_at_immigrate",
5796 .read_u64 = mem_cgroup_move_charge_read,
5797 .write_u64 = mem_cgroup_move_charge_write,
5798 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005799 {
5800 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005801 .read_map = mem_cgroup_oom_control_read,
5802 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005803 .register_event = mem_cgroup_oom_register_event,
5804 .unregister_event = mem_cgroup_oom_unregister_event,
5805 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5806 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005807 {
5808 .name = "pressure_level",
5809 .register_event = vmpressure_register_event,
5810 .unregister_event = vmpressure_unregister_event,
5811 },
Ying Han406eb0c2011-05-26 16:25:37 -07005812#ifdef CONFIG_NUMA
5813 {
5814 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005815 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005816 },
5817#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005818#ifdef CONFIG_MEMCG_KMEM
5819 {
5820 .name = "kmem.limit_in_bytes",
5821 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5822 .write_string = mem_cgroup_write,
5823 .read = mem_cgroup_read,
5824 },
5825 {
5826 .name = "kmem.usage_in_bytes",
5827 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5828 .read = mem_cgroup_read,
5829 },
5830 {
5831 .name = "kmem.failcnt",
5832 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5833 .trigger = mem_cgroup_reset,
5834 .read = mem_cgroup_read,
5835 },
5836 {
5837 .name = "kmem.max_usage_in_bytes",
5838 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5839 .trigger = mem_cgroup_reset,
5840 .read = mem_cgroup_read,
5841 },
Glauber Costa749c5412012-12-18 14:23:01 -08005842#ifdef CONFIG_SLABINFO
5843 {
5844 .name = "kmem.slabinfo",
5845 .read_seq_string = mem_cgroup_slabinfo_read,
5846 },
5847#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005848#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005849 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005850};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005851
Michal Hocko2d110852013-02-22 16:34:43 -08005852#ifdef CONFIG_MEMCG_SWAP
5853static struct cftype memsw_cgroup_files[] = {
5854 {
5855 .name = "memsw.usage_in_bytes",
5856 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5857 .read = mem_cgroup_read,
5858 .register_event = mem_cgroup_usage_register_event,
5859 .unregister_event = mem_cgroup_usage_unregister_event,
5860 },
5861 {
5862 .name = "memsw.max_usage_in_bytes",
5863 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5864 .trigger = mem_cgroup_reset,
5865 .read = mem_cgroup_read,
5866 },
5867 {
5868 .name = "memsw.limit_in_bytes",
5869 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5870 .write_string = mem_cgroup_write,
5871 .read = mem_cgroup_read,
5872 },
5873 {
5874 .name = "memsw.failcnt",
5875 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5876 .trigger = mem_cgroup_reset,
5877 .read = mem_cgroup_read,
5878 },
5879 { }, /* terminate */
5880};
5881#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005882static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005883{
5884 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005885 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005886 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005887 /*
5888 * This routine is called against possible nodes.
5889 * But it's BUG to call kmalloc() against offline node.
5890 *
5891 * TODO: this routine can waste much memory for nodes which will
5892 * never be onlined. It's better to use memory hotplug callback
5893 * function.
5894 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005895 if (!node_state(node, N_NORMAL_MEMORY))
5896 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005897 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005898 if (!pn)
5899 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005900
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005901 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5902 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005903 lruvec_init(&mz->lruvec);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005904 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005905 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005906 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005907 return 0;
5908}
5909
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005910static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005911{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005912 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005913}
5914
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005915static struct mem_cgroup *mem_cgroup_alloc(void)
5916{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005917 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005918 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005919
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005920 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08005921 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005922 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005923 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005924 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005925
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005926 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005927 return NULL;
5928
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005929 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5930 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005931 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005932 spin_lock_init(&memcg->pcp_counter_lock);
5933 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005934
5935out_free:
5936 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005937 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005938 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005939 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005940 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005941}
5942
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005943/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005944 * At destroying mem_cgroup, references from swap_cgroup can remain.
5945 * (scanning all at force_empty is too costly...)
5946 *
5947 * Instead of clearing all references at force_empty, we remember
5948 * the number of reference from swap_cgroup and free mem_cgroup when
5949 * it goes down to 0.
5950 *
5951 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005952 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005953
5954static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005955{
Glauber Costac8b2a362012-12-18 14:22:13 -08005956 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005957 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07005958
Glauber Costac8b2a362012-12-18 14:22:13 -08005959 free_css_id(&mem_cgroup_subsys, &memcg->css);
5960
5961 for_each_node(node)
5962 free_mem_cgroup_per_zone_info(memcg, node);
5963
5964 free_percpu(memcg->stat);
5965
Glauber Costa3f134612012-05-29 15:07:11 -07005966 /*
5967 * We need to make sure that (at least for now), the jump label
5968 * destruction code runs outside of the cgroup lock. This is because
5969 * get_online_cpus(), which is called from the static_branch update,
5970 * can't be called inside the cgroup_lock. cpusets are the ones
5971 * enforcing this dependency, so if they ever change, we might as well.
5972 *
5973 * schedule_work() will guarantee this happens. Be careful if you need
5974 * to move this code around, and make sure it is outside
5975 * the cgroup_lock.
5976 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005977 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07005978 if (size < PAGE_SIZE)
5979 kfree(memcg);
5980 else
5981 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005982}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005983
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005984/*
5985 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5986 */
Glauber Costae1aab162011-12-11 21:47:03 +00005987struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005988{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005989 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005990 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005991 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005992}
Glauber Costae1aab162011-12-11 21:47:03 +00005993EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005994
Li Zefan0eb253e2009-01-15 13:51:25 -08005995static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04005996mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005997{
Glauber Costad142e3e2013-02-22 16:34:52 -08005998 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07005999 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006000 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006001
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006002 memcg = mem_cgroup_alloc();
6003 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006004 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006005
Bob Liu3ed28fa2012-01-12 17:19:04 -08006006 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006007 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006008 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07006009
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006010 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04006011 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08006012 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08006013 res_counter_init(&memcg->res, NULL);
6014 res_counter_init(&memcg->memsw, NULL);
6015 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08006016 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08006017
Glauber Costad142e3e2013-02-22 16:34:52 -08006018 memcg->last_scanned_node = MAX_NUMNODES;
6019 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08006020 memcg->move_charge_at_immigrate = 0;
6021 mutex_init(&memcg->thresholds_lock);
6022 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07006023 vmpressure_init(&memcg->vmpressure);
Michal Hocko7d910c02013-09-12 15:13:28 -07006024 spin_lock_init(&memcg->soft_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08006025
6026 return &memcg->css;
6027
6028free_out:
6029 __mem_cgroup_free(memcg);
6030 return ERR_PTR(error);
6031}
6032
6033static int
Tejun Heoeb954192013-08-08 20:11:23 -04006034mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08006035{
Tejun Heoeb954192013-08-08 20:11:23 -04006036 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6037 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08006038 int error = 0;
6039
Tejun Heo63876982013-08-08 20:11:23 -04006040 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08006041 return 0;
6042
Glauber Costa09998212013-02-22 16:34:55 -08006043 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006044
6045 memcg->use_hierarchy = parent->use_hierarchy;
6046 memcg->oom_kill_disable = parent->oom_kill_disable;
6047 memcg->swappiness = mem_cgroup_swappiness(parent);
6048
6049 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006050 res_counter_init(&memcg->res, &parent->res);
6051 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006052 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08006053
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006054 /*
Li Zefan8d76a972013-07-08 16:00:36 -07006055 * No need to take a reference to the parent because cgroup
6056 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006057 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08006058 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006059 res_counter_init(&memcg->res, NULL);
6060 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006061 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006062 /*
6063 * Deeper hierachy with use_hierarchy == false doesn't make
6064 * much sense so let cgroup subsystem know about this
6065 * unfortunate state in our controller.
6066 */
Glauber Costad142e3e2013-02-22 16:34:52 -08006067 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006068 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08006069 }
Glauber Costacbe128e32012-04-09 19:36:34 -03006070
6071 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08006072 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006073 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006074}
6075
Michal Hocko5f578162013-04-29 15:07:17 -07006076/*
6077 * Announce all parents that a group from their hierarchy is gone.
6078 */
6079static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
6080{
6081 struct mem_cgroup *parent = memcg;
6082
6083 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07006084 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07006085
6086 /*
6087 * if the root memcg is not hierarchical we have to check it
6088 * explicitely.
6089 */
6090 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07006091 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07006092}
6093
Tejun Heoeb954192013-08-08 20:11:23 -04006094static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006095{
Tejun Heoeb954192013-08-08 20:11:23 -04006096 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07006097
Li Zefan10d5ebf2013-07-08 16:00:33 -07006098 kmem_cgroup_css_offline(memcg);
6099
Michal Hocko5f578162013-04-29 15:07:17 -07006100 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02006101 mem_cgroup_reparent_charges(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -07006102 if (memcg->soft_contributed) {
6103 while ((memcg = parent_mem_cgroup(memcg)))
6104 atomic_dec(&memcg->children_in_excess);
6105 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08006106 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07006107 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006108}
6109
Tejun Heoeb954192013-08-08 20:11:23 -04006110static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006111{
Tejun Heoeb954192013-08-08 20:11:23 -04006112 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08006113
Li Zefan10d5ebf2013-07-08 16:00:33 -07006114 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07006115 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006116}
6117
Daisuke Nishimura02491442010-03-10 15:22:17 -08006118#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006119/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006120#define PRECHARGE_COUNT_AT_ONCE 256
6121static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006122{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006123 int ret = 0;
6124 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006125 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006126
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006127 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006128 mc.precharge += count;
6129 /* we don't need css_get for root */
6130 return ret;
6131 }
6132 /* try to charge at once */
6133 if (count > 1) {
6134 struct res_counter *dummy;
6135 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006136 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006137 * by cgroup_lock_live_cgroup() that it is not removed and we
6138 * are still under the same cgroup_mutex. So we can postpone
6139 * css_get().
6140 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006141 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006142 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006143 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006144 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006145 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006146 goto one_by_one;
6147 }
6148 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006149 return ret;
6150 }
6151one_by_one:
6152 /* fall back to one by one charge */
6153 while (count--) {
6154 if (signal_pending(current)) {
6155 ret = -EINTR;
6156 break;
6157 }
6158 if (!batch_count--) {
6159 batch_count = PRECHARGE_COUNT_AT_ONCE;
6160 cond_resched();
6161 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006162 ret = __mem_cgroup_try_charge(NULL,
6163 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006164 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006165 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006166 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006167 mc.precharge++;
6168 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006169 return ret;
6170}
6171
6172/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006173 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006174 * @vma: the vma the pte to be checked belongs
6175 * @addr: the address corresponding to the pte to be checked
6176 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08006177 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006178 *
6179 * Returns
6180 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6181 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6182 * move charge. if @target is not NULL, the page is stored in target->page
6183 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006184 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6185 * target for charge migration. if @target is not NULL, the entry is stored
6186 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006187 *
6188 * Called with pte lock held.
6189 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006190union mc_target {
6191 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006192 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006193};
6194
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006195enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006196 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006197 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006198 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006199};
6200
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006201static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6202 unsigned long addr, pte_t ptent)
6203{
6204 struct page *page = vm_normal_page(vma, addr, ptent);
6205
6206 if (!page || !page_mapped(page))
6207 return NULL;
6208 if (PageAnon(page)) {
6209 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006210 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006211 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006212 } else if (!move_file())
6213 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006214 return NULL;
6215 if (!get_page_unless_zero(page))
6216 return NULL;
6217
6218 return page;
6219}
6220
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006221#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006222static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6223 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6224{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006225 struct page *page = NULL;
6226 swp_entry_t ent = pte_to_swp_entry(ptent);
6227
6228 if (!move_anon() || non_swap_entry(ent))
6229 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006230 /*
6231 * Because lookup_swap_cache() updates some statistics counter,
6232 * we call find_get_page() with swapper_space directly.
6233 */
Shaohua Li33806f02013-02-22 16:34:37 -08006234 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006235 if (do_swap_account)
6236 entry->val = ent.val;
6237
6238 return page;
6239}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006240#else
6241static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6242 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6243{
6244 return NULL;
6245}
6246#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006247
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006248static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6249 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6250{
6251 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006252 struct address_space *mapping;
6253 pgoff_t pgoff;
6254
6255 if (!vma->vm_file) /* anonymous vma */
6256 return NULL;
6257 if (!move_file())
6258 return NULL;
6259
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006260 mapping = vma->vm_file->f_mapping;
6261 if (pte_none(ptent))
6262 pgoff = linear_page_index(vma, addr);
6263 else /* pte_file(ptent) is true */
6264 pgoff = pte_to_pgoff(ptent);
6265
6266 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006267 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006268
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006269#ifdef CONFIG_SWAP
6270 /* shmem/tmpfs may report page out on swap: account for that too. */
6271 if (radix_tree_exceptional_entry(page)) {
6272 swp_entry_t swap = radix_to_swp_entry(page);
6273 if (do_swap_account)
6274 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006275 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006276 }
6277#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006278 return page;
6279}
6280
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006281static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006282 unsigned long addr, pte_t ptent, union mc_target *target)
6283{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006284 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006285 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006286 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006287 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006288
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006289 if (pte_present(ptent))
6290 page = mc_handle_present_pte(vma, addr, ptent);
6291 else if (is_swap_pte(ptent))
6292 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006293 else if (pte_none(ptent) || pte_file(ptent))
6294 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006295
6296 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006297 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006298 if (page) {
6299 pc = lookup_page_cgroup(page);
6300 /*
6301 * Do only loose check w/o page_cgroup lock.
6302 * mem_cgroup_move_account() checks the pc is valid or not under
6303 * the lock.
6304 */
6305 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6306 ret = MC_TARGET_PAGE;
6307 if (target)
6308 target->page = page;
6309 }
6310 if (!ret || !target)
6311 put_page(page);
6312 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006313 /* There is a swap entry and a page doesn't exist or isn't charged */
6314 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08006315 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006316 ret = MC_TARGET_SWAP;
6317 if (target)
6318 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006319 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006320 return ret;
6321}
6322
Naoya Horiguchi12724852012-03-21 16:34:28 -07006323#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6324/*
6325 * We don't consider swapping or file mapped pages because THP does not
6326 * support them for now.
6327 * Caller should make sure that pmd_trans_huge(pmd) is true.
6328 */
6329static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6330 unsigned long addr, pmd_t pmd, union mc_target *target)
6331{
6332 struct page *page = NULL;
6333 struct page_cgroup *pc;
6334 enum mc_target_type ret = MC_TARGET_NONE;
6335
6336 page = pmd_page(pmd);
6337 VM_BUG_ON(!page || !PageHead(page));
6338 if (!move_anon())
6339 return ret;
6340 pc = lookup_page_cgroup(page);
6341 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6342 ret = MC_TARGET_PAGE;
6343 if (target) {
6344 get_page(page);
6345 target->page = page;
6346 }
6347 }
6348 return ret;
6349}
6350#else
6351static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6352 unsigned long addr, pmd_t pmd, union mc_target *target)
6353{
6354 return MC_TARGET_NONE;
6355}
6356#endif
6357
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006358static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6359 unsigned long addr, unsigned long end,
6360 struct mm_walk *walk)
6361{
6362 struct vm_area_struct *vma = walk->private;
6363 pte_t *pte;
6364 spinlock_t *ptl;
6365
Naoya Horiguchi12724852012-03-21 16:34:28 -07006366 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6367 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6368 mc.precharge += HPAGE_PMD_NR;
6369 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006370 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006371 }
Dave Hansen03319322011-03-22 16:32:56 -07006372
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006373 if (pmd_trans_unstable(pmd))
6374 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006375 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6376 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006377 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006378 mc.precharge++; /* increment precharge temporarily */
6379 pte_unmap_unlock(pte - 1, ptl);
6380 cond_resched();
6381
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006382 return 0;
6383}
6384
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006385static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6386{
6387 unsigned long precharge;
6388 struct vm_area_struct *vma;
6389
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006390 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006391 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6392 struct mm_walk mem_cgroup_count_precharge_walk = {
6393 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6394 .mm = mm,
6395 .private = vma,
6396 };
6397 if (is_vm_hugetlb_page(vma))
6398 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006399 walk_page_range(vma->vm_start, vma->vm_end,
6400 &mem_cgroup_count_precharge_walk);
6401 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006402 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006403
6404 precharge = mc.precharge;
6405 mc.precharge = 0;
6406
6407 return precharge;
6408}
6409
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006410static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6411{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006412 unsigned long precharge = mem_cgroup_count_precharge(mm);
6413
6414 VM_BUG_ON(mc.moving_task);
6415 mc.moving_task = current;
6416 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006417}
6418
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006419/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6420static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006421{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006422 struct mem_cgroup *from = mc.from;
6423 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006424 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006425
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006426 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006427 if (mc.precharge) {
6428 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6429 mc.precharge = 0;
6430 }
6431 /*
6432 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6433 * we must uncharge here.
6434 */
6435 if (mc.moved_charge) {
6436 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6437 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006438 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006439 /* we must fixup refcnts and charges */
6440 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006441 /* uncharge swap account from the old cgroup */
6442 if (!mem_cgroup_is_root(mc.from))
6443 res_counter_uncharge(&mc.from->memsw,
6444 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006445
6446 for (i = 0; i < mc.moved_swap; i++)
6447 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006448
6449 if (!mem_cgroup_is_root(mc.to)) {
6450 /*
6451 * we charged both to->res and to->memsw, so we should
6452 * uncharge to->res.
6453 */
6454 res_counter_uncharge(&mc.to->res,
6455 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006456 }
Li Zefan40503772013-07-08 16:00:34 -07006457 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006458 mc.moved_swap = 0;
6459 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006460 memcg_oom_recover(from);
6461 memcg_oom_recover(to);
6462 wake_up_all(&mc.waitq);
6463}
6464
6465static void mem_cgroup_clear_mc(void)
6466{
6467 struct mem_cgroup *from = mc.from;
6468
6469 /*
6470 * we must clear moving_task before waking up waiters at the end of
6471 * task migration.
6472 */
6473 mc.moving_task = NULL;
6474 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006475 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006476 mc.from = NULL;
6477 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006478 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006479 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006480}
6481
Tejun Heoeb954192013-08-08 20:11:23 -04006482static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006483 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006484{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006485 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006486 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006487 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006488 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006489
Glauber Costaee5e8472013-02-22 16:34:50 -08006490 /*
6491 * We are now commited to this value whatever it is. Changes in this
6492 * tunable will only affect upcoming migrations, not the current one.
6493 * So we need to save it, and keep it going.
6494 */
6495 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6496 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006497 struct mm_struct *mm;
6498 struct mem_cgroup *from = mem_cgroup_from_task(p);
6499
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006500 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006501
6502 mm = get_task_mm(p);
6503 if (!mm)
6504 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006505 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006506 if (mm->owner == p) {
6507 VM_BUG_ON(mc.from);
6508 VM_BUG_ON(mc.to);
6509 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006510 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006511 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006512 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006513 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006514 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006515 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006516 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006517 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006518 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006519
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006520 ret = mem_cgroup_precharge_mc(mm);
6521 if (ret)
6522 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006523 }
6524 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006525 }
6526 return ret;
6527}
6528
Tejun Heoeb954192013-08-08 20:11:23 -04006529static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006530 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006531{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006532 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006533}
6534
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006535static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6536 unsigned long addr, unsigned long end,
6537 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006538{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006539 int ret = 0;
6540 struct vm_area_struct *vma = walk->private;
6541 pte_t *pte;
6542 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006543 enum mc_target_type target_type;
6544 union mc_target target;
6545 struct page *page;
6546 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006547
Naoya Horiguchi12724852012-03-21 16:34:28 -07006548 /*
6549 * We don't take compound_lock() here but no race with splitting thp
6550 * happens because:
6551 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6552 * under splitting, which means there's no concurrent thp split,
6553 * - if another thread runs into split_huge_page() just after we
6554 * entered this if-block, the thread must wait for page table lock
6555 * to be unlocked in __split_huge_page_splitting(), where the main
6556 * part of thp split is not executed yet.
6557 */
6558 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006559 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006560 spin_unlock(&vma->vm_mm->page_table_lock);
6561 return 0;
6562 }
6563 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6564 if (target_type == MC_TARGET_PAGE) {
6565 page = target.page;
6566 if (!isolate_lru_page(page)) {
6567 pc = lookup_page_cgroup(page);
6568 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006569 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006570 mc.precharge -= HPAGE_PMD_NR;
6571 mc.moved_charge += HPAGE_PMD_NR;
6572 }
6573 putback_lru_page(page);
6574 }
6575 put_page(page);
6576 }
6577 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006578 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006579 }
6580
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006581 if (pmd_trans_unstable(pmd))
6582 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006583retry:
6584 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6585 for (; addr != end; addr += PAGE_SIZE) {
6586 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006587 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006588
6589 if (!mc.precharge)
6590 break;
6591
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006592 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006593 case MC_TARGET_PAGE:
6594 page = target.page;
6595 if (isolate_lru_page(page))
6596 goto put;
6597 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006598 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006599 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006600 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006601 /* we uncharge from mc.from later. */
6602 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006603 }
6604 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006605put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006606 put_page(page);
6607 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006608 case MC_TARGET_SWAP:
6609 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006610 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006611 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006612 /* we fixup refcnts and charges later. */
6613 mc.moved_swap++;
6614 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006615 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006616 default:
6617 break;
6618 }
6619 }
6620 pte_unmap_unlock(pte - 1, ptl);
6621 cond_resched();
6622
6623 if (addr != end) {
6624 /*
6625 * We have consumed all precharges we got in can_attach().
6626 * We try charge one by one, but don't do any additional
6627 * charges to mc.to if we have failed in charge once in attach()
6628 * phase.
6629 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006630 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006631 if (!ret)
6632 goto retry;
6633 }
6634
6635 return ret;
6636}
6637
6638static void mem_cgroup_move_charge(struct mm_struct *mm)
6639{
6640 struct vm_area_struct *vma;
6641
6642 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006643retry:
6644 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6645 /*
6646 * Someone who are holding the mmap_sem might be waiting in
6647 * waitq. So we cancel all extra charges, wake up all waiters,
6648 * and retry. Because we cancel precharges, we might not be able
6649 * to move enough charges, but moving charge is a best-effort
6650 * feature anyway, so it wouldn't be a big problem.
6651 */
6652 __mem_cgroup_clear_mc();
6653 cond_resched();
6654 goto retry;
6655 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006656 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6657 int ret;
6658 struct mm_walk mem_cgroup_move_charge_walk = {
6659 .pmd_entry = mem_cgroup_move_charge_pte_range,
6660 .mm = mm,
6661 .private = vma,
6662 };
6663 if (is_vm_hugetlb_page(vma))
6664 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006665 ret = walk_page_range(vma->vm_start, vma->vm_end,
6666 &mem_cgroup_move_charge_walk);
6667 if (ret)
6668 /*
6669 * means we have consumed all precharges and failed in
6670 * doing additional charge. Just abandon here.
6671 */
6672 break;
6673 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006674 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006675}
6676
Tejun Heoeb954192013-08-08 20:11:23 -04006677static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006678 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006679{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006680 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006681 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006682
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006683 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006684 if (mc.to)
6685 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006686 mmput(mm);
6687 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006688 if (mc.to)
6689 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006690}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006691#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006692static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006693 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006694{
6695 return 0;
6696}
Tejun Heoeb954192013-08-08 20:11:23 -04006697static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef52012-01-31 13:47:36 +08006698 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006699{
6700}
Tejun Heoeb954192013-08-08 20:11:23 -04006701static void mem_cgroup_move_task(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}
6705#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006706
Tejun Heof00baae2013-04-15 13:41:15 -07006707/*
6708 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6709 * to verify sane_behavior flag on each mount attempt.
6710 */
Tejun Heoeb954192013-08-08 20:11:23 -04006711static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006712{
6713 /*
6714 * use_hierarchy is forced with sane_behavior. cgroup core
6715 * guarantees that @root doesn't have any children, so turning it
6716 * on for the root memcg is enough.
6717 */
Tejun Heoeb954192013-08-08 20:11:23 -04006718 if (cgroup_sane_behavior(root_css->cgroup))
6719 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006720}
6721
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006722struct cgroup_subsys mem_cgroup_subsys = {
6723 .name = "memory",
6724 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006725 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006726 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006727 .css_offline = mem_cgroup_css_offline,
6728 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006729 .can_attach = mem_cgroup_can_attach,
6730 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006731 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006732 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006733 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006734 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006735 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006736};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006737
Andrew Mortonc255a452012-07-31 16:43:02 -07006738#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006739static int __init enable_swap_account(char *s)
6740{
Michal Hockoa2c89902011-05-24 17:12:50 -07006741 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006742 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006743 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006744 really_do_swap_account = 0;
6745 return 1;
6746}
Michal Hockoa2c89902011-05-24 17:12:50 -07006747__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006748
Michal Hocko2d110852013-02-22 16:34:43 -08006749static void __init memsw_file_init(void)
6750{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006751 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006752}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006753
6754static void __init enable_swap_cgroup(void)
6755{
6756 if (!mem_cgroup_disabled() && really_do_swap_account) {
6757 do_swap_account = 1;
6758 memsw_file_init();
6759 }
6760}
6761
Michal Hocko2d110852013-02-22 16:34:43 -08006762#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006763static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006764{
6765}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006766#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006767
6768/*
Michal Hocko10813122013-02-22 16:35:41 -08006769 * subsys_initcall() for memory controller.
6770 *
6771 * Some parts like hotcpu_notifier() have to be initialized from this context
6772 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6773 * everything that doesn't depend on a specific mem_cgroup structure should
6774 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006775 */
6776static int __init mem_cgroup_init(void)
6777{
6778 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006779 enable_swap_cgroup();
Michal Hockoe4777492013-02-22 16:35:40 -08006780 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006781 return 0;
6782}
6783subsys_initcall(mem_cgroup_init);