blob: c14039575608201163f5490669ce5ff85b944296 [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 Hiroyuki453a9bf2011-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
Li Zefan4219b2d2013-09-23 16:56:29 +0800491/*
492 * We restrict the id in the range of [1, 65535], so it can fit into
493 * an unsigned short.
494 */
495#define MEM_CGROUP_ID_MAX USHRT_MAX
496
Li Zefan34c00c32013-09-23 16:56:01 +0800497static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
498{
499 /*
500 * The ID of the root cgroup is 0, but memcg treat 0 as an
501 * invalid ID, so we return (cgroup_id + 1).
502 */
503 return memcg->css.cgroup->id + 1;
504}
505
506static inline struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
507{
508 struct cgroup_subsys_state *css;
509
510 css = css_from_id(id - 1, &mem_cgroup_subsys);
511 return mem_cgroup_from_css(css);
512}
513
Glauber Costae1aab162011-12-11 21:47:03 +0000514/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700515#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000516
Glauber Costae1aab162011-12-11 21:47:03 +0000517void sock_update_memcg(struct sock *sk)
518{
Glauber Costa376be5f2012-01-20 04:57:14 +0000519 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000520 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700521 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000522
523 BUG_ON(!sk->sk_prot->proto_cgroup);
524
Glauber Costaf3f511e2012-01-05 20:16:39 +0000525 /* Socket cloning can throw us here with sk_cgrp already
526 * filled. It won't however, necessarily happen from
527 * process context. So the test for root memcg given
528 * the current task's memcg won't help us in this case.
529 *
530 * Respecting the original socket's memcg is a better
531 * decision in this case.
532 */
533 if (sk->sk_cgrp) {
534 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700535 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000536 return;
537 }
538
Glauber Costae1aab162011-12-11 21:47:03 +0000539 rcu_read_lock();
540 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700541 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Li Zefan5347e5a2013-07-08 16:00:30 -0700542 if (!mem_cgroup_is_root(memcg) &&
543 memcg_proto_active(cg_proto) && css_tryget(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700544 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000545 }
546 rcu_read_unlock();
547 }
548}
549EXPORT_SYMBOL(sock_update_memcg);
550
551void sock_release_memcg(struct sock *sk)
552{
Glauber Costa376be5f2012-01-20 04:57:14 +0000553 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000554 struct mem_cgroup *memcg;
555 WARN_ON(!sk->sk_cgrp->memcg);
556 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700557 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000558 }
559}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000560
561struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
562{
563 if (!memcg || mem_cgroup_is_root(memcg))
564 return NULL;
565
566 return &memcg->tcp_mem.cg_proto;
567}
568EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000569
Glauber Costa3f134612012-05-29 15:07:11 -0700570static void disarm_sock_keys(struct mem_cgroup *memcg)
571{
572 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
573 return;
574 static_key_slow_dec(&memcg_socket_limit_enabled);
575}
576#else
577static void disarm_sock_keys(struct mem_cgroup *memcg)
578{
579}
580#endif
581
Glauber Costaa8964b92012-12-18 14:22:09 -0800582#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800583/*
584 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
585 * There are two main reasons for not using the css_id for this:
586 * 1) this works better in sparse environments, where we have a lot of memcgs,
587 * but only a few kmem-limited. Or also, if we have, for instance, 200
588 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
589 * 200 entry array for that.
590 *
591 * 2) In order not to violate the cgroup API, we would like to do all memory
592 * allocation in ->create(). At that point, we haven't yet allocated the
593 * css_id. Having a separate index prevents us from messing with the cgroup
594 * core for this
595 *
596 * The current size of the caches array is stored in
597 * memcg_limited_groups_array_size. It will double each time we have to
598 * increase it.
599 */
600static DEFINE_IDA(kmem_limited_groups);
Glauber Costa749c5412012-12-18 14:23:01 -0800601int memcg_limited_groups_array_size;
602
Glauber Costa55007d82012-12-18 14:22:38 -0800603/*
604 * MIN_SIZE is different than 1, because we would like to avoid going through
605 * the alloc/free process all the time. In a small machine, 4 kmem-limited
606 * cgroups is a reasonable guess. In the future, it could be a parameter or
607 * tunable, but that is strictly not necessary.
608 *
609 * MAX_SIZE should be as large as the number of css_ids. Ideally, we could get
610 * this constant directly from cgroup, but it is understandable that this is
611 * better kept as an internal representation in cgroup.c. In any case, the
612 * css_id space is not getting any smaller, and we don't have to necessarily
613 * increase ours as well if it increases.
614 */
615#define MEMCG_CACHES_MIN_SIZE 4
616#define MEMCG_CACHES_MAX_SIZE 65535
617
Glauber Costad7f25f82012-12-18 14:22:40 -0800618/*
619 * A lot of the calls to the cache allocation functions are expected to be
620 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
621 * conditional to this static branch, we'll have to allow modules that does
622 * kmem_cache_alloc and the such to see this symbol as well
623 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800624struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800625EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800626
627static void disarm_kmem_keys(struct mem_cgroup *memcg)
628{
Glauber Costa55007d82012-12-18 14:22:38 -0800629 if (memcg_kmem_is_active(memcg)) {
Glauber Costaa8964b92012-12-18 14:22:09 -0800630 static_key_slow_dec(&memcg_kmem_enabled_key);
Glauber Costa55007d82012-12-18 14:22:38 -0800631 ida_simple_remove(&kmem_limited_groups, memcg->kmemcg_id);
632 }
Glauber Costabea207c2012-12-18 14:22:11 -0800633 /*
634 * This check can't live in kmem destruction function,
635 * since the charges will outlive the cgroup
636 */
637 WARN_ON(res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0);
Glauber Costaa8964b92012-12-18 14:22:09 -0800638}
639#else
640static void disarm_kmem_keys(struct mem_cgroup *memcg)
641{
642}
643#endif /* CONFIG_MEMCG_KMEM */
644
645static void disarm_static_keys(struct mem_cgroup *memcg)
646{
647 disarm_sock_keys(memcg);
648 disarm_kmem_keys(memcg);
649}
650
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700651static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800652
Balbir Singhf64c3f52009-09-23 15:56:37 -0700653static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700654mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700655{
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800656 VM_BUG_ON((unsigned)nid >= nr_node_ids);
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700657 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700658}
659
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700660struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100661{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700662 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100663}
664
Balbir Singhf64c3f52009-09-23 15:56:37 -0700665static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700666page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700667{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700668 int nid = page_to_nid(page);
669 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700670
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700671 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700672}
673
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700674/*
675 * Implementation Note: reading percpu statistics for memcg.
676 *
677 * Both of vmstat[] and percpu_counter has threshold and do periodic
678 * synchronization to implement "quick" read. There are trade-off between
679 * reading cost and precision of value. Then, we may have a chance to implement
680 * a periodic synchronizion of counter in memcg's counter.
681 *
682 * But this _read() function is used for user interface now. The user accounts
683 * memory usage by memory cgroup and he _always_ requires exact value because
684 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
685 * have to visit all online cpus and make sum. So, for now, unnecessary
686 * synchronization is not implemented. (just implemented for cpu hotplug)
687 *
688 * If there are kernel internal actions which can make use of some not-exact
689 * value, and reading all cpu value can be performance bottleneck in some
690 * common workload, threashold and synchonization as vmstat[] should be
691 * implemented.
692 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700693static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700694 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800695{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700696 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800697 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800698
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700699 get_online_cpus();
700 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700701 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700702#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700703 spin_lock(&memcg->pcp_counter_lock);
704 val += memcg->nocpu_base.count[idx];
705 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700706#endif
707 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800708 return val;
709}
710
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700711static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700712 bool charge)
713{
714 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700715 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700716}
717
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700718static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700719 enum mem_cgroup_events_index idx)
720{
721 unsigned long val = 0;
722 int cpu;
723
724 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700725 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700726#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700727 spin_lock(&memcg->pcp_counter_lock);
728 val += memcg->nocpu_base.events[idx];
729 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700730#endif
731 return val;
732}
733
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700734static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700735 struct page *page,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700736 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800737{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800738 preempt_disable();
739
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700740 /*
741 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
742 * counted as CACHE even if it's on ANON LRU.
743 */
744 if (anon)
745 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700746 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800747 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700748 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700749 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700750
David Rientjesb070e652013-05-07 16:18:09 -0700751 if (PageTransHuge(page))
752 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
753 nr_pages);
754
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800755 /* pagein of a big page is an event. So, ignore page size */
756 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700757 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800758 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700759 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800760 nr_pages = -nr_pages; /* for event */
761 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800762
Johannes Weiner13114712012-05-29 15:07:07 -0700763 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800764
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800765 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800766}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800767
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700768unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700769mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700770{
771 struct mem_cgroup_per_zone *mz;
772
773 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
774 return mz->lru_size[lru];
775}
776
777static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700778mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700779 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700780{
781 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700782 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700783 unsigned long ret = 0;
784
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700785 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700786
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700787 for_each_lru(lru) {
788 if (BIT(lru) & lru_mask)
789 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700790 }
791 return ret;
792}
793
794static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700795mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700796 int nid, unsigned int lru_mask)
797{
Ying Han889976d2011-05-26 16:25:33 -0700798 u64 total = 0;
799 int zid;
800
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700801 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700802 total += mem_cgroup_zone_nr_lru_pages(memcg,
803 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700804
Ying Han889976d2011-05-26 16:25:33 -0700805 return total;
806}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700807
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700808static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700809 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800810{
Ying Han889976d2011-05-26 16:25:33 -0700811 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800812 u64 total = 0;
813
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800814 for_each_node_state(nid, N_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700815 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800816 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800817}
818
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800819static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
820 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800821{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700822 unsigned long val, next;
823
Johannes Weiner13114712012-05-29 15:07:07 -0700824 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700825 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700826 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800827 if ((long)next - (long)val < 0) {
828 switch (target) {
829 case MEM_CGROUP_TARGET_THRESH:
830 next = val + THRESHOLDS_EVENTS_TARGET;
831 break;
Michal Hocko7d910c02013-09-12 15:13:28 -0700832 case MEM_CGROUP_TARGET_SOFTLIMIT:
833 next = val + SOFTLIMIT_EVENTS_TARGET;
834 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800835 case MEM_CGROUP_TARGET_NUMAINFO:
836 next = val + NUMAINFO_EVENTS_TARGET;
837 break;
838 default:
839 break;
840 }
841 __this_cpu_write(memcg->stat->targets[target], next);
842 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700843 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800844 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800845}
846
847/*
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700848 * Called from rate-limited memcg_check_events when enough
Michal Hocko7d910c02013-09-12 15:13:28 -0700849 * MEM_CGROUP_TARGET_SOFTLIMIT events are accumulated and it makes sure
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700850 * that all the parents up the hierarchy will be notified that this group
Michal Hocko7d910c02013-09-12 15:13:28 -0700851 * is in excess or that it is not in excess anymore. mmecg->soft_contributed
852 * makes the transition a single action whenever the state flips from one to
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700853 * the other.
Michal Hocko7d910c02013-09-12 15:13:28 -0700854 */
855static void mem_cgroup_update_soft_limit(struct mem_cgroup *memcg)
856{
857 unsigned long long excess = res_counter_soft_limit_excess(&memcg->res);
858 struct mem_cgroup *parent = memcg;
859 int delta = 0;
860
861 spin_lock(&memcg->soft_lock);
862 if (excess) {
863 if (!memcg->soft_contributed) {
864 delta = 1;
865 memcg->soft_contributed = true;
866 }
867 } else {
868 if (memcg->soft_contributed) {
869 delta = -1;
870 memcg->soft_contributed = false;
871 }
872 }
873
874 /*
875 * Necessary to update all ancestors when hierarchy is used
876 * because their event counter is not touched.
Michal Hocko1be171d2013-09-12 15:13:32 -0700877 * We track children even outside the hierarchy for the root
878 * cgroup because tree walk starting at root should visit
879 * all cgroups and we want to prevent from pointless tree
880 * walk if no children is below the limit.
Michal Hocko7d910c02013-09-12 15:13:28 -0700881 */
882 while (delta && (parent = parent_mem_cgroup(parent)))
883 atomic_add(delta, &parent->children_in_excess);
Michal Hocko1be171d2013-09-12 15:13:32 -0700884 if (memcg != root_mem_cgroup && !root_mem_cgroup->use_hierarchy)
885 atomic_add(delta, &root_mem_cgroup->children_in_excess);
Michal Hocko7d910c02013-09-12 15:13:28 -0700886 spin_unlock(&memcg->soft_lock);
887}
888
889/*
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800890 * Check events in order.
891 *
892 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700893static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800894{
Steven Rostedt47994012011-11-02 13:38:33 -0700895 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800896 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800897 if (unlikely(mem_cgroup_event_ratelimit(memcg,
898 MEM_CGROUP_TARGET_THRESH))) {
Michal Hocko7d910c02013-09-12 15:13:28 -0700899 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800900 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800901
Michal Hocko7d910c02013-09-12 15:13:28 -0700902 do_softlimit = mem_cgroup_event_ratelimit(memcg,
903 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700904#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800905 do_numainfo = mem_cgroup_event_ratelimit(memcg,
906 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700907#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800908 preempt_enable();
909
910 mem_cgroup_threshold(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -0700911 if (unlikely(do_softlimit))
912 mem_cgroup_update_soft_limit(memcg);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800913#if MAX_NUMNODES > 1
914 if (unlikely(do_numainfo))
915 atomic_inc(&memcg->numainfo_events);
916#endif
917 } else
918 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800919}
920
Balbir Singhcf475ad2008-04-29 01:00:16 -0700921struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800922{
Balbir Singh31a78f22008-09-28 23:09:31 +0100923 /*
924 * mm_update_next_owner() may clear mm->owner to NULL
925 * if it races with swapoff, page migration, etc.
926 * So this can be called with p == NULL.
927 */
928 if (unlikely(!p))
929 return NULL;
930
Tejun Heo8af01f52013-08-08 20:11:22 -0400931 return mem_cgroup_from_css(task_css(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800932}
933
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700934struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800935{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700936 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700937
938 if (!mm)
939 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800940 /*
941 * Because we have no locks, mm->owner's may be being moved to other
942 * cgroup. We use css_tryget() here even if this looks
943 * pessimistic (rather than adding locks here).
944 */
945 rcu_read_lock();
946 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700947 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
948 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800949 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700950 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800951 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700952 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800953}
954
Michal Hockode577802013-09-12 15:13:26 -0700955static enum mem_cgroup_filter_t
956mem_cgroup_filter(struct mem_cgroup *memcg, struct mem_cgroup *root,
957 mem_cgroup_iter_filter cond)
958{
959 if (!cond)
960 return VISIT;
961 return cond(memcg, root);
962}
963
Michal Hocko16248d82013-04-29 15:07:19 -0700964/*
965 * Returns a next (in a pre-order walk) alive memcg (with elevated css
966 * ref. count) or NULL if the whole root's subtree has been visited.
967 *
968 * helper function to be used by mem_cgroup_iter
969 */
970static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
Michal Hockode577802013-09-12 15:13:26 -0700971 struct mem_cgroup *last_visited, mem_cgroup_iter_filter cond)
Michal Hocko16248d82013-04-29 15:07:19 -0700972{
Tejun Heo492eb212013-08-08 20:11:25 -0400973 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700974
Tejun Heobd8815a2013-08-08 20:11:27 -0400975 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -0700976skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -0400977 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -0700978
979 /*
980 * Even if we found a group we have to make sure it is
981 * alive. css && !memcg means that the groups should be
982 * skipped and we should continue the tree walk.
983 * last_visited css is safe to use because it is
984 * protected by css_get and the tree walk is rcu safe.
985 */
Tejun Heo492eb212013-08-08 20:11:25 -0400986 if (next_css) {
987 struct mem_cgroup *mem = mem_cgroup_from_css(next_css);
988
Michal Hockode577802013-09-12 15:13:26 -0700989 switch (mem_cgroup_filter(mem, root, cond)) {
990 case SKIP:
Tejun Heo492eb212013-08-08 20:11:25 -0400991 prev_css = next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700992 goto skip_node;
Michal Hockode577802013-09-12 15:13:26 -0700993 case SKIP_TREE:
994 if (mem == root)
995 return NULL;
996 /*
997 * css_rightmost_descendant is not an optimal way to
998 * skip through a subtree (especially for imbalanced
999 * trees leaning to right) but that's what we have right
1000 * now. More effective solution would be traversing
1001 * right-up for first non-NULL without calling
1002 * css_next_descendant_pre afterwards.
1003 */
1004 prev_css = css_rightmost_descendant(next_css);
1005 goto skip_node;
1006 case VISIT:
1007 if (css_tryget(&mem->css))
1008 return mem;
1009 else {
1010 prev_css = next_css;
1011 goto skip_node;
1012 }
1013 break;
Michal Hocko16248d82013-04-29 15:07:19 -07001014 }
1015 }
1016
1017 return NULL;
1018}
1019
Johannes Weiner519ebea2013-07-03 15:04:51 -07001020static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
1021{
1022 /*
1023 * When a group in the hierarchy below root is destroyed, the
1024 * hierarchy iterator can no longer be trusted since it might
1025 * have pointed to the destroyed group. Invalidate it.
1026 */
1027 atomic_inc(&root->dead_count);
1028}
1029
1030static struct mem_cgroup *
1031mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
1032 struct mem_cgroup *root,
1033 int *sequence)
1034{
1035 struct mem_cgroup *position = NULL;
1036 /*
1037 * A cgroup destruction happens in two stages: offlining and
1038 * release. They are separated by a RCU grace period.
1039 *
1040 * If the iterator is valid, we may still race with an
1041 * offlining. The RCU lock ensures the object won't be
1042 * released, tryget will fail if we lost the race.
1043 */
1044 *sequence = atomic_read(&root->dead_count);
1045 if (iter->last_dead_count == *sequence) {
1046 smp_rmb();
1047 position = iter->last_visited;
1048 if (position && !css_tryget(&position->css))
1049 position = NULL;
1050 }
1051 return position;
1052}
1053
1054static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
1055 struct mem_cgroup *last_visited,
1056 struct mem_cgroup *new_position,
1057 int sequence)
1058{
1059 if (last_visited)
1060 css_put(&last_visited->css);
1061 /*
1062 * We store the sequence count from the time @last_visited was
1063 * loaded successfully instead of rereading it here so that we
1064 * don't lose destruction events in between. We could have
1065 * raced with the destruction of @new_position after all.
1066 */
1067 iter->last_visited = new_position;
1068 smp_wmb();
1069 iter->last_dead_count = sequence;
1070}
1071
Johannes Weiner56600482012-01-12 17:17:59 -08001072/**
1073 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1074 * @root: hierarchy root
1075 * @prev: previously returned memcg, NULL on first invocation
1076 * @reclaim: cookie for shared reclaim walks, NULL for full walks
Michal Hockode577802013-09-12 15:13:26 -07001077 * @cond: filter for visited nodes, NULL for no filter
Johannes Weiner56600482012-01-12 17:17:59 -08001078 *
1079 * Returns references to children of the hierarchy below @root, or
1080 * @root itself, or %NULL after a full round-trip.
1081 *
1082 * Caller must pass the return value in @prev on subsequent
1083 * invocations for reference counting, or use mem_cgroup_iter_break()
1084 * to cancel a hierarchy walk before the round-trip is complete.
1085 *
1086 * Reclaimers can specify a zone and a priority level in @reclaim to
1087 * divide up the memcgs in the hierarchy among all concurrent
1088 * reclaimers operating on the same zone and priority.
1089 */
Michal Hockode577802013-09-12 15:13:26 -07001090struct mem_cgroup *mem_cgroup_iter_cond(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -08001091 struct mem_cgroup *prev,
Michal Hockode577802013-09-12 15:13:26 -07001092 struct mem_cgroup_reclaim_cookie *reclaim,
1093 mem_cgroup_iter_filter cond)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001094{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001095 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001096 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001097
Michal Hockode577802013-09-12 15:13:26 -07001098 if (mem_cgroup_disabled()) {
1099 /* first call must return non-NULL, second return NULL */
1100 return (struct mem_cgroup *)(unsigned long)!prev;
1101 }
Johannes Weiner56600482012-01-12 17:17:59 -08001102
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001103 if (!root)
1104 root = root_mem_cgroup;
1105
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001106 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -07001107 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001108
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001109 if (!root->use_hierarchy && root != root_mem_cgroup) {
1110 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001111 goto out_css_put;
Michal Hockode577802013-09-12 15:13:26 -07001112 if (mem_cgroup_filter(root, root, cond) == VISIT)
1113 return root;
1114 return NULL;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001115 }
1116
Michal Hocko542f85f2013-04-29 15:07:15 -07001117 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001118 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001119 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001120 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001121
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001122 if (reclaim) {
1123 int nid = zone_to_nid(reclaim->zone);
1124 int zid = zone_idx(reclaim->zone);
1125 struct mem_cgroup_per_zone *mz;
1126
1127 mz = mem_cgroup_zoneinfo(root, nid, zid);
1128 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001129 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001130 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001131 goto out_unlock;
1132 }
Michal Hocko5f578162013-04-29 15:07:17 -07001133
Johannes Weiner519ebea2013-07-03 15:04:51 -07001134 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001135 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001136
Michal Hockode577802013-09-12 15:13:26 -07001137 memcg = __mem_cgroup_iter_next(root, last_visited, cond);
Michal Hocko542f85f2013-04-29 15:07:15 -07001138
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001139 if (reclaim) {
Johannes Weiner519ebea2013-07-03 15:04:51 -07001140 mem_cgroup_iter_update(iter, last_visited, memcg, seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001141
Michal Hocko19f39402013-04-29 15:07:18 -07001142 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001143 iter->generation++;
1144 else if (!prev && memcg)
1145 reclaim->generation = iter->generation;
1146 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001147
Michal Hockode577802013-09-12 15:13:26 -07001148 /*
1149 * We have finished the whole tree walk or no group has been
1150 * visited because filter told us to skip the root node.
1151 */
1152 if (!memcg && (prev || (cond && !last_visited)))
Michal Hocko542f85f2013-04-29 15:07:15 -07001153 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001154 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001155out_unlock:
1156 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001157out_css_put:
1158 if (prev && prev != root)
1159 css_put(&prev->css);
1160
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001161 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001162}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001163
Johannes Weiner56600482012-01-12 17:17:59 -08001164/**
1165 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1166 * @root: hierarchy root
1167 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1168 */
1169void mem_cgroup_iter_break(struct mem_cgroup *root,
1170 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001171{
1172 if (!root)
1173 root = root_mem_cgroup;
1174 if (prev && prev != root)
1175 css_put(&prev->css);
1176}
1177
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001178/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001179 * Iteration constructs for visiting all cgroups (under a tree). If
1180 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1181 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001182 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001183#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001184 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001185 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001186 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001187
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001188#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001189 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001190 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001191 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001192
David Rientjes68ae5642012-12-12 13:51:57 -08001193void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001194{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001195 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001196
Ying Han456f9982011-05-26 16:25:38 -07001197 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001198 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1199 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001200 goto out;
1201
1202 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001203 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001204 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1205 break;
1206 case PGMAJFAULT:
1207 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001208 break;
1209 default:
1210 BUG();
1211 }
1212out:
1213 rcu_read_unlock();
1214}
David Rientjes68ae5642012-12-12 13:51:57 -08001215EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001216
Johannes Weiner925b7672012-01-12 17:18:15 -08001217/**
1218 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1219 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001220 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001221 *
1222 * Returns the lru list vector holding pages for the given @zone and
1223 * @mem. This can be the global zone lruvec, if the memory controller
1224 * is disabled.
1225 */
1226struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1227 struct mem_cgroup *memcg)
1228{
1229 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001230 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001231
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001232 if (mem_cgroup_disabled()) {
1233 lruvec = &zone->lruvec;
1234 goto out;
1235 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001236
1237 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001238 lruvec = &mz->lruvec;
1239out:
1240 /*
1241 * Since a node can be onlined after the mem_cgroup was created,
1242 * we have to be prepared to initialize lruvec->zone here;
1243 * and if offlined then reonlined, we need to reinitialize it.
1244 */
1245 if (unlikely(lruvec->zone != zone))
1246 lruvec->zone = zone;
1247 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001248}
1249
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001250/*
1251 * Following LRU functions are allowed to be used without PCG_LOCK.
1252 * Operations are called by routine of global LRU independently from memcg.
1253 * What we have to take care of here is validness of pc->mem_cgroup.
1254 *
1255 * Changes to pc->mem_cgroup happens when
1256 * 1. charge
1257 * 2. moving account
1258 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1259 * It is added to LRU before charge.
1260 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1261 * When moving account, the page is not on LRU. It's isolated.
1262 */
1263
Johannes Weiner925b7672012-01-12 17:18:15 -08001264/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001265 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001266 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001267 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001268 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001269struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001270{
1271 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001272 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001273 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001274 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001275
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001276 if (mem_cgroup_disabled()) {
1277 lruvec = &zone->lruvec;
1278 goto out;
1279 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001280
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001281 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001282 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001283
1284 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001285 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001286 * an uncharged page off lru does nothing to secure
1287 * its former mem_cgroup from sudden removal.
1288 *
1289 * Our caller holds lru_lock, and PageCgroupUsed is updated
1290 * under page_cgroup lock: between them, they make all uses
1291 * of pc->mem_cgroup safe.
1292 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001293 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001294 pc->mem_cgroup = memcg = root_mem_cgroup;
1295
Johannes Weiner925b7672012-01-12 17:18:15 -08001296 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001297 lruvec = &mz->lruvec;
1298out:
1299 /*
1300 * Since a node can be onlined after the mem_cgroup was created,
1301 * we have to be prepared to initialize lruvec->zone here;
1302 * and if offlined then reonlined, we need to reinitialize it.
1303 */
1304 if (unlikely(lruvec->zone != zone))
1305 lruvec->zone = zone;
1306 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001307}
1308
1309/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001310 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1311 * @lruvec: mem_cgroup per zone lru vector
1312 * @lru: index of lru list the page is sitting on
1313 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001314 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001315 * This function must be called when a page is added to or removed from an
1316 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001317 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001318void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1319 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001320{
1321 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001322 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001323
1324 if (mem_cgroup_disabled())
1325 return;
1326
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001327 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1328 lru_size = mz->lru_size + lru;
1329 *lru_size += nr_pages;
1330 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001331}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001332
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001333/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001334 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001335 * hierarchy subtree
1336 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001337bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1338 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001339{
Johannes Weiner91c637342012-05-29 15:06:24 -07001340 if (root_memcg == memcg)
1341 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001342 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001343 return false;
Li Zefanb47f77b2013-09-23 16:55:43 +08001344 return cgroup_is_descendant(memcg->css.cgroup, root_memcg->css.cgroup);
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001345}
1346
1347static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1348 struct mem_cgroup *memcg)
1349{
1350 bool ret;
1351
Johannes Weiner91c637342012-05-29 15:06:24 -07001352 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001353 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001354 rcu_read_unlock();
1355 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001356}
1357
David Rientjesffbdccf2013-07-03 15:01:23 -07001358bool task_in_mem_cgroup(struct task_struct *task,
1359 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001360{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001361 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001362 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001363 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001364
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001365 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001366 if (p) {
1367 curr = try_get_mem_cgroup_from_mm(p->mm);
1368 task_unlock(p);
1369 } else {
1370 /*
1371 * All threads may have already detached their mm's, but the oom
1372 * killer still needs to detect if they have already been oom
1373 * killed to prevent needlessly killing additional tasks.
1374 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001375 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001376 curr = mem_cgroup_from_task(task);
1377 if (curr)
1378 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001379 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001380 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001381 if (!curr)
David Rientjesffbdccf2013-07-03 15:01:23 -07001382 return false;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001383 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001384 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001385 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001386 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1387 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001388 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001389 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001390 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001391 return ret;
1392}
1393
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001394int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001395{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001396 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001397 unsigned long inactive;
1398 unsigned long active;
1399 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001400
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001401 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1402 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001403
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001404 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1405 if (gb)
1406 inactive_ratio = int_sqrt(10 * gb);
1407 else
1408 inactive_ratio = 1;
1409
Johannes Weiner9b272972011-11-02 13:38:23 -07001410 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001411}
1412
Balbir Singh6d61ef42009-01-07 18:08:06 -08001413#define mem_cgroup_from_res_counter(counter, member) \
1414 container_of(counter, struct mem_cgroup, member)
1415
Johannes Weiner19942822011-02-01 15:52:43 -08001416/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001417 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001418 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001419 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001420 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001421 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001422 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001423static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001424{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001425 unsigned long long margin;
1426
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001427 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001428 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001429 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001430 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001431}
1432
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001433int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001434{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001435 /* root ? */
Tejun Heo63876982013-08-08 20:11:23 -04001436 if (!css_parent(&memcg->css))
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001437 return vm_swappiness;
1438
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001439 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001440}
1441
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001442/*
1443 * memcg->moving_account is used for checking possibility that some thread is
1444 * calling move_account(). When a thread on CPU-A starts moving pages under
1445 * a memcg, other threads should check memcg->moving_account under
1446 * rcu_read_lock(), like this:
1447 *
1448 * CPU-A CPU-B
1449 * rcu_read_lock()
1450 * memcg->moving_account+1 if (memcg->mocing_account)
1451 * take heavy locks.
1452 * synchronize_rcu() update something.
1453 * rcu_read_unlock()
1454 * start move here.
1455 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001456
1457/* for quick checking without looking up memcg */
1458atomic_t memcg_moving __read_mostly;
1459
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001460static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001461{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001462 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001463 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001464 synchronize_rcu();
1465}
1466
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001467static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001468{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001469 /*
1470 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1471 * We check NULL in callee rather than caller.
1472 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001473 if (memcg) {
1474 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001475 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001476 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001477}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001478
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001479/*
1480 * 2 routines for checking "mem" is under move_account() or not.
1481 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001482 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1483 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001484 * pc->mem_cgroup may be overwritten.
1485 *
1486 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1487 * under hierarchy of moving cgroups. This is for
1488 * waiting at hith-memory prressure caused by "move".
1489 */
1490
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001491static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001492{
1493 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001494 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001495}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001496
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001497static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001498{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001499 struct mem_cgroup *from;
1500 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001501 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001502 /*
1503 * Unlike task_move routines, we access mc.to, mc.from not under
1504 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1505 */
1506 spin_lock(&mc.lock);
1507 from = mc.from;
1508 to = mc.to;
1509 if (!from)
1510 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001511
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001512 ret = mem_cgroup_same_or_subtree(memcg, from)
1513 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001514unlock:
1515 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001516 return ret;
1517}
1518
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001519static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001520{
1521 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001522 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001523 DEFINE_WAIT(wait);
1524 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1525 /* moving charge context might have finished. */
1526 if (mc.moving_task)
1527 schedule();
1528 finish_wait(&mc.waitq, &wait);
1529 return true;
1530 }
1531 }
1532 return false;
1533}
1534
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001535/*
1536 * Take this lock when
1537 * - a code tries to modify page's memcg while it's USED.
1538 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001539 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001540 */
1541static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1542 unsigned long *flags)
1543{
1544 spin_lock_irqsave(&memcg->move_lock, *flags);
1545}
1546
1547static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1548 unsigned long *flags)
1549{
1550 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1551}
1552
Sha Zhengju58cf1882013-02-22 16:32:05 -08001553#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001554/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001555 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001556 * @memcg: The memory cgroup that went over limit
1557 * @p: Task that is going to be killed
1558 *
1559 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1560 * enabled
1561 */
1562void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1563{
1564 struct cgroup *task_cgrp;
1565 struct cgroup *mem_cgrp;
1566 /*
1567 * Need a buffer in BSS, can't rely on allocations. The code relies
1568 * on the assumption that OOM is serialized for memory controller.
1569 * If this assumption is broken, revisit this code.
1570 */
1571 static char memcg_name[PATH_MAX];
1572 int ret;
Sha Zhengju58cf1882013-02-22 16:32:05 -08001573 struct mem_cgroup *iter;
1574 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001575
Sha Zhengju58cf1882013-02-22 16:32:05 -08001576 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001577 return;
1578
Balbir Singhe2224322009-04-02 16:57:39 -07001579 rcu_read_lock();
1580
1581 mem_cgrp = memcg->css.cgroup;
1582 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1583
1584 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1585 if (ret < 0) {
1586 /*
1587 * Unfortunately, we are unable to convert to a useful name
1588 * But we'll still print out the usage information
1589 */
1590 rcu_read_unlock();
1591 goto done;
1592 }
1593 rcu_read_unlock();
1594
Andrew Mortond0451972013-02-22 16:32:06 -08001595 pr_info("Task in %s killed", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001596
1597 rcu_read_lock();
1598 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1599 if (ret < 0) {
1600 rcu_read_unlock();
1601 goto done;
1602 }
1603 rcu_read_unlock();
1604
1605 /*
1606 * Continues from above, so we don't need an KERN_ level
1607 */
Andrew Mortond0451972013-02-22 16:32:06 -08001608 pr_cont(" as a result of limit of %s\n", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001609done:
1610
Andrew Mortond0451972013-02-22 16:32:06 -08001611 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001612 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1613 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1614 res_counter_read_u64(&memcg->res, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001615 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001616 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1617 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1618 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001619 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
Glauber Costa510fc4e2012-12-18 14:21:47 -08001620 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1621 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1622 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Sha Zhengju58cf1882013-02-22 16:32:05 -08001623
1624 for_each_mem_cgroup_tree(iter, memcg) {
1625 pr_info("Memory cgroup stats");
1626
1627 rcu_read_lock();
1628 ret = cgroup_path(iter->css.cgroup, memcg_name, PATH_MAX);
1629 if (!ret)
1630 pr_cont(" for %s", memcg_name);
1631 rcu_read_unlock();
1632 pr_cont(":");
1633
1634 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1635 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1636 continue;
1637 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1638 K(mem_cgroup_read_stat(iter, i)));
1639 }
1640
1641 for (i = 0; i < NR_LRU_LISTS; i++)
1642 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1643 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1644
1645 pr_cont("\n");
1646 }
Balbir Singhe2224322009-04-02 16:57:39 -07001647}
1648
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001649/*
1650 * This function returns the number of memcg under hierarchy tree. Returns
1651 * 1(self count) if no children.
1652 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001653static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001654{
1655 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001656 struct mem_cgroup *iter;
1657
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001658 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001659 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001660 return num;
1661}
1662
Balbir Singh6d61ef42009-01-07 18:08:06 -08001663/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001664 * Return the memory (and swap, if configured) limit for a memcg.
1665 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001666static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001667{
1668 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001669
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001670 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001671
David Rientjesa63d83f2010-08-09 17:19:46 -07001672 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001673 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001674 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001675 if (mem_cgroup_swappiness(memcg)) {
1676 u64 memsw;
1677
1678 limit += total_swap_pages << PAGE_SHIFT;
1679 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1680
1681 /*
1682 * If memsw is finite and limits the amount of swap space
1683 * available to this memcg, return that limit.
1684 */
1685 limit = min(limit, memsw);
1686 }
1687
1688 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001689}
1690
David Rientjes19965462012-12-11 16:00:26 -08001691static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1692 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001693{
1694 struct mem_cgroup *iter;
1695 unsigned long chosen_points = 0;
1696 unsigned long totalpages;
1697 unsigned int points = 0;
1698 struct task_struct *chosen = NULL;
1699
David Rientjes876aafb2012-07-31 16:43:48 -07001700 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001701 * If current has a pending SIGKILL or is exiting, then automatically
1702 * select it. The goal is to allow it to allocate so that it may
1703 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001704 */
David Rientjes465adcf2013-04-29 15:08:45 -07001705 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001706 set_thread_flag(TIF_MEMDIE);
1707 return;
1708 }
1709
1710 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001711 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1712 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001713 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001714 struct task_struct *task;
1715
Tejun Heo72ec7022013-08-08 20:11:26 -04001716 css_task_iter_start(&iter->css, &it);
1717 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001718 switch (oom_scan_process_thread(task, totalpages, NULL,
1719 false)) {
1720 case OOM_SCAN_SELECT:
1721 if (chosen)
1722 put_task_struct(chosen);
1723 chosen = task;
1724 chosen_points = ULONG_MAX;
1725 get_task_struct(chosen);
1726 /* fall through */
1727 case OOM_SCAN_CONTINUE:
1728 continue;
1729 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001730 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001731 mem_cgroup_iter_break(memcg, iter);
1732 if (chosen)
1733 put_task_struct(chosen);
1734 return;
1735 case OOM_SCAN_OK:
1736 break;
1737 };
1738 points = oom_badness(task, memcg, NULL, totalpages);
1739 if (points > chosen_points) {
1740 if (chosen)
1741 put_task_struct(chosen);
1742 chosen = task;
1743 chosen_points = points;
1744 get_task_struct(chosen);
1745 }
1746 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001747 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001748 }
1749
1750 if (!chosen)
1751 return;
1752 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001753 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1754 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001755}
1756
Johannes Weiner56600482012-01-12 17:17:59 -08001757static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1758 gfp_t gfp_mask,
1759 unsigned long flags)
1760{
1761 unsigned long total = 0;
1762 bool noswap = false;
1763 int loop;
1764
1765 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1766 noswap = true;
1767 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1768 noswap = true;
1769
1770 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1771 if (loop)
1772 drain_all_stock_async(memcg);
1773 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1774 /*
1775 * Allow limit shrinkers, which are triggered directly
1776 * by userspace, to catch signals and stop reclaim
1777 * after minimal progress, regardless of the margin.
1778 */
1779 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1780 break;
1781 if (mem_cgroup_margin(memcg))
1782 break;
1783 /*
1784 * If nothing was reclaimed after two attempts, there
1785 * may be no reclaimable pages in this hierarchy.
1786 */
1787 if (loop && !total)
1788 break;
1789 }
1790 return total;
1791}
1792
Michal Hockoe8831102013-09-12 15:13:23 -07001793#if MAX_NUMNODES > 1
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001794/**
1795 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001796 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001797 * @nid: the node ID to be checked.
1798 * @noswap : specify true here if the user wants flle only information.
1799 *
1800 * This function returns whether the specified memcg contains any
1801 * reclaimable pages on a node. Returns true if there are any reclaimable
1802 * pages in the node.
1803 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001804static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001805 int nid, bool noswap)
1806{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001807 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001808 return true;
1809 if (noswap || !total_swap_pages)
1810 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001811 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001812 return true;
1813 return false;
1814
1815}
Ying Han889976d2011-05-26 16:25:33 -07001816
1817/*
1818 * Always updating the nodemask is not very good - even if we have an empty
1819 * list or the wrong list here, we can start from some node and traverse all
1820 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1821 *
1822 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001823static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001824{
1825 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001826 /*
1827 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1828 * pagein/pageout changes since the last update.
1829 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001830 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001831 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001832 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001833 return;
1834
Ying Han889976d2011-05-26 16:25:33 -07001835 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001836 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001837
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001838 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001839
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001840 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1841 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001842 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001843
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001844 atomic_set(&memcg->numainfo_events, 0);
1845 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001846}
1847
1848/*
1849 * Selecting a node where we start reclaim from. Because what we need is just
1850 * reducing usage counter, start from anywhere is O,K. Considering
1851 * memory reclaim from current node, there are pros. and cons.
1852 *
1853 * Freeing memory from current node means freeing memory from a node which
1854 * we'll use or we've used. So, it may make LRU bad. And if several threads
1855 * hit limits, it will see a contention on a node. But freeing from remote
1856 * node means more costs for memory reclaim because of memory latency.
1857 *
1858 * Now, we use round-robin. Better algorithm is welcomed.
1859 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001860int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001861{
1862 int node;
1863
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001864 mem_cgroup_may_update_nodemask(memcg);
1865 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001866
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001867 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001868 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001869 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001870 /*
1871 * We call this when we hit limit, not when pages are added to LRU.
1872 * No LRU may hold pages because all pages are UNEVICTABLE or
1873 * memcg is too small and all pages are not on LRU. In that case,
1874 * we use curret node.
1875 */
1876 if (unlikely(node == MAX_NUMNODES))
1877 node = numa_node_id();
1878
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001879 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001880 return node;
1881}
1882
1883#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001884int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001885{
1886 return 0;
1887}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001888
Ying Han889976d2011-05-26 16:25:33 -07001889#endif
1890
Michal Hocko3b387222013-09-12 15:13:21 -07001891/*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001892 * A group is eligible for the soft limit reclaim under the given root
1893 * hierarchy if
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001894 * a) it is over its soft limit
1895 * b) any parent up the hierarchy is over its soft limit
Michal Hocko7d910c02013-09-12 15:13:28 -07001896 *
1897 * If the given group doesn't have any children over the limit then it
1898 * doesn't make any sense to iterate its subtree.
Michal Hocko3b387222013-09-12 15:13:21 -07001899 */
Michal Hockode577802013-09-12 15:13:26 -07001900enum mem_cgroup_filter_t
1901mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg,
Michal Hockoa5b7c872013-09-12 15:13:25 -07001902 struct mem_cgroup *root)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001903{
Michal Hockoe839b6a2013-09-12 15:13:30 -07001904 struct mem_cgroup *parent;
1905
1906 if (!memcg)
1907 memcg = root_mem_cgroup;
1908 parent = memcg;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001909
Michal Hocko3b387222013-09-12 15:13:21 -07001910 if (res_counter_soft_limit_excess(&memcg->res))
Michal Hockode577802013-09-12 15:13:26 -07001911 return VISIT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001912
Michal Hocko3b387222013-09-12 15:13:21 -07001913 /*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001914 * If any parent up to the root in the hierarchy is over its soft limit
1915 * then we have to obey and reclaim from this group as well.
Michal Hocko3b387222013-09-12 15:13:21 -07001916 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001917 while ((parent = parent_mem_cgroup(parent))) {
Michal Hocko3b387222013-09-12 15:13:21 -07001918 if (res_counter_soft_limit_excess(&parent->res))
Michal Hockode577802013-09-12 15:13:26 -07001919 return VISIT;
Michal Hockoa5b7c872013-09-12 15:13:25 -07001920 if (parent == root)
1921 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001922 }
Michal Hocko3b387222013-09-12 15:13:21 -07001923
Michal Hocko7d910c02013-09-12 15:13:28 -07001924 if (!atomic_read(&memcg->children_in_excess))
1925 return SKIP_TREE;
Michal Hockode577802013-09-12 15:13:26 -07001926 return SKIP;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001927}
1928
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001929static DEFINE_SPINLOCK(memcg_oom_lock);
1930
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001931/*
1932 * Check OOM-Killer is already running under our hierarchy.
1933 * If someone is running, return false.
1934 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001935static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001936{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001937 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001938
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001939 spin_lock(&memcg_oom_lock);
1940
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001941 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001942 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001943 /*
1944 * this subtree of our hierarchy is already locked
1945 * so we cannot give a lock.
1946 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001947 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001948 mem_cgroup_iter_break(memcg, iter);
1949 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001950 } else
1951 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001952 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001953
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001954 if (failed) {
1955 /*
1956 * OK, we failed to lock the whole subtree so we have
1957 * to clean up what we set up to the failing subtree
1958 */
1959 for_each_mem_cgroup_tree(iter, memcg) {
1960 if (iter == failed) {
1961 mem_cgroup_iter_break(memcg, iter);
1962 break;
1963 }
1964 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001965 }
Michal Hocko79dfdac2011-07-26 16:08:23 -07001966 }
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001967
1968 spin_unlock(&memcg_oom_lock);
1969
1970 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001971}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001972
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001973static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001974{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001975 struct mem_cgroup *iter;
1976
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001977 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001978 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001979 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001980 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001981}
1982
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001983static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001984{
1985 struct mem_cgroup *iter;
1986
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001987 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001988 atomic_inc(&iter->under_oom);
1989}
1990
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001991static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001992{
1993 struct mem_cgroup *iter;
1994
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001995 /*
1996 * When a new child is created while the hierarchy is under oom,
1997 * mem_cgroup_oom_lock() may not be called. We have to use
1998 * atomic_add_unless() here.
1999 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002000 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07002001 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002002}
2003
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002004static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
2005
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002006struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002007 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002008 wait_queue_t wait;
2009};
2010
2011static int memcg_oom_wake_function(wait_queue_t *wait,
2012 unsigned mode, int sync, void *arg)
2013{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002014 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
2015 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002016 struct oom_wait_info *oom_wait_info;
2017
2018 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002019 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002020
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002021 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07002022 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002023 * Then we can use css_is_ancestor without taking care of RCU.
2024 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002025 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
2026 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002027 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002028 return autoremove_wake_function(wait, mode, sync, arg);
2029}
2030
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002031static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002032{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002033 atomic_inc(&memcg->oom_wakeups);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002034 /* for filtering, pass "memcg" as argument. */
2035 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002036}
2037
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002038static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002039{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002040 if (memcg && atomic_read(&memcg->under_oom))
2041 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002042}
2043
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002044/*
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002045 * try to call OOM killer
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002046 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002047static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002048{
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002049 bool locked;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002050 int wakeups;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002051
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002052 if (!current->memcg_oom.may_oom)
2053 return;
2054
2055 current->memcg_oom.in_memcg_oom = 1;
Michal Hocko79dfdac2011-07-26 16:08:23 -07002056
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002057 /*
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002058 * As with any blocking lock, a contender needs to start
2059 * listening for wakeups before attempting the trylock,
2060 * otherwise it can miss the wakeup from the unlock and sleep
2061 * indefinitely. This is just open-coded because our locking
2062 * is so particular to memcg hierarchies.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002063 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002064 wakeups = atomic_read(&memcg->oom_wakeups);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002065 mem_cgroup_mark_under_oom(memcg);
2066
2067 locked = mem_cgroup_oom_trylock(memcg);
2068
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002069 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002070 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002071
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002072 if (locked && !memcg->oom_kill_disable) {
2073 mem_cgroup_unmark_under_oom(memcg);
David Rientjese845e192012-03-21 16:34:10 -07002074 mem_cgroup_out_of_memory(memcg, mask, order);
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002075 mem_cgroup_oom_unlock(memcg);
2076 /*
2077 * There is no guarantee that an OOM-lock contender
2078 * sees the wakeups triggered by the OOM kill
2079 * uncharges. Wake any sleepers explicitely.
2080 */
2081 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002082 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002083 /*
2084 * A system call can just return -ENOMEM, but if this
2085 * is a page fault and somebody else is handling the
2086 * OOM already, we need to sleep on the OOM waitqueue
2087 * for this memcg until the situation is resolved.
2088 * Which can take some time because it might be
2089 * handled by a userspace task.
2090 *
2091 * However, this is the charge context, which means
2092 * that we may sit on a large call stack and hold
2093 * various filesystem locks, the mmap_sem etc. and we
2094 * don't want the OOM handler to deadlock on them
2095 * while we sit here and wait. Store the current OOM
2096 * context in the task_struct, then return -ENOMEM.
2097 * At the end of the page fault handler, with the
2098 * stack unwound, pagefault_out_of_memory() will check
2099 * back with us by calling
2100 * mem_cgroup_oom_synchronize(), possibly putting the
2101 * task to sleep.
2102 */
2103 current->memcg_oom.oom_locked = locked;
2104 current->memcg_oom.wakeups = wakeups;
2105 css_get(&memcg->css);
2106 current->memcg_oom.wait_on_memcg = memcg;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002107 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002108}
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002109
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002110/**
2111 * mem_cgroup_oom_synchronize - complete memcg OOM handling
2112 *
2113 * This has to be called at the end of a page fault if the the memcg
2114 * OOM handler was enabled and the fault is returning %VM_FAULT_OOM.
2115 *
2116 * Memcg supports userspace OOM handling, so failed allocations must
2117 * sleep on a waitqueue until the userspace task resolves the
2118 * situation. Sleeping directly in the charge context with all kinds
2119 * of locks held is not a good idea, instead we remember an OOM state
2120 * in the task and mem_cgroup_oom_synchronize() has to be called at
2121 * the end of the page fault to put the task to sleep and clean up the
2122 * OOM state.
2123 *
2124 * Returns %true if an ongoing memcg OOM situation was detected and
2125 * finalized, %false otherwise.
2126 */
2127bool mem_cgroup_oom_synchronize(void)
2128{
2129 struct oom_wait_info owait;
2130 struct mem_cgroup *memcg;
2131
2132 /* OOM is global, do not handle */
2133 if (!current->memcg_oom.in_memcg_oom)
2134 return false;
2135
2136 /*
2137 * We invoked the OOM killer but there is a chance that a kill
2138 * did not free up any charges. Everybody else might already
2139 * be sleeping, so restart the fault and keep the rampage
2140 * going until some charges are released.
2141 */
2142 memcg = current->memcg_oom.wait_on_memcg;
2143 if (!memcg)
2144 goto out;
2145
2146 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
2147 goto out_memcg;
2148
2149 owait.memcg = memcg;
2150 owait.wait.flags = 0;
2151 owait.wait.func = memcg_oom_wake_function;
2152 owait.wait.private = current;
2153 INIT_LIST_HEAD(&owait.wait.task_list);
2154
2155 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
2156 /* Only sleep if we didn't miss any wakeups since OOM */
2157 if (atomic_read(&memcg->oom_wakeups) == current->memcg_oom.wakeups)
2158 schedule();
2159 finish_wait(&memcg_oom_waitq, &owait.wait);
2160out_memcg:
2161 mem_cgroup_unmark_under_oom(memcg);
2162 if (current->memcg_oom.oom_locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002163 mem_cgroup_oom_unlock(memcg);
2164 /*
2165 * There is no guarantee that an OOM-lock contender
2166 * sees the wakeups triggered by the OOM kill
2167 * uncharges. Wake any sleepers explicitely.
2168 */
2169 memcg_oom_recover(memcg);
2170 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002171 css_put(&memcg->css);
2172 current->memcg_oom.wait_on_memcg = NULL;
2173out:
2174 current->memcg_oom.in_memcg_oom = 0;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002175 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002176}
2177
Balbir Singhd69b0422009-06-17 16:26:34 -07002178/*
2179 * Currently used to update mapped file statistics, but the routine can be
2180 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002181 *
2182 * Notes: Race condition
2183 *
2184 * We usually use page_cgroup_lock() for accessing page_cgroup member but
2185 * it tends to be costly. But considering some conditions, we doesn't need
2186 * to do so _always_.
2187 *
2188 * Considering "charge", lock_page_cgroup() is not required because all
2189 * file-stat operations happen after a page is attached to radix-tree. There
2190 * are no race with "charge".
2191 *
2192 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2193 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2194 * if there are race with "uncharge". Statistics itself is properly handled
2195 * by flags.
2196 *
2197 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002198 * small, we check mm->moving_account and detect there are possibility of race
2199 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002200 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002201
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002202void __mem_cgroup_begin_update_page_stat(struct page *page,
2203 bool *locked, unsigned long *flags)
2204{
2205 struct mem_cgroup *memcg;
2206 struct page_cgroup *pc;
2207
2208 pc = lookup_page_cgroup(page);
2209again:
2210 memcg = pc->mem_cgroup;
2211 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2212 return;
2213 /*
2214 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002215 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002216 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002217 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002218 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002219 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002220 return;
2221
2222 move_lock_mem_cgroup(memcg, flags);
2223 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2224 move_unlock_mem_cgroup(memcg, flags);
2225 goto again;
2226 }
2227 *locked = true;
2228}
2229
2230void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2231{
2232 struct page_cgroup *pc = lookup_page_cgroup(page);
2233
2234 /*
2235 * It's guaranteed that pc->mem_cgroup never changes while
2236 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002237 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002238 */
2239 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2240}
2241
Greg Thelen2a7106f2011-01-13 15:47:37 -08002242void mem_cgroup_update_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -07002243 enum mem_cgroup_stat_index idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002244{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002245 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002246 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002247 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002248
Johannes Weinercfa44942012-01-12 17:18:38 -08002249 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002250 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002251
Sha Zhengju658b72c2013-09-12 15:13:52 -07002252 VM_BUG_ON(!rcu_read_lock_held());
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002253 memcg = pc->mem_cgroup;
2254 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002255 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002256
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002257 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002258}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002259
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002260/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002261 * size of first charge trial. "32" comes from vmscan.c's magic value.
2262 * TODO: maybe necessary to use big numbers in big irons.
2263 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002264#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002265struct memcg_stock_pcp {
2266 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002267 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002268 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002269 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002270#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002271};
2272static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002273static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002274
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002275/**
2276 * consume_stock: Try to consume stocked charge on this cpu.
2277 * @memcg: memcg to consume from.
2278 * @nr_pages: how many pages to charge.
2279 *
2280 * The charges will only happen if @memcg matches the current cpu's memcg
2281 * stock, and at least @nr_pages are available in that stock. Failure to
2282 * service an allocation will refill the stock.
2283 *
2284 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002285 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002286static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002287{
2288 struct memcg_stock_pcp *stock;
2289 bool ret = true;
2290
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002291 if (nr_pages > CHARGE_BATCH)
2292 return false;
2293
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002294 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002295 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2296 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002297 else /* need to call res_counter_charge */
2298 ret = false;
2299 put_cpu_var(memcg_stock);
2300 return ret;
2301}
2302
2303/*
2304 * Returns stocks cached in percpu to res_counter and reset cached information.
2305 */
2306static void drain_stock(struct memcg_stock_pcp *stock)
2307{
2308 struct mem_cgroup *old = stock->cached;
2309
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002310 if (stock->nr_pages) {
2311 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2312
2313 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002314 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002315 res_counter_uncharge(&old->memsw, bytes);
2316 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002317 }
2318 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002319}
2320
2321/*
2322 * This must be called under preempt disabled or must be called by
2323 * a thread which is pinned to local cpu.
2324 */
2325static void drain_local_stock(struct work_struct *dummy)
2326{
2327 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2328 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002329 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002330}
2331
Michal Hockoe4777492013-02-22 16:35:40 -08002332static void __init memcg_stock_init(void)
2333{
2334 int cpu;
2335
2336 for_each_possible_cpu(cpu) {
2337 struct memcg_stock_pcp *stock =
2338 &per_cpu(memcg_stock, cpu);
2339 INIT_WORK(&stock->work, drain_local_stock);
2340 }
2341}
2342
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002343/*
2344 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002345 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002346 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002347static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002348{
2349 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2350
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002351 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002352 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002353 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002354 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002355 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002356 put_cpu_var(memcg_stock);
2357}
2358
2359/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002360 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002361 * of the hierarchy under it. sync flag says whether we should block
2362 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002363 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002364static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002365{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002366 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002367
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002368 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002369 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002370 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002371 for_each_online_cpu(cpu) {
2372 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002373 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002374
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002375 memcg = stock->cached;
2376 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002377 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002378 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002379 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002380 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2381 if (cpu == curcpu)
2382 drain_local_stock(&stock->work);
2383 else
2384 schedule_work_on(cpu, &stock->work);
2385 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002386 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002387 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002388
2389 if (!sync)
2390 goto out;
2391
2392 for_each_online_cpu(cpu) {
2393 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002394 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002395 flush_work(&stock->work);
2396 }
2397out:
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002398 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002399}
2400
2401/*
2402 * Tries to drain stocked charges in other cpus. This function is asynchronous
2403 * and just put a work per cpu for draining localy on each cpu. Caller can
2404 * expects some charges will be back to res_counter later but cannot wait for
2405 * it.
2406 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002407static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002408{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002409 /*
2410 * If someone calls draining, avoid adding more kworker runs.
2411 */
2412 if (!mutex_trylock(&percpu_charge_mutex))
2413 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002414 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002415 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002416}
2417
2418/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002419static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002420{
2421 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002422 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002423 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002424 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002425}
2426
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002427/*
2428 * This function drains percpu counter value from DEAD cpu and
2429 * move it to local cpu. Note that this function can be preempted.
2430 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002431static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002432{
2433 int i;
2434
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002435 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002436 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002437 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002438
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002439 per_cpu(memcg->stat->count[i], cpu) = 0;
2440 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002441 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002442 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002443 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002444
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002445 per_cpu(memcg->stat->events[i], cpu) = 0;
2446 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002447 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002448 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002449}
2450
Paul Gortmaker0db06282013-06-19 14:53:51 -04002451static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002452 unsigned long action,
2453 void *hcpu)
2454{
2455 int cpu = (unsigned long)hcpu;
2456 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002457 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002458
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002459 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002460 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002461
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002462 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002463 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002464
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002465 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002466 mem_cgroup_drain_pcp_counter(iter, cpu);
2467
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002468 stock = &per_cpu(memcg_stock, cpu);
2469 drain_stock(stock);
2470 return NOTIFY_OK;
2471}
2472
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002473
2474/* See __mem_cgroup_try_charge() for details */
2475enum {
2476 CHARGE_OK, /* success */
2477 CHARGE_RETRY, /* need to retry but retry is not bad */
2478 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2479 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002480};
2481
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002482static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002483 unsigned int nr_pages, unsigned int min_pages,
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002484 bool invoke_oom)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002485{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002486 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002487 struct mem_cgroup *mem_over_limit;
2488 struct res_counter *fail_res;
2489 unsigned long flags = 0;
2490 int ret;
2491
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002492 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002493
2494 if (likely(!ret)) {
2495 if (!do_swap_account)
2496 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002497 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002498 if (likely(!ret))
2499 return CHARGE_OK;
2500
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002501 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002502 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2503 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2504 } else
2505 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002506 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002507 * Never reclaim on behalf of optional batching, retry with a
2508 * single page instead.
2509 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002510 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002511 return CHARGE_RETRY;
2512
2513 if (!(gfp_mask & __GFP_WAIT))
2514 return CHARGE_WOULDBLOCK;
2515
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002516 if (gfp_mask & __GFP_NORETRY)
2517 return CHARGE_NOMEM;
2518
Johannes Weiner56600482012-01-12 17:17:59 -08002519 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002520 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002521 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002522 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002523 * Even though the limit is exceeded at this point, reclaim
2524 * may have been able to free some pages. Retry the charge
2525 * before killing the task.
2526 *
2527 * Only for regular pages, though: huge pages are rather
2528 * unlikely to succeed so close to the limit, and we fall back
2529 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002530 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002531 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002532 return CHARGE_RETRY;
2533
2534 /*
2535 * At task move, charge accounts can be doubly counted. So, it's
2536 * better to wait until the end of task_move if something is going on.
2537 */
2538 if (mem_cgroup_wait_acct_move(mem_over_limit))
2539 return CHARGE_RETRY;
2540
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002541 if (invoke_oom)
2542 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(csize));
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002543
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002544 return CHARGE_NOMEM;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002545}
2546
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002547/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002548 * __mem_cgroup_try_charge() does
2549 * 1. detect memcg to be charged against from passed *mm and *ptr,
2550 * 2. update res_counter
2551 * 3. call memory reclaim if necessary.
2552 *
2553 * In some special case, if the task is fatal, fatal_signal_pending() or
2554 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2555 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2556 * as possible without any hazards. 2: all pages should have a valid
2557 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2558 * pointer, that is treated as a charge to root_mem_cgroup.
2559 *
2560 * So __mem_cgroup_try_charge() will return
2561 * 0 ... on success, filling *ptr with a valid memcg pointer.
2562 * -ENOMEM ... charge failure because of resource limits.
2563 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2564 *
2565 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2566 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002567 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002568static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002569 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002570 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002571 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002572 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002573{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002574 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002575 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002576 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002577 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002578
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002579 /*
2580 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2581 * in system level. So, allow to go ahead dying process in addition to
2582 * MEMDIE process.
2583 */
2584 if (unlikely(test_thread_flag(TIF_MEMDIE)
2585 || fatal_signal_pending(current)))
2586 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002587
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002588 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002589 * We always charge the cgroup the mm_struct belongs to.
2590 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002591 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002592 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002593 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002594 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002595 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002596again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002597 if (*ptr) { /* css should be a valid one */
2598 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002599 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002600 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002601 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002602 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002603 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002604 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002605 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002606
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002607 rcu_read_lock();
2608 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002609 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002610 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002611 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002612 * race with swapoff. Then, we have small risk of mis-accouning.
2613 * But such kind of mis-account by race always happens because
2614 * we don't have cgroup_mutex(). It's overkill and we allo that
2615 * small race, here.
2616 * (*) swapoff at el will charge against mm-struct not against
2617 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002618 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002619 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002620 if (!memcg)
2621 memcg = root_mem_cgroup;
2622 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002623 rcu_read_unlock();
2624 goto done;
2625 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002626 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002627 /*
2628 * It seems dagerous to access memcg without css_get().
2629 * But considering how consume_stok works, it's not
2630 * necessary. If consume_stock success, some charges
2631 * from this memcg are cached on this cpu. So, we
2632 * don't need to call css_get()/css_tryget() before
2633 * calling consume_stock().
2634 */
2635 rcu_read_unlock();
2636 goto done;
2637 }
2638 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002639 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002640 rcu_read_unlock();
2641 goto again;
2642 }
2643 rcu_read_unlock();
2644 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002645
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002646 do {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002647 bool invoke_oom = oom && !nr_oom_retries;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002648
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002649 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002650 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002651 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002652 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002653 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002654
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002655 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch,
2656 nr_pages, invoke_oom);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002657 switch (ret) {
2658 case CHARGE_OK:
2659 break;
2660 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002661 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002662 css_put(&memcg->css);
2663 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002664 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002665 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002666 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002667 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002668 case CHARGE_NOMEM: /* OOM routine works */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002669 if (!oom || invoke_oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002670 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002671 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002672 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002673 nr_oom_retries--;
2674 break;
Balbir Singh66e17072008-02-07 00:13:56 -08002675 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002676 } while (ret != CHARGE_OK);
2677
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002678 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002679 refill_stock(memcg, batch - nr_pages);
2680 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002681done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002682 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002683 return 0;
2684nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002685 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002686 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002687bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002688 *ptr = root_mem_cgroup;
2689 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002690}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002691
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002692/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002693 * Somemtimes we have to undo a charge we got by try_charge().
2694 * This function is for that and do uncharge, put css's refcnt.
2695 * gotten by try_charge().
2696 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002697static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002698 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002699{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002700 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002701 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002702
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002703 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002704 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002705 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002706 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002707}
2708
2709/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002710 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2711 * This is useful when moving usage to parent cgroup.
2712 */
2713static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2714 unsigned int nr_pages)
2715{
2716 unsigned long bytes = nr_pages * PAGE_SIZE;
2717
2718 if (mem_cgroup_is_root(memcg))
2719 return;
2720
2721 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2722 if (do_swap_account)
2723 res_counter_uncharge_until(&memcg->memsw,
2724 memcg->memsw.parent, bytes);
2725}
2726
2727/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002728 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002729 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2730 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2731 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002732 */
2733static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2734{
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002735 /* ID 0 is unused ID */
2736 if (!id)
2737 return NULL;
Li Zefan34c00c32013-09-23 16:56:01 +08002738 return mem_cgroup_from_id(id);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002739}
2740
Wu Fengguange42d9d52009-12-16 12:19:59 +01002741struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002742{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002743 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002744 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002745 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002746 swp_entry_t ent;
2747
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002748 VM_BUG_ON(!PageLocked(page));
2749
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002750 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002751 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002752 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002753 memcg = pc->mem_cgroup;
2754 if (memcg && !css_tryget(&memcg->css))
2755 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002756 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002757 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002758 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002759 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002760 memcg = mem_cgroup_lookup(id);
2761 if (memcg && !css_tryget(&memcg->css))
2762 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002763 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002764 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002765 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002766 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002767}
2768
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002769static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002770 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002771 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002772 enum charge_type ctype,
2773 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002774{
Johannes Weinerce587e62012-04-24 20:22:33 +02002775 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002776 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002777 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002778 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002779 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002780
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002781 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002782 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002783 /*
2784 * we don't need page_cgroup_lock about tail pages, becase they are not
2785 * accessed by any other context at this point.
2786 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002787
2788 /*
2789 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2790 * may already be on some other mem_cgroup's LRU. Take care of it.
2791 */
2792 if (lrucare) {
2793 zone = page_zone(page);
2794 spin_lock_irq(&zone->lru_lock);
2795 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002796 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002797 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002798 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002799 was_on_lru = true;
2800 }
2801 }
2802
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002803 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002804 /*
2805 * We access a page_cgroup asynchronously without lock_page_cgroup().
2806 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2807 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2808 * before USED bit, we need memory barrier here.
2809 * See mem_cgroup_add_lru_list(), etc.
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002810 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002811 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002812 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002813
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002814 if (lrucare) {
2815 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002816 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002817 VM_BUG_ON(PageLRU(page));
2818 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002819 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002820 }
2821 spin_unlock_irq(&zone->lru_lock);
2822 }
2823
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002824 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002825 anon = true;
2826 else
2827 anon = false;
2828
David Rientjesb070e652013-05-07 16:18:09 -07002829 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002830 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002831
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002832 /*
Michal Hockoe8831102013-09-12 15:13:23 -07002833 * "charge_statistics" updated event counter.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002834 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002835 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002836}
2837
Glauber Costa7cf27982012-12-18 14:22:55 -08002838static DEFINE_MUTEX(set_limit_mutex);
2839
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002840#ifdef CONFIG_MEMCG_KMEM
2841static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2842{
2843 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2844 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2845}
2846
Glauber Costa1f458cb2012-12-18 14:22:50 -08002847/*
2848 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2849 * in the memcg_cache_params struct.
2850 */
2851static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2852{
2853 struct kmem_cache *cachep;
2854
2855 VM_BUG_ON(p->is_root_cache);
2856 cachep = p->root_cache;
2857 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2858}
2859
Glauber Costa749c5412012-12-18 14:23:01 -08002860#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002861static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2862 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002863{
Tejun Heo182446d2013-08-08 20:11:24 -04002864 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002865 struct memcg_cache_params *params;
2866
2867 if (!memcg_can_account_kmem(memcg))
2868 return -EIO;
2869
2870 print_slabinfo_header(m);
2871
2872 mutex_lock(&memcg->slab_caches_mutex);
2873 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2874 cache_show(memcg_params_to_cache(params), m);
2875 mutex_unlock(&memcg->slab_caches_mutex);
2876
2877 return 0;
2878}
2879#endif
2880
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002881static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2882{
2883 struct res_counter *fail_res;
2884 struct mem_cgroup *_memcg;
2885 int ret = 0;
2886 bool may_oom;
2887
2888 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2889 if (ret)
2890 return ret;
2891
2892 /*
2893 * Conditions under which we can wait for the oom_killer. Those are
2894 * the same conditions tested by the core page allocator
2895 */
2896 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2897
2898 _memcg = memcg;
2899 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2900 &_memcg, may_oom);
2901
2902 if (ret == -EINTR) {
2903 /*
2904 * __mem_cgroup_try_charge() chosed to bypass to root due to
2905 * OOM kill or fatal signal. Since our only options are to
2906 * either fail the allocation or charge it to this cgroup, do
2907 * it as a temporary condition. But we can't fail. From a
2908 * kmem/slab perspective, the cache has already been selected,
2909 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2910 * our minds.
2911 *
2912 * This condition will only trigger if the task entered
2913 * memcg_charge_kmem in a sane state, but was OOM-killed during
2914 * __mem_cgroup_try_charge() above. Tasks that were already
2915 * dying when the allocation triggers should have been already
2916 * directed to the root cgroup in memcontrol.h
2917 */
2918 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2919 if (do_swap_account)
2920 res_counter_charge_nofail(&memcg->memsw, size,
2921 &fail_res);
2922 ret = 0;
2923 } else if (ret)
2924 res_counter_uncharge(&memcg->kmem, size);
2925
2926 return ret;
2927}
2928
2929static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2930{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002931 res_counter_uncharge(&memcg->res, size);
2932 if (do_swap_account)
2933 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002934
2935 /* Not down to 0 */
2936 if (res_counter_uncharge(&memcg->kmem, size))
2937 return;
2938
Li Zefan10d5ebf2013-07-08 16:00:33 -07002939 /*
2940 * Releases a reference taken in kmem_cgroup_css_offline in case
2941 * this last uncharge is racing with the offlining code or it is
2942 * outliving the memcg existence.
2943 *
2944 * The memory barrier imposed by test&clear is paired with the
2945 * explicit one in memcg_kmem_mark_dead().
2946 */
Glauber Costa7de37682012-12-18 14:22:07 -08002947 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002948 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002949}
2950
Glauber Costa2633d7a2012-12-18 14:22:34 -08002951void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2952{
2953 if (!memcg)
2954 return;
2955
2956 mutex_lock(&memcg->slab_caches_mutex);
2957 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2958 mutex_unlock(&memcg->slab_caches_mutex);
2959}
2960
2961/*
2962 * helper for acessing a memcg's index. It will be used as an index in the
2963 * child cache array in kmem_cache, and also to derive its name. This function
2964 * will return -1 when this is not a kmem-limited memcg.
2965 */
2966int memcg_cache_id(struct mem_cgroup *memcg)
2967{
2968 return memcg ? memcg->kmemcg_id : -1;
2969}
2970
Glauber Costa55007d82012-12-18 14:22:38 -08002971/*
2972 * This ends up being protected by the set_limit mutex, during normal
2973 * operation, because that is its main call site.
2974 *
2975 * But when we create a new cache, we can call this as well if its parent
2976 * is kmem-limited. That will have to hold set_limit_mutex as well.
2977 */
2978int memcg_update_cache_sizes(struct mem_cgroup *memcg)
2979{
2980 int num, ret;
2981
2982 num = ida_simple_get(&kmem_limited_groups,
2983 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2984 if (num < 0)
2985 return num;
2986 /*
2987 * After this point, kmem_accounted (that we test atomically in
2988 * the beginning of this conditional), is no longer 0. This
2989 * guarantees only one process will set the following boolean
2990 * to true. We don't need test_and_set because we're protected
2991 * by the set_limit_mutex anyway.
2992 */
2993 memcg_kmem_set_activated(memcg);
2994
2995 ret = memcg_update_all_caches(num+1);
2996 if (ret) {
2997 ida_simple_remove(&kmem_limited_groups, num);
2998 memcg_kmem_clear_activated(memcg);
2999 return ret;
3000 }
3001
3002 memcg->kmemcg_id = num;
3003 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
3004 mutex_init(&memcg->slab_caches_mutex);
3005 return 0;
3006}
3007
3008static size_t memcg_caches_array_size(int num_groups)
3009{
3010 ssize_t size;
3011 if (num_groups <= 0)
3012 return 0;
3013
3014 size = 2 * num_groups;
3015 if (size < MEMCG_CACHES_MIN_SIZE)
3016 size = MEMCG_CACHES_MIN_SIZE;
3017 else if (size > MEMCG_CACHES_MAX_SIZE)
3018 size = MEMCG_CACHES_MAX_SIZE;
3019
3020 return size;
3021}
3022
3023/*
3024 * We should update the current array size iff all caches updates succeed. This
3025 * can only be done from the slab side. The slab mutex needs to be held when
3026 * calling this.
3027 */
3028void memcg_update_array_size(int num)
3029{
3030 if (num > memcg_limited_groups_array_size)
3031 memcg_limited_groups_array_size = memcg_caches_array_size(num);
3032}
3033
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08003034static void kmem_cache_destroy_work_func(struct work_struct *w);
3035
Glauber Costa55007d82012-12-18 14:22:38 -08003036int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
3037{
3038 struct memcg_cache_params *cur_params = s->memcg_params;
3039
3040 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
3041
3042 if (num_groups > memcg_limited_groups_array_size) {
3043 int i;
3044 ssize_t size = memcg_caches_array_size(num_groups);
3045
3046 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003047 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003048
3049 s->memcg_params = kzalloc(size, GFP_KERNEL);
3050 if (!s->memcg_params) {
3051 s->memcg_params = cur_params;
3052 return -ENOMEM;
3053 }
3054
3055 s->memcg_params->is_root_cache = true;
3056
3057 /*
3058 * There is the chance it will be bigger than
3059 * memcg_limited_groups_array_size, if we failed an allocation
3060 * in a cache, in which case all caches updated before it, will
3061 * have a bigger array.
3062 *
3063 * But if that is the case, the data after
3064 * memcg_limited_groups_array_size is certainly unused
3065 */
3066 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3067 if (!cur_params->memcg_caches[i])
3068 continue;
3069 s->memcg_params->memcg_caches[i] =
3070 cur_params->memcg_caches[i];
3071 }
3072
3073 /*
3074 * Ideally, we would wait until all caches succeed, and only
3075 * then free the old one. But this is not worth the extra
3076 * pointer per-cache we'd have to have for this.
3077 *
3078 * It is not a big deal if some caches are left with a size
3079 * bigger than the others. And all updates will reset this
3080 * anyway.
3081 */
3082 kfree(cur_params);
3083 }
3084 return 0;
3085}
3086
Glauber Costa943a4512012-12-18 14:23:03 -08003087int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3088 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08003089{
Andrey Vagin90c7a792013-09-11 14:22:18 -07003090 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003091
3092 if (!memcg_kmem_enabled())
3093 return 0;
3094
Andrey Vagin90c7a792013-09-11 14:22:18 -07003095 if (!memcg) {
3096 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003097 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003098 } else
3099 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08003100
Glauber Costa2633d7a2012-12-18 14:22:34 -08003101 s->memcg_params = kzalloc(size, GFP_KERNEL);
3102 if (!s->memcg_params)
3103 return -ENOMEM;
3104
Glauber Costa943a4512012-12-18 14:23:03 -08003105 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08003106 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08003107 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07003108 INIT_WORK(&s->memcg_params->destroy,
3109 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08003110 } else
3111 s->memcg_params->is_root_cache = true;
3112
Glauber Costa2633d7a2012-12-18 14:22:34 -08003113 return 0;
3114}
3115
3116void memcg_release_cache(struct kmem_cache *s)
3117{
Glauber Costad7f25f82012-12-18 14:22:40 -08003118 struct kmem_cache *root;
3119 struct mem_cgroup *memcg;
3120 int id;
3121
3122 /*
3123 * This happens, for instance, when a root cache goes away before we
3124 * add any memcg.
3125 */
3126 if (!s->memcg_params)
3127 return;
3128
3129 if (s->memcg_params->is_root_cache)
3130 goto out;
3131
3132 memcg = s->memcg_params->memcg;
3133 id = memcg_cache_id(memcg);
3134
3135 root = s->memcg_params->root_cache;
3136 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08003137
3138 mutex_lock(&memcg->slab_caches_mutex);
3139 list_del(&s->memcg_params->list);
3140 mutex_unlock(&memcg->slab_caches_mutex);
3141
Li Zefan20f05312013-07-08 16:00:31 -07003142 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003143out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08003144 kfree(s->memcg_params);
3145}
3146
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003147/*
3148 * During the creation a new cache, we need to disable our accounting mechanism
3149 * altogether. This is true even if we are not creating, but rather just
3150 * enqueing new caches to be created.
3151 *
3152 * This is because that process will trigger allocations; some visible, like
3153 * explicit kmallocs to auxiliary data structures, name strings and internal
3154 * cache structures; some well concealed, like INIT_WORK() that can allocate
3155 * objects during debug.
3156 *
3157 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3158 * to it. This may not be a bounded recursion: since the first cache creation
3159 * failed to complete (waiting on the allocation), we'll just try to create the
3160 * cache again, failing at the same point.
3161 *
3162 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3163 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3164 * inside the following two functions.
3165 */
3166static inline void memcg_stop_kmem_account(void)
3167{
3168 VM_BUG_ON(!current->mm);
3169 current->memcg_kmem_skip_account++;
3170}
3171
3172static inline void memcg_resume_kmem_account(void)
3173{
3174 VM_BUG_ON(!current->mm);
3175 current->memcg_kmem_skip_account--;
3176}
3177
Glauber Costa1f458cb2012-12-18 14:22:50 -08003178static void kmem_cache_destroy_work_func(struct work_struct *w)
3179{
3180 struct kmem_cache *cachep;
3181 struct memcg_cache_params *p;
3182
3183 p = container_of(w, struct memcg_cache_params, destroy);
3184
3185 cachep = memcg_params_to_cache(p);
3186
Glauber Costa22933152012-12-18 14:22:59 -08003187 /*
3188 * If we get down to 0 after shrink, we could delete right away.
3189 * However, memcg_release_pages() already puts us back in the workqueue
3190 * in that case. If we proceed deleting, we'll get a dangling
3191 * reference, and removing the object from the workqueue in that case
3192 * is unnecessary complication. We are not a fast path.
3193 *
3194 * Note that this case is fundamentally different from racing with
3195 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3196 * kmem_cache_shrink, not only we would be reinserting a dead cache
3197 * into the queue, but doing so from inside the worker racing to
3198 * destroy it.
3199 *
3200 * So if we aren't down to zero, we'll just schedule a worker and try
3201 * again
3202 */
3203 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3204 kmem_cache_shrink(cachep);
3205 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3206 return;
3207 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003208 kmem_cache_destroy(cachep);
3209}
3210
3211void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3212{
3213 if (!cachep->memcg_params->dead)
3214 return;
3215
3216 /*
Glauber Costa22933152012-12-18 14:22:59 -08003217 * There are many ways in which we can get here.
3218 *
3219 * We can get to a memory-pressure situation while the delayed work is
3220 * still pending to run. The vmscan shrinkers can then release all
3221 * cache memory and get us to destruction. If this is the case, we'll
3222 * be executed twice, which is a bug (the second time will execute over
3223 * bogus data). In this case, cancelling the work should be fine.
3224 *
3225 * But we can also get here from the worker itself, if
3226 * kmem_cache_shrink is enough to shake all the remaining objects and
3227 * get the page count to 0. In this case, we'll deadlock if we try to
3228 * cancel the work (the worker runs with an internal lock held, which
3229 * is the same lock we would hold for cancel_work_sync().)
3230 *
3231 * Since we can't possibly know who got us here, just refrain from
3232 * running if there is already work pending
3233 */
3234 if (work_pending(&cachep->memcg_params->destroy))
3235 return;
3236 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003237 * We have to defer the actual destroying to a workqueue, because
3238 * we might currently be in a context that cannot sleep.
3239 */
3240 schedule_work(&cachep->memcg_params->destroy);
3241}
3242
Glauber Costad7f25f82012-12-18 14:22:40 -08003243/*
3244 * This lock protects updaters, not readers. We want readers to be as fast as
3245 * they can, and they will either see NULL or a valid cache value. Our model
3246 * allow them to see NULL, in which case the root memcg will be selected.
3247 *
3248 * We need this lock because multiple allocations to the same cache from a non
3249 * will span more than one worker. Only one of them can create the cache.
3250 */
3251static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003252
3253/*
3254 * Called with memcg_cache_mutex held
3255 */
3256static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3257 struct kmem_cache *s)
3258{
3259 struct kmem_cache *new;
3260 static char *tmp_name = NULL;
3261
3262 lockdep_assert_held(&memcg_cache_mutex);
3263
3264 /*
3265 * kmem_cache_create_memcg duplicates the given name and
3266 * cgroup_name for this name requires RCU context.
3267 * This static temporary buffer is used to prevent from
3268 * pointless shortliving allocation.
3269 */
3270 if (!tmp_name) {
3271 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3272 if (!tmp_name)
3273 return NULL;
3274 }
3275
3276 rcu_read_lock();
3277 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3278 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3279 rcu_read_unlock();
3280
3281 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3282 (s->flags & ~SLAB_PANIC), s->ctor, s);
3283
3284 if (new)
3285 new->allocflags |= __GFP_KMEMCG;
3286
3287 return new;
3288}
3289
Glauber Costad7f25f82012-12-18 14:22:40 -08003290static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3291 struct kmem_cache *cachep)
3292{
3293 struct kmem_cache *new_cachep;
3294 int idx;
3295
3296 BUG_ON(!memcg_can_account_kmem(memcg));
3297
3298 idx = memcg_cache_id(memcg);
3299
3300 mutex_lock(&memcg_cache_mutex);
3301 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003302 if (new_cachep) {
3303 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003304 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003305 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003306
3307 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003308 if (new_cachep == NULL) {
3309 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003310 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003311 goto out;
3312 }
3313
Glauber Costa1f458cb2012-12-18 14:22:50 -08003314 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003315
3316 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3317 /*
3318 * the readers won't lock, make sure everybody sees the updated value,
3319 * so they won't put stuff in the queue again for no reason
3320 */
3321 wmb();
3322out:
3323 mutex_unlock(&memcg_cache_mutex);
3324 return new_cachep;
3325}
3326
Glauber Costa7cf27982012-12-18 14:22:55 -08003327void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3328{
3329 struct kmem_cache *c;
3330 int i;
3331
3332 if (!s->memcg_params)
3333 return;
3334 if (!s->memcg_params->is_root_cache)
3335 return;
3336
3337 /*
3338 * If the cache is being destroyed, we trust that there is no one else
3339 * requesting objects from it. Even if there are, the sanity checks in
3340 * kmem_cache_destroy should caught this ill-case.
3341 *
3342 * Still, we don't want anyone else freeing memcg_caches under our
3343 * noses, which can happen if a new memcg comes to life. As usual,
3344 * we'll take the set_limit_mutex to protect ourselves against this.
3345 */
3346 mutex_lock(&set_limit_mutex);
3347 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3348 c = s->memcg_params->memcg_caches[i];
3349 if (!c)
3350 continue;
3351
3352 /*
3353 * We will now manually delete the caches, so to avoid races
3354 * we need to cancel all pending destruction workers and
3355 * proceed with destruction ourselves.
3356 *
3357 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3358 * and that could spawn the workers again: it is likely that
3359 * the cache still have active pages until this very moment.
3360 * This would lead us back to mem_cgroup_destroy_cache.
3361 *
3362 * But that will not execute at all if the "dead" flag is not
3363 * set, so flip it down to guarantee we are in control.
3364 */
3365 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003366 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003367 kmem_cache_destroy(c);
3368 }
3369 mutex_unlock(&set_limit_mutex);
3370}
3371
Glauber Costad7f25f82012-12-18 14:22:40 -08003372struct create_work {
3373 struct mem_cgroup *memcg;
3374 struct kmem_cache *cachep;
3375 struct work_struct work;
3376};
3377
Glauber Costa1f458cb2012-12-18 14:22:50 -08003378static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3379{
3380 struct kmem_cache *cachep;
3381 struct memcg_cache_params *params;
3382
3383 if (!memcg_kmem_is_active(memcg))
3384 return;
3385
3386 mutex_lock(&memcg->slab_caches_mutex);
3387 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3388 cachep = memcg_params_to_cache(params);
3389 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003390 schedule_work(&cachep->memcg_params->destroy);
3391 }
3392 mutex_unlock(&memcg->slab_caches_mutex);
3393}
3394
Glauber Costad7f25f82012-12-18 14:22:40 -08003395static void memcg_create_cache_work_func(struct work_struct *w)
3396{
3397 struct create_work *cw;
3398
3399 cw = container_of(w, struct create_work, work);
3400 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003401 kfree(cw);
3402}
3403
3404/*
3405 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003406 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003407static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3408 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003409{
3410 struct create_work *cw;
3411
3412 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003413 if (cw == NULL) {
3414 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003415 return;
3416 }
3417
3418 cw->memcg = memcg;
3419 cw->cachep = cachep;
3420
3421 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3422 schedule_work(&cw->work);
3423}
3424
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003425static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3426 struct kmem_cache *cachep)
3427{
3428 /*
3429 * We need to stop accounting when we kmalloc, because if the
3430 * corresponding kmalloc cache is not yet created, the first allocation
3431 * in __memcg_create_cache_enqueue will recurse.
3432 *
3433 * However, it is better to enclose the whole function. Depending on
3434 * the debugging options enabled, INIT_WORK(), for instance, can
3435 * trigger an allocation. This too, will make us recurse. Because at
3436 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3437 * the safest choice is to do it like this, wrapping the whole function.
3438 */
3439 memcg_stop_kmem_account();
3440 __memcg_create_cache_enqueue(memcg, cachep);
3441 memcg_resume_kmem_account();
3442}
Glauber Costad7f25f82012-12-18 14:22:40 -08003443/*
3444 * Return the kmem_cache we're supposed to use for a slab allocation.
3445 * We try to use the current memcg's version of the cache.
3446 *
3447 * If the cache does not exist yet, if we are the first user of it,
3448 * we either create it immediately, if possible, or create it asynchronously
3449 * in a workqueue.
3450 * In the latter case, we will let the current allocation go through with
3451 * the original cache.
3452 *
3453 * Can't be called in interrupt context or from kernel threads.
3454 * This function needs to be called with rcu_read_lock() held.
3455 */
3456struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3457 gfp_t gfp)
3458{
3459 struct mem_cgroup *memcg;
3460 int idx;
3461
3462 VM_BUG_ON(!cachep->memcg_params);
3463 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3464
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003465 if (!current->mm || current->memcg_kmem_skip_account)
3466 return cachep;
3467
Glauber Costad7f25f82012-12-18 14:22:40 -08003468 rcu_read_lock();
3469 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003470
3471 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003472 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003473
3474 idx = memcg_cache_id(memcg);
3475
3476 /*
3477 * barrier to mare sure we're always seeing the up to date value. The
3478 * code updating memcg_caches will issue a write barrier to match this.
3479 */
3480 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003481 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3482 cachep = cachep->memcg_params->memcg_caches[idx];
3483 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003484 }
3485
Li Zefanca0dde92013-04-29 15:08:57 -07003486 /* The corresponding put will be done in the workqueue. */
3487 if (!css_tryget(&memcg->css))
3488 goto out;
3489 rcu_read_unlock();
3490
3491 /*
3492 * If we are in a safe context (can wait, and not in interrupt
3493 * context), we could be be predictable and return right away.
3494 * This would guarantee that the allocation being performed
3495 * already belongs in the new cache.
3496 *
3497 * However, there are some clashes that can arrive from locking.
3498 * For instance, because we acquire the slab_mutex while doing
3499 * kmem_cache_dup, this means no further allocation could happen
3500 * with the slab_mutex held.
3501 *
3502 * Also, because cache creation issue get_online_cpus(), this
3503 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3504 * that ends up reversed during cpu hotplug. (cpuset allocates
3505 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3506 * better to defer everything.
3507 */
3508 memcg_create_cache_enqueue(memcg, cachep);
3509 return cachep;
3510out:
3511 rcu_read_unlock();
3512 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003513}
3514EXPORT_SYMBOL(__memcg_kmem_get_cache);
3515
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003516/*
3517 * We need to verify if the allocation against current->mm->owner's memcg is
3518 * possible for the given order. But the page is not allocated yet, so we'll
3519 * need a further commit step to do the final arrangements.
3520 *
3521 * It is possible for the task to switch cgroups in this mean time, so at
3522 * commit time, we can't rely on task conversion any longer. We'll then use
3523 * the handle argument to return to the caller which cgroup we should commit
3524 * against. We could also return the memcg directly and avoid the pointer
3525 * passing, but a boolean return value gives better semantics considering
3526 * the compiled-out case as well.
3527 *
3528 * Returning true means the allocation is possible.
3529 */
3530bool
3531__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3532{
3533 struct mem_cgroup *memcg;
3534 int ret;
3535
3536 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003537
3538 /*
3539 * Disabling accounting is only relevant for some specific memcg
3540 * internal allocations. Therefore we would initially not have such
3541 * check here, since direct calls to the page allocator that are marked
3542 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3543 * concerned with cache allocations, and by having this test at
3544 * memcg_kmem_get_cache, we are already able to relay the allocation to
3545 * the root cache and bypass the memcg cache altogether.
3546 *
3547 * There is one exception, though: the SLUB allocator does not create
3548 * large order caches, but rather service large kmallocs directly from
3549 * the page allocator. Therefore, the following sequence when backed by
3550 * the SLUB allocator:
3551 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003552 * memcg_stop_kmem_account();
3553 * kmalloc(<large_number>)
3554 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003555 *
3556 * would effectively ignore the fact that we should skip accounting,
3557 * since it will drive us directly to this function without passing
3558 * through the cache selector memcg_kmem_get_cache. Such large
3559 * allocations are extremely rare but can happen, for instance, for the
3560 * cache arrays. We bring this test here.
3561 */
3562 if (!current->mm || current->memcg_kmem_skip_account)
3563 return true;
3564
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003565 memcg = try_get_mem_cgroup_from_mm(current->mm);
3566
3567 /*
3568 * very rare case described in mem_cgroup_from_task. Unfortunately there
3569 * isn't much we can do without complicating this too much, and it would
3570 * be gfp-dependent anyway. Just let it go
3571 */
3572 if (unlikely(!memcg))
3573 return true;
3574
3575 if (!memcg_can_account_kmem(memcg)) {
3576 css_put(&memcg->css);
3577 return true;
3578 }
3579
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003580 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3581 if (!ret)
3582 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003583
3584 css_put(&memcg->css);
3585 return (ret == 0);
3586}
3587
3588void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3589 int order)
3590{
3591 struct page_cgroup *pc;
3592
3593 VM_BUG_ON(mem_cgroup_is_root(memcg));
3594
3595 /* The page allocation failed. Revert */
3596 if (!page) {
3597 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003598 return;
3599 }
3600
3601 pc = lookup_page_cgroup(page);
3602 lock_page_cgroup(pc);
3603 pc->mem_cgroup = memcg;
3604 SetPageCgroupUsed(pc);
3605 unlock_page_cgroup(pc);
3606}
3607
3608void __memcg_kmem_uncharge_pages(struct page *page, int order)
3609{
3610 struct mem_cgroup *memcg = NULL;
3611 struct page_cgroup *pc;
3612
3613
3614 pc = lookup_page_cgroup(page);
3615 /*
3616 * Fast unlocked return. Theoretically might have changed, have to
3617 * check again after locking.
3618 */
3619 if (!PageCgroupUsed(pc))
3620 return;
3621
3622 lock_page_cgroup(pc);
3623 if (PageCgroupUsed(pc)) {
3624 memcg = pc->mem_cgroup;
3625 ClearPageCgroupUsed(pc);
3626 }
3627 unlock_page_cgroup(pc);
3628
3629 /*
3630 * We trust that only if there is a memcg associated with the page, it
3631 * is a valid allocation
3632 */
3633 if (!memcg)
3634 return;
3635
3636 VM_BUG_ON(mem_cgroup_is_root(memcg));
3637 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003638}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003639#else
3640static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3641{
3642}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003643#endif /* CONFIG_MEMCG_KMEM */
3644
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003645#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3646
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003647#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003648/*
3649 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003650 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3651 * charge/uncharge will be never happen and move_account() is done under
3652 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003653 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003654void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003655{
3656 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003657 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003658 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003659 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003660
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003661 if (mem_cgroup_disabled())
3662 return;
David Rientjesb070e652013-05-07 16:18:09 -07003663
3664 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003665 for (i = 1; i < HPAGE_PMD_NR; i++) {
3666 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003667 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003668 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003669 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3670 }
David Rientjesb070e652013-05-07 16:18:09 -07003671 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3672 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003673}
Hugh Dickins12d27102012-01-12 17:19:52 -08003674#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003675
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003676static inline
3677void mem_cgroup_move_account_page_stat(struct mem_cgroup *from,
3678 struct mem_cgroup *to,
3679 unsigned int nr_pages,
3680 enum mem_cgroup_stat_index idx)
3681{
3682 /* Update stat data for mem_cgroup */
3683 preempt_disable();
3684 WARN_ON_ONCE(from->stat->count[idx] < nr_pages);
3685 __this_cpu_add(from->stat->count[idx], -nr_pages);
3686 __this_cpu_add(to->stat->count[idx], nr_pages);
3687 preempt_enable();
3688}
3689
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003690/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003691 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003692 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003693 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003694 * @pc: page_cgroup of the page.
3695 * @from: mem_cgroup which the page is moved from.
3696 * @to: mem_cgroup which the page is moved to. @from != @to.
3697 *
3698 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003699 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003700 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003701 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003702 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3703 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003704 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003705static int mem_cgroup_move_account(struct page *page,
3706 unsigned int nr_pages,
3707 struct page_cgroup *pc,
3708 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003709 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003710{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003711 unsigned long flags;
3712 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003713 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003714
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003715 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003716 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003717 /*
3718 * The page is isolated from LRU. So, collapse function
3719 * will not handle this page. But page splitting can happen.
3720 * Do this check under compound_page_lock(). The caller should
3721 * hold it.
3722 */
3723 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003724 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003725 goto out;
3726
3727 lock_page_cgroup(pc);
3728
3729 ret = -EINVAL;
3730 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3731 goto unlock;
3732
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003733 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003734
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003735 if (!anon && page_mapped(page))
3736 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3737 MEM_CGROUP_STAT_FILE_MAPPED);
3738
3739 if (PageWriteback(page))
3740 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3741 MEM_CGROUP_STAT_WRITEBACK);
3742
David Rientjesb070e652013-05-07 16:18:09 -07003743 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003744
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003745 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003746 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003747 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003748 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003749 ret = 0;
3750unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003751 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003752 /*
3753 * check events
3754 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003755 memcg_check_events(to, page);
3756 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003757out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003758 return ret;
3759}
3760
Michal Hocko2ef37d32012-10-26 13:37:30 +02003761/**
3762 * mem_cgroup_move_parent - moves page to the parent group
3763 * @page: the page to move
3764 * @pc: page_cgroup of the page
3765 * @child: page's cgroup
3766 *
3767 * move charges to its parent or the root cgroup if the group has no
3768 * parent (aka use_hierarchy==0).
3769 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3770 * mem_cgroup_move_account fails) the failure is always temporary and
3771 * it signals a race with a page removal/uncharge or migration. In the
3772 * first case the page is on the way out and it will vanish from the LRU
3773 * on the next attempt and the call should be retried later.
3774 * Isolation from the LRU fails only if page has been isolated from
3775 * the LRU since we looked at it and that usually means either global
3776 * reclaim or migration going on. The page will either get back to the
3777 * LRU or vanish.
3778 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3779 * (!PageCgroupUsed) or moved to a different group. The page will
3780 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003781 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003782static int mem_cgroup_move_parent(struct page *page,
3783 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003784 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003785{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003786 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003787 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003788 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003789 int ret;
3790
Michal Hockod8423012012-10-26 13:37:29 +02003791 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003792
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003793 ret = -EBUSY;
3794 if (!get_page_unless_zero(page))
3795 goto out;
3796 if (isolate_lru_page(page))
3797 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003798
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003799 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003800
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003801 parent = parent_mem_cgroup(child);
3802 /*
3803 * If no parent, move charges to root cgroup.
3804 */
3805 if (!parent)
3806 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003807
Michal Hocko2ef37d32012-10-26 13:37:30 +02003808 if (nr_pages > 1) {
3809 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003810 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003811 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003812
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003813 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003814 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003815 if (!ret)
3816 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003817
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003818 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003819 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003820 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003821put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003822 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003823out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003824 return ret;
3825}
3826
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003827/*
3828 * Charge the memory controller for page usage.
3829 * Return
3830 * 0 if the charge was successful
3831 * < 0 if the cgroup is over its limit
3832 */
3833static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003834 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003835{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003836 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003837 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003838 bool oom = true;
3839 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003840
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003841 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003842 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003843 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003844 /*
3845 * Never OOM-kill a process for a huge page. The
3846 * fault handler will fall back to regular pages.
3847 */
3848 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003849 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003850
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003851 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003852 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003853 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003854 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003855 return 0;
3856}
3857
3858int mem_cgroup_newpage_charge(struct page *page,
3859 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003860{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003861 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003862 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003863 VM_BUG_ON(page_mapped(page));
3864 VM_BUG_ON(page->mapping && !PageAnon(page));
3865 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003866 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003867 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003868}
3869
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003870/*
3871 * While swap-in, try_charge -> commit or cancel, the page is locked.
3872 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003873 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003874 * "commit()" or removed by "cancel()"
3875 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003876static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3877 struct page *page,
3878 gfp_t mask,
3879 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003880{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003881 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003882 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003883 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003884
Johannes Weiner90deb782012-07-31 16:45:47 -07003885 pc = lookup_page_cgroup(page);
3886 /*
3887 * Every swap fault against a single page tries to charge the
3888 * page, bail as early as possible. shmem_unuse() encounters
3889 * already charged pages, too. The USED bit is protected by
3890 * the page lock, which serializes swap cache removal, which
3891 * in turn serializes uncharging.
3892 */
3893 if (PageCgroupUsed(pc))
3894 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003895 if (!do_swap_account)
3896 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003897 memcg = try_get_mem_cgroup_from_page(page);
3898 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003899 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003900 *memcgp = memcg;
3901 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003902 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003903 if (ret == -EINTR)
3904 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003905 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003906charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003907 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3908 if (ret == -EINTR)
3909 ret = 0;
3910 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003911}
3912
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003913int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3914 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3915{
3916 *memcgp = NULL;
3917 if (mem_cgroup_disabled())
3918 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07003919 /*
3920 * A racing thread's fault, or swapoff, may have already
3921 * updated the pte, and even removed page from swap cache: in
3922 * those cases unuse_pte()'s pte_same() test will fail; but
3923 * there's also a KSM case which does need to charge the page.
3924 */
3925 if (!PageSwapCache(page)) {
3926 int ret;
3927
3928 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3929 if (ret == -EINTR)
3930 ret = 0;
3931 return ret;
3932 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003933 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3934}
3935
Johannes Weiner827a03d2012-07-31 16:45:36 -07003936void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3937{
3938 if (mem_cgroup_disabled())
3939 return;
3940 if (!memcg)
3941 return;
3942 __mem_cgroup_cancel_charge(memcg, 1);
3943}
3944
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003945static void
Johannes Weiner72835c82012-01-12 17:18:32 -08003946__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003947 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003948{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003949 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003950 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08003951 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003952 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07003953
Johannes Weinerce587e62012-04-24 20:22:33 +02003954 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003955 /*
3956 * Now swap is on-memory. This means this page may be
3957 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003958 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3959 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3960 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003961 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003962 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003963 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07003964 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003965 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003966}
3967
Johannes Weiner72835c82012-01-12 17:18:32 -08003968void mem_cgroup_commit_charge_swapin(struct page *page,
3969 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003970{
Johannes Weiner72835c82012-01-12 17:18:32 -08003971 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003972 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003973}
3974
Johannes Weiner827a03d2012-07-31 16:45:36 -07003975int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3976 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003977{
Johannes Weiner827a03d2012-07-31 16:45:36 -07003978 struct mem_cgroup *memcg = NULL;
3979 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3980 int ret;
3981
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003982 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07003983 return 0;
3984 if (PageCompound(page))
3985 return 0;
3986
Johannes Weiner827a03d2012-07-31 16:45:36 -07003987 if (!PageSwapCache(page))
3988 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3989 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003990 ret = __mem_cgroup_try_charge_swapin(mm, page,
3991 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07003992 if (!ret)
3993 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3994 }
3995 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003996}
3997
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003998static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003999 unsigned int nr_pages,
4000 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004001{
4002 struct memcg_batch_info *batch = NULL;
4003 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004004
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004005 /* If swapout, usage of swap doesn't decrease */
4006 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
4007 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004008
4009 batch = &current->memcg_batch;
4010 /*
4011 * In usual, we do css_get() when we remember memcg pointer.
4012 * But in this case, we keep res->usage until end of a series of
4013 * uncharges. Then, it's ok to ignore memcg's refcnt.
4014 */
4015 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004016 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004017 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004018 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004019 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004020 * the same cgroup and we have chance to coalesce uncharges.
4021 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
4022 * because we want to do uncharge as soon as possible.
4023 */
4024
4025 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
4026 goto direct_uncharge;
4027
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004028 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08004029 goto direct_uncharge;
4030
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004031 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004032 * In typical case, batch->memcg == mem. This means we can
4033 * merge a series of uncharges to an uncharge of res_counter.
4034 * If not, we uncharge res_counter ony by one.
4035 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004036 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004037 goto direct_uncharge;
4038 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004039 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004040 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004041 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004042 return;
4043direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004044 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004045 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004046 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
4047 if (unlikely(batch->memcg != memcg))
4048 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004049}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004050
Balbir Singh8697d332008-02-07 00:13:59 -08004051/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004052 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004053 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004054static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07004055__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
4056 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004057{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004058 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004059 unsigned int nr_pages = 1;
4060 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004061 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004062
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004063 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004064 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07004065
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004066 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004067 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004068 VM_BUG_ON(!PageTransHuge(page));
4069 }
Balbir Singh8697d332008-02-07 00:13:59 -08004070 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08004071 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08004072 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004073 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004074 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004075 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004076
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004077 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004078
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004079 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004080
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004081 if (!PageCgroupUsed(pc))
4082 goto unlock_out;
4083
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004084 anon = PageAnon(page);
4085
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004086 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004087 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07004088 /*
4089 * Generally PageAnon tells if it's the anon statistics to be
4090 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4091 * used before page reached the stage of being marked PageAnon.
4092 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004093 anon = true;
4094 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004095 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004096 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07004097 if (page_mapped(page))
4098 goto unlock_out;
4099 /*
4100 * Pages under migration may not be uncharged. But
4101 * end_migration() /must/ be the one uncharging the
4102 * unused post-migration page and so it has to call
4103 * here with the migration bit still set. See the
4104 * res_counter handling below.
4105 */
4106 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004107 goto unlock_out;
4108 break;
4109 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4110 if (!PageAnon(page)) { /* Shared memory */
4111 if (page->mapping && !page_is_file_cache(page))
4112 goto unlock_out;
4113 } else if (page_mapped(page)) /* Anon */
4114 goto unlock_out;
4115 break;
4116 default:
4117 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004118 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004119
David Rientjesb070e652013-05-07 16:18:09 -07004120 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004121
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004122 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08004123 /*
4124 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4125 * freed from LRU. This is safe because uncharged page is expected not
4126 * to be reused (freed soon). Exception is SwapCache, it's handled by
4127 * special functions.
4128 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004129
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004130 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004131 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004132 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07004133 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004134 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004135 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004136 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004137 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07004138 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004139 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004140 /*
4141 * Migration does not charge the res_counter for the
4142 * replacement page, so leave it alone when phasing out the
4143 * page that is unused after the migration.
4144 */
4145 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004146 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004147
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004148 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004149
4150unlock_out:
4151 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004152 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08004153}
4154
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004155void mem_cgroup_uncharge_page(struct page *page)
4156{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004157 /* early check. */
4158 if (page_mapped(page))
4159 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08004160 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07004161 /*
4162 * If the page is in swap cache, uncharge should be deferred
4163 * to the swap path, which also properly accounts swap usage
4164 * and handles memcg lifetime.
4165 *
4166 * Note that this check is not stable and reclaim may add the
4167 * page to swap cache at any time after this. However, if the
4168 * page is not in swap cache by the time page->mapcount hits
4169 * 0, there won't be any page table references to the swap
4170 * slot, and reclaim will free it and not actually write the
4171 * page to disk.
4172 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07004173 if (PageSwapCache(page))
4174 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07004175 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004176}
4177
4178void mem_cgroup_uncharge_cache_page(struct page *page)
4179{
4180 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07004181 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07004182 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004183}
4184
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004185/*
4186 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4187 * In that cases, pages are freed continuously and we can expect pages
4188 * are in the same memcg. All these calls itself limits the number of
4189 * pages freed at once, then uncharge_start/end() is called properly.
4190 * This may be called prural(2) times in a context,
4191 */
4192
4193void mem_cgroup_uncharge_start(void)
4194{
4195 current->memcg_batch.do_batch++;
4196 /* We can do nest. */
4197 if (current->memcg_batch.do_batch == 1) {
4198 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004199 current->memcg_batch.nr_pages = 0;
4200 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004201 }
4202}
4203
4204void mem_cgroup_uncharge_end(void)
4205{
4206 struct memcg_batch_info *batch = &current->memcg_batch;
4207
4208 if (!batch->do_batch)
4209 return;
4210
4211 batch->do_batch--;
4212 if (batch->do_batch) /* If stacked, do nothing. */
4213 return;
4214
4215 if (!batch->memcg)
4216 return;
4217 /*
4218 * This "batch->memcg" is valid without any css_get/put etc...
4219 * bacause we hide charges behind us.
4220 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004221 if (batch->nr_pages)
4222 res_counter_uncharge(&batch->memcg->res,
4223 batch->nr_pages * PAGE_SIZE);
4224 if (batch->memsw_nr_pages)
4225 res_counter_uncharge(&batch->memcg->memsw,
4226 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004227 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004228 /* forget this pointer (for sanity check) */
4229 batch->memcg = NULL;
4230}
4231
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004232#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004233/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004234 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004235 * memcg information is recorded to swap_cgroup of "ent"
4236 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004237void
4238mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004239{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004240 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004241 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004242
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004243 if (!swapout) /* this was a swap cache but the swap is unused ! */
4244 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4245
Johannes Weiner0030f532012-07-31 16:45:25 -07004246 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004247
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004248 /*
4249 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004250 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004251 */
4252 if (do_swap_account && swapout && memcg)
Li Zefan34c00c32013-09-23 16:56:01 +08004253 swap_cgroup_record(ent, mem_cgroup_id(memcg));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004254}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004255#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004256
Andrew Mortonc255a452012-07-31 16:43:02 -07004257#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004258/*
4259 * called from swap_entry_free(). remove record in swap_cgroup and
4260 * uncharge "memsw" account.
4261 */
4262void mem_cgroup_uncharge_swap(swp_entry_t ent)
4263{
4264 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004265 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004266
4267 if (!do_swap_account)
4268 return;
4269
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004270 id = swap_cgroup_record(ent, 0);
4271 rcu_read_lock();
4272 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004273 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004274 /*
4275 * We uncharge this because swap is freed.
4276 * This memcg can be obsolete one. We avoid calling css_tryget
4277 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004278 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004279 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004280 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004281 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004282 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004283 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004284}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004285
4286/**
4287 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4288 * @entry: swap entry to be moved
4289 * @from: mem_cgroup which the entry is moved from
4290 * @to: mem_cgroup which the entry is moved to
4291 *
4292 * It succeeds only when the swap_cgroup's record for this entry is the same
4293 * as the mem_cgroup's id of @from.
4294 *
4295 * Returns 0 on success, -EINVAL on failure.
4296 *
4297 * The caller must have charged to @to, IOW, called res_counter_charge() about
4298 * both res and memsw, and called css_get().
4299 */
4300static 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 unsigned short old_id, new_id;
4304
Li Zefan34c00c32013-09-23 16:56:01 +08004305 old_id = mem_cgroup_id(from);
4306 new_id = mem_cgroup_id(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004307
4308 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004309 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004310 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004311 /*
4312 * This function is only called from task migration context now.
4313 * It postpones res_counter and refcount handling till the end
4314 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004315 * improvement. But we cannot postpone css_get(to) because if
4316 * the process that has been moved to @to does swap-in, the
4317 * refcount of @to might be decreased to 0.
4318 *
4319 * We are in attach() phase, so the cgroup is guaranteed to be
4320 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004321 */
Li Zefan40503772013-07-08 16:00:34 -07004322 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004323 return 0;
4324 }
4325 return -EINVAL;
4326}
4327#else
4328static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004329 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004330{
4331 return -EINVAL;
4332}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004333#endif
4334
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004335/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004336 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4337 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004338 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004339void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4340 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004341{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004342 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004343 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004344 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004345 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004346
Johannes Weiner72835c82012-01-12 17:18:32 -08004347 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004348
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004349 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004350 return;
Balbir Singh40779602008-04-04 14:29:59 -07004351
Mel Gormanb32967f2012-11-19 12:35:47 +00004352 if (PageTransHuge(page))
4353 nr_pages <<= compound_order(page);
4354
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004355 pc = lookup_page_cgroup(page);
4356 lock_page_cgroup(pc);
4357 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004358 memcg = pc->mem_cgroup;
4359 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004360 /*
4361 * At migrating an anonymous page, its mapcount goes down
4362 * to 0 and uncharge() will be called. But, even if it's fully
4363 * unmapped, migration may fail and this page has to be
4364 * charged again. We set MIGRATION flag here and delay uncharge
4365 * until end_migration() is called
4366 *
4367 * Corner Case Thinking
4368 * A)
4369 * When the old page was mapped as Anon and it's unmap-and-freed
4370 * while migration was ongoing.
4371 * If unmap finds the old page, uncharge() of it will be delayed
4372 * until end_migration(). If unmap finds a new page, it's
4373 * uncharged when it make mapcount to be 1->0. If unmap code
4374 * finds swap_migration_entry, the new page will not be mapped
4375 * and end_migration() will find it(mapcount==0).
4376 *
4377 * B)
4378 * When the old page was mapped but migraion fails, the kernel
4379 * remaps it. A charge for it is kept by MIGRATION flag even
4380 * if mapcount goes down to 0. We can do remap successfully
4381 * without charging it again.
4382 *
4383 * C)
4384 * The "old" page is under lock_page() until the end of
4385 * migration, so, the old page itself will not be swapped-out.
4386 * If the new page is swapped out before end_migraton, our
4387 * hook to usual swap-out path will catch the event.
4388 */
4389 if (PageAnon(page))
4390 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004391 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004392 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004393 /*
4394 * If the page is not charged at this point,
4395 * we return here.
4396 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004397 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004398 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004399
Johannes Weiner72835c82012-01-12 17:18:32 -08004400 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004401 /*
4402 * We charge new page before it's used/mapped. So, even if unlock_page()
4403 * is called before end_migration, we can catch all events on this new
4404 * page. In the case new page is migrated but not remapped, new page's
4405 * mapcount will be finally 0 and we call uncharge in end_migration().
4406 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004407 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004408 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004409 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004410 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004411 /*
4412 * The page is committed to the memcg, but it's not actually
4413 * charged to the res_counter since we plan on replacing the
4414 * old one and only one page is going to be left afterwards.
4415 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004416 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004417}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004418
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004419/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004420void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004421 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004422{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004423 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004424 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004425 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004426
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004427 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004428 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004429
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004430 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004431 used = oldpage;
4432 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004433 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004434 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004435 unused = oldpage;
4436 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004437 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004438 __mem_cgroup_uncharge_common(unused,
4439 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4440 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4441 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004442 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004443 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004444 * We disallowed uncharge of pages under migration because mapcount
4445 * of the page goes down to zero, temporarly.
4446 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004447 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004448 pc = lookup_page_cgroup(oldpage);
4449 lock_page_cgroup(pc);
4450 ClearPageCgroupMigration(pc);
4451 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004452
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004453 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004454 * If a page is a file cache, radix-tree replacement is very atomic
4455 * and we can skip this check. When it was an Anon page, its mapcount
4456 * goes down to 0. But because we added MIGRATION flage, it's not
4457 * uncharged yet. There are several case but page->mapcount check
4458 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4459 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004460 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004461 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004462 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004463}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004464
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004465/*
4466 * At replace page cache, newpage is not under any memcg but it's on
4467 * LRU. So, this function doesn't touch res_counter but handles LRU
4468 * in correct way. Both pages are locked so we cannot race with uncharge.
4469 */
4470void mem_cgroup_replace_page_cache(struct page *oldpage,
4471 struct page *newpage)
4472{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004473 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004474 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004475 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004476
4477 if (mem_cgroup_disabled())
4478 return;
4479
4480 pc = lookup_page_cgroup(oldpage);
4481 /* fix accounting on old pages */
4482 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004483 if (PageCgroupUsed(pc)) {
4484 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004485 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004486 ClearPageCgroupUsed(pc);
4487 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004488 unlock_page_cgroup(pc);
4489
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004490 /*
4491 * When called from shmem_replace_page(), in some cases the
4492 * oldpage has already been charged, and in some cases not.
4493 */
4494 if (!memcg)
4495 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004496 /*
4497 * Even if newpage->mapping was NULL before starting replacement,
4498 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4499 * LRU while we overwrite pc->mem_cgroup.
4500 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004501 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004502}
4503
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004504#ifdef CONFIG_DEBUG_VM
4505static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4506{
4507 struct page_cgroup *pc;
4508
4509 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004510 /*
4511 * Can be NULL while feeding pages into the page allocator for
4512 * the first time, i.e. during boot or memory hotplug;
4513 * or when mem_cgroup_disabled().
4514 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004515 if (likely(pc) && PageCgroupUsed(pc))
4516 return pc;
4517 return NULL;
4518}
4519
4520bool mem_cgroup_bad_page_check(struct page *page)
4521{
4522 if (mem_cgroup_disabled())
4523 return false;
4524
4525 return lookup_page_cgroup_used(page) != NULL;
4526}
4527
4528void mem_cgroup_print_bad_page(struct page *page)
4529{
4530 struct page_cgroup *pc;
4531
4532 pc = lookup_page_cgroup_used(page);
4533 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004534 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4535 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004536 }
4537}
4538#endif
4539
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004540static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004541 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004542{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004543 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004544 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004545 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004546 int children = mem_cgroup_count_children(memcg);
4547 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004548 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004549
4550 /*
4551 * For keeping hierarchical_reclaim simple, how long we should retry
4552 * is depends on callers. We set our retry-count to be function
4553 * of # of children which we should visit in this loop.
4554 */
4555 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4556
4557 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004558
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004559 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004560 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004561 if (signal_pending(current)) {
4562 ret = -EINTR;
4563 break;
4564 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004565 /*
4566 * Rather than hide all in some function, I do this in
4567 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004568 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004569 */
4570 mutex_lock(&set_limit_mutex);
4571 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4572 if (memswlimit < val) {
4573 ret = -EINVAL;
4574 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004575 break;
4576 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004577
4578 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4579 if (memlimit < val)
4580 enlarge = 1;
4581
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004582 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004583 if (!ret) {
4584 if (memswlimit == val)
4585 memcg->memsw_is_minimum = true;
4586 else
4587 memcg->memsw_is_minimum = false;
4588 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004589 mutex_unlock(&set_limit_mutex);
4590
4591 if (!ret)
4592 break;
4593
Johannes Weiner56600482012-01-12 17:17:59 -08004594 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4595 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004596 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4597 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004598 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004599 retry_count--;
4600 else
4601 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004602 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004603 if (!ret && enlarge)
4604 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004605
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004606 return ret;
4607}
4608
Li Zefan338c8432009-06-17 16:27:15 -07004609static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4610 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004611{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004612 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004613 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004614 int children = mem_cgroup_count_children(memcg);
4615 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004616 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004617
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004618 /* see mem_cgroup_resize_res_limit */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004619 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004620 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004621 while (retry_count) {
4622 if (signal_pending(current)) {
4623 ret = -EINTR;
4624 break;
4625 }
4626 /*
4627 * Rather than hide all in some function, I do this in
4628 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004629 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004630 */
4631 mutex_lock(&set_limit_mutex);
4632 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4633 if (memlimit > val) {
4634 ret = -EINVAL;
4635 mutex_unlock(&set_limit_mutex);
4636 break;
4637 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004638 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4639 if (memswlimit < val)
4640 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004641 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004642 if (!ret) {
4643 if (memlimit == val)
4644 memcg->memsw_is_minimum = true;
4645 else
4646 memcg->memsw_is_minimum = false;
4647 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004648 mutex_unlock(&set_limit_mutex);
4649
4650 if (!ret)
4651 break;
4652
Johannes Weiner56600482012-01-12 17:17:59 -08004653 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4654 MEM_CGROUP_RECLAIM_NOSWAP |
4655 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004656 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004657 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004658 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004659 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004660 else
4661 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004662 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004663 if (!ret && enlarge)
4664 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004665 return ret;
4666}
4667
Michal Hocko2ef37d32012-10-26 13:37:30 +02004668/**
4669 * mem_cgroup_force_empty_list - clears LRU of a group
4670 * @memcg: group to clear
4671 * @node: NUMA node
4672 * @zid: zone id
4673 * @lru: lru to to clear
4674 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004675 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004676 * reclaim the pages page themselves - pages are moved to the parent (or root)
4677 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004678 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004679static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004680 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004681{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004682 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004683 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004684 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004685 struct page *busy;
4686 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004687
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004688 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004689 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4690 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004691
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004692 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004693 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004694 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004695 struct page *page;
4696
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004697 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004698 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004699 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004700 break;
4701 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004702 page = list_entry(list->prev, struct page, lru);
4703 if (busy == page) {
4704 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004705 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004706 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004707 continue;
4708 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004709 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004710
Johannes Weiner925b7672012-01-12 17:18:15 -08004711 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004712
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004713 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004714 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004715 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004716 cond_resched();
4717 } else
4718 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004719 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004720}
4721
4722/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004723 * make mem_cgroup's charge to be 0 if there is no task by moving
4724 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004725 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004726 *
4727 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004728 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004729static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004730{
Michal Hockoc26251f2012-10-26 13:37:28 +02004731 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004732 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004733
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004734 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004735 /* This is for making all *used* pages to be on LRU. */
4736 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004737 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004738 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004739 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004740 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004741 enum lru_list lru;
4742 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004743 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004744 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004745 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004746 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004747 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004748 mem_cgroup_end_move(memcg);
4749 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004750 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004751
Michal Hocko2ef37d32012-10-26 13:37:30 +02004752 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004753 * Kernel memory may not necessarily be trackable to a specific
4754 * process. So they are not migrated, and therefore we can't
4755 * expect their value to drop to 0 here.
4756 * Having res filled up with kmem only is enough.
4757 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004758 * This is a safety check because mem_cgroup_force_empty_list
4759 * could have raced with mem_cgroup_replace_page_cache callers
4760 * so the lru seemed empty but the page could have been added
4761 * right after the check. RES_USAGE should be safe as we always
4762 * charge before adding to the LRU.
4763 */
Glauber Costabea207c2012-12-18 14:22:11 -08004764 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4765 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4766 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004767}
4768
4769/*
Glauber Costab5f99b52013-02-22 16:34:53 -08004770 * This mainly exists for tests during the setting of set of use_hierarchy.
4771 * Since this is the very setting we are changing, the current hierarchy value
4772 * is meaningless
4773 */
4774static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4775{
Tejun Heo492eb212013-08-08 20:11:25 -04004776 struct cgroup_subsys_state *pos;
Glauber Costab5f99b52013-02-22 16:34:53 -08004777
4778 /* bounce at first found */
Tejun Heo492eb212013-08-08 20:11:25 -04004779 css_for_each_child(pos, &memcg->css)
Glauber Costab5f99b52013-02-22 16:34:53 -08004780 return true;
4781 return false;
4782}
4783
4784/*
Glauber Costa09998212013-02-22 16:34:55 -08004785 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4786 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
Glauber Costab5f99b52013-02-22 16:34:53 -08004787 * from mem_cgroup_count_children(), in the sense that we don't really care how
4788 * many children we have; we only need to know if we have any. It also counts
4789 * any memcg without hierarchy as infertile.
4790 */
4791static inline bool memcg_has_children(struct mem_cgroup *memcg)
4792{
4793 return memcg->use_hierarchy && __memcg_has_children(memcg);
4794}
4795
4796/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004797 * Reclaims as many pages from the given memcg as possible and moves
4798 * the rest to the parent.
4799 *
4800 * Caller is responsible for holding css reference for memcg.
4801 */
4802static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4803{
4804 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4805 struct cgroup *cgrp = memcg->css.cgroup;
4806
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004807 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004808 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4809 return -EBUSY;
4810
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004811 /* we call try-to-free pages for make this cgroup empty */
4812 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004813 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004814 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004815 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004816
Michal Hockoc26251f2012-10-26 13:37:28 +02004817 if (signal_pending(current))
4818 return -EINTR;
4819
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004820 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004821 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004822 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004823 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004824 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004825 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004826 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004827
4828 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004829 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02004830 mem_cgroup_reparent_charges(memcg);
4831
4832 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004833}
4834
Tejun Heo182446d2013-08-08 20:11:24 -04004835static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
4836 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004837{
Tejun Heo182446d2013-08-08 20:11:24 -04004838 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02004839
Michal Hockod8423012012-10-26 13:37:29 +02004840 if (mem_cgroup_is_root(memcg))
4841 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07004842 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004843}
4844
Tejun Heo182446d2013-08-08 20:11:24 -04004845static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
4846 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004847{
Tejun Heo182446d2013-08-08 20:11:24 -04004848 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004849}
4850
Tejun Heo182446d2013-08-08 20:11:24 -04004851static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
4852 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004853{
4854 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04004855 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04004856 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08004857
Glauber Costa09998212013-02-22 16:34:55 -08004858 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07004859
4860 if (memcg->use_hierarchy == val)
4861 goto out;
4862
Balbir Singh18f59ea2009-01-07 18:08:07 -08004863 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004864 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08004865 * in the child subtrees. If it is unset, then the change can
4866 * occur, provided the current cgroup has no children.
4867 *
4868 * For the root cgroup, parent_mem is NULL, we allow value to be
4869 * set if there are no children.
4870 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004871 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08004872 (val == 1 || val == 0)) {
Glauber Costab5f99b52013-02-22 16:34:53 -08004873 if (!__memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004874 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004875 else
4876 retval = -EBUSY;
4877 } else
4878 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07004879
4880out:
Glauber Costa09998212013-02-22 16:34:55 -08004881 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004882
4883 return retval;
4884}
4885
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004886
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004887static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004888 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004889{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004890 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004891 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004892
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004893 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004894 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004895 val += mem_cgroup_read_stat(iter, idx);
4896
4897 if (val < 0) /* race ? */
4898 val = 0;
4899 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004900}
4901
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004902static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004903{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004904 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004905
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004906 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004907 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00004908 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004909 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00004910 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004911 }
4912
David Rientjesb070e652013-05-07 16:18:09 -07004913 /*
4914 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4915 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4916 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004917 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4918 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004919
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004920 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004921 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004922
4923 return val << PAGE_SHIFT;
4924}
4925
Tejun Heo182446d2013-08-08 20:11:24 -04004926static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
4927 struct cftype *cft, struct file *file,
4928 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004929{
Tejun Heo182446d2013-08-08 20:11:24 -04004930 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07004931 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004932 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004933 int name, len;
4934 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004935
4936 type = MEMFILE_TYPE(cft->private);
4937 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004938
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004939 switch (type) {
4940 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004941 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004942 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004943 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004944 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004945 break;
4946 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004947 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004948 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004949 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004950 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004951 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004952 case _KMEM:
4953 val = res_counter_read_u64(&memcg->kmem, name);
4954 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004955 default:
4956 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004957 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004958
4959 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4960 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004961}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004962
Tejun Heo182446d2013-08-08 20:11:24 -04004963static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004964{
4965 int ret = -EINVAL;
4966#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04004967 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004968 /*
4969 * For simplicity, we won't allow this to be disabled. It also can't
4970 * be changed if the cgroup has children already, or if tasks had
4971 * already joined.
4972 *
4973 * If tasks join before we set the limit, a person looking at
4974 * kmem.usage_in_bytes will have no way to determine when it took
4975 * place, which makes the value quite meaningless.
4976 *
4977 * After it first became limited, changes in the value of the limit are
4978 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004979 */
Glauber Costa09998212013-02-22 16:34:55 -08004980 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004981 mutex_lock(&set_limit_mutex);
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004982 if (!memcg->kmem_account_flags && val != RES_COUNTER_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04004983 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08004984 ret = -EBUSY;
4985 goto out;
4986 }
4987 ret = res_counter_set_limit(&memcg->kmem, val);
4988 VM_BUG_ON(ret);
4989
Glauber Costa55007d82012-12-18 14:22:38 -08004990 ret = memcg_update_cache_sizes(memcg);
4991 if (ret) {
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004992 res_counter_set_limit(&memcg->kmem, RES_COUNTER_MAX);
Glauber Costa55007d82012-12-18 14:22:38 -08004993 goto out;
4994 }
Glauber Costa692e89a2013-02-22 16:34:56 -08004995 static_key_slow_inc(&memcg_kmem_enabled_key);
4996 /*
4997 * setting the active bit after the inc will guarantee no one
4998 * starts accounting before all call sites are patched
4999 */
5000 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005001 } else
5002 ret = res_counter_set_limit(&memcg->kmem, val);
5003out:
5004 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08005005 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005006#endif
5007 return ret;
5008}
5009
Hugh Dickins6d0439902013-02-22 16:35:50 -08005010#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08005011static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08005012{
Glauber Costa55007d82012-12-18 14:22:38 -08005013 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005014 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
5015 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08005016 goto out;
5017
Glauber Costa510fc4e2012-12-18 14:21:47 -08005018 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08005019 /*
5020 * When that happen, we need to disable the static branch only on those
5021 * memcgs that enabled it. To achieve this, we would be forced to
5022 * complicate the code by keeping track of which memcgs were the ones
5023 * that actually enabled limits, and which ones got it from its
5024 * parents.
5025 *
5026 * It is a lot simpler just to do static_key_slow_inc() on every child
5027 * that is accounted.
5028 */
Glauber Costa55007d82012-12-18 14:22:38 -08005029 if (!memcg_kmem_is_active(memcg))
5030 goto out;
5031
5032 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07005033 * __mem_cgroup_free() will issue static_key_slow_dec() because this
5034 * memcg is active already. If the later initialization fails then the
5035 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08005036 */
Glauber Costa55007d82012-12-18 14:22:38 -08005037 static_key_slow_inc(&memcg_kmem_enabled_key);
5038
5039 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07005040 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005041 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07005042 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005043 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08005044out:
5045 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005046}
Hugh Dickins6d0439902013-02-22 16:35:50 -08005047#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08005048
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005049/*
5050 * The user of this function is...
5051 * RES_LIMIT.
5052 */
Tejun Heo182446d2013-08-08 20:11:24 -04005053static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07005054 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005055{
Tejun Heo182446d2013-08-08 20:11:24 -04005056 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005057 enum res_type type;
5058 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005059 unsigned long long val;
5060 int ret;
5061
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005062 type = MEMFILE_TYPE(cft->private);
5063 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07005064
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005065 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005066 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07005067 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
5068 ret = -EINVAL;
5069 break;
5070 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005071 /* This function does all necessary parse...reuse it */
5072 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005073 if (ret)
5074 break;
5075 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005076 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005077 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005078 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005079 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04005080 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005081 else
5082 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005083 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07005084 case RES_SOFT_LIMIT:
5085 ret = res_counter_memparse_write_strategy(buffer, &val);
5086 if (ret)
5087 break;
5088 /*
5089 * For memsw, soft limits are hard to implement in terms
5090 * of semantics, for now, we support soft limits for
5091 * control without swap
5092 */
5093 if (type == _MEM)
5094 ret = res_counter_set_soft_limit(&memcg->res, val);
5095 else
5096 ret = -EINVAL;
5097 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005098 default:
5099 ret = -EINVAL; /* should be BUG() ? */
5100 break;
5101 }
5102 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005103}
5104
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005105static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5106 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5107{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005108 unsigned long long min_limit, min_memsw_limit, tmp;
5109
5110 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5111 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005112 if (!memcg->use_hierarchy)
5113 goto out;
5114
Tejun Heo63876982013-08-08 20:11:23 -04005115 while (css_parent(&memcg->css)) {
5116 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005117 if (!memcg->use_hierarchy)
5118 break;
5119 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5120 min_limit = min(min_limit, tmp);
5121 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5122 min_memsw_limit = min(min_memsw_limit, tmp);
5123 }
5124out:
5125 *mem_limit = min_limit;
5126 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005127}
5128
Tejun Heo182446d2013-08-08 20:11:24 -04005129static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005130{
Tejun Heo182446d2013-08-08 20:11:24 -04005131 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005132 int name;
5133 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005134
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005135 type = MEMFILE_TYPE(event);
5136 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07005137
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005138 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005139 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005140 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005141 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005142 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005143 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005144 else if (type == _KMEM)
5145 res_counter_reset_max(&memcg->kmem);
5146 else
5147 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005148 break;
5149 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005150 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005151 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005152 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005153 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005154 else if (type == _KMEM)
5155 res_counter_reset_failcnt(&memcg->kmem);
5156 else
5157 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005158 break;
5159 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07005160
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07005161 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005162}
5163
Tejun Heo182446d2013-08-08 20:11:24 -04005164static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005165 struct cftype *cft)
5166{
Tejun Heo182446d2013-08-08 20:11:24 -04005167 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005168}
5169
Daisuke Nishimura02491442010-03-10 15:22:17 -08005170#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04005171static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005172 struct cftype *cft, u64 val)
5173{
Tejun Heo182446d2013-08-08 20:11:24 -04005174 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005175
5176 if (val >= (1 << NR_MOVE_TYPE))
5177 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005178
Glauber Costaee5e8472013-02-22 16:34:50 -08005179 /*
5180 * No kind of locking is needed in here, because ->can_attach() will
5181 * check this value once in the beginning of the process, and then carry
5182 * on with stale data. This means that changes to this value will only
5183 * affect task migrations starting after the change.
5184 */
5185 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005186 return 0;
5187}
Daisuke Nishimura02491442010-03-10 15:22:17 -08005188#else
Tejun Heo182446d2013-08-08 20:11:24 -04005189static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005190 struct cftype *cft, u64 val)
5191{
5192 return -ENOSYS;
5193}
5194#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005195
Ying Han406eb0c2011-05-26 16:25:37 -07005196#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04005197static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
5198 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07005199{
5200 int nid;
5201 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5202 unsigned long node_nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005203 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005204
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005205 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005206 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005207 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005208 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005209 seq_printf(m, " N%d=%lu", nid, node_nr);
5210 }
5211 seq_putc(m, '\n');
5212
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005213 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005214 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005215 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005216 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005217 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005218 seq_printf(m, " N%d=%lu", nid, node_nr);
5219 }
5220 seq_putc(m, '\n');
5221
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005222 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005223 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005224 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005225 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005226 LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005227 seq_printf(m, " N%d=%lu", nid, node_nr);
5228 }
5229 seq_putc(m, '\n');
5230
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005231 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005232 seq_printf(m, "unevictable=%lu", unevictable_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005233 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005234 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005235 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005236 seq_printf(m, " N%d=%lu", nid, node_nr);
5237 }
5238 seq_putc(m, '\n');
5239 return 0;
5240}
5241#endif /* CONFIG_NUMA */
5242
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005243static inline void mem_cgroup_lru_names_not_uptodate(void)
5244{
5245 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5246}
5247
Tejun Heo182446d2013-08-08 20:11:24 -04005248static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005249 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005250{
Tejun Heo182446d2013-08-08 20:11:24 -04005251 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005252 struct mem_cgroup *mi;
5253 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005254
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005255 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005256 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005257 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005258 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5259 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005260 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005261
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005262 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5263 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5264 mem_cgroup_read_events(memcg, i));
5265
5266 for (i = 0; i < NR_LRU_LISTS; i++)
5267 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5268 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5269
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005270 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005271 {
5272 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005273 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005274 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005275 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005276 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5277 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005278 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005279
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005280 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5281 long long val = 0;
5282
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005283 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005284 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005285 for_each_mem_cgroup_tree(mi, memcg)
5286 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5287 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5288 }
5289
5290 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5291 unsigned long long val = 0;
5292
5293 for_each_mem_cgroup_tree(mi, memcg)
5294 val += mem_cgroup_read_events(mi, i);
5295 seq_printf(m, "total_%s %llu\n",
5296 mem_cgroup_events_names[i], val);
5297 }
5298
5299 for (i = 0; i < NR_LRU_LISTS; i++) {
5300 unsigned long long val = 0;
5301
5302 for_each_mem_cgroup_tree(mi, memcg)
5303 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5304 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005305 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005306
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005307#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005308 {
5309 int nid, zid;
5310 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005311 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005312 unsigned long recent_rotated[2] = {0, 0};
5313 unsigned long recent_scanned[2] = {0, 0};
5314
5315 for_each_online_node(nid)
5316 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005317 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005318 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005319
Hugh Dickins89abfab2012-05-29 15:06:53 -07005320 recent_rotated[0] += rstat->recent_rotated[0];
5321 recent_rotated[1] += rstat->recent_rotated[1];
5322 recent_scanned[0] += rstat->recent_scanned[0];
5323 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005324 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005325 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5326 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5327 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5328 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005329 }
5330#endif
5331
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005332 return 0;
5333}
5334
Tejun Heo182446d2013-08-08 20:11:24 -04005335static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5336 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005337{
Tejun Heo182446d2013-08-08 20:11:24 -04005338 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005339
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005340 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005341}
5342
Tejun Heo182446d2013-08-08 20:11:24 -04005343static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5344 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005345{
Tejun Heo182446d2013-08-08 20:11:24 -04005346 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005347 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005348
Tejun Heo63876982013-08-08 20:11:23 -04005349 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005350 return -EINVAL;
5351
Glauber Costa09998212013-02-22 16:34:55 -08005352 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005353
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005354 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005355 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005356 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005357 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005358 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005359
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005360 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005361
Glauber Costa09998212013-02-22 16:34:55 -08005362 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005363
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005364 return 0;
5365}
5366
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005367static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5368{
5369 struct mem_cgroup_threshold_ary *t;
5370 u64 usage;
5371 int i;
5372
5373 rcu_read_lock();
5374 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005375 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005376 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005377 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005378
5379 if (!t)
5380 goto unlock;
5381
5382 usage = mem_cgroup_usage(memcg, swap);
5383
5384 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005385 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005386 * If it's not true, a threshold was crossed after last
5387 * call of __mem_cgroup_threshold().
5388 */
Phil Carmody5407a562010-05-26 14:42:42 -07005389 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005390
5391 /*
5392 * Iterate backward over array of thresholds starting from
5393 * current_threshold and check if a threshold is crossed.
5394 * If none of thresholds below usage is crossed, we read
5395 * only one element of the array here.
5396 */
5397 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5398 eventfd_signal(t->entries[i].eventfd, 1);
5399
5400 /* i = current_threshold + 1 */
5401 i++;
5402
5403 /*
5404 * Iterate forward over array of thresholds starting from
5405 * current_threshold+1 and check if a threshold is crossed.
5406 * If none of thresholds above usage is crossed, we read
5407 * only one element of the array here.
5408 */
5409 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5410 eventfd_signal(t->entries[i].eventfd, 1);
5411
5412 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005413 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005414unlock:
5415 rcu_read_unlock();
5416}
5417
5418static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5419{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005420 while (memcg) {
5421 __mem_cgroup_threshold(memcg, false);
5422 if (do_swap_account)
5423 __mem_cgroup_threshold(memcg, true);
5424
5425 memcg = parent_mem_cgroup(memcg);
5426 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005427}
5428
5429static int compare_thresholds(const void *a, const void *b)
5430{
5431 const struct mem_cgroup_threshold *_a = a;
5432 const struct mem_cgroup_threshold *_b = b;
5433
Greg Thelen2bff24a2013-09-11 14:23:08 -07005434 if (_a->threshold > _b->threshold)
5435 return 1;
5436
5437 if (_a->threshold < _b->threshold)
5438 return -1;
5439
5440 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005441}
5442
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005443static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005444{
5445 struct mem_cgroup_eventfd_list *ev;
5446
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005447 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005448 eventfd_signal(ev->eventfd, 1);
5449 return 0;
5450}
5451
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005452static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005453{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005454 struct mem_cgroup *iter;
5455
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005456 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005457 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005458}
5459
Tejun Heo81eeaf02013-08-08 20:11:26 -04005460static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005461 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005462{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005463 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005464 struct mem_cgroup_thresholds *thresholds;
5465 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005466 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005467 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005468 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005469
5470 ret = res_counter_memparse_write_strategy(args, &threshold);
5471 if (ret)
5472 return ret;
5473
5474 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005475
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005476 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005477 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005478 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005479 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005480 else
5481 BUG();
5482
5483 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5484
5485 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005486 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005487 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5488
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005489 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005490
5491 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005492 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005493 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005494 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005495 ret = -ENOMEM;
5496 goto unlock;
5497 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005498 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005499
5500 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005501 if (thresholds->primary) {
5502 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005503 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005504 }
5505
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005506 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005507 new->entries[size - 1].eventfd = eventfd;
5508 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005509
5510 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005511 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005512 compare_thresholds, NULL);
5513
5514 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005515 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005516 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005517 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005518 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005519 * new->current_threshold will not be used until
5520 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005521 * it here.
5522 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005523 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005524 } else
5525 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005526 }
5527
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005528 /* Free old spare buffer and save old primary buffer as spare */
5529 kfree(thresholds->spare);
5530 thresholds->spare = thresholds->primary;
5531
5532 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005533
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005534 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005535 synchronize_rcu();
5536
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005537unlock:
5538 mutex_unlock(&memcg->thresholds_lock);
5539
5540 return ret;
5541}
5542
Tejun Heo81eeaf02013-08-08 20:11:26 -04005543static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005544 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005545{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005546 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005547 struct mem_cgroup_thresholds *thresholds;
5548 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005549 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005550 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005551 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005552
5553 mutex_lock(&memcg->thresholds_lock);
5554 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005555 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005556 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005557 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005558 else
5559 BUG();
5560
Anton Vorontsov371528c2012-02-24 05:14:46 +04005561 if (!thresholds->primary)
5562 goto unlock;
5563
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005564 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5565
5566 /* Check if a threshold crossed before removing */
5567 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5568
5569 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005570 size = 0;
5571 for (i = 0; i < thresholds->primary->size; i++) {
5572 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005573 size++;
5574 }
5575
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005576 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005577
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005578 /* Set thresholds array to NULL if we don't have thresholds */
5579 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005580 kfree(new);
5581 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005582 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005583 }
5584
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005585 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005586
5587 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005588 new->current_threshold = -1;
5589 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5590 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005591 continue;
5592
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005593 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005594 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005595 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005596 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005597 * until rcu_assign_pointer(), so it's safe to increment
5598 * it here.
5599 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005600 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005601 }
5602 j++;
5603 }
5604
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005605swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005606 /* Swap primary and spare array */
5607 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005608 /* If all events are unregistered, free the spare array */
5609 if (!new) {
5610 kfree(thresholds->spare);
5611 thresholds->spare = NULL;
5612 }
5613
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005614 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005615
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005616 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005617 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005618unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005619 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005620}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005621
Tejun Heo81eeaf02013-08-08 20:11:26 -04005622static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005623 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5624{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005625 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005626 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005627 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005628
5629 BUG_ON(type != _OOM_TYPE);
5630 event = kmalloc(sizeof(*event), GFP_KERNEL);
5631 if (!event)
5632 return -ENOMEM;
5633
Michal Hocko1af8efe2011-07-26 16:08:24 -07005634 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005635
5636 event->eventfd = eventfd;
5637 list_add(&event->list, &memcg->oom_notify);
5638
5639 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005640 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005641 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005642 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005643
5644 return 0;
5645}
5646
Tejun Heo81eeaf02013-08-08 20:11:26 -04005647static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005648 struct cftype *cft, struct eventfd_ctx *eventfd)
5649{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005650 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005651 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005652 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005653
5654 BUG_ON(type != _OOM_TYPE);
5655
Michal Hocko1af8efe2011-07-26 16:08:24 -07005656 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005657
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005658 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005659 if (ev->eventfd == eventfd) {
5660 list_del(&ev->list);
5661 kfree(ev);
5662 }
5663 }
5664
Michal Hocko1af8efe2011-07-26 16:08:24 -07005665 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005666}
5667
Tejun Heo182446d2013-08-08 20:11:24 -04005668static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005669 struct cftype *cft, struct cgroup_map_cb *cb)
5670{
Tejun Heo182446d2013-08-08 20:11:24 -04005671 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005672
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005673 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005674
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005675 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005676 cb->fill(cb, "under_oom", 1);
5677 else
5678 cb->fill(cb, "under_oom", 0);
5679 return 0;
5680}
5681
Tejun Heo182446d2013-08-08 20:11:24 -04005682static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005683 struct cftype *cft, u64 val)
5684{
Tejun Heo182446d2013-08-08 20:11:24 -04005685 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005686 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005687
5688 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005689 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005690 return -EINVAL;
5691
Glauber Costa09998212013-02-22 16:34:55 -08005692 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005693 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005694 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005695 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005696 return -EINVAL;
5697 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005698 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005699 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005700 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005701 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005702 return 0;
5703}
5704
Andrew Mortonc255a452012-07-31 16:43:02 -07005705#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005706static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005707{
Glauber Costa55007d82012-12-18 14:22:38 -08005708 int ret;
5709
Glauber Costa2633d7a2012-12-18 14:22:34 -08005710 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005711 ret = memcg_propagate_kmem(memcg);
5712 if (ret)
5713 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005714
Glauber Costa1d62e432012-04-09 19:36:33 -03005715 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005716}
Glauber Costae5671df2011-12-11 21:47:01 +00005717
Li Zefan10d5ebf2013-07-08 16:00:33 -07005718static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005719{
Glauber Costa1d62e432012-04-09 19:36:33 -03005720 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005721}
5722
5723static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5724{
5725 if (!memcg_kmem_is_active(memcg))
5726 return;
5727
5728 /*
5729 * kmem charges can outlive the cgroup. In the case of slab
5730 * pages, for instance, a page contain objects from various
5731 * processes. As we prevent from taking a reference for every
5732 * such allocation we have to be careful when doing uncharge
5733 * (see memcg_uncharge_kmem) and here during offlining.
5734 *
5735 * The idea is that that only the _last_ uncharge which sees
5736 * the dead memcg will drop the last reference. An additional
5737 * reference is taken here before the group is marked dead
5738 * which is then paired with css_put during uncharge resp. here.
5739 *
5740 * Although this might sound strange as this path is called from
5741 * css_offline() when the referencemight have dropped down to 0
5742 * and shouldn't be incremented anymore (css_tryget would fail)
5743 * we do not have other options because of the kmem allocations
5744 * lifetime.
5745 */
5746 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005747
5748 memcg_kmem_mark_dead(memcg);
5749
5750 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5751 return;
5752
Glauber Costa7de37682012-12-18 14:22:07 -08005753 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005754 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005755}
Glauber Costae5671df2011-12-11 21:47:01 +00005756#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005757static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005758{
5759 return 0;
5760}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005761
Li Zefan10d5ebf2013-07-08 16:00:33 -07005762static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5763{
5764}
5765
5766static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005767{
5768}
Glauber Costae5671df2011-12-11 21:47:01 +00005769#endif
5770
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005771static struct cftype mem_cgroup_files[] = {
5772 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005773 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005774 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005775 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005776 .register_event = mem_cgroup_usage_register_event,
5777 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005778 },
5779 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005780 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005781 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005782 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005783 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005784 },
5785 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005786 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005787 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005788 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005789 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005790 },
5791 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005792 .name = "soft_limit_in_bytes",
5793 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5794 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005795 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005796 },
5797 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005798 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005799 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005800 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005801 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005802 },
Balbir Singh8697d332008-02-07 00:13:59 -08005803 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005804 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005805 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005806 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005807 {
5808 .name = "force_empty",
5809 .trigger = mem_cgroup_force_empty_write,
5810 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005811 {
5812 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005813 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005814 .write_u64 = mem_cgroup_hierarchy_write,
5815 .read_u64 = mem_cgroup_hierarchy_read,
5816 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005817 {
5818 .name = "swappiness",
5819 .read_u64 = mem_cgroup_swappiness_read,
5820 .write_u64 = mem_cgroup_swappiness_write,
5821 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005822 {
5823 .name = "move_charge_at_immigrate",
5824 .read_u64 = mem_cgroup_move_charge_read,
5825 .write_u64 = mem_cgroup_move_charge_write,
5826 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005827 {
5828 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005829 .read_map = mem_cgroup_oom_control_read,
5830 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005831 .register_event = mem_cgroup_oom_register_event,
5832 .unregister_event = mem_cgroup_oom_unregister_event,
5833 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5834 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005835 {
5836 .name = "pressure_level",
5837 .register_event = vmpressure_register_event,
5838 .unregister_event = vmpressure_unregister_event,
5839 },
Ying Han406eb0c2011-05-26 16:25:37 -07005840#ifdef CONFIG_NUMA
5841 {
5842 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005843 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005844 },
5845#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005846#ifdef CONFIG_MEMCG_KMEM
5847 {
5848 .name = "kmem.limit_in_bytes",
5849 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5850 .write_string = mem_cgroup_write,
5851 .read = mem_cgroup_read,
5852 },
5853 {
5854 .name = "kmem.usage_in_bytes",
5855 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5856 .read = mem_cgroup_read,
5857 },
5858 {
5859 .name = "kmem.failcnt",
5860 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5861 .trigger = mem_cgroup_reset,
5862 .read = mem_cgroup_read,
5863 },
5864 {
5865 .name = "kmem.max_usage_in_bytes",
5866 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5867 .trigger = mem_cgroup_reset,
5868 .read = mem_cgroup_read,
5869 },
Glauber Costa749c5412012-12-18 14:23:01 -08005870#ifdef CONFIG_SLABINFO
5871 {
5872 .name = "kmem.slabinfo",
5873 .read_seq_string = mem_cgroup_slabinfo_read,
5874 },
5875#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005876#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005877 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005878};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005879
Michal Hocko2d110852013-02-22 16:34:43 -08005880#ifdef CONFIG_MEMCG_SWAP
5881static struct cftype memsw_cgroup_files[] = {
5882 {
5883 .name = "memsw.usage_in_bytes",
5884 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5885 .read = mem_cgroup_read,
5886 .register_event = mem_cgroup_usage_register_event,
5887 .unregister_event = mem_cgroup_usage_unregister_event,
5888 },
5889 {
5890 .name = "memsw.max_usage_in_bytes",
5891 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5892 .trigger = mem_cgroup_reset,
5893 .read = mem_cgroup_read,
5894 },
5895 {
5896 .name = "memsw.limit_in_bytes",
5897 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5898 .write_string = mem_cgroup_write,
5899 .read = mem_cgroup_read,
5900 },
5901 {
5902 .name = "memsw.failcnt",
5903 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5904 .trigger = mem_cgroup_reset,
5905 .read = mem_cgroup_read,
5906 },
5907 { }, /* terminate */
5908};
5909#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005910static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005911{
5912 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005913 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005914 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005915 /*
5916 * This routine is called against possible nodes.
5917 * But it's BUG to call kmalloc() against offline node.
5918 *
5919 * TODO: this routine can waste much memory for nodes which will
5920 * never be onlined. It's better to use memory hotplug callback
5921 * function.
5922 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005923 if (!node_state(node, N_NORMAL_MEMORY))
5924 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005925 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005926 if (!pn)
5927 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005928
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005929 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5930 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005931 lruvec_init(&mz->lruvec);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005932 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005933 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005934 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005935 return 0;
5936}
5937
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005938static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005939{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005940 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005941}
5942
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005943static struct mem_cgroup *mem_cgroup_alloc(void)
5944{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005945 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005946 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005947
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005948 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08005949 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005950 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005951 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005952 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005953
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005954 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005955 return NULL;
5956
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005957 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5958 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005959 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005960 spin_lock_init(&memcg->pcp_counter_lock);
5961 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005962
5963out_free:
5964 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005965 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005966 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005967 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005968 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005969}
5970
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005971/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005972 * At destroying mem_cgroup, references from swap_cgroup can remain.
5973 * (scanning all at force_empty is too costly...)
5974 *
5975 * Instead of clearing all references at force_empty, we remember
5976 * the number of reference from swap_cgroup and free mem_cgroup when
5977 * it goes down to 0.
5978 *
5979 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005980 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005981
5982static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005983{
Glauber Costac8b2a362012-12-18 14:22:13 -08005984 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005985 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07005986
Glauber Costac8b2a362012-12-18 14:22:13 -08005987 free_css_id(&mem_cgroup_subsys, &memcg->css);
5988
5989 for_each_node(node)
5990 free_mem_cgroup_per_zone_info(memcg, node);
5991
5992 free_percpu(memcg->stat);
5993
Glauber Costa3f134612012-05-29 15:07:11 -07005994 /*
5995 * We need to make sure that (at least for now), the jump label
5996 * destruction code runs outside of the cgroup lock. This is because
5997 * get_online_cpus(), which is called from the static_branch update,
5998 * can't be called inside the cgroup_lock. cpusets are the ones
5999 * enforcing this dependency, so if they ever change, we might as well.
6000 *
6001 * schedule_work() will guarantee this happens. Be careful if you need
6002 * to move this code around, and make sure it is outside
6003 * the cgroup_lock.
6004 */
Glauber Costaa8964b92012-12-18 14:22:09 -08006005 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07006006 if (size < PAGE_SIZE)
6007 kfree(memcg);
6008 else
6009 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07006010}
Glauber Costa3afe36b2012-05-29 15:07:10 -07006011
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006012/*
6013 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
6014 */
Glauber Costae1aab162011-12-11 21:47:03 +00006015struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006016{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006017 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006018 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006019 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006020}
Glauber Costae1aab162011-12-11 21:47:03 +00006021EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07006022
Li Zefan0eb253e2009-01-15 13:51:25 -08006023static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04006024mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006025{
Glauber Costad142e3e2013-02-22 16:34:52 -08006026 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006027 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006028 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006029
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006030 memcg = mem_cgroup_alloc();
6031 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006032 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006033
Bob Liu3ed28fa2012-01-12 17:19:04 -08006034 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006035 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006036 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07006037
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006038 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04006039 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08006040 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08006041 res_counter_init(&memcg->res, NULL);
6042 res_counter_init(&memcg->memsw, NULL);
6043 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08006044 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08006045
Glauber Costad142e3e2013-02-22 16:34:52 -08006046 memcg->last_scanned_node = MAX_NUMNODES;
6047 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08006048 memcg->move_charge_at_immigrate = 0;
6049 mutex_init(&memcg->thresholds_lock);
6050 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07006051 vmpressure_init(&memcg->vmpressure);
Michal Hocko7d910c02013-09-12 15:13:28 -07006052 spin_lock_init(&memcg->soft_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08006053
6054 return &memcg->css;
6055
6056free_out:
6057 __mem_cgroup_free(memcg);
6058 return ERR_PTR(error);
6059}
6060
6061static int
Tejun Heoeb954192013-08-08 20:11:23 -04006062mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08006063{
Tejun Heoeb954192013-08-08 20:11:23 -04006064 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6065 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08006066 int error = 0;
6067
Li Zefan4219b2d2013-09-23 16:56:29 +08006068 if (css->cgroup->id > MEM_CGROUP_ID_MAX)
6069 return -ENOSPC;
6070
Tejun Heo63876982013-08-08 20:11:23 -04006071 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08006072 return 0;
6073
Glauber Costa09998212013-02-22 16:34:55 -08006074 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006075
6076 memcg->use_hierarchy = parent->use_hierarchy;
6077 memcg->oom_kill_disable = parent->oom_kill_disable;
6078 memcg->swappiness = mem_cgroup_swappiness(parent);
6079
6080 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006081 res_counter_init(&memcg->res, &parent->res);
6082 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006083 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08006084
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006085 /*
Li Zefan8d76a972013-07-08 16:00:36 -07006086 * No need to take a reference to the parent because cgroup
6087 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006088 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08006089 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006090 res_counter_init(&memcg->res, NULL);
6091 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006092 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006093 /*
6094 * Deeper hierachy with use_hierarchy == false doesn't make
6095 * much sense so let cgroup subsystem know about this
6096 * unfortunate state in our controller.
6097 */
Glauber Costad142e3e2013-02-22 16:34:52 -08006098 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006099 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08006100 }
Glauber Costacbe128e32012-04-09 19:36:34 -03006101
6102 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08006103 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006104 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006105}
6106
Michal Hocko5f578162013-04-29 15:07:17 -07006107/*
6108 * Announce all parents that a group from their hierarchy is gone.
6109 */
6110static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
6111{
6112 struct mem_cgroup *parent = memcg;
6113
6114 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07006115 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07006116
6117 /*
6118 * if the root memcg is not hierarchical we have to check it
6119 * explicitely.
6120 */
6121 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07006122 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07006123}
6124
Tejun Heoeb954192013-08-08 20:11:23 -04006125static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006126{
Tejun Heoeb954192013-08-08 20:11:23 -04006127 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07006128
Li Zefan10d5ebf2013-07-08 16:00:33 -07006129 kmem_cgroup_css_offline(memcg);
6130
Michal Hocko5f578162013-04-29 15:07:17 -07006131 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02006132 mem_cgroup_reparent_charges(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -07006133 if (memcg->soft_contributed) {
6134 while ((memcg = parent_mem_cgroup(memcg)))
6135 atomic_dec(&memcg->children_in_excess);
Michal Hocko1be171d2013-09-12 15:13:32 -07006136
6137 if (memcg != root_mem_cgroup && !root_mem_cgroup->use_hierarchy)
6138 atomic_dec(&root_mem_cgroup->children_in_excess);
Michal Hocko7d910c02013-09-12 15:13:28 -07006139 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08006140 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07006141 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006142}
6143
Tejun Heoeb954192013-08-08 20:11:23 -04006144static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006145{
Tejun Heoeb954192013-08-08 20:11:23 -04006146 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08006147
Li Zefan10d5ebf2013-07-08 16:00:33 -07006148 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07006149 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006150}
6151
Daisuke Nishimura02491442010-03-10 15:22:17 -08006152#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006153/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006154#define PRECHARGE_COUNT_AT_ONCE 256
6155static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006156{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006157 int ret = 0;
6158 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006159 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006160
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006161 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006162 mc.precharge += count;
6163 /* we don't need css_get for root */
6164 return ret;
6165 }
6166 /* try to charge at once */
6167 if (count > 1) {
6168 struct res_counter *dummy;
6169 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006170 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006171 * by cgroup_lock_live_cgroup() that it is not removed and we
6172 * are still under the same cgroup_mutex. So we can postpone
6173 * css_get().
6174 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006175 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006176 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006177 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006178 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006179 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006180 goto one_by_one;
6181 }
6182 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006183 return ret;
6184 }
6185one_by_one:
6186 /* fall back to one by one charge */
6187 while (count--) {
6188 if (signal_pending(current)) {
6189 ret = -EINTR;
6190 break;
6191 }
6192 if (!batch_count--) {
6193 batch_count = PRECHARGE_COUNT_AT_ONCE;
6194 cond_resched();
6195 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006196 ret = __mem_cgroup_try_charge(NULL,
6197 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006198 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006199 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006200 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006201 mc.precharge++;
6202 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006203 return ret;
6204}
6205
6206/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006207 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006208 * @vma: the vma the pte to be checked belongs
6209 * @addr: the address corresponding to the pte to be checked
6210 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08006211 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006212 *
6213 * Returns
6214 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6215 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6216 * move charge. if @target is not NULL, the page is stored in target->page
6217 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006218 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6219 * target for charge migration. if @target is not NULL, the entry is stored
6220 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006221 *
6222 * Called with pte lock held.
6223 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006224union mc_target {
6225 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006226 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006227};
6228
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006229enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006230 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006231 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006232 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006233};
6234
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006235static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6236 unsigned long addr, pte_t ptent)
6237{
6238 struct page *page = vm_normal_page(vma, addr, ptent);
6239
6240 if (!page || !page_mapped(page))
6241 return NULL;
6242 if (PageAnon(page)) {
6243 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006244 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006245 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006246 } else if (!move_file())
6247 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006248 return NULL;
6249 if (!get_page_unless_zero(page))
6250 return NULL;
6251
6252 return page;
6253}
6254
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006255#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006256static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6257 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6258{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006259 struct page *page = NULL;
6260 swp_entry_t ent = pte_to_swp_entry(ptent);
6261
6262 if (!move_anon() || non_swap_entry(ent))
6263 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006264 /*
6265 * Because lookup_swap_cache() updates some statistics counter,
6266 * we call find_get_page() with swapper_space directly.
6267 */
Shaohua Li33806f02013-02-22 16:34:37 -08006268 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006269 if (do_swap_account)
6270 entry->val = ent.val;
6271
6272 return page;
6273}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006274#else
6275static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6276 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6277{
6278 return NULL;
6279}
6280#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006281
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006282static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6283 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6284{
6285 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006286 struct address_space *mapping;
6287 pgoff_t pgoff;
6288
6289 if (!vma->vm_file) /* anonymous vma */
6290 return NULL;
6291 if (!move_file())
6292 return NULL;
6293
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006294 mapping = vma->vm_file->f_mapping;
6295 if (pte_none(ptent))
6296 pgoff = linear_page_index(vma, addr);
6297 else /* pte_file(ptent) is true */
6298 pgoff = pte_to_pgoff(ptent);
6299
6300 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006301 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006302
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006303#ifdef CONFIG_SWAP
6304 /* shmem/tmpfs may report page out on swap: account for that too. */
6305 if (radix_tree_exceptional_entry(page)) {
6306 swp_entry_t swap = radix_to_swp_entry(page);
6307 if (do_swap_account)
6308 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006309 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006310 }
6311#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006312 return page;
6313}
6314
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006315static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006316 unsigned long addr, pte_t ptent, union mc_target *target)
6317{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006318 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006319 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006320 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006321 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006322
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006323 if (pte_present(ptent))
6324 page = mc_handle_present_pte(vma, addr, ptent);
6325 else if (is_swap_pte(ptent))
6326 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006327 else if (pte_none(ptent) || pte_file(ptent))
6328 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006329
6330 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006331 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006332 if (page) {
6333 pc = lookup_page_cgroup(page);
6334 /*
6335 * Do only loose check w/o page_cgroup lock.
6336 * mem_cgroup_move_account() checks the pc is valid or not under
6337 * the lock.
6338 */
6339 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6340 ret = MC_TARGET_PAGE;
6341 if (target)
6342 target->page = page;
6343 }
6344 if (!ret || !target)
6345 put_page(page);
6346 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006347 /* There is a swap entry and a page doesn't exist or isn't charged */
6348 if (ent.val && !ret &&
Li Zefan34c00c32013-09-23 16:56:01 +08006349 mem_cgroup_id(mc.from) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006350 ret = MC_TARGET_SWAP;
6351 if (target)
6352 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006353 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006354 return ret;
6355}
6356
Naoya Horiguchi12724852012-03-21 16:34:28 -07006357#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6358/*
6359 * We don't consider swapping or file mapped pages because THP does not
6360 * support them for now.
6361 * Caller should make sure that pmd_trans_huge(pmd) is true.
6362 */
6363static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6364 unsigned long addr, pmd_t pmd, union mc_target *target)
6365{
6366 struct page *page = NULL;
6367 struct page_cgroup *pc;
6368 enum mc_target_type ret = MC_TARGET_NONE;
6369
6370 page = pmd_page(pmd);
6371 VM_BUG_ON(!page || !PageHead(page));
6372 if (!move_anon())
6373 return ret;
6374 pc = lookup_page_cgroup(page);
6375 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6376 ret = MC_TARGET_PAGE;
6377 if (target) {
6378 get_page(page);
6379 target->page = page;
6380 }
6381 }
6382 return ret;
6383}
6384#else
6385static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6386 unsigned long addr, pmd_t pmd, union mc_target *target)
6387{
6388 return MC_TARGET_NONE;
6389}
6390#endif
6391
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006392static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6393 unsigned long addr, unsigned long end,
6394 struct mm_walk *walk)
6395{
6396 struct vm_area_struct *vma = walk->private;
6397 pte_t *pte;
6398 spinlock_t *ptl;
6399
Naoya Horiguchi12724852012-03-21 16:34:28 -07006400 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6401 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6402 mc.precharge += HPAGE_PMD_NR;
6403 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006404 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006405 }
Dave Hansen03319322011-03-22 16:32:56 -07006406
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006407 if (pmd_trans_unstable(pmd))
6408 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006409 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6410 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006411 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006412 mc.precharge++; /* increment precharge temporarily */
6413 pte_unmap_unlock(pte - 1, ptl);
6414 cond_resched();
6415
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006416 return 0;
6417}
6418
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006419static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6420{
6421 unsigned long precharge;
6422 struct vm_area_struct *vma;
6423
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006424 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006425 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6426 struct mm_walk mem_cgroup_count_precharge_walk = {
6427 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6428 .mm = mm,
6429 .private = vma,
6430 };
6431 if (is_vm_hugetlb_page(vma))
6432 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006433 walk_page_range(vma->vm_start, vma->vm_end,
6434 &mem_cgroup_count_precharge_walk);
6435 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006436 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006437
6438 precharge = mc.precharge;
6439 mc.precharge = 0;
6440
6441 return precharge;
6442}
6443
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006444static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6445{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006446 unsigned long precharge = mem_cgroup_count_precharge(mm);
6447
6448 VM_BUG_ON(mc.moving_task);
6449 mc.moving_task = current;
6450 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006451}
6452
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006453/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6454static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006455{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006456 struct mem_cgroup *from = mc.from;
6457 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006458 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006459
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006460 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006461 if (mc.precharge) {
6462 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6463 mc.precharge = 0;
6464 }
6465 /*
6466 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6467 * we must uncharge here.
6468 */
6469 if (mc.moved_charge) {
6470 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6471 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006472 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006473 /* we must fixup refcnts and charges */
6474 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006475 /* uncharge swap account from the old cgroup */
6476 if (!mem_cgroup_is_root(mc.from))
6477 res_counter_uncharge(&mc.from->memsw,
6478 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006479
6480 for (i = 0; i < mc.moved_swap; i++)
6481 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006482
6483 if (!mem_cgroup_is_root(mc.to)) {
6484 /*
6485 * we charged both to->res and to->memsw, so we should
6486 * uncharge to->res.
6487 */
6488 res_counter_uncharge(&mc.to->res,
6489 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006490 }
Li Zefan40503772013-07-08 16:00:34 -07006491 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006492 mc.moved_swap = 0;
6493 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006494 memcg_oom_recover(from);
6495 memcg_oom_recover(to);
6496 wake_up_all(&mc.waitq);
6497}
6498
6499static void mem_cgroup_clear_mc(void)
6500{
6501 struct mem_cgroup *from = mc.from;
6502
6503 /*
6504 * we must clear moving_task before waking up waiters at the end of
6505 * task migration.
6506 */
6507 mc.moving_task = NULL;
6508 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006509 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006510 mc.from = NULL;
6511 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006512 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006513 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006514}
6515
Tejun Heoeb954192013-08-08 20:11:23 -04006516static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006517 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006518{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006519 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006520 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006521 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006522 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006523
Glauber Costaee5e8472013-02-22 16:34:50 -08006524 /*
6525 * We are now commited to this value whatever it is. Changes in this
6526 * tunable will only affect upcoming migrations, not the current one.
6527 * So we need to save it, and keep it going.
6528 */
6529 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6530 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006531 struct mm_struct *mm;
6532 struct mem_cgroup *from = mem_cgroup_from_task(p);
6533
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006534 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006535
6536 mm = get_task_mm(p);
6537 if (!mm)
6538 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006539 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006540 if (mm->owner == p) {
6541 VM_BUG_ON(mc.from);
6542 VM_BUG_ON(mc.to);
6543 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006544 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006545 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006546 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006547 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006548 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006549 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006550 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006551 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006552 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006553
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006554 ret = mem_cgroup_precharge_mc(mm);
6555 if (ret)
6556 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006557 }
6558 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006559 }
6560 return ret;
6561}
6562
Tejun Heoeb954192013-08-08 20:11:23 -04006563static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006564 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006565{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006566 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006567}
6568
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006569static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6570 unsigned long addr, unsigned long end,
6571 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006572{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006573 int ret = 0;
6574 struct vm_area_struct *vma = walk->private;
6575 pte_t *pte;
6576 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006577 enum mc_target_type target_type;
6578 union mc_target target;
6579 struct page *page;
6580 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006581
Naoya Horiguchi12724852012-03-21 16:34:28 -07006582 /*
6583 * We don't take compound_lock() here but no race with splitting thp
6584 * happens because:
6585 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6586 * under splitting, which means there's no concurrent thp split,
6587 * - if another thread runs into split_huge_page() just after we
6588 * entered this if-block, the thread must wait for page table lock
6589 * to be unlocked in __split_huge_page_splitting(), where the main
6590 * part of thp split is not executed yet.
6591 */
6592 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006593 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006594 spin_unlock(&vma->vm_mm->page_table_lock);
6595 return 0;
6596 }
6597 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6598 if (target_type == MC_TARGET_PAGE) {
6599 page = target.page;
6600 if (!isolate_lru_page(page)) {
6601 pc = lookup_page_cgroup(page);
6602 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006603 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006604 mc.precharge -= HPAGE_PMD_NR;
6605 mc.moved_charge += HPAGE_PMD_NR;
6606 }
6607 putback_lru_page(page);
6608 }
6609 put_page(page);
6610 }
6611 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006612 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006613 }
6614
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006615 if (pmd_trans_unstable(pmd))
6616 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006617retry:
6618 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6619 for (; addr != end; addr += PAGE_SIZE) {
6620 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006621 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006622
6623 if (!mc.precharge)
6624 break;
6625
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006626 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006627 case MC_TARGET_PAGE:
6628 page = target.page;
6629 if (isolate_lru_page(page))
6630 goto put;
6631 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006632 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006633 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006634 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006635 /* we uncharge from mc.from later. */
6636 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006637 }
6638 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006639put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006640 put_page(page);
6641 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006642 case MC_TARGET_SWAP:
6643 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006644 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006645 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006646 /* we fixup refcnts and charges later. */
6647 mc.moved_swap++;
6648 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006649 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006650 default:
6651 break;
6652 }
6653 }
6654 pte_unmap_unlock(pte - 1, ptl);
6655 cond_resched();
6656
6657 if (addr != end) {
6658 /*
6659 * We have consumed all precharges we got in can_attach().
6660 * We try charge one by one, but don't do any additional
6661 * charges to mc.to if we have failed in charge once in attach()
6662 * phase.
6663 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006664 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006665 if (!ret)
6666 goto retry;
6667 }
6668
6669 return ret;
6670}
6671
6672static void mem_cgroup_move_charge(struct mm_struct *mm)
6673{
6674 struct vm_area_struct *vma;
6675
6676 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006677retry:
6678 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6679 /*
6680 * Someone who are holding the mmap_sem might be waiting in
6681 * waitq. So we cancel all extra charges, wake up all waiters,
6682 * and retry. Because we cancel precharges, we might not be able
6683 * to move enough charges, but moving charge is a best-effort
6684 * feature anyway, so it wouldn't be a big problem.
6685 */
6686 __mem_cgroup_clear_mc();
6687 cond_resched();
6688 goto retry;
6689 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006690 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6691 int ret;
6692 struct mm_walk mem_cgroup_move_charge_walk = {
6693 .pmd_entry = mem_cgroup_move_charge_pte_range,
6694 .mm = mm,
6695 .private = vma,
6696 };
6697 if (is_vm_hugetlb_page(vma))
6698 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006699 ret = walk_page_range(vma->vm_start, vma->vm_end,
6700 &mem_cgroup_move_charge_walk);
6701 if (ret)
6702 /*
6703 * means we have consumed all precharges and failed in
6704 * doing additional charge. Just abandon here.
6705 */
6706 break;
6707 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006708 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006709}
6710
Tejun Heoeb954192013-08-08 20:11:23 -04006711static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006712 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006713{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006714 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006715 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006716
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006717 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006718 if (mc.to)
6719 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006720 mmput(mm);
6721 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006722 if (mc.to)
6723 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006724}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006725#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006726static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006727 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006728{
6729 return 0;
6730}
Tejun Heoeb954192013-08-08 20:11:23 -04006731static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006732 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006733{
6734}
Tejun Heoeb954192013-08-08 20:11:23 -04006735static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006736 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006737{
6738}
6739#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006740
Tejun Heof00baae2013-04-15 13:41:15 -07006741/*
6742 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6743 * to verify sane_behavior flag on each mount attempt.
6744 */
Tejun Heoeb954192013-08-08 20:11:23 -04006745static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006746{
6747 /*
6748 * use_hierarchy is forced with sane_behavior. cgroup core
6749 * guarantees that @root doesn't have any children, so turning it
6750 * on for the root memcg is enough.
6751 */
Tejun Heoeb954192013-08-08 20:11:23 -04006752 if (cgroup_sane_behavior(root_css->cgroup))
6753 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006754}
6755
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006756struct cgroup_subsys mem_cgroup_subsys = {
6757 .name = "memory",
6758 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006759 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006760 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006761 .css_offline = mem_cgroup_css_offline,
6762 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006763 .can_attach = mem_cgroup_can_attach,
6764 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006765 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006766 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006767 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006768 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006769 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006770};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006771
Andrew Mortonc255a452012-07-31 16:43:02 -07006772#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006773static int __init enable_swap_account(char *s)
6774{
Michal Hockoa2c89902011-05-24 17:12:50 -07006775 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006776 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006777 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006778 really_do_swap_account = 0;
6779 return 1;
6780}
Michal Hockoa2c89902011-05-24 17:12:50 -07006781__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006782
Michal Hocko2d110852013-02-22 16:34:43 -08006783static void __init memsw_file_init(void)
6784{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006785 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006786}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006787
6788static void __init enable_swap_cgroup(void)
6789{
6790 if (!mem_cgroup_disabled() && really_do_swap_account) {
6791 do_swap_account = 1;
6792 memsw_file_init();
6793 }
6794}
6795
Michal Hocko2d110852013-02-22 16:34:43 -08006796#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006797static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006798{
6799}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006800#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006801
6802/*
Michal Hocko10813122013-02-22 16:35:41 -08006803 * subsys_initcall() for memory controller.
6804 *
6805 * Some parts like hotcpu_notifier() have to be initialized from this context
6806 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6807 * everything that doesn't depend on a specific mem_cgroup structure should
6808 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006809 */
6810static int __init mem_cgroup_init(void)
6811{
6812 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006813 enable_swap_cgroup();
Michal Hockoe4777492013-02-22 16:35:40 -08006814 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006815 return 0;
6816}
6817subsys_initcall(mem_cgroup_init);