blob: d5ff3ce13029b2c99b4ed402898ae0c76a143fde [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
Glauber Costae1aab162011-12-11 21:47:03 +0000491/* Writing them here to avoid exposing memcg's inner layout */
Michal Hocko4bd2c1e2012-10-08 16:33:10 -0700492#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000493
Glauber Costae1aab162011-12-11 21:47:03 +0000494void sock_update_memcg(struct sock *sk)
495{
Glauber Costa376be5f2012-01-20 04:57:14 +0000496 if (mem_cgroup_sockets_enabled) {
Glauber Costae1aab162011-12-11 21:47:03 +0000497 struct mem_cgroup *memcg;
Glauber Costa3f134612012-05-29 15:07:11 -0700498 struct cg_proto *cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000499
500 BUG_ON(!sk->sk_prot->proto_cgroup);
501
Glauber Costaf3f511e2012-01-05 20:16:39 +0000502 /* Socket cloning can throw us here with sk_cgrp already
503 * filled. It won't however, necessarily happen from
504 * process context. So the test for root memcg given
505 * the current task's memcg won't help us in this case.
506 *
507 * Respecting the original socket's memcg is a better
508 * decision in this case.
509 */
510 if (sk->sk_cgrp) {
511 BUG_ON(mem_cgroup_is_root(sk->sk_cgrp->memcg));
Li Zefan5347e5a2013-07-08 16:00:30 -0700512 css_get(&sk->sk_cgrp->memcg->css);
Glauber Costaf3f511e2012-01-05 20:16:39 +0000513 return;
514 }
515
Glauber Costae1aab162011-12-11 21:47:03 +0000516 rcu_read_lock();
517 memcg = mem_cgroup_from_task(current);
Glauber Costa3f134612012-05-29 15:07:11 -0700518 cg_proto = sk->sk_prot->proto_cgroup(memcg);
Li Zefan5347e5a2013-07-08 16:00:30 -0700519 if (!mem_cgroup_is_root(memcg) &&
520 memcg_proto_active(cg_proto) && css_tryget(&memcg->css)) {
Glauber Costa3f134612012-05-29 15:07:11 -0700521 sk->sk_cgrp = cg_proto;
Glauber Costae1aab162011-12-11 21:47:03 +0000522 }
523 rcu_read_unlock();
524 }
525}
526EXPORT_SYMBOL(sock_update_memcg);
527
528void sock_release_memcg(struct sock *sk)
529{
Glauber Costa376be5f2012-01-20 04:57:14 +0000530 if (mem_cgroup_sockets_enabled && sk->sk_cgrp) {
Glauber Costae1aab162011-12-11 21:47:03 +0000531 struct mem_cgroup *memcg;
532 WARN_ON(!sk->sk_cgrp->memcg);
533 memcg = sk->sk_cgrp->memcg;
Li Zefan5347e5a2013-07-08 16:00:30 -0700534 css_put(&sk->sk_cgrp->memcg->css);
Glauber Costae1aab162011-12-11 21:47:03 +0000535 }
536}
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000537
538struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
539{
540 if (!memcg || mem_cgroup_is_root(memcg))
541 return NULL;
542
543 return &memcg->tcp_mem.cg_proto;
544}
545EXPORT_SYMBOL(tcp_proto_cgroup);
Glauber Costae1aab162011-12-11 21:47:03 +0000546
Glauber Costa3f134612012-05-29 15:07:11 -0700547static void disarm_sock_keys(struct mem_cgroup *memcg)
548{
549 if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
550 return;
551 static_key_slow_dec(&memcg_socket_limit_enabled);
552}
553#else
554static void disarm_sock_keys(struct mem_cgroup *memcg)
555{
556}
557#endif
558
Glauber Costaa8964b92012-12-18 14:22:09 -0800559#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -0800560/*
561 * This will be the memcg's index in each cache's ->memcg_params->memcg_caches.
562 * There are two main reasons for not using the css_id for this:
563 * 1) this works better in sparse environments, where we have a lot of memcgs,
564 * but only a few kmem-limited. Or also, if we have, for instance, 200
565 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
566 * 200 entry array for that.
567 *
568 * 2) In order not to violate the cgroup API, we would like to do all memory
569 * allocation in ->create(). At that point, we haven't yet allocated the
570 * css_id. Having a separate index prevents us from messing with the cgroup
571 * core for this
572 *
573 * The current size of the caches array is stored in
574 * memcg_limited_groups_array_size. It will double each time we have to
575 * increase it.
576 */
577static DEFINE_IDA(kmem_limited_groups);
Glauber Costa749c5412012-12-18 14:23:01 -0800578int memcg_limited_groups_array_size;
579
Glauber Costa55007d82012-12-18 14:22:38 -0800580/*
581 * MIN_SIZE is different than 1, because we would like to avoid going through
582 * the alloc/free process all the time. In a small machine, 4 kmem-limited
583 * cgroups is a reasonable guess. In the future, it could be a parameter or
584 * tunable, but that is strictly not necessary.
585 *
586 * MAX_SIZE should be as large as the number of css_ids. Ideally, we could get
587 * this constant directly from cgroup, but it is understandable that this is
588 * better kept as an internal representation in cgroup.c. In any case, the
589 * css_id space is not getting any smaller, and we don't have to necessarily
590 * increase ours as well if it increases.
591 */
592#define MEMCG_CACHES_MIN_SIZE 4
593#define MEMCG_CACHES_MAX_SIZE 65535
594
Glauber Costad7f25f82012-12-18 14:22:40 -0800595/*
596 * A lot of the calls to the cache allocation functions are expected to be
597 * inlined by the compiler. Since the calls to memcg_kmem_get_cache are
598 * conditional to this static branch, we'll have to allow modules that does
599 * kmem_cache_alloc and the such to see this symbol as well
600 */
Glauber Costaa8964b92012-12-18 14:22:09 -0800601struct static_key memcg_kmem_enabled_key;
Glauber Costad7f25f82012-12-18 14:22:40 -0800602EXPORT_SYMBOL(memcg_kmem_enabled_key);
Glauber Costaa8964b92012-12-18 14:22:09 -0800603
604static void disarm_kmem_keys(struct mem_cgroup *memcg)
605{
Glauber Costa55007d82012-12-18 14:22:38 -0800606 if (memcg_kmem_is_active(memcg)) {
Glauber Costaa8964b92012-12-18 14:22:09 -0800607 static_key_slow_dec(&memcg_kmem_enabled_key);
Glauber Costa55007d82012-12-18 14:22:38 -0800608 ida_simple_remove(&kmem_limited_groups, memcg->kmemcg_id);
609 }
Glauber Costabea207c2012-12-18 14:22:11 -0800610 /*
611 * This check can't live in kmem destruction function,
612 * since the charges will outlive the cgroup
613 */
614 WARN_ON(res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0);
Glauber Costaa8964b92012-12-18 14:22:09 -0800615}
616#else
617static void disarm_kmem_keys(struct mem_cgroup *memcg)
618{
619}
620#endif /* CONFIG_MEMCG_KMEM */
621
622static void disarm_static_keys(struct mem_cgroup *memcg)
623{
624 disarm_sock_keys(memcg);
625 disarm_kmem_keys(memcg);
626}
627
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700628static void drain_all_stock_async(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800629
Balbir Singhf64c3f52009-09-23 15:56:37 -0700630static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700631mem_cgroup_zoneinfo(struct mem_cgroup *memcg, int nid, int zid)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700632{
Glauber Costa45cf7eb2013-02-22 16:34:49 -0800633 VM_BUG_ON((unsigned)nid >= nr_node_ids);
Johannes Weiner54f72fe2013-07-08 15:59:49 -0700634 return &memcg->nodeinfo[nid]->zoneinfo[zid];
Balbir Singhf64c3f52009-09-23 15:56:37 -0700635}
636
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700637struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100638{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700639 return &memcg->css;
Wu Fengguangd3242362009-12-16 12:19:59 +0100640}
641
Balbir Singhf64c3f52009-09-23 15:56:37 -0700642static struct mem_cgroup_per_zone *
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700643page_cgroup_zoneinfo(struct mem_cgroup *memcg, struct page *page)
Balbir Singhf64c3f52009-09-23 15:56:37 -0700644{
Johannes Weiner97a6c372011-03-23 16:42:27 -0700645 int nid = page_to_nid(page);
646 int zid = page_zonenum(page);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700647
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700648 return mem_cgroup_zoneinfo(memcg, nid, zid);
Balbir Singhf64c3f52009-09-23 15:56:37 -0700649}
650
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700651/*
652 * Implementation Note: reading percpu statistics for memcg.
653 *
654 * Both of vmstat[] and percpu_counter has threshold and do periodic
655 * synchronization to implement "quick" read. There are trade-off between
656 * reading cost and precision of value. Then, we may have a chance to implement
657 * a periodic synchronizion of counter in memcg's counter.
658 *
659 * But this _read() function is used for user interface now. The user accounts
660 * memory usage by memory cgroup and he _always_ requires exact value because
661 * he accounts memory. Even if we provide quick-and-fuzzy read, we always
662 * have to visit all online cpus and make sum. So, for now, unnecessary
663 * synchronization is not implemented. (just implemented for cpu hotplug)
664 *
665 * If there are kernel internal actions which can make use of some not-exact
666 * value, and reading all cpu value can be performance bottleneck in some
667 * common workload, threashold and synchonization as vmstat[] should be
668 * implemented.
669 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700670static long mem_cgroup_read_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700671 enum mem_cgroup_stat_index idx)
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800672{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700673 long val = 0;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800674 int cpu;
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800675
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700676 get_online_cpus();
677 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700678 val += per_cpu(memcg->stat->count[idx], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700679#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700680 spin_lock(&memcg->pcp_counter_lock);
681 val += memcg->nocpu_base.count[idx];
682 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700683#endif
684 put_online_cpus();
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800685 return val;
686}
687
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700688static void mem_cgroup_swap_statistics(struct mem_cgroup *memcg,
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700689 bool charge)
690{
691 int val = (charge) ? 1 : -1;
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -0700692 this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_SWAP], val);
Balbir Singh0c3e73e2009-09-23 15:56:42 -0700693}
694
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700695static unsigned long mem_cgroup_read_events(struct mem_cgroup *memcg,
Johannes Weinere9f89742011-03-23 16:42:37 -0700696 enum mem_cgroup_events_index idx)
697{
698 unsigned long val = 0;
699 int cpu;
700
701 for_each_online_cpu(cpu)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700702 val += per_cpu(memcg->stat->events[idx], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -0700703#ifdef CONFIG_HOTPLUG_CPU
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700704 spin_lock(&memcg->pcp_counter_lock);
705 val += memcg->nocpu_base.events[idx];
706 spin_unlock(&memcg->pcp_counter_lock);
Johannes Weinere9f89742011-03-23 16:42:37 -0700707#endif
708 return val;
709}
710
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700711static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
David Rientjesb070e652013-05-07 16:18:09 -0700712 struct page *page,
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700713 bool anon, int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800714{
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800715 preempt_disable();
716
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700717 /*
718 * Here, RSS means 'mapped anon' and anon's SwapCache. Shmem/tmpfs is
719 * counted as CACHE even if it's on ANON LRU.
720 */
721 if (anon)
722 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700723 nr_pages);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800724 else
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -0700725 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_CACHE],
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700726 nr_pages);
Balaji Rao55e462b2008-05-01 04:35:12 -0700727
David Rientjesb070e652013-05-07 16:18:09 -0700728 if (PageTransHuge(page))
729 __this_cpu_add(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
730 nr_pages);
731
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800732 /* pagein of a big page is an event. So, ignore page size */
733 if (nr_pages > 0)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700734 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGIN]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800735 else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700736 __this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGPGOUT]);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800737 nr_pages = -nr_pages; /* for event */
738 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800739
Johannes Weiner13114712012-05-29 15:07:07 -0700740 __this_cpu_add(memcg->stat->nr_page_events, nr_pages);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800741
KAMEZAWA Hiroyukic62b1a32010-03-10 15:22:29 -0800742 preempt_enable();
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800743}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800744
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700745unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700746mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
Konstantin Khlebnikov074291f2012-05-29 15:07:00 -0700747{
748 struct mem_cgroup_per_zone *mz;
749
750 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
751 return mz->lru_size[lru];
752}
753
754static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700755mem_cgroup_zone_nr_lru_pages(struct mem_cgroup *memcg, int nid, int zid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700756 unsigned int lru_mask)
Ying Han889976d2011-05-26 16:25:33 -0700757{
758 struct mem_cgroup_per_zone *mz;
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700759 enum lru_list lru;
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700760 unsigned long ret = 0;
761
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700762 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700763
Hugh Dickinsf156ab92012-03-21 16:34:19 -0700764 for_each_lru(lru) {
765 if (BIT(lru) & lru_mask)
766 ret += mz->lru_size[lru];
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700767 }
768 return ret;
769}
770
771static unsigned long
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700772mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700773 int nid, unsigned int lru_mask)
774{
Ying Han889976d2011-05-26 16:25:33 -0700775 u64 total = 0;
776 int zid;
777
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700778 for (zid = 0; zid < MAX_NR_ZONES; zid++)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700779 total += mem_cgroup_zone_nr_lru_pages(memcg,
780 nid, zid, lru_mask);
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700781
Ying Han889976d2011-05-26 16:25:33 -0700782 return total;
783}
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700784
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700785static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700786 unsigned int lru_mask)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800787{
Ying Han889976d2011-05-26 16:25:33 -0700788 int nid;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800789 u64 total = 0;
790
Lai Jiangshan31aaea42012-12-12 13:51:27 -0800791 for_each_node_state(nid, N_MEMORY)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700792 total += mem_cgroup_node_nr_lru_pages(memcg, nid, lru_mask);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800793 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800794}
795
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800796static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
797 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800798{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700799 unsigned long val, next;
800
Johannes Weiner13114712012-05-29 15:07:07 -0700801 val = __this_cpu_read(memcg->stat->nr_page_events);
Steven Rostedt47994012011-11-02 13:38:33 -0700802 next = __this_cpu_read(memcg->stat->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700803 /* from time_after() in jiffies.h */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800804 if ((long)next - (long)val < 0) {
805 switch (target) {
806 case MEM_CGROUP_TARGET_THRESH:
807 next = val + THRESHOLDS_EVENTS_TARGET;
808 break;
Michal Hocko7d910c02013-09-12 15:13:28 -0700809 case MEM_CGROUP_TARGET_SOFTLIMIT:
810 next = val + SOFTLIMIT_EVENTS_TARGET;
811 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800812 case MEM_CGROUP_TARGET_NUMAINFO:
813 next = val + NUMAINFO_EVENTS_TARGET;
814 break;
815 default:
816 break;
817 }
818 __this_cpu_write(memcg->stat->targets[target], next);
819 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700820 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800821 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800822}
823
824/*
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700825 * Called from rate-limited memcg_check_events when enough
Michal Hocko7d910c02013-09-12 15:13:28 -0700826 * MEM_CGROUP_TARGET_SOFTLIMIT events are accumulated and it makes sure
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700827 * that all the parents up the hierarchy will be notified that this group
Michal Hocko7d910c02013-09-12 15:13:28 -0700828 * is in excess or that it is not in excess anymore. mmecg->soft_contributed
829 * makes the transition a single action whenever the state flips from one to
Andrew Mortonf894ffa2013-09-12 15:13:35 -0700830 * the other.
Michal Hocko7d910c02013-09-12 15:13:28 -0700831 */
832static void mem_cgroup_update_soft_limit(struct mem_cgroup *memcg)
833{
834 unsigned long long excess = res_counter_soft_limit_excess(&memcg->res);
835 struct mem_cgroup *parent = memcg;
836 int delta = 0;
837
838 spin_lock(&memcg->soft_lock);
839 if (excess) {
840 if (!memcg->soft_contributed) {
841 delta = 1;
842 memcg->soft_contributed = true;
843 }
844 } else {
845 if (memcg->soft_contributed) {
846 delta = -1;
847 memcg->soft_contributed = false;
848 }
849 }
850
851 /*
852 * Necessary to update all ancestors when hierarchy is used
853 * because their event counter is not touched.
Michal Hocko1be171d2013-09-12 15:13:32 -0700854 * We track children even outside the hierarchy for the root
855 * cgroup because tree walk starting at root should visit
856 * all cgroups and we want to prevent from pointless tree
857 * walk if no children is below the limit.
Michal Hocko7d910c02013-09-12 15:13:28 -0700858 */
859 while (delta && (parent = parent_mem_cgroup(parent)))
860 atomic_add(delta, &parent->children_in_excess);
Michal Hocko1be171d2013-09-12 15:13:32 -0700861 if (memcg != root_mem_cgroup && !root_mem_cgroup->use_hierarchy)
862 atomic_add(delta, &root_mem_cgroup->children_in_excess);
Michal Hocko7d910c02013-09-12 15:13:28 -0700863 spin_unlock(&memcg->soft_lock);
864}
865
866/*
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800867 * Check events in order.
868 *
869 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700870static void memcg_check_events(struct mem_cgroup *memcg, struct page *page)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800871{
Steven Rostedt47994012011-11-02 13:38:33 -0700872 preempt_disable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800873 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800874 if (unlikely(mem_cgroup_event_ratelimit(memcg,
875 MEM_CGROUP_TARGET_THRESH))) {
Michal Hocko7d910c02013-09-12 15:13:28 -0700876 bool do_softlimit;
Andrew Morton82b3f2a2012-02-03 15:37:14 -0800877 bool do_numainfo __maybe_unused;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800878
Michal Hocko7d910c02013-09-12 15:13:28 -0700879 do_softlimit = mem_cgroup_event_ratelimit(memcg,
880 MEM_CGROUP_TARGET_SOFTLIMIT);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700881#if MAX_NUMNODES > 1
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800882 do_numainfo = mem_cgroup_event_ratelimit(memcg,
883 MEM_CGROUP_TARGET_NUMAINFO);
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -0700884#endif
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800885 preempt_enable();
886
887 mem_cgroup_threshold(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -0700888 if (unlikely(do_softlimit))
889 mem_cgroup_update_soft_limit(memcg);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800890#if MAX_NUMNODES > 1
891 if (unlikely(do_numainfo))
892 atomic_inc(&memcg->numainfo_events);
893#endif
894 } else
895 preempt_enable();
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800896}
897
Balbir Singhcf475ad2008-04-29 01:00:16 -0700898struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800899{
Balbir Singh31a78f22008-09-28 23:09:31 +0100900 /*
901 * mm_update_next_owner() may clear mm->owner to NULL
902 * if it races with swapoff, page migration, etc.
903 * So this can be called with p == NULL.
904 */
905 if (unlikely(!p))
906 return NULL;
907
Tejun Heo8af01f52013-08-08 20:11:22 -0400908 return mem_cgroup_from_css(task_css(p, mem_cgroup_subsys_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800909}
910
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700911struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800912{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700913 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700914
915 if (!mm)
916 return NULL;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800917 /*
918 * Because we have no locks, mm->owner's may be being moved to other
919 * cgroup. We use css_tryget() here even if this looks
920 * pessimistic (rather than adding locks here).
921 */
922 rcu_read_lock();
923 do {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700924 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
925 if (unlikely(!memcg))
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800926 break;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700927 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800928 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700929 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800930}
931
Michal Hockode577802013-09-12 15:13:26 -0700932static enum mem_cgroup_filter_t
933mem_cgroup_filter(struct mem_cgroup *memcg, struct mem_cgroup *root,
934 mem_cgroup_iter_filter cond)
935{
936 if (!cond)
937 return VISIT;
938 return cond(memcg, root);
939}
940
Michal Hocko16248d82013-04-29 15:07:19 -0700941/*
942 * Returns a next (in a pre-order walk) alive memcg (with elevated css
943 * ref. count) or NULL if the whole root's subtree has been visited.
944 *
945 * helper function to be used by mem_cgroup_iter
946 */
947static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
Michal Hockode577802013-09-12 15:13:26 -0700948 struct mem_cgroup *last_visited, mem_cgroup_iter_filter cond)
Michal Hocko16248d82013-04-29 15:07:19 -0700949{
Tejun Heo492eb212013-08-08 20:11:25 -0400950 struct cgroup_subsys_state *prev_css, *next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700951
Tejun Heobd8815a2013-08-08 20:11:27 -0400952 prev_css = last_visited ? &last_visited->css : NULL;
Michal Hocko16248d82013-04-29 15:07:19 -0700953skip_node:
Tejun Heo492eb212013-08-08 20:11:25 -0400954 next_css = css_next_descendant_pre(prev_css, &root->css);
Michal Hocko16248d82013-04-29 15:07:19 -0700955
956 /*
957 * Even if we found a group we have to make sure it is
958 * alive. css && !memcg means that the groups should be
959 * skipped and we should continue the tree walk.
960 * last_visited css is safe to use because it is
961 * protected by css_get and the tree walk is rcu safe.
962 */
Tejun Heo492eb212013-08-08 20:11:25 -0400963 if (next_css) {
964 struct mem_cgroup *mem = mem_cgroup_from_css(next_css);
965
Michal Hockode577802013-09-12 15:13:26 -0700966 switch (mem_cgroup_filter(mem, root, cond)) {
967 case SKIP:
Tejun Heo492eb212013-08-08 20:11:25 -0400968 prev_css = next_css;
Michal Hocko16248d82013-04-29 15:07:19 -0700969 goto skip_node;
Michal Hockode577802013-09-12 15:13:26 -0700970 case SKIP_TREE:
971 if (mem == root)
972 return NULL;
973 /*
974 * css_rightmost_descendant is not an optimal way to
975 * skip through a subtree (especially for imbalanced
976 * trees leaning to right) but that's what we have right
977 * now. More effective solution would be traversing
978 * right-up for first non-NULL without calling
979 * css_next_descendant_pre afterwards.
980 */
981 prev_css = css_rightmost_descendant(next_css);
982 goto skip_node;
983 case VISIT:
984 if (css_tryget(&mem->css))
985 return mem;
986 else {
987 prev_css = next_css;
988 goto skip_node;
989 }
990 break;
Michal Hocko16248d82013-04-29 15:07:19 -0700991 }
992 }
993
994 return NULL;
995}
996
Johannes Weiner519ebea2013-07-03 15:04:51 -0700997static void mem_cgroup_iter_invalidate(struct mem_cgroup *root)
998{
999 /*
1000 * When a group in the hierarchy below root is destroyed, the
1001 * hierarchy iterator can no longer be trusted since it might
1002 * have pointed to the destroyed group. Invalidate it.
1003 */
1004 atomic_inc(&root->dead_count);
1005}
1006
1007static struct mem_cgroup *
1008mem_cgroup_iter_load(struct mem_cgroup_reclaim_iter *iter,
1009 struct mem_cgroup *root,
1010 int *sequence)
1011{
1012 struct mem_cgroup *position = NULL;
1013 /*
1014 * A cgroup destruction happens in two stages: offlining and
1015 * release. They are separated by a RCU grace period.
1016 *
1017 * If the iterator is valid, we may still race with an
1018 * offlining. The RCU lock ensures the object won't be
1019 * released, tryget will fail if we lost the race.
1020 */
1021 *sequence = atomic_read(&root->dead_count);
1022 if (iter->last_dead_count == *sequence) {
1023 smp_rmb();
1024 position = iter->last_visited;
1025 if (position && !css_tryget(&position->css))
1026 position = NULL;
1027 }
1028 return position;
1029}
1030
1031static void mem_cgroup_iter_update(struct mem_cgroup_reclaim_iter *iter,
1032 struct mem_cgroup *last_visited,
1033 struct mem_cgroup *new_position,
1034 int sequence)
1035{
1036 if (last_visited)
1037 css_put(&last_visited->css);
1038 /*
1039 * We store the sequence count from the time @last_visited was
1040 * loaded successfully instead of rereading it here so that we
1041 * don't lose destruction events in between. We could have
1042 * raced with the destruction of @new_position after all.
1043 */
1044 iter->last_visited = new_position;
1045 smp_wmb();
1046 iter->last_dead_count = sequence;
1047}
1048
Johannes Weiner56600482012-01-12 17:17:59 -08001049/**
1050 * mem_cgroup_iter - iterate over memory cgroup hierarchy
1051 * @root: hierarchy root
1052 * @prev: previously returned memcg, NULL on first invocation
1053 * @reclaim: cookie for shared reclaim walks, NULL for full walks
Michal Hockode577802013-09-12 15:13:26 -07001054 * @cond: filter for visited nodes, NULL for no filter
Johannes Weiner56600482012-01-12 17:17:59 -08001055 *
1056 * Returns references to children of the hierarchy below @root, or
1057 * @root itself, or %NULL after a full round-trip.
1058 *
1059 * Caller must pass the return value in @prev on subsequent
1060 * invocations for reference counting, or use mem_cgroup_iter_break()
1061 * to cancel a hierarchy walk before the round-trip is complete.
1062 *
1063 * Reclaimers can specify a zone and a priority level in @reclaim to
1064 * divide up the memcgs in the hierarchy among all concurrent
1065 * reclaimers operating on the same zone and priority.
1066 */
Michal Hockode577802013-09-12 15:13:26 -07001067struct mem_cgroup *mem_cgroup_iter_cond(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -08001068 struct mem_cgroup *prev,
Michal Hockode577802013-09-12 15:13:26 -07001069 struct mem_cgroup_reclaim_cookie *reclaim,
1070 mem_cgroup_iter_filter cond)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07001071{
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001072 struct mem_cgroup *memcg = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001073 struct mem_cgroup *last_visited = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001074
Michal Hockode577802013-09-12 15:13:26 -07001075 if (mem_cgroup_disabled()) {
1076 /* first call must return non-NULL, second return NULL */
1077 return (struct mem_cgroup *)(unsigned long)!prev;
1078 }
Johannes Weiner56600482012-01-12 17:17:59 -08001079
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07001080 if (!root)
1081 root = root_mem_cgroup;
1082
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001083 if (prev && !reclaim)
Michal Hocko542f85f2013-04-29 15:07:15 -07001084 last_visited = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001085
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001086 if (!root->use_hierarchy && root != root_mem_cgroup) {
1087 if (prev)
Michal Hockoc40046f2013-04-29 15:07:14 -07001088 goto out_css_put;
Michal Hockode577802013-09-12 15:13:26 -07001089 if (mem_cgroup_filter(root, root, cond) == VISIT)
1090 return root;
1091 return NULL;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001092 }
1093
Michal Hocko542f85f2013-04-29 15:07:15 -07001094 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001095 while (!memcg) {
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001096 struct mem_cgroup_reclaim_iter *uninitialized_var(iter);
Johannes Weiner519ebea2013-07-03 15:04:51 -07001097 int uninitialized_var(seq);
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001098
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001099 if (reclaim) {
1100 int nid = zone_to_nid(reclaim->zone);
1101 int zid = zone_idx(reclaim->zone);
1102 struct mem_cgroup_per_zone *mz;
1103
1104 mz = mem_cgroup_zoneinfo(root, nid, zid);
1105 iter = &mz->reclaim_iter[reclaim->priority];
Michal Hocko542f85f2013-04-29 15:07:15 -07001106 if (prev && reclaim->generation != iter->generation) {
Michal Hocko5f578162013-04-29 15:07:17 -07001107 iter->last_visited = NULL;
Michal Hocko542f85f2013-04-29 15:07:15 -07001108 goto out_unlock;
1109 }
Michal Hocko5f578162013-04-29 15:07:17 -07001110
Johannes Weiner519ebea2013-07-03 15:04:51 -07001111 last_visited = mem_cgroup_iter_load(iter, root, &seq);
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001112 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001113
Michal Hockode577802013-09-12 15:13:26 -07001114 memcg = __mem_cgroup_iter_next(root, last_visited, cond);
Michal Hocko542f85f2013-04-29 15:07:15 -07001115
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001116 if (reclaim) {
Johannes Weiner519ebea2013-07-03 15:04:51 -07001117 mem_cgroup_iter_update(iter, last_visited, memcg, seq);
Michal Hocko542f85f2013-04-29 15:07:15 -07001118
Michal Hocko19f39402013-04-29 15:07:18 -07001119 if (!memcg)
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001120 iter->generation++;
1121 else if (!prev && memcg)
1122 reclaim->generation = iter->generation;
1123 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001124
Michal Hockode577802013-09-12 15:13:26 -07001125 /*
1126 * We have finished the whole tree walk or no group has been
1127 * visited because filter told us to skip the root node.
1128 */
1129 if (!memcg && (prev || (cond && !last_visited)))
Michal Hocko542f85f2013-04-29 15:07:15 -07001130 goto out_unlock;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001131 }
Michal Hocko542f85f2013-04-29 15:07:15 -07001132out_unlock:
1133 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001134out_css_put:
1135 if (prev && prev != root)
1136 css_put(&prev->css);
1137
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001138 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001139}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001140
Johannes Weiner56600482012-01-12 17:17:59 -08001141/**
1142 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1143 * @root: hierarchy root
1144 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1145 */
1146void mem_cgroup_iter_break(struct mem_cgroup *root,
1147 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001148{
1149 if (!root)
1150 root = root_mem_cgroup;
1151 if (prev && prev != root)
1152 css_put(&prev->css);
1153}
1154
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001155/*
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001156 * Iteration constructs for visiting all cgroups (under a tree). If
1157 * loops are exited prematurely (break), mem_cgroup_iter_break() must
1158 * be used for reference counting.
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001159 */
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001160#define for_each_mem_cgroup_tree(iter, root) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001161 for (iter = mem_cgroup_iter(root, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001162 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001163 iter = mem_cgroup_iter(root, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001164
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001165#define for_each_mem_cgroup(iter) \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001166 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001167 iter != NULL; \
Johannes Weiner527a5ec2012-01-12 17:17:55 -08001168 iter = mem_cgroup_iter(NULL, iter, NULL))
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001169
David Rientjes68ae5642012-12-12 13:51:57 -08001170void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -07001171{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001172 struct mem_cgroup *memcg;
Ying Han456f9982011-05-26 16:25:38 -07001173
Ying Han456f9982011-05-26 16:25:38 -07001174 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001175 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
1176 if (unlikely(!memcg))
Ying Han456f9982011-05-26 16:25:38 -07001177 goto out;
1178
1179 switch (idx) {
Ying Han456f9982011-05-26 16:25:38 -07001180 case PGFAULT:
Johannes Weiner0e574a92012-01-12 17:18:35 -08001181 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
1182 break;
1183 case PGMAJFAULT:
1184 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
Ying Han456f9982011-05-26 16:25:38 -07001185 break;
1186 default:
1187 BUG();
1188 }
1189out:
1190 rcu_read_unlock();
1191}
David Rientjes68ae5642012-12-12 13:51:57 -08001192EXPORT_SYMBOL(__mem_cgroup_count_vm_event);
Ying Han456f9982011-05-26 16:25:38 -07001193
Johannes Weiner925b7672012-01-12 17:18:15 -08001194/**
1195 * mem_cgroup_zone_lruvec - get the lru list vector for a zone and memcg
1196 * @zone: zone of the wanted lruvec
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001197 * @memcg: memcg of the wanted lruvec
Johannes Weiner925b7672012-01-12 17:18:15 -08001198 *
1199 * Returns the lru list vector holding pages for the given @zone and
1200 * @mem. This can be the global zone lruvec, if the memory controller
1201 * is disabled.
1202 */
1203struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
1204 struct mem_cgroup *memcg)
1205{
1206 struct mem_cgroup_per_zone *mz;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001207 struct lruvec *lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001208
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001209 if (mem_cgroup_disabled()) {
1210 lruvec = &zone->lruvec;
1211 goto out;
1212 }
Johannes Weiner925b7672012-01-12 17:18:15 -08001213
1214 mz = mem_cgroup_zoneinfo(memcg, zone_to_nid(zone), zone_idx(zone));
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001215 lruvec = &mz->lruvec;
1216out:
1217 /*
1218 * Since a node can be onlined after the mem_cgroup was created,
1219 * we have to be prepared to initialize lruvec->zone here;
1220 * and if offlined then reonlined, we need to reinitialize it.
1221 */
1222 if (unlikely(lruvec->zone != zone))
1223 lruvec->zone = zone;
1224 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001225}
1226
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001227/*
1228 * Following LRU functions are allowed to be used without PCG_LOCK.
1229 * Operations are called by routine of global LRU independently from memcg.
1230 * What we have to take care of here is validness of pc->mem_cgroup.
1231 *
1232 * Changes to pc->mem_cgroup happens when
1233 * 1. charge
1234 * 2. moving account
1235 * In typical case, "charge" is done before add-to-lru. Exception is SwapCache.
1236 * It is added to LRU before charge.
1237 * If PCG_USED bit is not set, page_cgroup is not added to this private LRU.
1238 * When moving account, the page is not on LRU. It's isolated.
1239 */
1240
Johannes Weiner925b7672012-01-12 17:18:15 -08001241/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001242 * mem_cgroup_page_lruvec - return lruvec for adding an lru page
Johannes Weiner925b7672012-01-12 17:18:15 -08001243 * @page: the page
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001244 * @zone: zone of the page
Minchan Kim3f58a822011-03-22 16:32:53 -07001245 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001246struct lruvec *mem_cgroup_page_lruvec(struct page *page, struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -07001247{
1248 struct mem_cgroup_per_zone *mz;
Johannes Weiner925b7672012-01-12 17:18:15 -08001249 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001250 struct page_cgroup *pc;
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001251 struct lruvec *lruvec;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001252
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001253 if (mem_cgroup_disabled()) {
1254 lruvec = &zone->lruvec;
1255 goto out;
1256 }
Christoph Lameterb69408e2008-10-18 20:26:14 -07001257
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001258 pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08001259 memcg = pc->mem_cgroup;
Hugh Dickins75121022012-03-05 14:59:18 -08001260
1261 /*
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001262 * Surreptitiously switch any uncharged offlist page to root:
Hugh Dickins75121022012-03-05 14:59:18 -08001263 * an uncharged page off lru does nothing to secure
1264 * its former mem_cgroup from sudden removal.
1265 *
1266 * Our caller holds lru_lock, and PageCgroupUsed is updated
1267 * under page_cgroup lock: between them, they make all uses
1268 * of pc->mem_cgroup safe.
1269 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001270 if (!PageLRU(page) && !PageCgroupUsed(pc) && memcg != root_mem_cgroup)
Hugh Dickins75121022012-03-05 14:59:18 -08001271 pc->mem_cgroup = memcg = root_mem_cgroup;
1272
Johannes Weiner925b7672012-01-12 17:18:15 -08001273 mz = page_cgroup_zoneinfo(memcg, page);
Hugh Dickinsbea8c152012-11-16 14:14:54 -08001274 lruvec = &mz->lruvec;
1275out:
1276 /*
1277 * Since a node can be onlined after the mem_cgroup was created,
1278 * we have to be prepared to initialize lruvec->zone here;
1279 * and if offlined then reonlined, we need to reinitialize it.
1280 */
1281 if (unlikely(lruvec->zone != zone))
1282 lruvec->zone = zone;
1283 return lruvec;
Johannes Weiner925b7672012-01-12 17:18:15 -08001284}
1285
1286/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001287 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1288 * @lruvec: mem_cgroup per zone lru vector
1289 * @lru: index of lru list the page is sitting on
1290 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001291 *
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001292 * This function must be called when a page is added to or removed from an
1293 * lru list.
Johannes Weiner925b7672012-01-12 17:18:15 -08001294 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001295void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1296 int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001297{
1298 struct mem_cgroup_per_zone *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001299 unsigned long *lru_size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001300
1301 if (mem_cgroup_disabled())
1302 return;
1303
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001304 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
1305 lru_size = mz->lru_size + lru;
1306 *lru_size += nr_pages;
1307 VM_BUG_ON((long)(*lru_size) < 0);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001308}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001309
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001310/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001311 * Checks whether given mem is same or in the root_mem_cgroup's
Michal Hocko3e920412011-07-26 16:08:29 -07001312 * hierarchy subtree
1313 */
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001314bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1315 struct mem_cgroup *memcg)
Michal Hocko3e920412011-07-26 16:08:29 -07001316{
Johannes Weiner91c637342012-05-29 15:06:24 -07001317 if (root_memcg == memcg)
1318 return true;
Hugh Dickins3a981f42012-06-20 12:52:58 -07001319 if (!root_memcg->use_hierarchy || !memcg)
Johannes Weiner91c637342012-05-29 15:06:24 -07001320 return false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001321 return css_is_ancestor(&memcg->css, &root_memcg->css);
1322}
1323
1324static bool mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
1325 struct mem_cgroup *memcg)
1326{
1327 bool ret;
1328
Johannes Weiner91c637342012-05-29 15:06:24 -07001329 rcu_read_lock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001330 ret = __mem_cgroup_same_or_subtree(root_memcg, memcg);
Johannes Weiner91c637342012-05-29 15:06:24 -07001331 rcu_read_unlock();
1332 return ret;
Michal Hocko3e920412011-07-26 16:08:29 -07001333}
1334
David Rientjesffbdccf2013-07-03 15:01:23 -07001335bool task_in_mem_cgroup(struct task_struct *task,
1336 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -08001337{
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001338 struct mem_cgroup *curr = NULL;
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001339 struct task_struct *p;
David Rientjesffbdccf2013-07-03 15:01:23 -07001340 bool ret;
David Rientjes4c4a2212008-02-07 00:14:06 -08001341
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -07001342 p = find_lock_task_mm(task);
David Rientjesde077d22012-01-12 17:18:52 -08001343 if (p) {
1344 curr = try_get_mem_cgroup_from_mm(p->mm);
1345 task_unlock(p);
1346 } else {
1347 /*
1348 * All threads may have already detached their mm's, but the oom
1349 * killer still needs to detect if they have already been oom
1350 * killed to prevent needlessly killing additional tasks.
1351 */
David Rientjesffbdccf2013-07-03 15:01:23 -07001352 rcu_read_lock();
David Rientjesde077d22012-01-12 17:18:52 -08001353 curr = mem_cgroup_from_task(task);
1354 if (curr)
1355 css_get(&curr->css);
David Rientjesffbdccf2013-07-03 15:01:23 -07001356 rcu_read_unlock();
David Rientjesde077d22012-01-12 17:18:52 -08001357 }
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001358 if (!curr)
David Rientjesffbdccf2013-07-03 15:01:23 -07001359 return false;
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001360 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001361 * We should check use_hierarchy of "memcg" not "curr". Because checking
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001362 * use_hierarchy of "curr" here make this function true if hierarchy is
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001363 * enabled in "curr" and "curr" is a child of "memcg" in *cgroup*
1364 * hierarchy(even if use_hierarchy is disabled in "memcg").
Daisuke Nishimurad31f56d2009-12-15 16:47:12 -08001365 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001366 ret = mem_cgroup_same_or_subtree(memcg, curr);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001367 css_put(&curr->css);
David Rientjes4c4a2212008-02-07 00:14:06 -08001368 return ret;
1369}
1370
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07001371int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001372{
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001373 unsigned long inactive_ratio;
Johannes Weiner9b272972011-11-02 13:38:23 -07001374 unsigned long inactive;
1375 unsigned long active;
1376 unsigned long gb;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001377
Hugh Dickins4d7dcca2012-05-29 15:07:08 -07001378 inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
1379 active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001380
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001381 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1382 if (gb)
1383 inactive_ratio = int_sqrt(10 * gb);
1384 else
1385 inactive_ratio = 1;
1386
Johannes Weiner9b272972011-11-02 13:38:23 -07001387 return inactive * inactive_ratio < active;
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001388}
1389
Balbir Singh6d61ef42009-01-07 18:08:06 -08001390#define mem_cgroup_from_res_counter(counter, member) \
1391 container_of(counter, struct mem_cgroup, member)
1392
Johannes Weiner19942822011-02-01 15:52:43 -08001393/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001394 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001395 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001396 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001397 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001398 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001399 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001400static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001401{
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001402 unsigned long long margin;
1403
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001404 margin = res_counter_margin(&memcg->res);
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001405 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001406 margin = min(margin, res_counter_margin(&memcg->memsw));
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001407 return margin >> PAGE_SHIFT;
Johannes Weiner19942822011-02-01 15:52:43 -08001408}
1409
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07001410int mem_cgroup_swappiness(struct mem_cgroup *memcg)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001411{
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001412 /* root ? */
Tejun Heo63876982013-08-08 20:11:23 -04001413 if (!css_parent(&memcg->css))
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001414 return vm_swappiness;
1415
Johannes Weinerbf1ff262011-03-23 16:42:32 -07001416 return memcg->swappiness;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001417}
1418
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001419/*
1420 * memcg->moving_account is used for checking possibility that some thread is
1421 * calling move_account(). When a thread on CPU-A starts moving pages under
1422 * a memcg, other threads should check memcg->moving_account under
1423 * rcu_read_lock(), like this:
1424 *
1425 * CPU-A CPU-B
1426 * rcu_read_lock()
1427 * memcg->moving_account+1 if (memcg->mocing_account)
1428 * take heavy locks.
1429 * synchronize_rcu() update something.
1430 * rcu_read_unlock()
1431 * start move here.
1432 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001433
1434/* for quick checking without looking up memcg */
1435atomic_t memcg_moving __read_mostly;
1436
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001437static void mem_cgroup_start_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001438{
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001439 atomic_inc(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001440 atomic_inc(&memcg->moving_account);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001441 synchronize_rcu();
1442}
1443
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001444static void mem_cgroup_end_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001445{
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001446 /*
1447 * Now, mem_cgroup_clear_mc() may call this function with NULL.
1448 * We check NULL in callee rather than caller.
1449 */
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001450 if (memcg) {
1451 atomic_dec(&memcg_moving);
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001452 atomic_dec(&memcg->moving_account);
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -07001453 }
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001454}
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001455
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001456/*
1457 * 2 routines for checking "mem" is under move_account() or not.
1458 *
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001459 * mem_cgroup_stolen() - checking whether a cgroup is mc.from or not. This
1460 * is used for avoiding races in accounting. If true,
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001461 * pc->mem_cgroup may be overwritten.
1462 *
1463 * mem_cgroup_under_move() - checking a cgroup is mc.from or mc.to or
1464 * under hierarchy of moving cgroups. This is for
1465 * waiting at hith-memory prressure caused by "move".
1466 */
1467
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001468static bool mem_cgroup_stolen(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001469{
1470 VM_BUG_ON(!rcu_read_lock_held());
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001471 return atomic_read(&memcg->moving_account) > 0;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001472}
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001473
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001474static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001475{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001476 struct mem_cgroup *from;
1477 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001478 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001479 /*
1480 * Unlike task_move routines, we access mc.to, mc.from not under
1481 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1482 */
1483 spin_lock(&mc.lock);
1484 from = mc.from;
1485 to = mc.to;
1486 if (!from)
1487 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001488
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001489 ret = mem_cgroup_same_or_subtree(memcg, from)
1490 || mem_cgroup_same_or_subtree(memcg, to);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001491unlock:
1492 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001493 return ret;
1494}
1495
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001496static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001497{
1498 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001499 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001500 DEFINE_WAIT(wait);
1501 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1502 /* moving charge context might have finished. */
1503 if (mc.moving_task)
1504 schedule();
1505 finish_wait(&mc.waitq, &wait);
1506 return true;
1507 }
1508 }
1509 return false;
1510}
1511
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001512/*
1513 * Take this lock when
1514 * - a code tries to modify page's memcg while it's USED.
1515 * - a code tries to modify page state accounting in a memcg.
Andrew Morton13fd1dd92012-03-21 16:34:26 -07001516 * see mem_cgroup_stolen(), too.
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07001517 */
1518static void move_lock_mem_cgroup(struct mem_cgroup *memcg,
1519 unsigned long *flags)
1520{
1521 spin_lock_irqsave(&memcg->move_lock, *flags);
1522}
1523
1524static void move_unlock_mem_cgroup(struct mem_cgroup *memcg,
1525 unsigned long *flags)
1526{
1527 spin_unlock_irqrestore(&memcg->move_lock, *flags);
1528}
1529
Sha Zhengju58cf1882013-02-22 16:32:05 -08001530#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001531/**
Sha Zhengju58cf1882013-02-22 16:32:05 -08001532 * mem_cgroup_print_oom_info: Print OOM information relevant to memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001533 * @memcg: The memory cgroup that went over limit
1534 * @p: Task that is going to be killed
1535 *
1536 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1537 * enabled
1538 */
1539void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
1540{
1541 struct cgroup *task_cgrp;
1542 struct cgroup *mem_cgrp;
1543 /*
1544 * Need a buffer in BSS, can't rely on allocations. The code relies
1545 * on the assumption that OOM is serialized for memory controller.
1546 * If this assumption is broken, revisit this code.
1547 */
1548 static char memcg_name[PATH_MAX];
1549 int ret;
Sha Zhengju58cf1882013-02-22 16:32:05 -08001550 struct mem_cgroup *iter;
1551 unsigned int i;
Balbir Singhe2224322009-04-02 16:57:39 -07001552
Sha Zhengju58cf1882013-02-22 16:32:05 -08001553 if (!p)
Balbir Singhe2224322009-04-02 16:57:39 -07001554 return;
1555
Balbir Singhe2224322009-04-02 16:57:39 -07001556 rcu_read_lock();
1557
1558 mem_cgrp = memcg->css.cgroup;
1559 task_cgrp = task_cgroup(p, mem_cgroup_subsys_id);
1560
1561 ret = cgroup_path(task_cgrp, memcg_name, PATH_MAX);
1562 if (ret < 0) {
1563 /*
1564 * Unfortunately, we are unable to convert to a useful name
1565 * But we'll still print out the usage information
1566 */
1567 rcu_read_unlock();
1568 goto done;
1569 }
1570 rcu_read_unlock();
1571
Andrew Mortond0451972013-02-22 16:32:06 -08001572 pr_info("Task in %s killed", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001573
1574 rcu_read_lock();
1575 ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
1576 if (ret < 0) {
1577 rcu_read_unlock();
1578 goto done;
1579 }
1580 rcu_read_unlock();
1581
1582 /*
1583 * Continues from above, so we don't need an KERN_ level
1584 */
Andrew Mortond0451972013-02-22 16:32:06 -08001585 pr_cont(" as a result of limit of %s\n", memcg_name);
Balbir Singhe2224322009-04-02 16:57:39 -07001586done:
1587
Andrew Mortond0451972013-02-22 16:32:06 -08001588 pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001589 res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
1590 res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
1591 res_counter_read_u64(&memcg->res, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001592 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
Balbir Singhe2224322009-04-02 16:57:39 -07001593 res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
1594 res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
1595 res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
Andrew Mortond0451972013-02-22 16:32:06 -08001596 pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
Glauber Costa510fc4e2012-12-18 14:21:47 -08001597 res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
1598 res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
1599 res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
Sha Zhengju58cf1882013-02-22 16:32:05 -08001600
1601 for_each_mem_cgroup_tree(iter, memcg) {
1602 pr_info("Memory cgroup stats");
1603
1604 rcu_read_lock();
1605 ret = cgroup_path(iter->css.cgroup, memcg_name, PATH_MAX);
1606 if (!ret)
1607 pr_cont(" for %s", memcg_name);
1608 rcu_read_unlock();
1609 pr_cont(":");
1610
1611 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
1612 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
1613 continue;
1614 pr_cont(" %s:%ldKB", mem_cgroup_stat_names[i],
1615 K(mem_cgroup_read_stat(iter, i)));
1616 }
1617
1618 for (i = 0; i < NR_LRU_LISTS; i++)
1619 pr_cont(" %s:%luKB", mem_cgroup_lru_names[i],
1620 K(mem_cgroup_nr_lru_pages(iter, BIT(i))));
1621
1622 pr_cont("\n");
1623 }
Balbir Singhe2224322009-04-02 16:57:39 -07001624}
1625
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001626/*
1627 * This function returns the number of memcg under hierarchy tree. Returns
1628 * 1(self count) if no children.
1629 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001630static int mem_cgroup_count_children(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001631{
1632 int num = 0;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001633 struct mem_cgroup *iter;
1634
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001635 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001636 num++;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001637 return num;
1638}
1639
Balbir Singh6d61ef42009-01-07 18:08:06 -08001640/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001641 * Return the memory (and swap, if configured) limit for a memcg.
1642 */
David Rientjes9cbb78b2012-07-31 16:43:44 -07001643static u64 mem_cgroup_get_limit(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001644{
1645 u64 limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001646
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001647 limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
Johannes Weinerf3e8eb72011-01-13 15:47:39 -08001648
David Rientjesa63d83f2010-08-09 17:19:46 -07001649 /*
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001650 * Do not consider swap space if we cannot swap due to swappiness
David Rientjesa63d83f2010-08-09 17:19:46 -07001651 */
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001652 if (mem_cgroup_swappiness(memcg)) {
1653 u64 memsw;
1654
1655 limit += total_swap_pages << PAGE_SHIFT;
1656 memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
1657
1658 /*
1659 * If memsw is finite and limits the amount of swap space
1660 * available to this memcg, return that limit.
1661 */
1662 limit = min(limit, memsw);
1663 }
1664
1665 return limit;
David Rientjesa63d83f2010-08-09 17:19:46 -07001666}
1667
David Rientjes19965462012-12-11 16:00:26 -08001668static void mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1669 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001670{
1671 struct mem_cgroup *iter;
1672 unsigned long chosen_points = 0;
1673 unsigned long totalpages;
1674 unsigned int points = 0;
1675 struct task_struct *chosen = NULL;
1676
David Rientjes876aafb2012-07-31 16:43:48 -07001677 /*
David Rientjes465adcf2013-04-29 15:08:45 -07001678 * If current has a pending SIGKILL or is exiting, then automatically
1679 * select it. The goal is to allow it to allocate so that it may
1680 * quickly exit and free its memory.
David Rientjes876aafb2012-07-31 16:43:48 -07001681 */
David Rientjes465adcf2013-04-29 15:08:45 -07001682 if (fatal_signal_pending(current) || current->flags & PF_EXITING) {
David Rientjes876aafb2012-07-31 16:43:48 -07001683 set_thread_flag(TIF_MEMDIE);
1684 return;
1685 }
1686
1687 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, order, NULL);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001688 totalpages = mem_cgroup_get_limit(memcg) >> PAGE_SHIFT ? : 1;
1689 for_each_mem_cgroup_tree(iter, memcg) {
Tejun Heo72ec7022013-08-08 20:11:26 -04001690 struct css_task_iter it;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001691 struct task_struct *task;
1692
Tejun Heo72ec7022013-08-08 20:11:26 -04001693 css_task_iter_start(&iter->css, &it);
1694 while ((task = css_task_iter_next(&it))) {
David Rientjes9cbb78b2012-07-31 16:43:44 -07001695 switch (oom_scan_process_thread(task, totalpages, NULL,
1696 false)) {
1697 case OOM_SCAN_SELECT:
1698 if (chosen)
1699 put_task_struct(chosen);
1700 chosen = task;
1701 chosen_points = ULONG_MAX;
1702 get_task_struct(chosen);
1703 /* fall through */
1704 case OOM_SCAN_CONTINUE:
1705 continue;
1706 case OOM_SCAN_ABORT:
Tejun Heo72ec7022013-08-08 20:11:26 -04001707 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001708 mem_cgroup_iter_break(memcg, iter);
1709 if (chosen)
1710 put_task_struct(chosen);
1711 return;
1712 case OOM_SCAN_OK:
1713 break;
1714 };
1715 points = oom_badness(task, memcg, NULL, totalpages);
1716 if (points > chosen_points) {
1717 if (chosen)
1718 put_task_struct(chosen);
1719 chosen = task;
1720 chosen_points = points;
1721 get_task_struct(chosen);
1722 }
1723 }
Tejun Heo72ec7022013-08-08 20:11:26 -04001724 css_task_iter_end(&it);
David Rientjes9cbb78b2012-07-31 16:43:44 -07001725 }
1726
1727 if (!chosen)
1728 return;
1729 points = chosen_points * 1000 / totalpages;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001730 oom_kill_process(chosen, gfp_mask, order, points, totalpages, memcg,
1731 NULL, "Memory cgroup out of memory");
David Rientjes9cbb78b2012-07-31 16:43:44 -07001732}
1733
Johannes Weiner56600482012-01-12 17:17:59 -08001734static unsigned long mem_cgroup_reclaim(struct mem_cgroup *memcg,
1735 gfp_t gfp_mask,
1736 unsigned long flags)
1737{
1738 unsigned long total = 0;
1739 bool noswap = false;
1740 int loop;
1741
1742 if (flags & MEM_CGROUP_RECLAIM_NOSWAP)
1743 noswap = true;
1744 if (!(flags & MEM_CGROUP_RECLAIM_SHRINK) && memcg->memsw_is_minimum)
1745 noswap = true;
1746
1747 for (loop = 0; loop < MEM_CGROUP_MAX_RECLAIM_LOOPS; loop++) {
1748 if (loop)
1749 drain_all_stock_async(memcg);
1750 total += try_to_free_mem_cgroup_pages(memcg, gfp_mask, noswap);
1751 /*
1752 * Allow limit shrinkers, which are triggered directly
1753 * by userspace, to catch signals and stop reclaim
1754 * after minimal progress, regardless of the margin.
1755 */
1756 if (total && (flags & MEM_CGROUP_RECLAIM_SHRINK))
1757 break;
1758 if (mem_cgroup_margin(memcg))
1759 break;
1760 /*
1761 * If nothing was reclaimed after two attempts, there
1762 * may be no reclaimable pages in this hierarchy.
1763 */
1764 if (loop && !total)
1765 break;
1766 }
1767 return total;
1768}
1769
Michal Hockoe8831102013-09-12 15:13:23 -07001770#if MAX_NUMNODES > 1
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001771/**
1772 * test_mem_cgroup_node_reclaimable
Wanpeng Lidad75572012-06-20 12:53:01 -07001773 * @memcg: the target memcg
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001774 * @nid: the node ID to be checked.
1775 * @noswap : specify true here if the user wants flle only information.
1776 *
1777 * This function returns whether the specified memcg contains any
1778 * reclaimable pages on a node. Returns true if there are any reclaimable
1779 * pages in the node.
1780 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001781static bool test_mem_cgroup_node_reclaimable(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001782 int nid, bool noswap)
1783{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001784 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_FILE))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001785 return true;
1786 if (noswap || !total_swap_pages)
1787 return false;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001788 if (mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL_ANON))
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001789 return true;
1790 return false;
1791
1792}
Ying Han889976d2011-05-26 16:25:33 -07001793
1794/*
1795 * Always updating the nodemask is not very good - even if we have an empty
1796 * list or the wrong list here, we can start from some node and traverse all
1797 * nodes based on the zonelist. So update the list loosely once per 10 secs.
1798 *
1799 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001800static void mem_cgroup_may_update_nodemask(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001801{
1802 int nid;
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001803 /*
1804 * numainfo_events > 0 means there was at least NUMAINFO_EVENTS_TARGET
1805 * pagein/pageout changes since the last update.
1806 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001807 if (!atomic_read(&memcg->numainfo_events))
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001808 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001809 if (atomic_inc_return(&memcg->numainfo_updating) > 1)
Ying Han889976d2011-05-26 16:25:33 -07001810 return;
1811
Ying Han889976d2011-05-26 16:25:33 -07001812 /* make a nodemask where this memcg uses memory from */
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001813 memcg->scan_nodes = node_states[N_MEMORY];
Ying Han889976d2011-05-26 16:25:33 -07001814
Lai Jiangshan31aaea42012-12-12 13:51:27 -08001815 for_each_node_mask(nid, node_states[N_MEMORY]) {
Ying Han889976d2011-05-26 16:25:33 -07001816
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001817 if (!test_mem_cgroup_node_reclaimable(memcg, nid, false))
1818 node_clear(nid, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001819 }
KAMEZAWA Hiroyuki453a9bf2011-07-08 15:39:43 -07001820
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001821 atomic_set(&memcg->numainfo_events, 0);
1822 atomic_set(&memcg->numainfo_updating, 0);
Ying Han889976d2011-05-26 16:25:33 -07001823}
1824
1825/*
1826 * Selecting a node where we start reclaim from. Because what we need is just
1827 * reducing usage counter, start from anywhere is O,K. Considering
1828 * memory reclaim from current node, there are pros. and cons.
1829 *
1830 * Freeing memory from current node means freeing memory from a node which
1831 * we'll use or we've used. So, it may make LRU bad. And if several threads
1832 * hit limits, it will see a contention on a node. But freeing from remote
1833 * node means more costs for memory reclaim because of memory latency.
1834 *
1835 * Now, we use round-robin. Better algorithm is welcomed.
1836 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001837int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001838{
1839 int node;
1840
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001841 mem_cgroup_may_update_nodemask(memcg);
1842 node = memcg->last_scanned_node;
Ying Han889976d2011-05-26 16:25:33 -07001843
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001844 node = next_node(node, memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001845 if (node == MAX_NUMNODES)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001846 node = first_node(memcg->scan_nodes);
Ying Han889976d2011-05-26 16:25:33 -07001847 /*
1848 * We call this when we hit limit, not when pages are added to LRU.
1849 * No LRU may hold pages because all pages are UNEVICTABLE or
1850 * memcg is too small and all pages are not on LRU. In that case,
1851 * we use curret node.
1852 */
1853 if (unlikely(node == MAX_NUMNODES))
1854 node = numa_node_id();
1855
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001856 memcg->last_scanned_node = node;
Ying Han889976d2011-05-26 16:25:33 -07001857 return node;
1858}
1859
1860#else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001861int mem_cgroup_select_victim_node(struct mem_cgroup *memcg)
Ying Han889976d2011-05-26 16:25:33 -07001862{
1863 return 0;
1864}
KAMEZAWA Hiroyuki4d0c0662011-07-08 15:39:42 -07001865
Ying Han889976d2011-05-26 16:25:33 -07001866#endif
1867
Michal Hocko3b387222013-09-12 15:13:21 -07001868/*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001869 * A group is eligible for the soft limit reclaim under the given root
1870 * hierarchy if
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001871 * a) it is over its soft limit
1872 * b) any parent up the hierarchy is over its soft limit
Michal Hocko7d910c02013-09-12 15:13:28 -07001873 *
1874 * If the given group doesn't have any children over the limit then it
1875 * doesn't make any sense to iterate its subtree.
Michal Hocko3b387222013-09-12 15:13:21 -07001876 */
Michal Hockode577802013-09-12 15:13:26 -07001877enum mem_cgroup_filter_t
1878mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg,
Michal Hockoa5b7c872013-09-12 15:13:25 -07001879 struct mem_cgroup *root)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001880{
Michal Hockoe839b6a2013-09-12 15:13:30 -07001881 struct mem_cgroup *parent;
1882
1883 if (!memcg)
1884 memcg = root_mem_cgroup;
1885 parent = memcg;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001886
Michal Hocko3b387222013-09-12 15:13:21 -07001887 if (res_counter_soft_limit_excess(&memcg->res))
Michal Hockode577802013-09-12 15:13:26 -07001888 return VISIT;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001889
Michal Hocko3b387222013-09-12 15:13:21 -07001890 /*
Michal Hockoa5b7c872013-09-12 15:13:25 -07001891 * If any parent up to the root in the hierarchy is over its soft limit
1892 * then we have to obey and reclaim from this group as well.
Michal Hocko3b387222013-09-12 15:13:21 -07001893 */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07001894 while ((parent = parent_mem_cgroup(parent))) {
Michal Hocko3b387222013-09-12 15:13:21 -07001895 if (res_counter_soft_limit_excess(&parent->res))
Michal Hockode577802013-09-12 15:13:26 -07001896 return VISIT;
Michal Hockoa5b7c872013-09-12 15:13:25 -07001897 if (parent == root)
1898 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001899 }
Michal Hocko3b387222013-09-12 15:13:21 -07001900
Michal Hocko7d910c02013-09-12 15:13:28 -07001901 if (!atomic_read(&memcg->children_in_excess))
1902 return SKIP_TREE;
Michal Hockode577802013-09-12 15:13:26 -07001903 return SKIP;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001904}
1905
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001906static DEFINE_SPINLOCK(memcg_oom_lock);
1907
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001908/*
1909 * Check OOM-Killer is already running under our hierarchy.
1910 * If someone is running, return false.
1911 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001912static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001913{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001914 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001915
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001916 spin_lock(&memcg_oom_lock);
1917
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001918 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001919 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001920 /*
1921 * this subtree of our hierarchy is already locked
1922 * so we cannot give a lock.
1923 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001924 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001925 mem_cgroup_iter_break(memcg, iter);
1926 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001927 } else
1928 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001929 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001930
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001931 if (failed) {
1932 /*
1933 * OK, we failed to lock the whole subtree so we have
1934 * to clean up what we set up to the failing subtree
1935 */
1936 for_each_mem_cgroup_tree(iter, memcg) {
1937 if (iter == failed) {
1938 mem_cgroup_iter_break(memcg, iter);
1939 break;
1940 }
1941 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001942 }
Michal Hocko79dfdac2011-07-26 16:08:23 -07001943 }
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001944
1945 spin_unlock(&memcg_oom_lock);
1946
1947 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001948}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001949
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001950static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001951{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001952 struct mem_cgroup *iter;
1953
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001954 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001955 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001956 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001957 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001958}
1959
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001960static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001961{
1962 struct mem_cgroup *iter;
1963
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001964 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001965 atomic_inc(&iter->under_oom);
1966}
1967
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001968static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001969{
1970 struct mem_cgroup *iter;
1971
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001972 /*
1973 * When a new child is created while the hierarchy is under oom,
1974 * mem_cgroup_oom_lock() may not be called. We have to use
1975 * atomic_add_unless() here.
1976 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001977 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001978 atomic_add_unless(&iter->under_oom, -1, 0);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001979}
1980
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001981static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1982
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001983struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001984 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001985 wait_queue_t wait;
1986};
1987
1988static int memcg_oom_wake_function(wait_queue_t *wait,
1989 unsigned mode, int sync, void *arg)
1990{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001991 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1992 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001993 struct oom_wait_info *oom_wait_info;
1994
1995 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001996 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001997
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001998 /*
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001999 * Both of oom_wait_info->memcg and wake_memcg are stable under us.
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002000 * Then we can use css_is_ancestor without taking care of RCU.
2001 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002002 if (!mem_cgroup_same_or_subtree(oom_wait_memcg, wake_memcg)
2003 && !mem_cgroup_same_or_subtree(wake_memcg, oom_wait_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002004 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002005 return autoremove_wake_function(wait, mode, sync, arg);
2006}
2007
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002008static void memcg_wakeup_oom(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002009{
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002010 atomic_inc(&memcg->oom_wakeups);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002011 /* for filtering, pass "memcg" as argument. */
2012 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07002013}
2014
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002015static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002016{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002017 if (memcg && atomic_read(&memcg->under_oom))
2018 memcg_wakeup_oom(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002019}
2020
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002021/*
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002022 * try to call OOM killer
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002023 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002024static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002025{
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002026 bool locked;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002027 int wakeups;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002028
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002029 if (!current->memcg_oom.may_oom)
2030 return;
2031
2032 current->memcg_oom.in_memcg_oom = 1;
Michal Hocko79dfdac2011-07-26 16:08:23 -07002033
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002034 /*
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002035 * As with any blocking lock, a contender needs to start
2036 * listening for wakeups before attempting the trylock,
2037 * otherwise it can miss the wakeup from the unlock and sleep
2038 * indefinitely. This is just open-coded because our locking
2039 * is so particular to memcg hierarchies.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002040 */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002041 wakeups = atomic_read(&memcg->oom_wakeups);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002042 mem_cgroup_mark_under_oom(memcg);
2043
2044 locked = mem_cgroup_oom_trylock(memcg);
2045
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002046 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002047 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002048
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002049 if (locked && !memcg->oom_kill_disable) {
2050 mem_cgroup_unmark_under_oom(memcg);
David Rientjese845e192012-03-21 16:34:10 -07002051 mem_cgroup_out_of_memory(memcg, mask, order);
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002052 mem_cgroup_oom_unlock(memcg);
2053 /*
2054 * There is no guarantee that an OOM-lock contender
2055 * sees the wakeups triggered by the OOM kill
2056 * uncharges. Wake any sleepers explicitely.
2057 */
2058 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07002059 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002060 /*
2061 * A system call can just return -ENOMEM, but if this
2062 * is a page fault and somebody else is handling the
2063 * OOM already, we need to sleep on the OOM waitqueue
2064 * for this memcg until the situation is resolved.
2065 * Which can take some time because it might be
2066 * handled by a userspace task.
2067 *
2068 * However, this is the charge context, which means
2069 * that we may sit on a large call stack and hold
2070 * various filesystem locks, the mmap_sem etc. and we
2071 * don't want the OOM handler to deadlock on them
2072 * while we sit here and wait. Store the current OOM
2073 * context in the task_struct, then return -ENOMEM.
2074 * At the end of the page fault handler, with the
2075 * stack unwound, pagefault_out_of_memory() will check
2076 * back with us by calling
2077 * mem_cgroup_oom_synchronize(), possibly putting the
2078 * task to sleep.
2079 */
2080 current->memcg_oom.oom_locked = locked;
2081 current->memcg_oom.wakeups = wakeups;
2082 css_get(&memcg->css);
2083 current->memcg_oom.wait_on_memcg = memcg;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002084 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002085}
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002086
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002087/**
2088 * mem_cgroup_oom_synchronize - complete memcg OOM handling
2089 *
2090 * This has to be called at the end of a page fault if the the memcg
2091 * OOM handler was enabled and the fault is returning %VM_FAULT_OOM.
2092 *
2093 * Memcg supports userspace OOM handling, so failed allocations must
2094 * sleep on a waitqueue until the userspace task resolves the
2095 * situation. Sleeping directly in the charge context with all kinds
2096 * of locks held is not a good idea, instead we remember an OOM state
2097 * in the task and mem_cgroup_oom_synchronize() has to be called at
2098 * the end of the page fault to put the task to sleep and clean up the
2099 * OOM state.
2100 *
2101 * Returns %true if an ongoing memcg OOM situation was detected and
2102 * finalized, %false otherwise.
2103 */
2104bool mem_cgroup_oom_synchronize(void)
2105{
2106 struct oom_wait_info owait;
2107 struct mem_cgroup *memcg;
2108
2109 /* OOM is global, do not handle */
2110 if (!current->memcg_oom.in_memcg_oom)
2111 return false;
2112
2113 /*
2114 * We invoked the OOM killer but there is a chance that a kill
2115 * did not free up any charges. Everybody else might already
2116 * be sleeping, so restart the fault and keep the rampage
2117 * going until some charges are released.
2118 */
2119 memcg = current->memcg_oom.wait_on_memcg;
2120 if (!memcg)
2121 goto out;
2122
2123 if (test_thread_flag(TIF_MEMDIE) || fatal_signal_pending(current))
2124 goto out_memcg;
2125
2126 owait.memcg = memcg;
2127 owait.wait.flags = 0;
2128 owait.wait.func = memcg_oom_wake_function;
2129 owait.wait.private = current;
2130 INIT_LIST_HEAD(&owait.wait.task_list);
2131
2132 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
2133 /* Only sleep if we didn't miss any wakeups since OOM */
2134 if (atomic_read(&memcg->oom_wakeups) == current->memcg_oom.wakeups)
2135 schedule();
2136 finish_wait(&memcg_oom_waitq, &owait.wait);
2137out_memcg:
2138 mem_cgroup_unmark_under_oom(memcg);
2139 if (current->memcg_oom.oom_locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07002140 mem_cgroup_oom_unlock(memcg);
2141 /*
2142 * There is no guarantee that an OOM-lock contender
2143 * sees the wakeups triggered by the OOM kill
2144 * uncharges. Wake any sleepers explicitely.
2145 */
2146 memcg_oom_recover(memcg);
2147 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002148 css_put(&memcg->css);
2149 current->memcg_oom.wait_on_memcg = NULL;
2150out:
2151 current->memcg_oom.in_memcg_oom = 0;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002152 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07002153}
2154
Balbir Singhd69b0422009-06-17 16:26:34 -07002155/*
2156 * Currently used to update mapped file statistics, but the routine can be
2157 * generalized to update other statistics as well.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002158 *
2159 * Notes: Race condition
2160 *
2161 * We usually use page_cgroup_lock() for accessing page_cgroup member but
2162 * it tends to be costly. But considering some conditions, we doesn't need
2163 * to do so _always_.
2164 *
2165 * Considering "charge", lock_page_cgroup() is not required because all
2166 * file-stat operations happen after a page is attached to radix-tree. There
2167 * are no race with "charge".
2168 *
2169 * Considering "uncharge", we know that memcg doesn't clear pc->mem_cgroup
2170 * at "uncharge" intentionally. So, we always see valid pc->mem_cgroup even
2171 * if there are race with "uncharge". Statistics itself is properly handled
2172 * by flags.
2173 *
2174 * Considering "move", this is an only case we see a race. To make the race
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002175 * small, we check mm->moving_account and detect there are possibility of race
2176 * If there is, we take a lock.
Balbir Singhd69b0422009-06-17 16:26:34 -07002177 */
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002178
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002179void __mem_cgroup_begin_update_page_stat(struct page *page,
2180 bool *locked, unsigned long *flags)
2181{
2182 struct mem_cgroup *memcg;
2183 struct page_cgroup *pc;
2184
2185 pc = lookup_page_cgroup(page);
2186again:
2187 memcg = pc->mem_cgroup;
2188 if (unlikely(!memcg || !PageCgroupUsed(pc)))
2189 return;
2190 /*
2191 * If this memory cgroup is not under account moving, we don't
Wanpeng Lida92c472012-07-31 16:43:26 -07002192 * need to take move_lock_mem_cgroup(). Because we already hold
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002193 * rcu_read_lock(), any calls to move_account will be delayed until
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002194 * rcu_read_unlock() if mem_cgroup_stolen() == true.
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002195 */
Andrew Morton13fd1dd92012-03-21 16:34:26 -07002196 if (!mem_cgroup_stolen(memcg))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002197 return;
2198
2199 move_lock_mem_cgroup(memcg, flags);
2200 if (memcg != pc->mem_cgroup || !PageCgroupUsed(pc)) {
2201 move_unlock_mem_cgroup(memcg, flags);
2202 goto again;
2203 }
2204 *locked = true;
2205}
2206
2207void __mem_cgroup_end_update_page_stat(struct page *page, unsigned long *flags)
2208{
2209 struct page_cgroup *pc = lookup_page_cgroup(page);
2210
2211 /*
2212 * It's guaranteed that pc->mem_cgroup never changes while
2213 * lock is held because a routine modifies pc->mem_cgroup
Wanpeng Lida92c472012-07-31 16:43:26 -07002214 * should take move_lock_mem_cgroup().
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002215 */
2216 move_unlock_mem_cgroup(pc->mem_cgroup, flags);
2217}
2218
Greg Thelen2a7106f2011-01-13 15:47:37 -08002219void mem_cgroup_update_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -07002220 enum mem_cgroup_stat_index idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -07002221{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002222 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002223 struct page_cgroup *pc = lookup_page_cgroup(page);
KAMEZAWA Hiroyukidbd4ea72011-01-13 15:47:38 -08002224 unsigned long uninitialized_var(flags);
Balbir Singhd69b0422009-06-17 16:26:34 -07002225
Johannes Weinercfa44942012-01-12 17:18:38 -08002226 if (mem_cgroup_disabled())
Balbir Singhd69b0422009-06-17 16:26:34 -07002227 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002228
Sha Zhengju658b72c2013-09-12 15:13:52 -07002229 VM_BUG_ON(!rcu_read_lock_held());
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002230 memcg = pc->mem_cgroup;
2231 if (unlikely(!memcg || !PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002232 return;
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002233
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002234 this_cpu_add(memcg->stat->count[idx], val);
Balbir Singhd69b0422009-06-17 16:26:34 -07002235}
KAMEZAWA Hiroyuki26174ef2010-10-27 15:33:43 -07002236
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002237/*
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002238 * size of first charge trial. "32" comes from vmscan.c's magic value.
2239 * TODO: maybe necessary to use big numbers in big irons.
2240 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002241#define CHARGE_BATCH 32U
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002242struct memcg_stock_pcp {
2243 struct mem_cgroup *cached; /* this never be root cgroup */
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002244 unsigned int nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002245 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002246 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002247#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002248};
2249static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002250static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002251
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002252/**
2253 * consume_stock: Try to consume stocked charge on this cpu.
2254 * @memcg: memcg to consume from.
2255 * @nr_pages: how many pages to charge.
2256 *
2257 * The charges will only happen if @memcg matches the current cpu's memcg
2258 * stock, and at least @nr_pages are available in that stock. Failure to
2259 * service an allocation will refill the stock.
2260 *
2261 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002262 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002263static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002264{
2265 struct memcg_stock_pcp *stock;
2266 bool ret = true;
2267
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002268 if (nr_pages > CHARGE_BATCH)
2269 return false;
2270
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002271 stock = &get_cpu_var(memcg_stock);
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002272 if (memcg == stock->cached && stock->nr_pages >= nr_pages)
2273 stock->nr_pages -= nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002274 else /* need to call res_counter_charge */
2275 ret = false;
2276 put_cpu_var(memcg_stock);
2277 return ret;
2278}
2279
2280/*
2281 * Returns stocks cached in percpu to res_counter and reset cached information.
2282 */
2283static void drain_stock(struct memcg_stock_pcp *stock)
2284{
2285 struct mem_cgroup *old = stock->cached;
2286
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002287 if (stock->nr_pages) {
2288 unsigned long bytes = stock->nr_pages * PAGE_SIZE;
2289
2290 res_counter_uncharge(&old->res, bytes);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002291 if (do_swap_account)
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002292 res_counter_uncharge(&old->memsw, bytes);
2293 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002294 }
2295 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002296}
2297
2298/*
2299 * This must be called under preempt disabled or must be called by
2300 * a thread which is pinned to local cpu.
2301 */
2302static void drain_local_stock(struct work_struct *dummy)
2303{
2304 struct memcg_stock_pcp *stock = &__get_cpu_var(memcg_stock);
2305 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002306 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002307}
2308
Michal Hockoe4777492013-02-22 16:35:40 -08002309static void __init memcg_stock_init(void)
2310{
2311 int cpu;
2312
2313 for_each_possible_cpu(cpu) {
2314 struct memcg_stock_pcp *stock =
2315 &per_cpu(memcg_stock, cpu);
2316 INIT_WORK(&stock->work, drain_local_stock);
2317 }
2318}
2319
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002320/*
2321 * Cache charges(val) which is from res_counter, to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002322 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002323 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002324static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002325{
2326 struct memcg_stock_pcp *stock = &get_cpu_var(memcg_stock);
2327
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002328 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002329 drain_stock(stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002330 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002331 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002332 stock->nr_pages += nr_pages;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002333 put_cpu_var(memcg_stock);
2334}
2335
2336/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002337 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Michal Hockod38144b2011-07-26 16:08:28 -07002338 * of the hierarchy under it. sync flag says whether we should block
2339 * until the work is done.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002340 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002341static void drain_all_stock(struct mem_cgroup *root_memcg, bool sync)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002342{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002343 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002344
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002345 /* Notify other cpus that system-wide "drain" is running */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002346 get_online_cpus();
Johannes Weiner5af12d02011-08-25 15:59:07 -07002347 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002348 for_each_online_cpu(cpu) {
2349 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002350 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002351
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002352 memcg = stock->cached;
2353 if (!memcg || !stock->nr_pages)
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002354 continue;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002355 if (!mem_cgroup_same_or_subtree(root_memcg, memcg))
Michal Hocko3e920412011-07-26 16:08:29 -07002356 continue;
Michal Hockod1a05b62011-07-26 16:08:27 -07002357 if (!test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2358 if (cpu == curcpu)
2359 drain_local_stock(&stock->work);
2360 else
2361 schedule_work_on(cpu, &stock->work);
2362 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002363 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002364 put_cpu();
Michal Hockod38144b2011-07-26 16:08:28 -07002365
2366 if (!sync)
2367 goto out;
2368
2369 for_each_online_cpu(cpu) {
2370 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002371 if (test_bit(FLUSHING_CACHED_CHARGE, &stock->flags))
Michal Hockod38144b2011-07-26 16:08:28 -07002372 flush_work(&stock->work);
2373 }
2374out:
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002375 put_online_cpus();
Michal Hockod38144b2011-07-26 16:08:28 -07002376}
2377
2378/*
2379 * Tries to drain stocked charges in other cpus. This function is asynchronous
2380 * and just put a work per cpu for draining localy on each cpu. Caller can
2381 * expects some charges will be back to res_counter later but cannot wait for
2382 * it.
2383 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002384static void drain_all_stock_async(struct mem_cgroup *root_memcg)
Michal Hockod38144b2011-07-26 16:08:28 -07002385{
Michal Hocko9f50fad2011-08-09 11:56:26 +02002386 /*
2387 * If someone calls draining, avoid adding more kworker runs.
2388 */
2389 if (!mutex_trylock(&percpu_charge_mutex))
2390 return;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002391 drain_all_stock(root_memcg, false);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002392 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002393}
2394
2395/* This is a synchronous drain interface. */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002396static void drain_all_stock_sync(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002397{
2398 /* called when force_empty is called */
Michal Hocko9f50fad2011-08-09 11:56:26 +02002399 mutex_lock(&percpu_charge_mutex);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002400 drain_all_stock(root_memcg, true);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002401 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002402}
2403
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002404/*
2405 * This function drains percpu counter value from DEAD cpu and
2406 * move it to local cpu. Note that this function can be preempted.
2407 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002408static void mem_cgroup_drain_pcp_counter(struct mem_cgroup *memcg, int cpu)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002409{
2410 int i;
2411
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002412 spin_lock(&memcg->pcp_counter_lock);
Johannes Weiner61046212012-05-29 15:07:05 -07002413 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002414 long x = per_cpu(memcg->stat->count[i], cpu);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002415
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002416 per_cpu(memcg->stat->count[i], cpu) = 0;
2417 memcg->nocpu_base.count[i] += x;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002418 }
Johannes Weinere9f89742011-03-23 16:42:37 -07002419 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002420 unsigned long x = per_cpu(memcg->stat->events[i], cpu);
Johannes Weinere9f89742011-03-23 16:42:37 -07002421
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002422 per_cpu(memcg->stat->events[i], cpu) = 0;
2423 memcg->nocpu_base.events[i] += x;
Johannes Weinere9f89742011-03-23 16:42:37 -07002424 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002425 spin_unlock(&memcg->pcp_counter_lock);
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002426}
2427
Paul Gortmaker0db06282013-06-19 14:53:51 -04002428static int memcg_cpu_hotplug_callback(struct notifier_block *nb,
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002429 unsigned long action,
2430 void *hcpu)
2431{
2432 int cpu = (unsigned long)hcpu;
2433 struct memcg_stock_pcp *stock;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002434 struct mem_cgroup *iter;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002435
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07002436 if (action == CPU_ONLINE)
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002437 return NOTIFY_OK;
KAMEZAWA Hiroyuki1489eba2010-10-27 15:33:42 -07002438
Kirill A. Shutemovd8330492012-04-12 12:49:11 -07002439 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002440 return NOTIFY_OK;
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002441
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08002442 for_each_mem_cgroup(iter)
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -07002443 mem_cgroup_drain_pcp_counter(iter, cpu);
2444
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002445 stock = &per_cpu(memcg_stock, cpu);
2446 drain_stock(stock);
2447 return NOTIFY_OK;
2448}
2449
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002450
2451/* See __mem_cgroup_try_charge() for details */
2452enum {
2453 CHARGE_OK, /* success */
2454 CHARGE_RETRY, /* need to retry but retry is not bad */
2455 CHARGE_NOMEM, /* we can't do more. return -ENOMEM */
2456 CHARGE_WOULDBLOCK, /* GFP_WAIT wasn't set and no enough res. */
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002457};
2458
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002459static int mem_cgroup_do_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002460 unsigned int nr_pages, unsigned int min_pages,
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002461 bool invoke_oom)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002462{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002463 unsigned long csize = nr_pages * PAGE_SIZE;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002464 struct mem_cgroup *mem_over_limit;
2465 struct res_counter *fail_res;
2466 unsigned long flags = 0;
2467 int ret;
2468
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002469 ret = res_counter_charge(&memcg->res, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002470
2471 if (likely(!ret)) {
2472 if (!do_swap_account)
2473 return CHARGE_OK;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002474 ret = res_counter_charge(&memcg->memsw, csize, &fail_res);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002475 if (likely(!ret))
2476 return CHARGE_OK;
2477
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002478 res_counter_uncharge(&memcg->res, csize);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002479 mem_over_limit = mem_cgroup_from_res_counter(fail_res, memsw);
2480 flags |= MEM_CGROUP_RECLAIM_NOSWAP;
2481 } else
2482 mem_over_limit = mem_cgroup_from_res_counter(fail_res, res);
Johannes Weiner9221edb2011-02-01 15:52:42 -08002483 /*
Johannes Weiner9221edb2011-02-01 15:52:42 -08002484 * Never reclaim on behalf of optional batching, retry with a
2485 * single page instead.
2486 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002487 if (nr_pages > min_pages)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002488 return CHARGE_RETRY;
2489
2490 if (!(gfp_mask & __GFP_WAIT))
2491 return CHARGE_WOULDBLOCK;
2492
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002493 if (gfp_mask & __GFP_NORETRY)
2494 return CHARGE_NOMEM;
2495
Johannes Weiner56600482012-01-12 17:17:59 -08002496 ret = mem_cgroup_reclaim(mem_over_limit, gfp_mask, flags);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002497 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner19942822011-02-01 15:52:43 -08002498 return CHARGE_RETRY;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002499 /*
Johannes Weiner19942822011-02-01 15:52:43 -08002500 * Even though the limit is exceeded at this point, reclaim
2501 * may have been able to free some pages. Retry the charge
2502 * before killing the task.
2503 *
2504 * Only for regular pages, though: huge pages are rather
2505 * unlikely to succeed so close to the limit, and we fall back
2506 * to regular pages anyway in case of failure.
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002507 */
Suleiman Souhlal4c9c5352012-12-18 14:21:41 -08002508 if (nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER) && ret)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002509 return CHARGE_RETRY;
2510
2511 /*
2512 * At task move, charge accounts can be doubly counted. So, it's
2513 * better to wait until the end of task_move if something is going on.
2514 */
2515 if (mem_cgroup_wait_acct_move(mem_over_limit))
2516 return CHARGE_RETRY;
2517
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002518 if (invoke_oom)
2519 mem_cgroup_oom(mem_over_limit, gfp_mask, get_order(csize));
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002520
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002521 return CHARGE_NOMEM;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002522}
2523
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002524/*
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002525 * __mem_cgroup_try_charge() does
2526 * 1. detect memcg to be charged against from passed *mm and *ptr,
2527 * 2. update res_counter
2528 * 3. call memory reclaim if necessary.
2529 *
2530 * In some special case, if the task is fatal, fatal_signal_pending() or
2531 * has TIF_MEMDIE, this function returns -EINTR while writing root_mem_cgroup
2532 * to *ptr. There are two reasons for this. 1: fatal threads should quit as soon
2533 * as possible without any hazards. 2: all pages should have a valid
2534 * pc->mem_cgroup. If mm is NULL and the caller doesn't pass a valid memcg
2535 * pointer, that is treated as a charge to root_mem_cgroup.
2536 *
2537 * So __mem_cgroup_try_charge() will return
2538 * 0 ... on success, filling *ptr with a valid memcg pointer.
2539 * -ENOMEM ... charge failure because of resource limits.
2540 * -EINTR ... if thread is fatal. *ptr is filled with root_mem_cgroup.
2541 *
2542 * Unlike the exported interface, an "oom" parameter is added. if oom==true,
2543 * the oom-killer can be invoked.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002544 */
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08002545static int __mem_cgroup_try_charge(struct mm_struct *mm,
Andrea Arcangeliec168512011-01-13 15:46:56 -08002546 gfp_t gfp_mask,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002547 unsigned int nr_pages,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002548 struct mem_cgroup **ptr,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002549 bool oom)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002550{
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002551 unsigned int batch = max(CHARGE_BATCH, nr_pages);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002552 int nr_oom_retries = MEM_CGROUP_RECLAIM_RETRIES;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002553 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002554 int ret;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002555
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002556 /*
2557 * Unlike gloval-vm's OOM-kill, we're not in memory shortage
2558 * in system level. So, allow to go ahead dying process in addition to
2559 * MEMDIE process.
2560 */
2561 if (unlikely(test_thread_flag(TIF_MEMDIE)
2562 || fatal_signal_pending(current)))
2563 goto bypass;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002564
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002565 /*
Hugh Dickins3be91272008-02-07 00:14:19 -08002566 * We always charge the cgroup the mm_struct belongs to.
2567 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002568 * thread group leader migrates. It's possible that mm is not
Johannes Weiner24467ca2012-07-31 16:45:40 -07002569 * set, if so charge the root memcg (happens for pagecache usage).
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002570 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002571 if (!*ptr && !mm)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002572 *ptr = root_mem_cgroup;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002573again:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002574 if (*ptr) { /* css should be a valid one */
2575 memcg = *ptr;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002576 if (mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002577 goto done;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002578 if (consume_stock(memcg, nr_pages))
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002579 goto done;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002580 css_get(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002581 } else {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002582 struct task_struct *p;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08002583
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002584 rcu_read_lock();
2585 p = rcu_dereference(mm->owner);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002586 /*
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002587 * Because we don't have task_lock(), "p" can exit.
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002588 * In that case, "memcg" can point to root or p can be NULL with
KAMEZAWA Hiroyukiebb76ce2010-12-29 14:07:11 -08002589 * race with swapoff. Then, we have small risk of mis-accouning.
2590 * But such kind of mis-account by race always happens because
2591 * we don't have cgroup_mutex(). It's overkill and we allo that
2592 * small race, here.
2593 * (*) swapoff at el will charge against mm-struct not against
2594 * task-struct. So, mm->owner can be NULL.
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002595 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002596 memcg = mem_cgroup_from_task(p);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002597 if (!memcg)
2598 memcg = root_mem_cgroup;
2599 if (mem_cgroup_is_root(memcg)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002600 rcu_read_unlock();
2601 goto done;
2602 }
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002603 if (consume_stock(memcg, nr_pages)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002604 /*
2605 * It seems dagerous to access memcg without css_get().
2606 * But considering how consume_stok works, it's not
2607 * necessary. If consume_stock success, some charges
2608 * from this memcg are cached on this cpu. So, we
2609 * don't need to call css_get()/css_tryget() before
2610 * calling consume_stock().
2611 */
2612 rcu_read_unlock();
2613 goto done;
2614 }
2615 /* after here, we may be blocked. we need to get refcnt */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002616 if (!css_tryget(&memcg->css)) {
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002617 rcu_read_unlock();
2618 goto again;
2619 }
2620 rcu_read_unlock();
2621 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002622
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002623 do {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002624 bool invoke_oom = oom && !nr_oom_retries;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002625
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002626 /* If killed, bypass charge */
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002627 if (fatal_signal_pending(current)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002628 css_put(&memcg->css);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002629 goto bypass;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002630 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002631
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002632 ret = mem_cgroup_do_charge(memcg, gfp_mask, batch,
2633 nr_pages, invoke_oom);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002634 switch (ret) {
2635 case CHARGE_OK:
2636 break;
2637 case CHARGE_RETRY: /* not in OOM situation but retry */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002638 batch = nr_pages;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002639 css_put(&memcg->css);
2640 memcg = NULL;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002641 goto again;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002642 case CHARGE_WOULDBLOCK: /* !__GFP_WAIT */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002643 css_put(&memcg->css);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002644 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002645 case CHARGE_NOMEM: /* OOM routine works */
Johannes Weiner3812c8c2013-09-12 15:13:44 -07002646 if (!oom || invoke_oom) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002647 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002648 goto nomem;
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07002649 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002650 nr_oom_retries--;
2651 break;
Balbir Singh66e17072008-02-07 00:13:56 -08002652 }
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002653 } while (ret != CHARGE_OK);
2654
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002655 if (batch > nr_pages)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002656 refill_stock(memcg, batch - nr_pages);
2657 css_put(&memcg->css);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07002658done:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002659 *ptr = memcg;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002660 return 0;
2661nomem:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002662 *ptr = NULL;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002663 return -ENOMEM;
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08002664bypass:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08002665 *ptr = root_mem_cgroup;
2666 return -EINTR;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002667}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002668
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002669/*
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002670 * Somemtimes we have to undo a charge we got by try_charge().
2671 * This function is for that and do uncharge, put css's refcnt.
2672 * gotten by try_charge().
2673 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002674static void __mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002675 unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002676{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002677 if (!mem_cgroup_is_root(memcg)) {
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002678 unsigned long bytes = nr_pages * PAGE_SIZE;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08002679
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002680 res_counter_uncharge(&memcg->res, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002681 if (do_swap_account)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002682 res_counter_uncharge(&memcg->memsw, bytes);
Johannes Weinere7018b8d2011-03-23 16:42:33 -07002683 }
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002684}
2685
2686/*
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002687 * Cancel chrages in this cgroup....doesn't propagate to parent cgroup.
2688 * This is useful when moving usage to parent cgroup.
2689 */
2690static void __mem_cgroup_cancel_local_charge(struct mem_cgroup *memcg,
2691 unsigned int nr_pages)
2692{
2693 unsigned long bytes = nr_pages * PAGE_SIZE;
2694
2695 if (mem_cgroup_is_root(memcg))
2696 return;
2697
2698 res_counter_uncharge_until(&memcg->res, memcg->res.parent, bytes);
2699 if (do_swap_account)
2700 res_counter_uncharge_until(&memcg->memsw,
2701 memcg->memsw.parent, bytes);
2702}
2703
2704/*
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002705 * A helper function to get mem_cgroup from ID. must be called under
Tejun Heoe9316082012-11-05 09:16:58 -08002706 * rcu_read_lock(). The caller is responsible for calling css_tryget if
2707 * the mem_cgroup is used for charging. (dropping refcnt from swap can be
2708 * called against removed memcg.)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002709 */
2710static struct mem_cgroup *mem_cgroup_lookup(unsigned short id)
2711{
2712 struct cgroup_subsys_state *css;
2713
2714 /* ID 0 is unused ID */
2715 if (!id)
2716 return NULL;
2717 css = css_lookup(&mem_cgroup_subsys, id);
2718 if (!css)
2719 return NULL;
Wanpeng Lib2145142012-07-31 16:46:01 -07002720 return mem_cgroup_from_css(css);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002721}
2722
Wu Fengguange42d9d52009-12-16 12:19:59 +01002723struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002724{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002725 struct mem_cgroup *memcg = NULL;
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002726 struct page_cgroup *pc;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002727 unsigned short id;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002728 swp_entry_t ent;
2729
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002730 VM_BUG_ON(!PageLocked(page));
2731
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002732 pc = lookup_page_cgroup(page);
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002733 lock_page_cgroup(pc);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002734 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002735 memcg = pc->mem_cgroup;
2736 if (memcg && !css_tryget(&memcg->css))
2737 memcg = NULL;
Wu Fengguange42d9d52009-12-16 12:19:59 +01002738 } else if (PageSwapCache(page)) {
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002739 ent.val = page_private(page);
Bob Liu9fb4b7c2012-01-12 17:18:48 -08002740 id = lookup_swap_cgroup_id(ent);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002741 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002742 memcg = mem_cgroup_lookup(id);
2743 if (memcg && !css_tryget(&memcg->css))
2744 memcg = NULL;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07002745 rcu_read_unlock();
Daisuke Nishimura3c776e62009-04-02 16:57:43 -07002746 }
Daisuke Nishimurac0bd3f62009-04-30 15:08:11 -07002747 unlock_page_cgroup(pc);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002748 return memcg;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08002749}
2750
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002751static void __mem_cgroup_commit_charge(struct mem_cgroup *memcg,
Johannes Weiner5564e882011-03-23 16:42:29 -07002752 struct page *page,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07002753 unsigned int nr_pages,
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002754 enum charge_type ctype,
2755 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002756{
Johannes Weinerce587e62012-04-24 20:22:33 +02002757 struct page_cgroup *pc = lookup_page_cgroup(page);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002758 struct zone *uninitialized_var(zone);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002759 struct lruvec *lruvec;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002760 bool was_on_lru = false;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002761 bool anon;
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002762
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002763 lock_page_cgroup(pc);
Johannes Weiner90deb782012-07-31 16:45:47 -07002764 VM_BUG_ON(PageCgroupUsed(pc));
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08002765 /*
2766 * we don't need page_cgroup_lock about tail pages, becase they are not
2767 * accessed by any other context at this point.
2768 */
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002769
2770 /*
2771 * In some cases, SwapCache and FUSE(splice_buf->radixtree), the page
2772 * may already be on some other mem_cgroup's LRU. Take care of it.
2773 */
2774 if (lrucare) {
2775 zone = page_zone(page);
2776 spin_lock_irq(&zone->lru_lock);
2777 if (PageLRU(page)) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002778 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002779 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002780 del_page_from_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002781 was_on_lru = true;
2782 }
2783 }
2784
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002785 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyuki261fb612009-09-23 15:56:33 -07002786 /*
2787 * We access a page_cgroup asynchronously without lock_page_cgroup().
2788 * Especially when a page_cgroup is taken from a page, pc->mem_cgroup
2789 * is accessed after testing USED bit. To make pc->mem_cgroup visible
2790 * before USED bit, we need memory barrier here.
2791 * See mem_cgroup_add_lru_list(), etc.
Andrew Mortonf894ffa2013-09-12 15:13:35 -07002792 */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002793 smp_wmb();
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002794 SetPageCgroupUsed(pc);
Hugh Dickins3be91272008-02-07 00:14:19 -08002795
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002796 if (lrucare) {
2797 if (was_on_lru) {
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002798 lruvec = mem_cgroup_zone_lruvec(zone, pc->mem_cgroup);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002799 VM_BUG_ON(PageLRU(page));
2800 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002801 add_page_to_lru_list(page, lruvec, page_lru(page));
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002802 }
2803 spin_unlock_irq(&zone->lru_lock);
2804 }
2805
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07002806 if (ctype == MEM_CGROUP_CHARGE_TYPE_ANON)
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07002807 anon = true;
2808 else
2809 anon = false;
2810
David Rientjesb070e652013-05-07 16:18:09 -07002811 mem_cgroup_charge_statistics(memcg, page, anon, nr_pages);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07002812 unlock_page_cgroup(pc);
Hugh Dickins9ce70c02012-03-05 14:59:16 -08002813
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002814 /*
Michal Hockoe8831102013-09-12 15:13:23 -07002815 * "charge_statistics" updated event counter.
KAMEZAWA Hiroyuki430e48632010-03-10 15:22:30 -08002816 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002817 memcg_check_events(memcg, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002818}
2819
Glauber Costa7cf27982012-12-18 14:22:55 -08002820static DEFINE_MUTEX(set_limit_mutex);
2821
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002822#ifdef CONFIG_MEMCG_KMEM
2823static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
2824{
2825 return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
2826 (memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
2827}
2828
Glauber Costa1f458cb2012-12-18 14:22:50 -08002829/*
2830 * This is a bit cumbersome, but it is rarely used and avoids a backpointer
2831 * in the memcg_cache_params struct.
2832 */
2833static struct kmem_cache *memcg_params_to_cache(struct memcg_cache_params *p)
2834{
2835 struct kmem_cache *cachep;
2836
2837 VM_BUG_ON(p->is_root_cache);
2838 cachep = p->root_cache;
2839 return cachep->memcg_params->memcg_caches[memcg_cache_id(p->memcg)];
2840}
2841
Glauber Costa749c5412012-12-18 14:23:01 -08002842#ifdef CONFIG_SLABINFO
Tejun Heo182446d2013-08-08 20:11:24 -04002843static int mem_cgroup_slabinfo_read(struct cgroup_subsys_state *css,
2844 struct cftype *cft, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08002845{
Tejun Heo182446d2013-08-08 20:11:24 -04002846 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa749c5412012-12-18 14:23:01 -08002847 struct memcg_cache_params *params;
2848
2849 if (!memcg_can_account_kmem(memcg))
2850 return -EIO;
2851
2852 print_slabinfo_header(m);
2853
2854 mutex_lock(&memcg->slab_caches_mutex);
2855 list_for_each_entry(params, &memcg->memcg_slab_caches, list)
2856 cache_show(memcg_params_to_cache(params), m);
2857 mutex_unlock(&memcg->slab_caches_mutex);
2858
2859 return 0;
2860}
2861#endif
2862
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002863static int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, u64 size)
2864{
2865 struct res_counter *fail_res;
2866 struct mem_cgroup *_memcg;
2867 int ret = 0;
2868 bool may_oom;
2869
2870 ret = res_counter_charge(&memcg->kmem, size, &fail_res);
2871 if (ret)
2872 return ret;
2873
2874 /*
2875 * Conditions under which we can wait for the oom_killer. Those are
2876 * the same conditions tested by the core page allocator
2877 */
2878 may_oom = (gfp & __GFP_FS) && !(gfp & __GFP_NORETRY);
2879
2880 _memcg = memcg;
2881 ret = __mem_cgroup_try_charge(NULL, gfp, size >> PAGE_SHIFT,
2882 &_memcg, may_oom);
2883
2884 if (ret == -EINTR) {
2885 /*
2886 * __mem_cgroup_try_charge() chosed to bypass to root due to
2887 * OOM kill or fatal signal. Since our only options are to
2888 * either fail the allocation or charge it to this cgroup, do
2889 * it as a temporary condition. But we can't fail. From a
2890 * kmem/slab perspective, the cache has already been selected,
2891 * by mem_cgroup_kmem_get_cache(), so it is too late to change
2892 * our minds.
2893 *
2894 * This condition will only trigger if the task entered
2895 * memcg_charge_kmem in a sane state, but was OOM-killed during
2896 * __mem_cgroup_try_charge() above. Tasks that were already
2897 * dying when the allocation triggers should have been already
2898 * directed to the root cgroup in memcontrol.h
2899 */
2900 res_counter_charge_nofail(&memcg->res, size, &fail_res);
2901 if (do_swap_account)
2902 res_counter_charge_nofail(&memcg->memsw, size,
2903 &fail_res);
2904 ret = 0;
2905 } else if (ret)
2906 res_counter_uncharge(&memcg->kmem, size);
2907
2908 return ret;
2909}
2910
2911static void memcg_uncharge_kmem(struct mem_cgroup *memcg, u64 size)
2912{
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002913 res_counter_uncharge(&memcg->res, size);
2914 if (do_swap_account)
2915 res_counter_uncharge(&memcg->memsw, size);
Glauber Costa7de37682012-12-18 14:22:07 -08002916
2917 /* Not down to 0 */
2918 if (res_counter_uncharge(&memcg->kmem, size))
2919 return;
2920
Li Zefan10d5ebf2013-07-08 16:00:33 -07002921 /*
2922 * Releases a reference taken in kmem_cgroup_css_offline in case
2923 * this last uncharge is racing with the offlining code or it is
2924 * outliving the memcg existence.
2925 *
2926 * The memory barrier imposed by test&clear is paired with the
2927 * explicit one in memcg_kmem_mark_dead().
2928 */
Glauber Costa7de37682012-12-18 14:22:07 -08002929 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07002930 css_put(&memcg->css);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08002931}
2932
Glauber Costa2633d7a2012-12-18 14:22:34 -08002933void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep)
2934{
2935 if (!memcg)
2936 return;
2937
2938 mutex_lock(&memcg->slab_caches_mutex);
2939 list_add(&cachep->memcg_params->list, &memcg->memcg_slab_caches);
2940 mutex_unlock(&memcg->slab_caches_mutex);
2941}
2942
2943/*
2944 * helper for acessing a memcg's index. It will be used as an index in the
2945 * child cache array in kmem_cache, and also to derive its name. This function
2946 * will return -1 when this is not a kmem-limited memcg.
2947 */
2948int memcg_cache_id(struct mem_cgroup *memcg)
2949{
2950 return memcg ? memcg->kmemcg_id : -1;
2951}
2952
Glauber Costa55007d82012-12-18 14:22:38 -08002953/*
2954 * This ends up being protected by the set_limit mutex, during normal
2955 * operation, because that is its main call site.
2956 *
2957 * But when we create a new cache, we can call this as well if its parent
2958 * is kmem-limited. That will have to hold set_limit_mutex as well.
2959 */
2960int memcg_update_cache_sizes(struct mem_cgroup *memcg)
2961{
2962 int num, ret;
2963
2964 num = ida_simple_get(&kmem_limited_groups,
2965 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2966 if (num < 0)
2967 return num;
2968 /*
2969 * After this point, kmem_accounted (that we test atomically in
2970 * the beginning of this conditional), is no longer 0. This
2971 * guarantees only one process will set the following boolean
2972 * to true. We don't need test_and_set because we're protected
2973 * by the set_limit_mutex anyway.
2974 */
2975 memcg_kmem_set_activated(memcg);
2976
2977 ret = memcg_update_all_caches(num+1);
2978 if (ret) {
2979 ida_simple_remove(&kmem_limited_groups, num);
2980 memcg_kmem_clear_activated(memcg);
2981 return ret;
2982 }
2983
2984 memcg->kmemcg_id = num;
2985 INIT_LIST_HEAD(&memcg->memcg_slab_caches);
2986 mutex_init(&memcg->slab_caches_mutex);
2987 return 0;
2988}
2989
2990static size_t memcg_caches_array_size(int num_groups)
2991{
2992 ssize_t size;
2993 if (num_groups <= 0)
2994 return 0;
2995
2996 size = 2 * num_groups;
2997 if (size < MEMCG_CACHES_MIN_SIZE)
2998 size = MEMCG_CACHES_MIN_SIZE;
2999 else if (size > MEMCG_CACHES_MAX_SIZE)
3000 size = MEMCG_CACHES_MAX_SIZE;
3001
3002 return size;
3003}
3004
3005/*
3006 * We should update the current array size iff all caches updates succeed. This
3007 * can only be done from the slab side. The slab mutex needs to be held when
3008 * calling this.
3009 */
3010void memcg_update_array_size(int num)
3011{
3012 if (num > memcg_limited_groups_array_size)
3013 memcg_limited_groups_array_size = memcg_caches_array_size(num);
3014}
3015
Konstantin Khlebnikov15cf17d2013-03-08 12:43:36 -08003016static void kmem_cache_destroy_work_func(struct work_struct *w);
3017
Glauber Costa55007d82012-12-18 14:22:38 -08003018int memcg_update_cache_size(struct kmem_cache *s, int num_groups)
3019{
3020 struct memcg_cache_params *cur_params = s->memcg_params;
3021
3022 VM_BUG_ON(s->memcg_params && !s->memcg_params->is_root_cache);
3023
3024 if (num_groups > memcg_limited_groups_array_size) {
3025 int i;
3026 ssize_t size = memcg_caches_array_size(num_groups);
3027
3028 size *= sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003029 size += offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003030
3031 s->memcg_params = kzalloc(size, GFP_KERNEL);
3032 if (!s->memcg_params) {
3033 s->memcg_params = cur_params;
3034 return -ENOMEM;
3035 }
3036
3037 s->memcg_params->is_root_cache = true;
3038
3039 /*
3040 * There is the chance it will be bigger than
3041 * memcg_limited_groups_array_size, if we failed an allocation
3042 * in a cache, in which case all caches updated before it, will
3043 * have a bigger array.
3044 *
3045 * But if that is the case, the data after
3046 * memcg_limited_groups_array_size is certainly unused
3047 */
3048 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3049 if (!cur_params->memcg_caches[i])
3050 continue;
3051 s->memcg_params->memcg_caches[i] =
3052 cur_params->memcg_caches[i];
3053 }
3054
3055 /*
3056 * Ideally, we would wait until all caches succeed, and only
3057 * then free the old one. But this is not worth the extra
3058 * pointer per-cache we'd have to have for this.
3059 *
3060 * It is not a big deal if some caches are left with a size
3061 * bigger than the others. And all updates will reset this
3062 * anyway.
3063 */
3064 kfree(cur_params);
3065 }
3066 return 0;
3067}
3068
Glauber Costa943a4512012-12-18 14:23:03 -08003069int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
3070 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -08003071{
Andrey Vagin90c7a792013-09-11 14:22:18 -07003072 size_t size;
Glauber Costa2633d7a2012-12-18 14:22:34 -08003073
3074 if (!memcg_kmem_enabled())
3075 return 0;
3076
Andrey Vagin90c7a792013-09-11 14:22:18 -07003077 if (!memcg) {
3078 size = offsetof(struct memcg_cache_params, memcg_caches);
Glauber Costa55007d82012-12-18 14:22:38 -08003079 size += memcg_limited_groups_array_size * sizeof(void *);
Andrey Vagin90c7a792013-09-11 14:22:18 -07003080 } else
3081 size = sizeof(struct memcg_cache_params);
Glauber Costa55007d82012-12-18 14:22:38 -08003082
Glauber Costa2633d7a2012-12-18 14:22:34 -08003083 s->memcg_params = kzalloc(size, GFP_KERNEL);
3084 if (!s->memcg_params)
3085 return -ENOMEM;
3086
Glauber Costa943a4512012-12-18 14:23:03 -08003087 if (memcg) {
Glauber Costa2633d7a2012-12-18 14:22:34 -08003088 s->memcg_params->memcg = memcg;
Glauber Costa943a4512012-12-18 14:23:03 -08003089 s->memcg_params->root_cache = root_cache;
Andrey Vagin3e6b11d2013-08-13 16:00:47 -07003090 INIT_WORK(&s->memcg_params->destroy,
3091 kmem_cache_destroy_work_func);
Glauber Costa4ba902b2013-02-12 13:46:22 -08003092 } else
3093 s->memcg_params->is_root_cache = true;
3094
Glauber Costa2633d7a2012-12-18 14:22:34 -08003095 return 0;
3096}
3097
3098void memcg_release_cache(struct kmem_cache *s)
3099{
Glauber Costad7f25f82012-12-18 14:22:40 -08003100 struct kmem_cache *root;
3101 struct mem_cgroup *memcg;
3102 int id;
3103
3104 /*
3105 * This happens, for instance, when a root cache goes away before we
3106 * add any memcg.
3107 */
3108 if (!s->memcg_params)
3109 return;
3110
3111 if (s->memcg_params->is_root_cache)
3112 goto out;
3113
3114 memcg = s->memcg_params->memcg;
3115 id = memcg_cache_id(memcg);
3116
3117 root = s->memcg_params->root_cache;
3118 root->memcg_params->memcg_caches[id] = NULL;
Glauber Costad7f25f82012-12-18 14:22:40 -08003119
3120 mutex_lock(&memcg->slab_caches_mutex);
3121 list_del(&s->memcg_params->list);
3122 mutex_unlock(&memcg->slab_caches_mutex);
3123
Li Zefan20f05312013-07-08 16:00:31 -07003124 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003125out:
Glauber Costa2633d7a2012-12-18 14:22:34 -08003126 kfree(s->memcg_params);
3127}
3128
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003129/*
3130 * During the creation a new cache, we need to disable our accounting mechanism
3131 * altogether. This is true even if we are not creating, but rather just
3132 * enqueing new caches to be created.
3133 *
3134 * This is because that process will trigger allocations; some visible, like
3135 * explicit kmallocs to auxiliary data structures, name strings and internal
3136 * cache structures; some well concealed, like INIT_WORK() that can allocate
3137 * objects during debug.
3138 *
3139 * If any allocation happens during memcg_kmem_get_cache, we will recurse back
3140 * to it. This may not be a bounded recursion: since the first cache creation
3141 * failed to complete (waiting on the allocation), we'll just try to create the
3142 * cache again, failing at the same point.
3143 *
3144 * memcg_kmem_get_cache is prepared to abort after seeing a positive count of
3145 * memcg_kmem_skip_account. So we enclose anything that might allocate memory
3146 * inside the following two functions.
3147 */
3148static inline void memcg_stop_kmem_account(void)
3149{
3150 VM_BUG_ON(!current->mm);
3151 current->memcg_kmem_skip_account++;
3152}
3153
3154static inline void memcg_resume_kmem_account(void)
3155{
3156 VM_BUG_ON(!current->mm);
3157 current->memcg_kmem_skip_account--;
3158}
3159
Glauber Costa1f458cb2012-12-18 14:22:50 -08003160static void kmem_cache_destroy_work_func(struct work_struct *w)
3161{
3162 struct kmem_cache *cachep;
3163 struct memcg_cache_params *p;
3164
3165 p = container_of(w, struct memcg_cache_params, destroy);
3166
3167 cachep = memcg_params_to_cache(p);
3168
Glauber Costa22933152012-12-18 14:22:59 -08003169 /*
3170 * If we get down to 0 after shrink, we could delete right away.
3171 * However, memcg_release_pages() already puts us back in the workqueue
3172 * in that case. If we proceed deleting, we'll get a dangling
3173 * reference, and removing the object from the workqueue in that case
3174 * is unnecessary complication. We are not a fast path.
3175 *
3176 * Note that this case is fundamentally different from racing with
3177 * shrink_slab(): if memcg_cgroup_destroy_cache() is called in
3178 * kmem_cache_shrink, not only we would be reinserting a dead cache
3179 * into the queue, but doing so from inside the worker racing to
3180 * destroy it.
3181 *
3182 * So if we aren't down to zero, we'll just schedule a worker and try
3183 * again
3184 */
3185 if (atomic_read(&cachep->memcg_params->nr_pages) != 0) {
3186 kmem_cache_shrink(cachep);
3187 if (atomic_read(&cachep->memcg_params->nr_pages) == 0)
3188 return;
3189 } else
Glauber Costa1f458cb2012-12-18 14:22:50 -08003190 kmem_cache_destroy(cachep);
3191}
3192
3193void mem_cgroup_destroy_cache(struct kmem_cache *cachep)
3194{
3195 if (!cachep->memcg_params->dead)
3196 return;
3197
3198 /*
Glauber Costa22933152012-12-18 14:22:59 -08003199 * There are many ways in which we can get here.
3200 *
3201 * We can get to a memory-pressure situation while the delayed work is
3202 * still pending to run. The vmscan shrinkers can then release all
3203 * cache memory and get us to destruction. If this is the case, we'll
3204 * be executed twice, which is a bug (the second time will execute over
3205 * bogus data). In this case, cancelling the work should be fine.
3206 *
3207 * But we can also get here from the worker itself, if
3208 * kmem_cache_shrink is enough to shake all the remaining objects and
3209 * get the page count to 0. In this case, we'll deadlock if we try to
3210 * cancel the work (the worker runs with an internal lock held, which
3211 * is the same lock we would hold for cancel_work_sync().)
3212 *
3213 * Since we can't possibly know who got us here, just refrain from
3214 * running if there is already work pending
3215 */
3216 if (work_pending(&cachep->memcg_params->destroy))
3217 return;
3218 /*
Glauber Costa1f458cb2012-12-18 14:22:50 -08003219 * We have to defer the actual destroying to a workqueue, because
3220 * we might currently be in a context that cannot sleep.
3221 */
3222 schedule_work(&cachep->memcg_params->destroy);
3223}
3224
Glauber Costad7f25f82012-12-18 14:22:40 -08003225/*
3226 * This lock protects updaters, not readers. We want readers to be as fast as
3227 * they can, and they will either see NULL or a valid cache value. Our model
3228 * allow them to see NULL, in which case the root memcg will be selected.
3229 *
3230 * We need this lock because multiple allocations to the same cache from a non
3231 * will span more than one worker. Only one of them can create the cache.
3232 */
3233static DEFINE_MUTEX(memcg_cache_mutex);
Michal Hockod9c10dd2013-03-28 08:48:14 +01003234
3235/*
3236 * Called with memcg_cache_mutex held
3237 */
3238static struct kmem_cache *kmem_cache_dup(struct mem_cgroup *memcg,
3239 struct kmem_cache *s)
3240{
3241 struct kmem_cache *new;
3242 static char *tmp_name = NULL;
3243
3244 lockdep_assert_held(&memcg_cache_mutex);
3245
3246 /*
3247 * kmem_cache_create_memcg duplicates the given name and
3248 * cgroup_name for this name requires RCU context.
3249 * This static temporary buffer is used to prevent from
3250 * pointless shortliving allocation.
3251 */
3252 if (!tmp_name) {
3253 tmp_name = kmalloc(PATH_MAX, GFP_KERNEL);
3254 if (!tmp_name)
3255 return NULL;
3256 }
3257
3258 rcu_read_lock();
3259 snprintf(tmp_name, PATH_MAX, "%s(%d:%s)", s->name,
3260 memcg_cache_id(memcg), cgroup_name(memcg->css.cgroup));
3261 rcu_read_unlock();
3262
3263 new = kmem_cache_create_memcg(memcg, tmp_name, s->object_size, s->align,
3264 (s->flags & ~SLAB_PANIC), s->ctor, s);
3265
3266 if (new)
3267 new->allocflags |= __GFP_KMEMCG;
3268
3269 return new;
3270}
3271
Glauber Costad7f25f82012-12-18 14:22:40 -08003272static struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *memcg,
3273 struct kmem_cache *cachep)
3274{
3275 struct kmem_cache *new_cachep;
3276 int idx;
3277
3278 BUG_ON(!memcg_can_account_kmem(memcg));
3279
3280 idx = memcg_cache_id(memcg);
3281
3282 mutex_lock(&memcg_cache_mutex);
3283 new_cachep = cachep->memcg_params->memcg_caches[idx];
Li Zefan20f05312013-07-08 16:00:31 -07003284 if (new_cachep) {
3285 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003286 goto out;
Li Zefan20f05312013-07-08 16:00:31 -07003287 }
Glauber Costad7f25f82012-12-18 14:22:40 -08003288
3289 new_cachep = kmem_cache_dup(memcg, cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003290 if (new_cachep == NULL) {
3291 new_cachep = cachep;
Li Zefan20f05312013-07-08 16:00:31 -07003292 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003293 goto out;
3294 }
3295
Glauber Costa1f458cb2012-12-18 14:22:50 -08003296 atomic_set(&new_cachep->memcg_params->nr_pages , 0);
Glauber Costad7f25f82012-12-18 14:22:40 -08003297
3298 cachep->memcg_params->memcg_caches[idx] = new_cachep;
3299 /*
3300 * the readers won't lock, make sure everybody sees the updated value,
3301 * so they won't put stuff in the queue again for no reason
3302 */
3303 wmb();
3304out:
3305 mutex_unlock(&memcg_cache_mutex);
3306 return new_cachep;
3307}
3308
Glauber Costa7cf27982012-12-18 14:22:55 -08003309void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
3310{
3311 struct kmem_cache *c;
3312 int i;
3313
3314 if (!s->memcg_params)
3315 return;
3316 if (!s->memcg_params->is_root_cache)
3317 return;
3318
3319 /*
3320 * If the cache is being destroyed, we trust that there is no one else
3321 * requesting objects from it. Even if there are, the sanity checks in
3322 * kmem_cache_destroy should caught this ill-case.
3323 *
3324 * Still, we don't want anyone else freeing memcg_caches under our
3325 * noses, which can happen if a new memcg comes to life. As usual,
3326 * we'll take the set_limit_mutex to protect ourselves against this.
3327 */
3328 mutex_lock(&set_limit_mutex);
3329 for (i = 0; i < memcg_limited_groups_array_size; i++) {
3330 c = s->memcg_params->memcg_caches[i];
3331 if (!c)
3332 continue;
3333
3334 /*
3335 * We will now manually delete the caches, so to avoid races
3336 * we need to cancel all pending destruction workers and
3337 * proceed with destruction ourselves.
3338 *
3339 * kmem_cache_destroy() will call kmem_cache_shrink internally,
3340 * and that could spawn the workers again: it is likely that
3341 * the cache still have active pages until this very moment.
3342 * This would lead us back to mem_cgroup_destroy_cache.
3343 *
3344 * But that will not execute at all if the "dead" flag is not
3345 * set, so flip it down to guarantee we are in control.
3346 */
3347 c->memcg_params->dead = false;
Glauber Costa22933152012-12-18 14:22:59 -08003348 cancel_work_sync(&c->memcg_params->destroy);
Glauber Costa7cf27982012-12-18 14:22:55 -08003349 kmem_cache_destroy(c);
3350 }
3351 mutex_unlock(&set_limit_mutex);
3352}
3353
Glauber Costad7f25f82012-12-18 14:22:40 -08003354struct create_work {
3355 struct mem_cgroup *memcg;
3356 struct kmem_cache *cachep;
3357 struct work_struct work;
3358};
3359
Glauber Costa1f458cb2012-12-18 14:22:50 -08003360static void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3361{
3362 struct kmem_cache *cachep;
3363 struct memcg_cache_params *params;
3364
3365 if (!memcg_kmem_is_active(memcg))
3366 return;
3367
3368 mutex_lock(&memcg->slab_caches_mutex);
3369 list_for_each_entry(params, &memcg->memcg_slab_caches, list) {
3370 cachep = memcg_params_to_cache(params);
3371 cachep->memcg_params->dead = true;
Glauber Costa1f458cb2012-12-18 14:22:50 -08003372 schedule_work(&cachep->memcg_params->destroy);
3373 }
3374 mutex_unlock(&memcg->slab_caches_mutex);
3375}
3376
Glauber Costad7f25f82012-12-18 14:22:40 -08003377static void memcg_create_cache_work_func(struct work_struct *w)
3378{
3379 struct create_work *cw;
3380
3381 cw = container_of(w, struct create_work, work);
3382 memcg_create_kmem_cache(cw->memcg, cw->cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -08003383 kfree(cw);
3384}
3385
3386/*
3387 * Enqueue the creation of a per-memcg kmem_cache.
Glauber Costad7f25f82012-12-18 14:22:40 -08003388 */
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003389static void __memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3390 struct kmem_cache *cachep)
Glauber Costad7f25f82012-12-18 14:22:40 -08003391{
3392 struct create_work *cw;
3393
3394 cw = kmalloc(sizeof(struct create_work), GFP_NOWAIT);
Li Zefanca0dde92013-04-29 15:08:57 -07003395 if (cw == NULL) {
3396 css_put(&memcg->css);
Glauber Costad7f25f82012-12-18 14:22:40 -08003397 return;
3398 }
3399
3400 cw->memcg = memcg;
3401 cw->cachep = cachep;
3402
3403 INIT_WORK(&cw->work, memcg_create_cache_work_func);
3404 schedule_work(&cw->work);
3405}
3406
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003407static void memcg_create_cache_enqueue(struct mem_cgroup *memcg,
3408 struct kmem_cache *cachep)
3409{
3410 /*
3411 * We need to stop accounting when we kmalloc, because if the
3412 * corresponding kmalloc cache is not yet created, the first allocation
3413 * in __memcg_create_cache_enqueue will recurse.
3414 *
3415 * However, it is better to enclose the whole function. Depending on
3416 * the debugging options enabled, INIT_WORK(), for instance, can
3417 * trigger an allocation. This too, will make us recurse. Because at
3418 * this point we can't allow ourselves back into memcg_kmem_get_cache,
3419 * the safest choice is to do it like this, wrapping the whole function.
3420 */
3421 memcg_stop_kmem_account();
3422 __memcg_create_cache_enqueue(memcg, cachep);
3423 memcg_resume_kmem_account();
3424}
Glauber Costad7f25f82012-12-18 14:22:40 -08003425/*
3426 * Return the kmem_cache we're supposed to use for a slab allocation.
3427 * We try to use the current memcg's version of the cache.
3428 *
3429 * If the cache does not exist yet, if we are the first user of it,
3430 * we either create it immediately, if possible, or create it asynchronously
3431 * in a workqueue.
3432 * In the latter case, we will let the current allocation go through with
3433 * the original cache.
3434 *
3435 * Can't be called in interrupt context or from kernel threads.
3436 * This function needs to be called with rcu_read_lock() held.
3437 */
3438struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep,
3439 gfp_t gfp)
3440{
3441 struct mem_cgroup *memcg;
3442 int idx;
3443
3444 VM_BUG_ON(!cachep->memcg_params);
3445 VM_BUG_ON(!cachep->memcg_params->is_root_cache);
3446
Glauber Costa0e9d92f2012-12-18 14:22:42 -08003447 if (!current->mm || current->memcg_kmem_skip_account)
3448 return cachep;
3449
Glauber Costad7f25f82012-12-18 14:22:40 -08003450 rcu_read_lock();
3451 memcg = mem_cgroup_from_task(rcu_dereference(current->mm->owner));
Glauber Costad7f25f82012-12-18 14:22:40 -08003452
3453 if (!memcg_can_account_kmem(memcg))
Li Zefanca0dde92013-04-29 15:08:57 -07003454 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003455
3456 idx = memcg_cache_id(memcg);
3457
3458 /*
3459 * barrier to mare sure we're always seeing the up to date value. The
3460 * code updating memcg_caches will issue a write barrier to match this.
3461 */
3462 read_barrier_depends();
Li Zefanca0dde92013-04-29 15:08:57 -07003463 if (likely(cachep->memcg_params->memcg_caches[idx])) {
3464 cachep = cachep->memcg_params->memcg_caches[idx];
3465 goto out;
Glauber Costad7f25f82012-12-18 14:22:40 -08003466 }
3467
Li Zefanca0dde92013-04-29 15:08:57 -07003468 /* The corresponding put will be done in the workqueue. */
3469 if (!css_tryget(&memcg->css))
3470 goto out;
3471 rcu_read_unlock();
3472
3473 /*
3474 * If we are in a safe context (can wait, and not in interrupt
3475 * context), we could be be predictable and return right away.
3476 * This would guarantee that the allocation being performed
3477 * already belongs in the new cache.
3478 *
3479 * However, there are some clashes that can arrive from locking.
3480 * For instance, because we acquire the slab_mutex while doing
3481 * kmem_cache_dup, this means no further allocation could happen
3482 * with the slab_mutex held.
3483 *
3484 * Also, because cache creation issue get_online_cpus(), this
3485 * creates a lock chain: memcg_slab_mutex -> cpu_hotplug_mutex,
3486 * that ends up reversed during cpu hotplug. (cpuset allocates
3487 * a bunch of GFP_KERNEL memory during cpuup). Due to all that,
3488 * better to defer everything.
3489 */
3490 memcg_create_cache_enqueue(memcg, cachep);
3491 return cachep;
3492out:
3493 rcu_read_unlock();
3494 return cachep;
Glauber Costad7f25f82012-12-18 14:22:40 -08003495}
3496EXPORT_SYMBOL(__memcg_kmem_get_cache);
3497
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003498/*
3499 * We need to verify if the allocation against current->mm->owner's memcg is
3500 * possible for the given order. But the page is not allocated yet, so we'll
3501 * need a further commit step to do the final arrangements.
3502 *
3503 * It is possible for the task to switch cgroups in this mean time, so at
3504 * commit time, we can't rely on task conversion any longer. We'll then use
3505 * the handle argument to return to the caller which cgroup we should commit
3506 * against. We could also return the memcg directly and avoid the pointer
3507 * passing, but a boolean return value gives better semantics considering
3508 * the compiled-out case as well.
3509 *
3510 * Returning true means the allocation is possible.
3511 */
3512bool
3513__memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **_memcg, int order)
3514{
3515 struct mem_cgroup *memcg;
3516 int ret;
3517
3518 *_memcg = NULL;
Glauber Costa6d42c232013-07-08 16:00:00 -07003519
3520 /*
3521 * Disabling accounting is only relevant for some specific memcg
3522 * internal allocations. Therefore we would initially not have such
3523 * check here, since direct calls to the page allocator that are marked
3524 * with GFP_KMEMCG only happen outside memcg core. We are mostly
3525 * concerned with cache allocations, and by having this test at
3526 * memcg_kmem_get_cache, we are already able to relay the allocation to
3527 * the root cache and bypass the memcg cache altogether.
3528 *
3529 * There is one exception, though: the SLUB allocator does not create
3530 * large order caches, but rather service large kmallocs directly from
3531 * the page allocator. Therefore, the following sequence when backed by
3532 * the SLUB allocator:
3533 *
Andrew Mortonf894ffa2013-09-12 15:13:35 -07003534 * memcg_stop_kmem_account();
3535 * kmalloc(<large_number>)
3536 * memcg_resume_kmem_account();
Glauber Costa6d42c232013-07-08 16:00:00 -07003537 *
3538 * would effectively ignore the fact that we should skip accounting,
3539 * since it will drive us directly to this function without passing
3540 * through the cache selector memcg_kmem_get_cache. Such large
3541 * allocations are extremely rare but can happen, for instance, for the
3542 * cache arrays. We bring this test here.
3543 */
3544 if (!current->mm || current->memcg_kmem_skip_account)
3545 return true;
3546
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003547 memcg = try_get_mem_cgroup_from_mm(current->mm);
3548
3549 /*
3550 * very rare case described in mem_cgroup_from_task. Unfortunately there
3551 * isn't much we can do without complicating this too much, and it would
3552 * be gfp-dependent anyway. Just let it go
3553 */
3554 if (unlikely(!memcg))
3555 return true;
3556
3557 if (!memcg_can_account_kmem(memcg)) {
3558 css_put(&memcg->css);
3559 return true;
3560 }
3561
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003562 ret = memcg_charge_kmem(memcg, gfp, PAGE_SIZE << order);
3563 if (!ret)
3564 *_memcg = memcg;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003565
3566 css_put(&memcg->css);
3567 return (ret == 0);
3568}
3569
3570void __memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg,
3571 int order)
3572{
3573 struct page_cgroup *pc;
3574
3575 VM_BUG_ON(mem_cgroup_is_root(memcg));
3576
3577 /* The page allocation failed. Revert */
3578 if (!page) {
3579 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003580 return;
3581 }
3582
3583 pc = lookup_page_cgroup(page);
3584 lock_page_cgroup(pc);
3585 pc->mem_cgroup = memcg;
3586 SetPageCgroupUsed(pc);
3587 unlock_page_cgroup(pc);
3588}
3589
3590void __memcg_kmem_uncharge_pages(struct page *page, int order)
3591{
3592 struct mem_cgroup *memcg = NULL;
3593 struct page_cgroup *pc;
3594
3595
3596 pc = lookup_page_cgroup(page);
3597 /*
3598 * Fast unlocked return. Theoretically might have changed, have to
3599 * check again after locking.
3600 */
3601 if (!PageCgroupUsed(pc))
3602 return;
3603
3604 lock_page_cgroup(pc);
3605 if (PageCgroupUsed(pc)) {
3606 memcg = pc->mem_cgroup;
3607 ClearPageCgroupUsed(pc);
3608 }
3609 unlock_page_cgroup(pc);
3610
3611 /*
3612 * We trust that only if there is a memcg associated with the page, it
3613 * is a valid allocation
3614 */
3615 if (!memcg)
3616 return;
3617
3618 VM_BUG_ON(mem_cgroup_is_root(memcg));
3619 memcg_uncharge_kmem(memcg, PAGE_SIZE << order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003620}
Glauber Costa1f458cb2012-12-18 14:22:50 -08003621#else
3622static inline void mem_cgroup_destroy_all_caches(struct mem_cgroup *memcg)
3623{
3624}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003625#endif /* CONFIG_MEMCG_KMEM */
3626
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003627#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3628
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07003629#define PCGF_NOCOPY_AT_SPLIT (1 << PCG_LOCK | 1 << PCG_MIGRATION)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003630/*
3631 * Because tail pages are not marked as "used", set it. We're under
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003632 * zone->lru_lock, 'splitting on pmd' and compound_lock.
3633 * charge/uncharge will be never happen and move_account() is done under
3634 * compound_lock(), so we don't have to take care of races.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003635 */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003636void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003637{
3638 struct page_cgroup *head_pc = lookup_page_cgroup(head);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003639 struct page_cgroup *pc;
David Rientjesb070e652013-05-07 16:18:09 -07003640 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003641 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003642
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003643 if (mem_cgroup_disabled())
3644 return;
David Rientjesb070e652013-05-07 16:18:09 -07003645
3646 memcg = head_pc->mem_cgroup;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003647 for (i = 1; i < HPAGE_PMD_NR; i++) {
3648 pc = head_pc + i;
David Rientjesb070e652013-05-07 16:18:09 -07003649 pc->mem_cgroup = memcg;
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003650 smp_wmb();/* see __commit_charge() */
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003651 pc->flags = head_pc->flags & ~PCGF_NOCOPY_AT_SPLIT;
3652 }
David Rientjesb070e652013-05-07 16:18:09 -07003653 __this_cpu_sub(memcg->stat->count[MEM_CGROUP_STAT_RSS_HUGE],
3654 HPAGE_PMD_NR);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003655}
Hugh Dickins12d27102012-01-12 17:19:52 -08003656#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003657
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003658static inline
3659void mem_cgroup_move_account_page_stat(struct mem_cgroup *from,
3660 struct mem_cgroup *to,
3661 unsigned int nr_pages,
3662 enum mem_cgroup_stat_index idx)
3663{
3664 /* Update stat data for mem_cgroup */
3665 preempt_disable();
3666 WARN_ON_ONCE(from->stat->count[idx] < nr_pages);
3667 __this_cpu_add(from->stat->count[idx], -nr_pages);
3668 __this_cpu_add(to->stat->count[idx], nr_pages);
3669 preempt_enable();
3670}
3671
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003672/**
Johannes Weinerde3638d2011-03-23 16:42:28 -07003673 * mem_cgroup_move_account - move account of the page
Johannes Weiner5564e882011-03-23 16:42:29 -07003674 * @page: the page
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003675 * @nr_pages: number of regular pages (>1 for huge pages)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003676 * @pc: page_cgroup of the page.
3677 * @from: mem_cgroup which the page is moved from.
3678 * @to: mem_cgroup which the page is moved to. @from != @to.
3679 *
3680 * The caller must confirm following.
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003681 * - page is not on LRU (isolate_page() is useful.)
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003682 * - compound_lock is held when nr_pages > 1
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003683 *
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003684 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
3685 * from old cgroup.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003686 */
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003687static int mem_cgroup_move_account(struct page *page,
3688 unsigned int nr_pages,
3689 struct page_cgroup *pc,
3690 struct mem_cgroup *from,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003691 struct mem_cgroup *to)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003692{
Johannes Weinerde3638d2011-03-23 16:42:28 -07003693 unsigned long flags;
3694 int ret;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07003695 bool anon = PageAnon(page);
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003696
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003697 VM_BUG_ON(from == to);
Johannes Weiner5564e882011-03-23 16:42:29 -07003698 VM_BUG_ON(PageLRU(page));
Johannes Weinerde3638d2011-03-23 16:42:28 -07003699 /*
3700 * The page is isolated from LRU. So, collapse function
3701 * will not handle this page. But page splitting can happen.
3702 * Do this check under compound_page_lock(). The caller should
3703 * hold it.
3704 */
3705 ret = -EBUSY;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003706 if (nr_pages > 1 && !PageTransHuge(page))
Johannes Weinerde3638d2011-03-23 16:42:28 -07003707 goto out;
3708
3709 lock_page_cgroup(pc);
3710
3711 ret = -EINVAL;
3712 if (!PageCgroupUsed(pc) || pc->mem_cgroup != from)
3713 goto unlock;
3714
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003715 move_lock_mem_cgroup(from, &flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003716
Sha Zhengju3ea67d02013-09-12 15:13:53 -07003717 if (!anon && page_mapped(page))
3718 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3719 MEM_CGROUP_STAT_FILE_MAPPED);
3720
3721 if (PageWriteback(page))
3722 mem_cgroup_move_account_page_stat(from, to, nr_pages,
3723 MEM_CGROUP_STAT_WRITEBACK);
3724
David Rientjesb070e652013-05-07 16:18:09 -07003725 mem_cgroup_charge_statistics(from, page, anon, -nr_pages);
Balbir Singhd69b0422009-06-17 16:26:34 -07003726
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08003727 /* caller should have done css_get */
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003728 pc->mem_cgroup = to;
David Rientjesb070e652013-05-07 16:18:09 -07003729 mem_cgroup_charge_statistics(to, page, anon, nr_pages);
KAMEZAWA Hiroyuki312734c02012-03-21 16:34:24 -07003730 move_unlock_mem_cgroup(from, &flags);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003731 ret = 0;
3732unlock:
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003733 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -08003734 /*
3735 * check events
3736 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003737 memcg_check_events(to, page);
3738 memcg_check_events(from, page);
Johannes Weinerde3638d2011-03-23 16:42:28 -07003739out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003740 return ret;
3741}
3742
Michal Hocko2ef37d32012-10-26 13:37:30 +02003743/**
3744 * mem_cgroup_move_parent - moves page to the parent group
3745 * @page: the page to move
3746 * @pc: page_cgroup of the page
3747 * @child: page's cgroup
3748 *
3749 * move charges to its parent or the root cgroup if the group has no
3750 * parent (aka use_hierarchy==0).
3751 * Although this might fail (get_page_unless_zero, isolate_lru_page or
3752 * mem_cgroup_move_account fails) the failure is always temporary and
3753 * it signals a race with a page removal/uncharge or migration. In the
3754 * first case the page is on the way out and it will vanish from the LRU
3755 * on the next attempt and the call should be retried later.
3756 * Isolation from the LRU fails only if page has been isolated from
3757 * the LRU since we looked at it and that usually means either global
3758 * reclaim or migration going on. The page will either get back to the
3759 * LRU or vanish.
3760 * Finaly mem_cgroup_move_account fails only if the page got uncharged
3761 * (!PageCgroupUsed) or moved to a different group. The page will
3762 * disappear in the next attempt.
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003763 */
Johannes Weiner5564e882011-03-23 16:42:29 -07003764static int mem_cgroup_move_parent(struct page *page,
3765 struct page_cgroup *pc,
KAMEZAWA Hiroyuki6068bf02012-07-31 16:42:45 -07003766 struct mem_cgroup *child)
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003767{
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003768 struct mem_cgroup *parent;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003769 unsigned int nr_pages;
Andrew Morton4be44892011-03-23 16:42:39 -07003770 unsigned long uninitialized_var(flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003771 int ret;
3772
Michal Hockod8423012012-10-26 13:37:29 +02003773 VM_BUG_ON(mem_cgroup_is_root(child));
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003774
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003775 ret = -EBUSY;
3776 if (!get_page_unless_zero(page))
3777 goto out;
3778 if (isolate_lru_page(page))
3779 goto put;
KAMEZAWA Hiroyuki52dbb902011-01-25 15:07:29 -08003780
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003781 nr_pages = hpage_nr_pages(page);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003782
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003783 parent = parent_mem_cgroup(child);
3784 /*
3785 * If no parent, move charges to root cgroup.
3786 */
3787 if (!parent)
3788 parent = root_mem_cgroup;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003789
Michal Hocko2ef37d32012-10-26 13:37:30 +02003790 if (nr_pages > 1) {
3791 VM_BUG_ON(!PageTransHuge(page));
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003792 flags = compound_lock_irqsave(page);
Michal Hocko2ef37d32012-10-26 13:37:30 +02003793 }
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003794
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003795 ret = mem_cgroup_move_account(page, nr_pages,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07003796 pc, child, parent);
KAMEZAWA Hiroyukicc926f72012-05-29 15:07:04 -07003797 if (!ret)
3798 __mem_cgroup_cancel_local_charge(child, nr_pages);
Jesper Juhl8dba4742011-01-25 15:07:24 -08003799
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003800 if (nr_pages > 1)
KAMEZAWA Hiroyuki987eba62011-01-20 14:44:25 -08003801 compound_unlock_irqrestore(page, flags);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08003802 putback_lru_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003803put:
Daisuke Nishimura40d58132009-01-15 13:51:12 -08003804 put_page(page);
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -08003805out:
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003806 return ret;
3807}
3808
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003809/*
3810 * Charge the memory controller for page usage.
3811 * Return
3812 * 0 if the charge was successful
3813 * < 0 if the cgroup is over its limit
3814 */
3815static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
Daisuke Nishimura73045c42010-08-10 18:02:59 -07003816 gfp_t gfp_mask, enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003817{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003818 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003819 unsigned int nr_pages = 1;
Johannes Weiner8493ae42011-02-01 15:52:44 -08003820 bool oom = true;
3821 int ret;
Andrea Arcangeliec168512011-01-13 15:46:56 -08003822
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003823 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003824 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003825 VM_BUG_ON(!PageTransHuge(page));
Johannes Weiner8493ae42011-02-01 15:52:44 -08003826 /*
3827 * Never OOM-kill a process for a huge page. The
3828 * fault handler will fall back to regular pages.
3829 */
3830 oom = false;
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08003831 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003832
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003833 ret = __mem_cgroup_try_charge(mm, gfp_mask, nr_pages, &memcg, oom);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003834 if (ret == -ENOMEM)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003835 return ret;
Johannes Weinerce587e62012-04-24 20:22:33 +02003836 __mem_cgroup_commit_charge(memcg, page, nr_pages, ctype, false);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003837 return 0;
3838}
3839
3840int mem_cgroup_newpage_charge(struct page *page,
3841 struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003842{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003843 if (mem_cgroup_disabled())
Li Zefancede86a2008-07-25 01:47:18 -07003844 return 0;
Johannes Weiner7a0524c2012-01-12 17:18:43 -08003845 VM_BUG_ON(page_mapped(page));
3846 VM_BUG_ON(page->mapping && !PageAnon(page));
3847 VM_BUG_ON(!mm);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003848 return mem_cgroup_charge_common(page, mm, gfp_mask,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003849 MEM_CGROUP_CHARGE_TYPE_ANON);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -08003850}
3851
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003852/*
3853 * While swap-in, try_charge -> commit or cancel, the page is locked.
3854 * And when try_charge() successfully returns, one refcnt to memcg without
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02003855 * struct page_cgroup is acquired. This refcnt will be consumed by
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003856 * "commit()" or removed by "cancel()"
3857 */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003858static int __mem_cgroup_try_charge_swapin(struct mm_struct *mm,
3859 struct page *page,
3860 gfp_t mask,
3861 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003862{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003863 struct mem_cgroup *memcg;
Johannes Weiner90deb782012-07-31 16:45:47 -07003864 struct page_cgroup *pc;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003865 int ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003866
Johannes Weiner90deb782012-07-31 16:45:47 -07003867 pc = lookup_page_cgroup(page);
3868 /*
3869 * Every swap fault against a single page tries to charge the
3870 * page, bail as early as possible. shmem_unuse() encounters
3871 * already charged pages, too. The USED bit is protected by
3872 * the page lock, which serializes swap cache removal, which
3873 * in turn serializes uncharging.
3874 */
3875 if (PageCgroupUsed(pc))
3876 return 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003877 if (!do_swap_account)
3878 goto charge_cur_mm;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003879 memcg = try_get_mem_cgroup_from_page(page);
3880 if (!memcg)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003881 goto charge_cur_mm;
Johannes Weiner72835c82012-01-12 17:18:32 -08003882 *memcgp = memcg;
3883 ret = __mem_cgroup_try_charge(NULL, mask, 1, memcgp, true);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003884 css_put(&memcg->css);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003885 if (ret == -EINTR)
3886 ret = 0;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -08003887 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003888charge_cur_mm:
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08003889 ret = __mem_cgroup_try_charge(mm, mask, 1, memcgp, true);
3890 if (ret == -EINTR)
3891 ret = 0;
3892 return ret;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003893}
3894
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003895int mem_cgroup_try_charge_swapin(struct mm_struct *mm, struct page *page,
3896 gfp_t gfp_mask, struct mem_cgroup **memcgp)
3897{
3898 *memcgp = NULL;
3899 if (mem_cgroup_disabled())
3900 return 0;
Johannes Weinerbdf4f4d2012-07-31 16:45:50 -07003901 /*
3902 * A racing thread's fault, or swapoff, may have already
3903 * updated the pte, and even removed page from swap cache: in
3904 * those cases unuse_pte()'s pte_same() test will fail; but
3905 * there's also a KSM case which does need to charge the page.
3906 */
3907 if (!PageSwapCache(page)) {
3908 int ret;
3909
3910 ret = __mem_cgroup_try_charge(mm, gfp_mask, 1, memcgp, true);
3911 if (ret == -EINTR)
3912 ret = 0;
3913 return ret;
3914 }
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003915 return __mem_cgroup_try_charge_swapin(mm, page, gfp_mask, memcgp);
3916}
3917
Johannes Weiner827a03d2012-07-31 16:45:36 -07003918void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
3919{
3920 if (mem_cgroup_disabled())
3921 return;
3922 if (!memcg)
3923 return;
3924 __mem_cgroup_cancel_charge(memcg, 1);
3925}
3926
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003927static void
Johannes Weiner72835c82012-01-12 17:18:32 -08003928__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *memcg,
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003929 enum charge_type ctype)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003930{
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003931 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003932 return;
Johannes Weiner72835c82012-01-12 17:18:32 -08003933 if (!memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003934 return;
KAMEZAWA Hiroyuki5a6475a2011-03-23 16:42:42 -07003935
Johannes Weinerce587e62012-04-24 20:22:33 +02003936 __mem_cgroup_commit_charge(memcg, page, 1, ctype, true);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003937 /*
3938 * Now swap is on-memory. This means this page may be
3939 * counted both as mem and swap....double count.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003940 * Fix it by uncharging from memsw. Basically, this SwapCache is stable
3941 * under lock_page(). But in do_swap_page()::memory.c, reuse_swap_page()
3942 * may call delete_from_swap_cache() before reach here.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003943 */
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003944 if (do_swap_account && PageSwapCache(page)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003945 swp_entry_t ent = {.val = page_private(page)};
Hugh Dickins86493002012-05-29 15:06:52 -07003946 mem_cgroup_uncharge_swap(ent);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003947 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003948}
3949
Johannes Weiner72835c82012-01-12 17:18:32 -08003950void mem_cgroup_commit_charge_swapin(struct page *page,
3951 struct mem_cgroup *memcg)
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003952{
Johannes Weiner72835c82012-01-12 17:18:32 -08003953 __mem_cgroup_commit_charge_swapin(page, memcg,
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07003954 MEM_CGROUP_CHARGE_TYPE_ANON);
Daisuke Nishimura83aae4c2009-04-02 16:57:48 -07003955}
3956
Johannes Weiner827a03d2012-07-31 16:45:36 -07003957int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
3958 gfp_t gfp_mask)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003959{
Johannes Weiner827a03d2012-07-31 16:45:36 -07003960 struct mem_cgroup *memcg = NULL;
3961 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
3962 int ret;
3963
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08003964 if (mem_cgroup_disabled())
Johannes Weiner827a03d2012-07-31 16:45:36 -07003965 return 0;
3966 if (PageCompound(page))
3967 return 0;
3968
Johannes Weiner827a03d2012-07-31 16:45:36 -07003969 if (!PageSwapCache(page))
3970 ret = mem_cgroup_charge_common(page, mm, gfp_mask, type);
3971 else { /* page is swapcache/shmem */
Johannes Weiner0435a2f2012-07-31 16:45:43 -07003972 ret = __mem_cgroup_try_charge_swapin(mm, page,
3973 gfp_mask, &memcg);
Johannes Weiner827a03d2012-07-31 16:45:36 -07003974 if (!ret)
3975 __mem_cgroup_commit_charge_swapin(page, memcg, type);
3976 }
3977 return ret;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003978}
3979
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003980static void mem_cgroup_do_uncharge(struct mem_cgroup *memcg,
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003981 unsigned int nr_pages,
3982 const enum charge_type ctype)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003983{
3984 struct memcg_batch_info *batch = NULL;
3985 bool uncharge_memsw = true;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07003986
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003987 /* If swapout, usage of swap doesn't decrease */
3988 if (!do_swap_account || ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT)
3989 uncharge_memsw = false;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003990
3991 batch = &current->memcg_batch;
3992 /*
3993 * In usual, we do css_get() when we remember memcg pointer.
3994 * But in this case, we keep res->usage until end of a series of
3995 * uncharges. Then, it's ok to ignore memcg's refcnt.
3996 */
3997 if (!batch->memcg)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07003998 batch->memcg = memcg;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08003999 /*
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004000 * do_batch > 0 when unmapping pages or inode invalidate/truncate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004001 * In those cases, all pages freed continuously can be expected to be in
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004002 * the same cgroup and we have chance to coalesce uncharges.
4003 * But we do uncharge one by one if this is killed by OOM(TIF_MEMDIE)
4004 * because we want to do uncharge as soon as possible.
4005 */
4006
4007 if (!batch->do_batch || test_thread_flag(TIF_MEMDIE))
4008 goto direct_uncharge;
4009
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004010 if (nr_pages > 1)
Andrea Arcangeliec168512011-01-13 15:46:56 -08004011 goto direct_uncharge;
4012
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004013 /*
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004014 * In typical case, batch->memcg == mem. This means we can
4015 * merge a series of uncharges to an uncharge of res_counter.
4016 * If not, we uncharge res_counter ony by one.
4017 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004018 if (batch->memcg != memcg)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004019 goto direct_uncharge;
4020 /* remember freed charge and uncharge it later */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004021 batch->nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004022 if (uncharge_memsw)
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004023 batch->memsw_nr_pages++;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004024 return;
4025direct_uncharge:
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004026 res_counter_uncharge(&memcg->res, nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004027 if (uncharge_memsw)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004028 res_counter_uncharge(&memcg->memsw, nr_pages * PAGE_SIZE);
4029 if (unlikely(batch->memcg != memcg))
4030 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004031}
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08004032
Balbir Singh8697d332008-02-07 00:13:59 -08004033/*
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004034 * uncharge if !page_mapped(page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004035 */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004036static struct mem_cgroup *
Johannes Weiner0030f532012-07-31 16:45:25 -07004037__mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype,
4038 bool end_migration)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004039{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004040 struct mem_cgroup *memcg = NULL;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004041 unsigned int nr_pages = 1;
4042 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004043 bool anon;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004044
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004045 if (mem_cgroup_disabled())
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004046 return NULL;
Balbir Singh40779602008-04-04 14:29:59 -07004047
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004048 if (PageTransHuge(page)) {
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004049 nr_pages <<= compound_order(page);
Andrea Arcangeli37c2ac72011-01-13 15:47:16 -08004050 VM_BUG_ON(!PageTransHuge(page));
4051 }
Balbir Singh8697d332008-02-07 00:13:59 -08004052 /*
Balbir Singh3c541e12008-02-07 00:14:41 -08004053 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -08004054 */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004055 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004056 if (unlikely(!PageCgroupUsed(pc)))
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004057 return NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08004058
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004059 lock_page_cgroup(pc);
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004060
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004061 memcg = pc->mem_cgroup;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004062
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004063 if (!PageCgroupUsed(pc))
4064 goto unlock_out;
4065
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004066 anon = PageAnon(page);
4067
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004068 switch (ctype) {
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004069 case MEM_CGROUP_CHARGE_TYPE_ANON:
KAMEZAWA Hiroyuki2ff76f12012-03-21 16:34:25 -07004070 /*
4071 * Generally PageAnon tells if it's the anon statistics to be
4072 * updated; but sometimes e.g. mem_cgroup_uncharge_page() is
4073 * used before page reached the stage of being marked PageAnon.
4074 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004075 anon = true;
4076 /* fallthrough */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004077 case MEM_CGROUP_CHARGE_TYPE_DROP:
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004078 /* See mem_cgroup_prepare_migration() */
Johannes Weiner0030f532012-07-31 16:45:25 -07004079 if (page_mapped(page))
4080 goto unlock_out;
4081 /*
4082 * Pages under migration may not be uncharged. But
4083 * end_migration() /must/ be the one uncharging the
4084 * unused post-migration page and so it has to call
4085 * here with the migration bit still set. See the
4086 * res_counter handling below.
4087 */
4088 if (!end_migration && PageCgroupMigration(pc))
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004089 goto unlock_out;
4090 break;
4091 case MEM_CGROUP_CHARGE_TYPE_SWAPOUT:
4092 if (!PageAnon(page)) { /* Shared memory */
4093 if (page->mapping && !page_is_file_cache(page))
4094 goto unlock_out;
4095 } else if (page_mapped(page)) /* Anon */
4096 goto unlock_out;
4097 break;
4098 default:
4099 break;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004100 }
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004101
David Rientjesb070e652013-05-07 16:18:09 -07004102 mem_cgroup_charge_statistics(memcg, page, anon, -nr_pages);
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07004103
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004104 ClearPageCgroupUsed(pc);
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08004105 /*
4106 * pc->mem_cgroup is not cleared here. It will be accessed when it's
4107 * freed from LRU. This is safe because uncharged page is expected not
4108 * to be reused (freed soon). Exception is SwapCache, it's handled by
4109 * special functions.
4110 */
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004111
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004112 unlock_page_cgroup(pc);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004113 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004114 * even after unlock, we have memcg->res.usage here and this memcg
Li Zefan40503772013-07-08 16:00:34 -07004115 * will never be freed, so it's safe to call css_get().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004116 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004117 memcg_check_events(memcg, page);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004118 if (do_swap_account && ctype == MEM_CGROUP_CHARGE_TYPE_SWAPOUT) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004119 mem_cgroup_swap_statistics(memcg, true);
Li Zefan40503772013-07-08 16:00:34 -07004120 css_get(&memcg->css);
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004121 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004122 /*
4123 * Migration does not charge the res_counter for the
4124 * replacement page, so leave it alone when phasing out the
4125 * page that is unused after the migration.
4126 */
4127 if (!end_migration && !mem_cgroup_is_root(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004128 mem_cgroup_do_uncharge(memcg, nr_pages, ctype);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08004129
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004130 return memcg;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004131
4132unlock_out:
4133 unlock_page_cgroup(pc);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004134 return NULL;
Balbir Singh3c541e12008-02-07 00:14:41 -08004135}
4136
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004137void mem_cgroup_uncharge_page(struct page *page)
4138{
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004139 /* early check. */
4140 if (page_mapped(page))
4141 return;
Johannes Weiner40f23a22012-01-12 17:18:45 -08004142 VM_BUG_ON(page->mapping && !PageAnon(page));
Johannes Weiner28ccddf2013-05-24 15:55:15 -07004143 /*
4144 * If the page is in swap cache, uncharge should be deferred
4145 * to the swap path, which also properly accounts swap usage
4146 * and handles memcg lifetime.
4147 *
4148 * Note that this check is not stable and reclaim may add the
4149 * page to swap cache at any time after this. However, if the
4150 * page is not in swap cache by the time page->mapcount hits
4151 * 0, there won't be any page table references to the swap
4152 * slot, and reclaim will free it and not actually write the
4153 * page to disk.
4154 */
Johannes Weiner0c59b892012-07-31 16:45:31 -07004155 if (PageSwapCache(page))
4156 return;
Johannes Weiner0030f532012-07-31 16:45:25 -07004157 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004158}
4159
4160void mem_cgroup_uncharge_cache_page(struct page *page)
4161{
4162 VM_BUG_ON(page_mapped(page));
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -07004163 VM_BUG_ON(page->mapping);
Johannes Weiner0030f532012-07-31 16:45:25 -07004164 __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_CACHE, false);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004165}
4166
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004167/*
4168 * Batch_start/batch_end is called in unmap_page_range/invlidate/trucate.
4169 * In that cases, pages are freed continuously and we can expect pages
4170 * are in the same memcg. All these calls itself limits the number of
4171 * pages freed at once, then uncharge_start/end() is called properly.
4172 * This may be called prural(2) times in a context,
4173 */
4174
4175void mem_cgroup_uncharge_start(void)
4176{
4177 current->memcg_batch.do_batch++;
4178 /* We can do nest. */
4179 if (current->memcg_batch.do_batch == 1) {
4180 current->memcg_batch.memcg = NULL;
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004181 current->memcg_batch.nr_pages = 0;
4182 current->memcg_batch.memsw_nr_pages = 0;
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004183 }
4184}
4185
4186void mem_cgroup_uncharge_end(void)
4187{
4188 struct memcg_batch_info *batch = &current->memcg_batch;
4189
4190 if (!batch->do_batch)
4191 return;
4192
4193 batch->do_batch--;
4194 if (batch->do_batch) /* If stacked, do nothing. */
4195 return;
4196
4197 if (!batch->memcg)
4198 return;
4199 /*
4200 * This "batch->memcg" is valid without any css_get/put etc...
4201 * bacause we hide charges behind us.
4202 */
Johannes Weiner7ffd4ca2011-03-23 16:42:35 -07004203 if (batch->nr_pages)
4204 res_counter_uncharge(&batch->memcg->res,
4205 batch->nr_pages * PAGE_SIZE);
4206 if (batch->memsw_nr_pages)
4207 res_counter_uncharge(&batch->memcg->memsw,
4208 batch->memsw_nr_pages * PAGE_SIZE);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004209 memcg_oom_recover(batch->memcg);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08004210 /* forget this pointer (for sanity check) */
4211 batch->memcg = NULL;
4212}
4213
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004214#ifdef CONFIG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004215/*
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004216 * called after __delete_from_swap_cache() and drop "page" account.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004217 * memcg information is recorded to swap_cgroup of "ent"
4218 */
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004219void
4220mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004221{
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004222 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004223 int ctype = MEM_CGROUP_CHARGE_TYPE_SWAPOUT;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004224
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004225 if (!swapout) /* this was a swap cache but the swap is unused ! */
4226 ctype = MEM_CGROUP_CHARGE_TYPE_DROP;
4227
Johannes Weiner0030f532012-07-31 16:45:25 -07004228 memcg = __mem_cgroup_uncharge_common(page, ctype, false);
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -07004229
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004230 /*
4231 * record memcg information, if swapout && memcg != NULL,
Li Zefan40503772013-07-08 16:00:34 -07004232 * css_get() was called in uncharge().
KAMEZAWA Hiroyukif75ca962010-08-10 18:03:02 -07004233 */
4234 if (do_swap_account && swapout && memcg)
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004235 swap_cgroup_record(ent, css_id(&memcg->css));
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004236}
Daisuke Nishimurae767e052009-05-28 14:34:28 -07004237#endif
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08004238
Andrew Mortonc255a452012-07-31 16:43:02 -07004239#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004240/*
4241 * called from swap_entry_free(). remove record in swap_cgroup and
4242 * uncharge "memsw" account.
4243 */
4244void mem_cgroup_uncharge_swap(swp_entry_t ent)
4245{
4246 struct mem_cgroup *memcg;
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004247 unsigned short id;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004248
4249 if (!do_swap_account)
4250 return;
4251
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004252 id = swap_cgroup_record(ent, 0);
4253 rcu_read_lock();
4254 memcg = mem_cgroup_lookup(id);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004255 if (memcg) {
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004256 /*
4257 * We uncharge this because swap is freed.
4258 * This memcg can be obsolete one. We avoid calling css_tryget
4259 */
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004260 if (!mem_cgroup_is_root(memcg))
KAMEZAWA Hiroyuki4e649152009-10-01 15:44:11 -07004261 res_counter_uncharge(&memcg->memsw, PAGE_SIZE);
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004262 mem_cgroup_swap_statistics(memcg, false);
Li Zefan40503772013-07-08 16:00:34 -07004263 css_put(&memcg->css);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004264 }
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -07004265 rcu_read_unlock();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004266}
Daisuke Nishimura02491442010-03-10 15:22:17 -08004267
4268/**
4269 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
4270 * @entry: swap entry to be moved
4271 * @from: mem_cgroup which the entry is moved from
4272 * @to: mem_cgroup which the entry is moved to
4273 *
4274 * It succeeds only when the swap_cgroup's record for this entry is the same
4275 * as the mem_cgroup's id of @from.
4276 *
4277 * Returns 0 on success, -EINVAL on failure.
4278 *
4279 * The caller must have charged to @to, IOW, called res_counter_charge() about
4280 * both res and memsw, and called css_get().
4281 */
4282static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004283 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004284{
4285 unsigned short old_id, new_id;
4286
4287 old_id = css_id(&from->css);
4288 new_id = css_id(&to->css);
4289
4290 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08004291 mem_cgroup_swap_statistics(from, false);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004292 mem_cgroup_swap_statistics(to, true);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004293 /*
4294 * This function is only called from task migration context now.
4295 * It postpones res_counter and refcount handling till the end
4296 * of task migration(mem_cgroup_clear_mc()) for performance
Li Zefan40503772013-07-08 16:00:34 -07004297 * improvement. But we cannot postpone css_get(to) because if
4298 * the process that has been moved to @to does swap-in, the
4299 * refcount of @to might be decreased to 0.
4300 *
4301 * We are in attach() phase, so the cgroup is guaranteed to be
4302 * alive, so we can just call css_get().
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08004303 */
Li Zefan40503772013-07-08 16:00:34 -07004304 css_get(&to->css);
Daisuke Nishimura02491442010-03-10 15:22:17 -08004305 return 0;
4306 }
4307 return -EINVAL;
4308}
4309#else
4310static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07004311 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08004312{
4313 return -EINVAL;
4314}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004315#endif
4316
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004317/*
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004318 * Before starting migration, account PAGE_SIZE to mem_cgroup that the old
4319 * page belongs to.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004320 */
Johannes Weiner0030f532012-07-31 16:45:25 -07004321void mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
4322 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004323{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004324 struct mem_cgroup *memcg = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00004325 unsigned int nr_pages = 1;
Johannes Weiner7ec99d62011-03-23 16:42:36 -07004326 struct page_cgroup *pc;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004327 enum charge_type ctype;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004328
Johannes Weiner72835c82012-01-12 17:18:32 -08004329 *memcgp = NULL;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07004330
Hirokazu Takahashif8d665422009-01-07 18:08:02 -08004331 if (mem_cgroup_disabled())
Johannes Weiner0030f532012-07-31 16:45:25 -07004332 return;
Balbir Singh40779602008-04-04 14:29:59 -07004333
Mel Gormanb32967f2012-11-19 12:35:47 +00004334 if (PageTransHuge(page))
4335 nr_pages <<= compound_order(page);
4336
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004337 pc = lookup_page_cgroup(page);
4338 lock_page_cgroup(pc);
4339 if (PageCgroupUsed(pc)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004340 memcg = pc->mem_cgroup;
4341 css_get(&memcg->css);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004342 /*
4343 * At migrating an anonymous page, its mapcount goes down
4344 * to 0 and uncharge() will be called. But, even if it's fully
4345 * unmapped, migration may fail and this page has to be
4346 * charged again. We set MIGRATION flag here and delay uncharge
4347 * until end_migration() is called
4348 *
4349 * Corner Case Thinking
4350 * A)
4351 * When the old page was mapped as Anon and it's unmap-and-freed
4352 * while migration was ongoing.
4353 * If unmap finds the old page, uncharge() of it will be delayed
4354 * until end_migration(). If unmap finds a new page, it's
4355 * uncharged when it make mapcount to be 1->0. If unmap code
4356 * finds swap_migration_entry, the new page will not be mapped
4357 * and end_migration() will find it(mapcount==0).
4358 *
4359 * B)
4360 * When the old page was mapped but migraion fails, the kernel
4361 * remaps it. A charge for it is kept by MIGRATION flag even
4362 * if mapcount goes down to 0. We can do remap successfully
4363 * without charging it again.
4364 *
4365 * C)
4366 * The "old" page is under lock_page() until the end of
4367 * migration, so, the old page itself will not be swapped-out.
4368 * If the new page is swapped out before end_migraton, our
4369 * hook to usual swap-out path will catch the event.
4370 */
4371 if (PageAnon(page))
4372 SetPageCgroupMigration(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -08004373 }
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004374 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004375 /*
4376 * If the page is not charged at this point,
4377 * we return here.
4378 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004379 if (!memcg)
Johannes Weiner0030f532012-07-31 16:45:25 -07004380 return;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004381
Johannes Weiner72835c82012-01-12 17:18:32 -08004382 *memcgp = memcg;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004383 /*
4384 * We charge new page before it's used/mapped. So, even if unlock_page()
4385 * is called before end_migration, we can catch all events on this new
4386 * page. In the case new page is migrated but not remapped, new page's
4387 * mapcount will be finally 0 and we call uncharge in end_migration().
4388 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004389 if (PageAnon(page))
Kamezawa Hiroyuki41326c12012-07-31 16:41:40 -07004390 ctype = MEM_CGROUP_CHARGE_TYPE_ANON;
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004391 else
Johannes Weiner62ba7442012-07-31 16:45:39 -07004392 ctype = MEM_CGROUP_CHARGE_TYPE_CACHE;
Johannes Weiner0030f532012-07-31 16:45:25 -07004393 /*
4394 * The page is committed to the memcg, but it's not actually
4395 * charged to the res_counter since we plan on replacing the
4396 * old one and only one page is going to be left afterwards.
4397 */
Mel Gormanb32967f2012-11-19 12:35:47 +00004398 __mem_cgroup_commit_charge(memcg, newpage, nr_pages, ctype, false);
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004399}
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -08004400
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004401/* remove redundant charge if migration failed*/
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004402void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004403 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -07004404{
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004405 struct page *used, *unused;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004406 struct page_cgroup *pc;
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004407 bool anon;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004408
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004409 if (!memcg)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004410 return;
Tejun Heob25ed602012-11-05 09:16:59 -08004411
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -08004412 if (!migration_ok) {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004413 used = oldpage;
4414 unused = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004415 } else {
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004416 used = newpage;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004417 unused = oldpage;
4418 }
Johannes Weiner0030f532012-07-31 16:45:25 -07004419 anon = PageAnon(used);
Johannes Weiner7d188952012-07-31 16:45:34 -07004420 __mem_cgroup_uncharge_common(unused,
4421 anon ? MEM_CGROUP_CHARGE_TYPE_ANON
4422 : MEM_CGROUP_CHARGE_TYPE_CACHE,
4423 true);
Johannes Weiner0030f532012-07-31 16:45:25 -07004424 css_put(&memcg->css);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004425 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004426 * We disallowed uncharge of pages under migration because mapcount
4427 * of the page goes down to zero, temporarly.
4428 * Clear the flag and check the page should be charged.
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07004429 */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004430 pc = lookup_page_cgroup(oldpage);
4431 lock_page_cgroup(pc);
4432 ClearPageCgroupMigration(pc);
4433 unlock_page_cgroup(pc);
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004434
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004435 /*
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004436 * If a page is a file cache, radix-tree replacement is very atomic
4437 * and we can skip this check. When it was an Anon page, its mapcount
4438 * goes down to 0. But because we added MIGRATION flage, it's not
4439 * uncharged yet. There are several case but page->mapcount check
4440 * and USED bit check in mem_cgroup_uncharge_page() will do enough
4441 * check. (see prepare_charge() also)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -08004442 */
KAMEZAWA Hiroyukib24028572012-03-21 16:34:22 -07004443 if (anon)
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -07004444 mem_cgroup_uncharge_page(used);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -08004445}
Pavel Emelianov78fb7462008-02-07 00:13:51 -08004446
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004447/*
4448 * At replace page cache, newpage is not under any memcg but it's on
4449 * LRU. So, this function doesn't touch res_counter but handles LRU
4450 * in correct way. Both pages are locked so we cannot race with uncharge.
4451 */
4452void mem_cgroup_replace_page_cache(struct page *oldpage,
4453 struct page *newpage)
4454{
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004455 struct mem_cgroup *memcg = NULL;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004456 struct page_cgroup *pc;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004457 enum charge_type type = MEM_CGROUP_CHARGE_TYPE_CACHE;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004458
4459 if (mem_cgroup_disabled())
4460 return;
4461
4462 pc = lookup_page_cgroup(oldpage);
4463 /* fix accounting on old pages */
4464 lock_page_cgroup(pc);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004465 if (PageCgroupUsed(pc)) {
4466 memcg = pc->mem_cgroup;
David Rientjesb070e652013-05-07 16:18:09 -07004467 mem_cgroup_charge_statistics(memcg, oldpage, false, -1);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004468 ClearPageCgroupUsed(pc);
4469 }
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004470 unlock_page_cgroup(pc);
4471
Hugh Dickinsbde05d12012-05-29 15:06:38 -07004472 /*
4473 * When called from shmem_replace_page(), in some cases the
4474 * oldpage has already been charged, and in some cases not.
4475 */
4476 if (!memcg)
4477 return;
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004478 /*
4479 * Even if newpage->mapping was NULL before starting replacement,
4480 * the newpage may be on LRU(or pagevec for LRU) already. We lock
4481 * LRU while we overwrite pc->mem_cgroup.
4482 */
Johannes Weinerce587e62012-04-24 20:22:33 +02004483 __mem_cgroup_commit_charge(memcg, newpage, 1, type, true);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -08004484}
4485
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004486#ifdef CONFIG_DEBUG_VM
4487static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
4488{
4489 struct page_cgroup *pc;
4490
4491 pc = lookup_page_cgroup(page);
Johannes Weinercfa44942012-01-12 17:18:38 -08004492 /*
4493 * Can be NULL while feeding pages into the page allocator for
4494 * the first time, i.e. during boot or memory hotplug;
4495 * or when mem_cgroup_disabled().
4496 */
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004497 if (likely(pc) && PageCgroupUsed(pc))
4498 return pc;
4499 return NULL;
4500}
4501
4502bool mem_cgroup_bad_page_check(struct page *page)
4503{
4504 if (mem_cgroup_disabled())
4505 return false;
4506
4507 return lookup_page_cgroup_used(page) != NULL;
4508}
4509
4510void mem_cgroup_print_bad_page(struct page *page)
4511{
4512 struct page_cgroup *pc;
4513
4514 pc = lookup_page_cgroup_used(page);
4515 if (pc) {
Andrew Mortond0451972013-02-22 16:32:06 -08004516 pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
4517 pc, pc->flags, pc->mem_cgroup);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07004518 }
4519}
4520#endif
4521
KOSAKI Motohirod38d2a72009-01-06 14:39:44 -08004522static int mem_cgroup_resize_limit(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004523 unsigned long long val)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004524{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004525 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004526 u64 memswlimit, memlimit;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004527 int ret = 0;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004528 int children = mem_cgroup_count_children(memcg);
4529 u64 curusage, oldusage;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004530 int enlarge;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004531
4532 /*
4533 * For keeping hierarchical_reclaim simple, how long we should retry
4534 * is depends on callers. We set our retry-count to be function
4535 * of # of children which we should visit in this loop.
4536 */
4537 retry_count = MEM_CGROUP_RECLAIM_RETRIES * children;
4538
4539 oldusage = res_counter_read_u64(&memcg->res, RES_USAGE);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004540
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004541 enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004542 while (retry_count) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004543 if (signal_pending(current)) {
4544 ret = -EINTR;
4545 break;
4546 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004547 /*
4548 * Rather than hide all in some function, I do this in
4549 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004550 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004551 */
4552 mutex_lock(&set_limit_mutex);
4553 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4554 if (memswlimit < val) {
4555 ret = -EINVAL;
4556 mutex_unlock(&set_limit_mutex);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004557 break;
4558 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004559
4560 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4561 if (memlimit < val)
4562 enlarge = 1;
4563
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004564 ret = res_counter_set_limit(&memcg->res, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004565 if (!ret) {
4566 if (memswlimit == val)
4567 memcg->memsw_is_minimum = true;
4568 else
4569 memcg->memsw_is_minimum = false;
4570 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004571 mutex_unlock(&set_limit_mutex);
4572
4573 if (!ret)
4574 break;
4575
Johannes Weiner56600482012-01-12 17:17:59 -08004576 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4577 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004578 curusage = res_counter_read_u64(&memcg->res, RES_USAGE);
4579 /* Usage is reduced ? */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004580 if (curusage >= oldusage)
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004581 retry_count--;
4582 else
4583 oldusage = curusage;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004584 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004585 if (!ret && enlarge)
4586 memcg_oom_recover(memcg);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08004587
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004588 return ret;
4589}
4590
Li Zefan338c8432009-06-17 16:27:15 -07004591static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
4592 unsigned long long val)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004593{
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004594 int retry_count;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004595 u64 memlimit, memswlimit, oldusage, curusage;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004596 int children = mem_cgroup_count_children(memcg);
4597 int ret = -EBUSY;
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004598 int enlarge = 0;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004599
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004600 /* see mem_cgroup_resize_res_limit */
Andrew Mortonf894ffa2013-09-12 15:13:35 -07004601 retry_count = children * MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004602 oldusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004603 while (retry_count) {
4604 if (signal_pending(current)) {
4605 ret = -EINTR;
4606 break;
4607 }
4608 /*
4609 * Rather than hide all in some function, I do this in
4610 * open coded manner. You see what this really does.
Wanpeng Liaaad1532012-07-31 16:43:23 -07004611 * We have to guarantee memcg->res.limit <= memcg->memsw.limit.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004612 */
4613 mutex_lock(&set_limit_mutex);
4614 memlimit = res_counter_read_u64(&memcg->res, RES_LIMIT);
4615 if (memlimit > val) {
4616 ret = -EINVAL;
4617 mutex_unlock(&set_limit_mutex);
4618 break;
4619 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004620 memswlimit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
4621 if (memswlimit < val)
4622 enlarge = 1;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004623 ret = res_counter_set_limit(&memcg->memsw, val);
KAMEZAWA Hiroyuki22a668d2009-06-17 16:27:19 -07004624 if (!ret) {
4625 if (memlimit == val)
4626 memcg->memsw_is_minimum = true;
4627 else
4628 memcg->memsw_is_minimum = false;
4629 }
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004630 mutex_unlock(&set_limit_mutex);
4631
4632 if (!ret)
4633 break;
4634
Johannes Weiner56600482012-01-12 17:17:59 -08004635 mem_cgroup_reclaim(memcg, GFP_KERNEL,
4636 MEM_CGROUP_RECLAIM_NOSWAP |
4637 MEM_CGROUP_RECLAIM_SHRINK);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004638 curusage = res_counter_read_u64(&memcg->memsw, RES_USAGE);
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004639 /* Usage is reduced ? */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004640 if (curusage >= oldusage)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004641 retry_count--;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07004642 else
4643 oldusage = curusage;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004644 }
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004645 if (!ret && enlarge)
4646 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07004647 return ret;
4648}
4649
Michal Hocko2ef37d32012-10-26 13:37:30 +02004650/**
4651 * mem_cgroup_force_empty_list - clears LRU of a group
4652 * @memcg: group to clear
4653 * @node: NUMA node
4654 * @zid: zone id
4655 * @lru: lru to to clear
4656 *
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004657 * Traverse a specified page_cgroup list and try to drop them all. This doesn't
Michal Hocko2ef37d32012-10-26 13:37:30 +02004658 * reclaim the pages page themselves - pages are moved to the parent (or root)
4659 * group.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004660 */
Michal Hocko2ef37d32012-10-26 13:37:30 +02004661static void mem_cgroup_force_empty_list(struct mem_cgroup *memcg,
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004662 int node, int zid, enum lru_list lru)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004663{
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004664 struct lruvec *lruvec;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004665 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004666 struct list_head *list;
Johannes Weiner925b7672012-01-12 17:18:15 -08004667 struct page *busy;
4668 struct zone *zone;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -08004669
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004670 zone = &NODE_DATA(node)->node_zones[zid];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08004671 lruvec = mem_cgroup_zone_lruvec(zone, memcg);
4672 list = &lruvec->lists[lru];
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004673
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004674 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004675 do {
Johannes Weiner925b7672012-01-12 17:18:15 -08004676 struct page_cgroup *pc;
Johannes Weiner5564e882011-03-23 16:42:29 -07004677 struct page *page;
4678
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004679 spin_lock_irqsave(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004680 if (list_empty(list)) {
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004681 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004682 break;
4683 }
Johannes Weiner925b7672012-01-12 17:18:15 -08004684 page = list_entry(list->prev, struct page, lru);
4685 if (busy == page) {
4686 list_move(&page->lru, list);
Thiago Farina648bcc72010-03-05 13:42:04 -08004687 busy = NULL;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004688 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004689 continue;
4690 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004691 spin_unlock_irqrestore(&zone->lru_lock, flags);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004692
Johannes Weiner925b7672012-01-12 17:18:15 -08004693 pc = lookup_page_cgroup(page);
Johannes Weiner5564e882011-03-23 16:42:29 -07004694
KAMEZAWA Hiroyuki3c935d12012-07-31 16:42:46 -07004695 if (mem_cgroup_move_parent(page, pc, memcg)) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004696 /* found lock contention or "pc" is obsolete. */
Johannes Weiner925b7672012-01-12 17:18:15 -08004697 busy = page;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004698 cond_resched();
4699 } else
4700 busy = NULL;
Michal Hocko2ef37d32012-10-26 13:37:30 +02004701 } while (!list_empty(list));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004702}
4703
4704/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004705 * make mem_cgroup's charge to be 0 if there is no task by moving
4706 * all the charges and pages to the parent.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004707 * This enables deleting this mem_cgroup.
Michal Hockoc26251f2012-10-26 13:37:28 +02004708 *
4709 * Caller is responsible for holding css reference on the memcg.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004710 */
Michal Hockoab5196c2012-10-26 13:37:32 +02004711static void mem_cgroup_reparent_charges(struct mem_cgroup *memcg)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004712{
Michal Hockoc26251f2012-10-26 13:37:28 +02004713 int node, zid;
Glauber Costabea207c2012-12-18 14:22:11 -08004714 u64 usage;
Hugh Dickins8869b8f2008-03-04 14:29:09 -08004715
Daisuke Nishimurafce66472010-01-15 17:01:30 -08004716 do {
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004717 /* This is for making all *used* pages to be on LRU. */
4718 lru_add_drain_all();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004719 drain_all_stock_sync(memcg);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004720 mem_cgroup_start_move(memcg);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08004721 for_each_node_state(node, N_MEMORY) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004722 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004723 enum lru_list lru;
4724 for_each_lru(lru) {
Michal Hocko2ef37d32012-10-26 13:37:30 +02004725 mem_cgroup_force_empty_list(memcg,
Hugh Dickinsf156ab92012-03-21 16:34:19 -07004726 node, zid, lru);
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004727 }
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08004728 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004729 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004730 mem_cgroup_end_move(memcg);
4731 memcg_oom_recover(memcg);
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07004732 cond_resched();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004733
Michal Hocko2ef37d32012-10-26 13:37:30 +02004734 /*
Glauber Costabea207c2012-12-18 14:22:11 -08004735 * Kernel memory may not necessarily be trackable to a specific
4736 * process. So they are not migrated, and therefore we can't
4737 * expect their value to drop to 0 here.
4738 * Having res filled up with kmem only is enough.
4739 *
Michal Hocko2ef37d32012-10-26 13:37:30 +02004740 * This is a safety check because mem_cgroup_force_empty_list
4741 * could have raced with mem_cgroup_replace_page_cache callers
4742 * so the lru seemed empty but the page could have been added
4743 * right after the check. RES_USAGE should be safe as we always
4744 * charge before adding to the LRU.
4745 */
Glauber Costabea207c2012-12-18 14:22:11 -08004746 usage = res_counter_read_u64(&memcg->res, RES_USAGE) -
4747 res_counter_read_u64(&memcg->kmem, RES_USAGE);
4748 } while (usage > 0);
Michal Hockoc26251f2012-10-26 13:37:28 +02004749}
4750
4751/*
Glauber Costab5f99b52013-02-22 16:34:53 -08004752 * This mainly exists for tests during the setting of set of use_hierarchy.
4753 * Since this is the very setting we are changing, the current hierarchy value
4754 * is meaningless
4755 */
4756static inline bool __memcg_has_children(struct mem_cgroup *memcg)
4757{
Tejun Heo492eb212013-08-08 20:11:25 -04004758 struct cgroup_subsys_state *pos;
Glauber Costab5f99b52013-02-22 16:34:53 -08004759
4760 /* bounce at first found */
Tejun Heo492eb212013-08-08 20:11:25 -04004761 css_for_each_child(pos, &memcg->css)
Glauber Costab5f99b52013-02-22 16:34:53 -08004762 return true;
4763 return false;
4764}
4765
4766/*
Glauber Costa09998212013-02-22 16:34:55 -08004767 * Must be called with memcg_create_mutex held, unless the cgroup is guaranteed
4768 * to be already dead (as in mem_cgroup_force_empty, for instance). This is
Glauber Costab5f99b52013-02-22 16:34:53 -08004769 * from mem_cgroup_count_children(), in the sense that we don't really care how
4770 * many children we have; we only need to know if we have any. It also counts
4771 * any memcg without hierarchy as infertile.
4772 */
4773static inline bool memcg_has_children(struct mem_cgroup *memcg)
4774{
4775 return memcg->use_hierarchy && __memcg_has_children(memcg);
4776}
4777
4778/*
Michal Hockoc26251f2012-10-26 13:37:28 +02004779 * Reclaims as many pages from the given memcg as possible and moves
4780 * the rest to the parent.
4781 *
4782 * Caller is responsible for holding css reference for memcg.
4783 */
4784static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
4785{
4786 int nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
4787 struct cgroup *cgrp = memcg->css.cgroup;
4788
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004789 /* returns EBUSY if there is a task or if we come here twice. */
Michal Hockoc26251f2012-10-26 13:37:28 +02004790 if (cgroup_task_count(cgrp) || !list_empty(&cgrp->children))
4791 return -EBUSY;
4792
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004793 /* we call try-to-free pages for make this cgroup empty */
4794 lru_add_drain_all();
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004795 /* try to free all pages in this cgroup */
Glauber Costa569530f2012-04-12 12:49:13 -07004796 while (nr_retries && res_counter_read_u64(&memcg->res, RES_USAGE) > 0) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004797 int progress;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004798
Michal Hockoc26251f2012-10-26 13:37:28 +02004799 if (signal_pending(current))
4800 return -EINTR;
4801
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004802 progress = try_to_free_mem_cgroup_pages(memcg, GFP_KERNEL,
Johannes Weiner185efc02011-09-14 16:21:58 -07004803 false);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004804 if (!progress) {
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004805 nr_retries--;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004806 /* maybe some writeback is necessary */
Jens Axboe8aa7e842009-07-09 14:52:32 +02004807 congestion_wait(BLK_RW_ASYNC, HZ/10);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004808 }
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08004809
4810 }
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08004811 lru_add_drain();
Michal Hockoab5196c2012-10-26 13:37:32 +02004812 mem_cgroup_reparent_charges(memcg);
4813
4814 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08004815}
4816
Tejun Heo182446d2013-08-08 20:11:24 -04004817static int mem_cgroup_force_empty_write(struct cgroup_subsys_state *css,
4818 unsigned int event)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004819{
Tejun Heo182446d2013-08-08 20:11:24 -04004820 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Michal Hockoc26251f2012-10-26 13:37:28 +02004821
Michal Hockod8423012012-10-26 13:37:29 +02004822 if (mem_cgroup_is_root(memcg))
4823 return -EINVAL;
Li Zefanc33bd832013-09-12 15:13:19 -07004824 return mem_cgroup_force_empty(memcg);
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004825}
4826
Tejun Heo182446d2013-08-08 20:11:24 -04004827static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
4828 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004829{
Tejun Heo182446d2013-08-08 20:11:24 -04004830 return mem_cgroup_from_css(css)->use_hierarchy;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004831}
4832
Tejun Heo182446d2013-08-08 20:11:24 -04004833static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
4834 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08004835{
4836 int retval = 0;
Tejun Heo182446d2013-08-08 20:11:24 -04004837 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04004838 struct mem_cgroup *parent_memcg = mem_cgroup_from_css(css_parent(&memcg->css));
Balbir Singh18f59ea2009-01-07 18:08:07 -08004839
Glauber Costa09998212013-02-22 16:34:55 -08004840 mutex_lock(&memcg_create_mutex);
Glauber Costa567fb432012-07-31 16:43:07 -07004841
4842 if (memcg->use_hierarchy == val)
4843 goto out;
4844
Balbir Singh18f59ea2009-01-07 18:08:07 -08004845 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004846 * If parent's use_hierarchy is set, we can't make any modifications
Balbir Singh18f59ea2009-01-07 18:08:07 -08004847 * in the child subtrees. If it is unset, then the change can
4848 * occur, provided the current cgroup has no children.
4849 *
4850 * For the root cgroup, parent_mem is NULL, we allow value to be
4851 * set if there are no children.
4852 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004853 if ((!parent_memcg || !parent_memcg->use_hierarchy) &&
Balbir Singh18f59ea2009-01-07 18:08:07 -08004854 (val == 1 || val == 0)) {
Glauber Costab5f99b52013-02-22 16:34:53 -08004855 if (!__memcg_has_children(memcg))
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004856 memcg->use_hierarchy = val;
Balbir Singh18f59ea2009-01-07 18:08:07 -08004857 else
4858 retval = -EBUSY;
4859 } else
4860 retval = -EINVAL;
Glauber Costa567fb432012-07-31 16:43:07 -07004861
4862out:
Glauber Costa09998212013-02-22 16:34:55 -08004863 mutex_unlock(&memcg_create_mutex);
Balbir Singh18f59ea2009-01-07 18:08:07 -08004864
4865 return retval;
4866}
4867
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004868
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004869static unsigned long mem_cgroup_recursive_stat(struct mem_cgroup *memcg,
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004870 enum mem_cgroup_stat_index idx)
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004871{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004872 struct mem_cgroup *iter;
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004873 long val = 0;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004874
Johannes Weiner7a159cc2011-03-23 16:42:38 -07004875 /* Per-cpu values can be negative, use a signed accumulator */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004876 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004877 val += mem_cgroup_read_stat(iter, idx);
4878
4879 if (val < 0) /* race ? */
4880 val = 0;
4881 return val;
Balbir Singh0c3e73e2009-09-23 15:56:42 -07004882}
4883
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004884static inline u64 mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004885{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004886 u64 val;
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004887
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004888 if (!mem_cgroup_is_root(memcg)) {
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004889 if (!swap)
Glauber Costa65c64ce2011-12-22 01:02:27 +00004890 return res_counter_read_u64(&memcg->res, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004891 else
Glauber Costa65c64ce2011-12-22 01:02:27 +00004892 return res_counter_read_u64(&memcg->memsw, RES_USAGE);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004893 }
4894
David Rientjesb070e652013-05-07 16:18:09 -07004895 /*
4896 * Transparent hugepages are still accounted for in MEM_CGROUP_STAT_RSS
4897 * as well as in MEM_CGROUP_STAT_RSS_HUGE.
4898 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004899 val = mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_CACHE);
4900 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_RSS);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004901
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004902 if (swap)
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07004903 val += mem_cgroup_recursive_stat(memcg, MEM_CGROUP_STAT_SWAP);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004904
4905 return val << PAGE_SHIFT;
4906}
4907
Tejun Heo182446d2013-08-08 20:11:24 -04004908static ssize_t mem_cgroup_read(struct cgroup_subsys_state *css,
4909 struct cftype *cft, struct file *file,
4910 char __user *buf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004911{
Tejun Heo182446d2013-08-08 20:11:24 -04004912 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heoaf36f902012-04-01 12:09:55 -07004913 char str[64];
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004914 u64 val;
Glauber Costa86ae53e2012-12-18 14:21:45 -08004915 int name, len;
4916 enum res_type type;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004917
4918 type = MEMFILE_TYPE(cft->private);
4919 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07004920
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004921 switch (type) {
4922 case _MEM:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004923 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004924 val = mem_cgroup_usage(memcg, false);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004925 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004926 val = res_counter_read_u64(&memcg->res, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004927 break;
4928 case _MEMSWAP:
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004929 if (name == RES_USAGE)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004930 val = mem_cgroup_usage(memcg, true);
Kirill A. Shutemov104f3922010-03-10 15:22:21 -08004931 else
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004932 val = res_counter_read_u64(&memcg->memsw, name);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004933 break;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004934 case _KMEM:
4935 val = res_counter_read_u64(&memcg->kmem, name);
4936 break;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004937 default:
4938 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004939 }
Tejun Heoaf36f902012-04-01 12:09:55 -07004940
4941 len = scnprintf(str, sizeof(str), "%llu\n", (unsigned long long)val);
4942 return simple_read_from_buffer(buf, nbytes, ppos, str, len);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004943}
Glauber Costa510fc4e2012-12-18 14:21:47 -08004944
Tejun Heo182446d2013-08-08 20:11:24 -04004945static int memcg_update_kmem_limit(struct cgroup_subsys_state *css, u64 val)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004946{
4947 int ret = -EINVAL;
4948#ifdef CONFIG_MEMCG_KMEM
Tejun Heo182446d2013-08-08 20:11:24 -04004949 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004950 /*
4951 * For simplicity, we won't allow this to be disabled. It also can't
4952 * be changed if the cgroup has children already, or if tasks had
4953 * already joined.
4954 *
4955 * If tasks join before we set the limit, a person looking at
4956 * kmem.usage_in_bytes will have no way to determine when it took
4957 * place, which makes the value quite meaningless.
4958 *
4959 * After it first became limited, changes in the value of the limit are
4960 * of course permitted.
Glauber Costa510fc4e2012-12-18 14:21:47 -08004961 */
Glauber Costa09998212013-02-22 16:34:55 -08004962 mutex_lock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004963 mutex_lock(&set_limit_mutex);
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004964 if (!memcg->kmem_account_flags && val != RES_COUNTER_MAX) {
Tejun Heo182446d2013-08-08 20:11:24 -04004965 if (cgroup_task_count(css->cgroup) || memcg_has_children(memcg)) {
Glauber Costa510fc4e2012-12-18 14:21:47 -08004966 ret = -EBUSY;
4967 goto out;
4968 }
4969 ret = res_counter_set_limit(&memcg->kmem, val);
4970 VM_BUG_ON(ret);
4971
Glauber Costa55007d82012-12-18 14:22:38 -08004972 ret = memcg_update_cache_sizes(memcg);
4973 if (ret) {
Sha Zhengju6de5a8b2013-09-12 15:13:47 -07004974 res_counter_set_limit(&memcg->kmem, RES_COUNTER_MAX);
Glauber Costa55007d82012-12-18 14:22:38 -08004975 goto out;
4976 }
Glauber Costa692e89a2013-02-22 16:34:56 -08004977 static_key_slow_inc(&memcg_kmem_enabled_key);
4978 /*
4979 * setting the active bit after the inc will guarantee no one
4980 * starts accounting before all call sites are patched
4981 */
4982 memcg_kmem_set_active(memcg);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004983 } else
4984 ret = res_counter_set_limit(&memcg->kmem, val);
4985out:
4986 mutex_unlock(&set_limit_mutex);
Glauber Costa09998212013-02-22 16:34:55 -08004987 mutex_unlock(&memcg_create_mutex);
Glauber Costa510fc4e2012-12-18 14:21:47 -08004988#endif
4989 return ret;
4990}
4991
Hugh Dickins6d0439902013-02-22 16:35:50 -08004992#ifdef CONFIG_MEMCG_KMEM
Glauber Costa55007d82012-12-18 14:22:38 -08004993static int memcg_propagate_kmem(struct mem_cgroup *memcg)
Glauber Costa510fc4e2012-12-18 14:21:47 -08004994{
Glauber Costa55007d82012-12-18 14:22:38 -08004995 int ret = 0;
Glauber Costa510fc4e2012-12-18 14:21:47 -08004996 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4997 if (!parent)
Glauber Costa55007d82012-12-18 14:22:38 -08004998 goto out;
4999
Glauber Costa510fc4e2012-12-18 14:21:47 -08005000 memcg->kmem_account_flags = parent->kmem_account_flags;
Glauber Costaa8964b92012-12-18 14:22:09 -08005001 /*
5002 * When that happen, we need to disable the static branch only on those
5003 * memcgs that enabled it. To achieve this, we would be forced to
5004 * complicate the code by keeping track of which memcgs were the ones
5005 * that actually enabled limits, and which ones got it from its
5006 * parents.
5007 *
5008 * It is a lot simpler just to do static_key_slow_inc() on every child
5009 * that is accounted.
5010 */
Glauber Costa55007d82012-12-18 14:22:38 -08005011 if (!memcg_kmem_is_active(memcg))
5012 goto out;
5013
5014 /*
Li Zefan10d5ebf2013-07-08 16:00:33 -07005015 * __mem_cgroup_free() will issue static_key_slow_dec() because this
5016 * memcg is active already. If the later initialization fails then the
5017 * cgroup core triggers the cleanup so we do not have to do it here.
Glauber Costa55007d82012-12-18 14:22:38 -08005018 */
Glauber Costa55007d82012-12-18 14:22:38 -08005019 static_key_slow_inc(&memcg_kmem_enabled_key);
5020
5021 mutex_lock(&set_limit_mutex);
Glauber Costa425c5982013-07-08 16:00:01 -07005022 memcg_stop_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005023 ret = memcg_update_cache_sizes(memcg);
Glauber Costa425c5982013-07-08 16:00:01 -07005024 memcg_resume_kmem_account();
Glauber Costa55007d82012-12-18 14:22:38 -08005025 mutex_unlock(&set_limit_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -08005026out:
5027 return ret;
Glauber Costa510fc4e2012-12-18 14:21:47 -08005028}
Hugh Dickins6d0439902013-02-22 16:35:50 -08005029#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa510fc4e2012-12-18 14:21:47 -08005030
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005031/*
5032 * The user of this function is...
5033 * RES_LIMIT.
5034 */
Tejun Heo182446d2013-08-08 20:11:24 -04005035static int mem_cgroup_write(struct cgroup_subsys_state *css, struct cftype *cft,
Paul Menage856c13a2008-07-25 01:47:04 -07005036 const char *buffer)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005037{
Tejun Heo182446d2013-08-08 20:11:24 -04005038 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005039 enum res_type type;
5040 int name;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005041 unsigned long long val;
5042 int ret;
5043
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005044 type = MEMFILE_TYPE(cft->private);
5045 name = MEMFILE_ATTR(cft->private);
Tejun Heoaf36f902012-04-01 12:09:55 -07005046
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005047 switch (name) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005048 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07005049 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
5050 ret = -EINVAL;
5051 break;
5052 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005053 /* This function does all necessary parse...reuse it */
5054 ret = res_counter_memparse_write_strategy(buffer, &val);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005055 if (ret)
5056 break;
5057 if (type == _MEM)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005058 ret = mem_cgroup_resize_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005059 else if (type == _MEMSWAP)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005060 ret = mem_cgroup_resize_memsw_limit(memcg, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005061 else if (type == _KMEM)
Tejun Heo182446d2013-08-08 20:11:24 -04005062 ret = memcg_update_kmem_limit(css, val);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005063 else
5064 return -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005065 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07005066 case RES_SOFT_LIMIT:
5067 ret = res_counter_memparse_write_strategy(buffer, &val);
5068 if (ret)
5069 break;
5070 /*
5071 * For memsw, soft limits are hard to implement in terms
5072 * of semantics, for now, we support soft limits for
5073 * control without swap
5074 */
5075 if (type == _MEM)
5076 ret = res_counter_set_soft_limit(&memcg->res, val);
5077 else
5078 ret = -EINVAL;
5079 break;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07005080 default:
5081 ret = -EINVAL; /* should be BUG() ? */
5082 break;
5083 }
5084 return ret;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005085}
5086
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005087static void memcg_get_hierarchical_limit(struct mem_cgroup *memcg,
5088 unsigned long long *mem_limit, unsigned long long *memsw_limit)
5089{
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005090 unsigned long long min_limit, min_memsw_limit, tmp;
5091
5092 min_limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
5093 min_memsw_limit = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005094 if (!memcg->use_hierarchy)
5095 goto out;
5096
Tejun Heo63876982013-08-08 20:11:23 -04005097 while (css_parent(&memcg->css)) {
5098 memcg = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005099 if (!memcg->use_hierarchy)
5100 break;
5101 tmp = res_counter_read_u64(&memcg->res, RES_LIMIT);
5102 min_limit = min(min_limit, tmp);
5103 tmp = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
5104 min_memsw_limit = min(min_memsw_limit, tmp);
5105 }
5106out:
5107 *mem_limit = min_limit;
5108 *memsw_limit = min_memsw_limit;
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005109}
5110
Tejun Heo182446d2013-08-08 20:11:24 -04005111static int mem_cgroup_reset(struct cgroup_subsys_state *css, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005112{
Tejun Heo182446d2013-08-08 20:11:24 -04005113 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costa86ae53e2012-12-18 14:21:45 -08005114 int name;
5115 enum res_type type;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005116
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005117 type = MEMFILE_TYPE(event);
5118 name = MEMFILE_ATTR(event);
Tejun Heoaf36f902012-04-01 12:09:55 -07005119
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005120 switch (name) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005121 case RES_MAX_USAGE:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005122 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005123 res_counter_reset_max(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005124 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005125 res_counter_reset_max(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005126 else if (type == _KMEM)
5127 res_counter_reset_max(&memcg->kmem);
5128 else
5129 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005130 break;
5131 case RES_FAILCNT:
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005132 if (type == _MEM)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005133 res_counter_reset_failcnt(&memcg->res);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005134 else if (type == _MEMSWAP)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005135 res_counter_reset_failcnt(&memcg->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08005136 else if (type == _KMEM)
5137 res_counter_reset_failcnt(&memcg->kmem);
5138 else
5139 return -EINVAL;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005140 break;
5141 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07005142
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -07005143 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005144}
5145
Tejun Heo182446d2013-08-08 20:11:24 -04005146static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005147 struct cftype *cft)
5148{
Tejun Heo182446d2013-08-08 20:11:24 -04005149 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005150}
5151
Daisuke Nishimura02491442010-03-10 15:22:17 -08005152#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04005153static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005154 struct cftype *cft, u64 val)
5155{
Tejun Heo182446d2013-08-08 20:11:24 -04005156 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005157
5158 if (val >= (1 << NR_MOVE_TYPE))
5159 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005160
Glauber Costaee5e8472013-02-22 16:34:50 -08005161 /*
5162 * No kind of locking is needed in here, because ->can_attach() will
5163 * check this value once in the beginning of the process, and then carry
5164 * on with stale data. This means that changes to this value will only
5165 * affect task migrations starting after the change.
5166 */
5167 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005168 return 0;
5169}
Daisuke Nishimura02491442010-03-10 15:22:17 -08005170#else
Tejun Heo182446d2013-08-08 20:11:24 -04005171static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005172 struct cftype *cft, u64 val)
5173{
5174 return -ENOSYS;
5175}
5176#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005177
Ying Han406eb0c2011-05-26 16:25:37 -07005178#ifdef CONFIG_NUMA
Tejun Heo182446d2013-08-08 20:11:24 -04005179static int memcg_numa_stat_show(struct cgroup_subsys_state *css,
5180 struct cftype *cft, struct seq_file *m)
Ying Han406eb0c2011-05-26 16:25:37 -07005181{
5182 int nid;
5183 unsigned long total_nr, file_nr, anon_nr, unevictable_nr;
5184 unsigned long node_nr;
Tejun Heo182446d2013-08-08 20:11:24 -04005185 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Ying Han406eb0c2011-05-26 16:25:37 -07005186
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005187 total_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005188 seq_printf(m, "total=%lu", total_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005189 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005190 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid, LRU_ALL);
Ying Han406eb0c2011-05-26 16:25:37 -07005191 seq_printf(m, " N%d=%lu", nid, node_nr);
5192 }
5193 seq_putc(m, '\n');
5194
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005195 file_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005196 seq_printf(m, "file=%lu", file_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005197 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005198 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005199 LRU_ALL_FILE);
Ying Han406eb0c2011-05-26 16:25:37 -07005200 seq_printf(m, " N%d=%lu", nid, node_nr);
5201 }
5202 seq_putc(m, '\n');
5203
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005204 anon_nr = mem_cgroup_nr_lru_pages(memcg, LRU_ALL_ANON);
Ying Han406eb0c2011-05-26 16:25:37 -07005205 seq_printf(m, "anon=%lu", anon_nr);
Lai Jiangshan31aaea42012-12-12 13:51:27 -08005206 for_each_node_state(nid, N_MEMORY) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005207 node_nr = mem_cgroup_node_nr_lru_pages(memcg, nid,
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -07005208 LRU_ALL_ANON);
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 unevictable_nr = mem_cgroup_nr_lru_pages(memcg, BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005214 seq_printf(m, "unevictable=%lu", unevictable_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 BIT(LRU_UNEVICTABLE));
Ying Han406eb0c2011-05-26 16:25:37 -07005218 seq_printf(m, " N%d=%lu", nid, node_nr);
5219 }
5220 seq_putc(m, '\n');
5221 return 0;
5222}
5223#endif /* CONFIG_NUMA */
5224
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005225static inline void mem_cgroup_lru_names_not_uptodate(void)
5226{
5227 BUILD_BUG_ON(ARRAY_SIZE(mem_cgroup_lru_names) != NR_LRU_LISTS);
5228}
5229
Tejun Heo182446d2013-08-08 20:11:24 -04005230static int memcg_stat_show(struct cgroup_subsys_state *css, struct cftype *cft,
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005231 struct seq_file *m)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005232{
Tejun Heo182446d2013-08-08 20:11:24 -04005233 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005234 struct mem_cgroup *mi;
5235 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005236
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005237 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005238 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005239 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005240 seq_printf(m, "%s %ld\n", mem_cgroup_stat_names[i],
5241 mem_cgroup_read_stat(memcg, i) * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005242 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005243
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005244 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++)
5245 seq_printf(m, "%s %lu\n", mem_cgroup_events_names[i],
5246 mem_cgroup_read_events(memcg, i));
5247
5248 for (i = 0; i < NR_LRU_LISTS; i++)
5249 seq_printf(m, "%s %lu\n", mem_cgroup_lru_names[i],
5250 mem_cgroup_nr_lru_pages(memcg, BIT(i)) * PAGE_SIZE);
5251
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005252 /* Hierarchical information */
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005253 {
5254 unsigned long long limit, memsw_limit;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005255 memcg_get_hierarchical_limit(memcg, &limit, &memsw_limit);
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005256 seq_printf(m, "hierarchical_memory_limit %llu\n", limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005257 if (do_swap_account)
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005258 seq_printf(m, "hierarchical_memsw_limit %llu\n",
5259 memsw_limit);
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08005260 }
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005261
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005262 for (i = 0; i < MEM_CGROUP_STAT_NSTATS; i++) {
5263 long long val = 0;
5264
Kamezawa Hiroyukibff6bb82012-07-31 16:41:38 -07005265 if (i == MEM_CGROUP_STAT_SWAP && !do_swap_account)
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005266 continue;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07005267 for_each_mem_cgroup_tree(mi, memcg)
5268 val += mem_cgroup_read_stat(mi, i) * PAGE_SIZE;
5269 seq_printf(m, "total_%s %lld\n", mem_cgroup_stat_names[i], val);
5270 }
5271
5272 for (i = 0; i < MEM_CGROUP_EVENTS_NSTATS; i++) {
5273 unsigned long long val = 0;
5274
5275 for_each_mem_cgroup_tree(mi, memcg)
5276 val += mem_cgroup_read_events(mi, i);
5277 seq_printf(m, "total_%s %llu\n",
5278 mem_cgroup_events_names[i], val);
5279 }
5280
5281 for (i = 0; i < NR_LRU_LISTS; i++) {
5282 unsigned long long val = 0;
5283
5284 for_each_mem_cgroup_tree(mi, memcg)
5285 val += mem_cgroup_nr_lru_pages(mi, BIT(i)) * PAGE_SIZE;
5286 seq_printf(m, "total_%s %llu\n", mem_cgroup_lru_names[i], val);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07005287 }
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07005288
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005289#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005290 {
5291 int nid, zid;
5292 struct mem_cgroup_per_zone *mz;
Hugh Dickins89abfab2012-05-29 15:06:53 -07005293 struct zone_reclaim_stat *rstat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005294 unsigned long recent_rotated[2] = {0, 0};
5295 unsigned long recent_scanned[2] = {0, 0};
5296
5297 for_each_online_node(nid)
5298 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005299 mz = mem_cgroup_zoneinfo(memcg, nid, zid);
Hugh Dickins89abfab2012-05-29 15:06:53 -07005300 rstat = &mz->lruvec.reclaim_stat;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005301
Hugh Dickins89abfab2012-05-29 15:06:53 -07005302 recent_rotated[0] += rstat->recent_rotated[0];
5303 recent_rotated[1] += rstat->recent_rotated[1];
5304 recent_scanned[0] += rstat->recent_scanned[0];
5305 recent_scanned[1] += rstat->recent_scanned[1];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005306 }
Johannes Weiner78ccf5b2012-05-29 15:07:06 -07005307 seq_printf(m, "recent_rotated_anon %lu\n", recent_rotated[0]);
5308 seq_printf(m, "recent_rotated_file %lu\n", recent_rotated[1]);
5309 seq_printf(m, "recent_scanned_anon %lu\n", recent_scanned[0]);
5310 seq_printf(m, "recent_scanned_file %lu\n", recent_scanned[1]);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08005311 }
5312#endif
5313
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005314 return 0;
5315}
5316
Tejun Heo182446d2013-08-08 20:11:24 -04005317static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
5318 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005319{
Tejun Heo182446d2013-08-08 20:11:24 -04005320 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005321
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07005322 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005323}
5324
Tejun Heo182446d2013-08-08 20:11:24 -04005325static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
5326 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005327{
Tejun Heo182446d2013-08-08 20:11:24 -04005328 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005329 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
Li Zefan068b38c2009-01-15 13:51:26 -08005330
Tejun Heo63876982013-08-08 20:11:23 -04005331 if (val > 100 || !parent)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005332 return -EINVAL;
5333
Glauber Costa09998212013-02-22 16:34:55 -08005334 mutex_lock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005335
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005336 /* If under hierarchy, only empty-root can set this value */
Glauber Costab5f99b52013-02-22 16:34:53 -08005337 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005338 mutex_unlock(&memcg_create_mutex);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005339 return -EINVAL;
Li Zefan068b38c2009-01-15 13:51:26 -08005340 }
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005341
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005342 memcg->swappiness = val;
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005343
Glauber Costa09998212013-02-22 16:34:55 -08005344 mutex_unlock(&memcg_create_mutex);
Li Zefan068b38c2009-01-15 13:51:26 -08005345
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005346 return 0;
5347}
5348
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005349static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
5350{
5351 struct mem_cgroup_threshold_ary *t;
5352 u64 usage;
5353 int i;
5354
5355 rcu_read_lock();
5356 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005357 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005358 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005359 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005360
5361 if (!t)
5362 goto unlock;
5363
5364 usage = mem_cgroup_usage(memcg, swap);
5365
5366 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07005367 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005368 * If it's not true, a threshold was crossed after last
5369 * call of __mem_cgroup_threshold().
5370 */
Phil Carmody5407a562010-05-26 14:42:42 -07005371 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005372
5373 /*
5374 * Iterate backward over array of thresholds starting from
5375 * current_threshold and check if a threshold is crossed.
5376 * If none of thresholds below usage is crossed, we read
5377 * only one element of the array here.
5378 */
5379 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
5380 eventfd_signal(t->entries[i].eventfd, 1);
5381
5382 /* i = current_threshold + 1 */
5383 i++;
5384
5385 /*
5386 * Iterate forward over array of thresholds starting from
5387 * current_threshold+1 and check if a threshold is crossed.
5388 * If none of thresholds above usage is crossed, we read
5389 * only one element of the array here.
5390 */
5391 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
5392 eventfd_signal(t->entries[i].eventfd, 1);
5393
5394 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07005395 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005396unlock:
5397 rcu_read_unlock();
5398}
5399
5400static void mem_cgroup_threshold(struct mem_cgroup *memcg)
5401{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07005402 while (memcg) {
5403 __mem_cgroup_threshold(memcg, false);
5404 if (do_swap_account)
5405 __mem_cgroup_threshold(memcg, true);
5406
5407 memcg = parent_mem_cgroup(memcg);
5408 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005409}
5410
5411static int compare_thresholds(const void *a, const void *b)
5412{
5413 const struct mem_cgroup_threshold *_a = a;
5414 const struct mem_cgroup_threshold *_b = b;
5415
Greg Thelen2bff24a2013-09-11 14:23:08 -07005416 if (_a->threshold > _b->threshold)
5417 return 1;
5418
5419 if (_a->threshold < _b->threshold)
5420 return -1;
5421
5422 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005423}
5424
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005425static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005426{
5427 struct mem_cgroup_eventfd_list *ev;
5428
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005429 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005430 eventfd_signal(ev->eventfd, 1);
5431 return 0;
5432}
5433
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005434static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005435{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005436 struct mem_cgroup *iter;
5437
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005438 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07005439 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005440}
5441
Tejun Heo81eeaf02013-08-08 20:11:26 -04005442static int mem_cgroup_usage_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005443 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005444{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005445 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005446 struct mem_cgroup_thresholds *thresholds;
5447 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005448 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005449 u64 threshold, usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005450 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005451
5452 ret = res_counter_memparse_write_strategy(args, &threshold);
5453 if (ret)
5454 return ret;
5455
5456 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005457
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005458 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005459 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005460 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005461 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005462 else
5463 BUG();
5464
5465 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5466
5467 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005468 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005469 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5470
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005471 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005472
5473 /* Allocate memory for new array of thresholds */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005474 new = kmalloc(sizeof(*new) + size * sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005475 GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005476 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005477 ret = -ENOMEM;
5478 goto unlock;
5479 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005480 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005481
5482 /* Copy thresholds (if any) to new array */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005483 if (thresholds->primary) {
5484 memcpy(new->entries, thresholds->primary->entries, (size - 1) *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005485 sizeof(struct mem_cgroup_threshold));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005486 }
5487
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005488 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005489 new->entries[size - 1].eventfd = eventfd;
5490 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005491
5492 /* Sort thresholds. Registering of new threshold isn't time-critical */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005493 sort(new->entries, size, sizeof(struct mem_cgroup_threshold),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005494 compare_thresholds, NULL);
5495
5496 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005497 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005498 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07005499 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005500 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005501 * new->current_threshold will not be used until
5502 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005503 * it here.
5504 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005505 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07005506 } else
5507 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005508 }
5509
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005510 /* Free old spare buffer and save old primary buffer as spare */
5511 kfree(thresholds->spare);
5512 thresholds->spare = thresholds->primary;
5513
5514 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005515
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005516 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005517 synchronize_rcu();
5518
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005519unlock:
5520 mutex_unlock(&memcg->thresholds_lock);
5521
5522 return ret;
5523}
5524
Tejun Heo81eeaf02013-08-08 20:11:26 -04005525static void mem_cgroup_usage_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005526 struct cftype *cft, struct eventfd_ctx *eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005527{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005528 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005529 struct mem_cgroup_thresholds *thresholds;
5530 struct mem_cgroup_threshold_ary *new;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005531 enum res_type type = MEMFILE_TYPE(cft->private);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005532 u64 usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005533 int i, j, size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005534
5535 mutex_lock(&memcg->thresholds_lock);
5536 if (type == _MEM)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005537 thresholds = &memcg->thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005538 else if (type == _MEMSWAP)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005539 thresholds = &memcg->memsw_thresholds;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005540 else
5541 BUG();
5542
Anton Vorontsov371528c2012-02-24 05:14:46 +04005543 if (!thresholds->primary)
5544 goto unlock;
5545
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005546 usage = mem_cgroup_usage(memcg, type == _MEMSWAP);
5547
5548 /* Check if a threshold crossed before removing */
5549 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
5550
5551 /* Calculate new number of threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005552 size = 0;
5553 for (i = 0; i < thresholds->primary->size; i++) {
5554 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005555 size++;
5556 }
5557
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005558 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005559
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005560 /* Set thresholds array to NULL if we don't have thresholds */
5561 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005562 kfree(new);
5563 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005564 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005565 }
5566
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005567 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005568
5569 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005570 new->current_threshold = -1;
5571 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
5572 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005573 continue;
5574
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005575 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07005576 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005577 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005578 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005579 * until rcu_assign_pointer(), so it's safe to increment
5580 * it here.
5581 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005582 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005583 }
5584 j++;
5585 }
5586
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005587swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005588 /* Swap primary and spare array */
5589 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07005590 /* If all events are unregistered, free the spare array */
5591 if (!new) {
5592 kfree(thresholds->spare);
5593 thresholds->spare = NULL;
5594 }
5595
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07005596 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005597
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07005598 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005599 synchronize_rcu();
Anton Vorontsov371528c2012-02-24 05:14:46 +04005600unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005601 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08005602}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005603
Tejun Heo81eeaf02013-08-08 20:11:26 -04005604static int mem_cgroup_oom_register_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005605 struct cftype *cft, struct eventfd_ctx *eventfd, const char *args)
5606{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005607 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005608 struct mem_cgroup_eventfd_list *event;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005609 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005610
5611 BUG_ON(type != _OOM_TYPE);
5612 event = kmalloc(sizeof(*event), GFP_KERNEL);
5613 if (!event)
5614 return -ENOMEM;
5615
Michal Hocko1af8efe2011-07-26 16:08:24 -07005616 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005617
5618 event->eventfd = eventfd;
5619 list_add(&event->list, &memcg->oom_notify);
5620
5621 /* already in OOM ? */
Michal Hocko79dfdac2011-07-26 16:08:23 -07005622 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005623 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07005624 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005625
5626 return 0;
5627}
5628
Tejun Heo81eeaf02013-08-08 20:11:26 -04005629static void mem_cgroup_oom_unregister_event(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005630 struct cftype *cft, struct eventfd_ctx *eventfd)
5631{
Tejun Heo81eeaf02013-08-08 20:11:26 -04005632 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005633 struct mem_cgroup_eventfd_list *ev, *tmp;
Glauber Costa86ae53e2012-12-18 14:21:45 -08005634 enum res_type type = MEMFILE_TYPE(cft->private);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005635
5636 BUG_ON(type != _OOM_TYPE);
5637
Michal Hocko1af8efe2011-07-26 16:08:24 -07005638 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005639
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005640 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005641 if (ev->eventfd == eventfd) {
5642 list_del(&ev->list);
5643 kfree(ev);
5644 }
5645 }
5646
Michal Hocko1af8efe2011-07-26 16:08:24 -07005647 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005648}
5649
Tejun Heo182446d2013-08-08 20:11:24 -04005650static int mem_cgroup_oom_control_read(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005651 struct cftype *cft, struct cgroup_map_cb *cb)
5652{
Tejun Heo182446d2013-08-08 20:11:24 -04005653 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005654
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005655 cb->fill(cb, "oom_kill_disable", memcg->oom_kill_disable);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005656
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005657 if (atomic_read(&memcg->under_oom))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005658 cb->fill(cb, "under_oom", 1);
5659 else
5660 cb->fill(cb, "under_oom", 0);
5661 return 0;
5662}
5663
Tejun Heo182446d2013-08-08 20:11:24 -04005664static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005665 struct cftype *cft, u64 val)
5666{
Tejun Heo182446d2013-08-08 20:11:24 -04005667 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo63876982013-08-08 20:11:23 -04005668 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(&memcg->css));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005669
5670 /* cannot set to root cgroup and only 0 and 1 are allowed */
Tejun Heo63876982013-08-08 20:11:23 -04005671 if (!parent || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005672 return -EINVAL;
5673
Glauber Costa09998212013-02-22 16:34:55 -08005674 mutex_lock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005675 /* oom-kill-disable is a flag for subhierarchy. */
Glauber Costab5f99b52013-02-22 16:34:53 -08005676 if ((parent->use_hierarchy) || memcg_has_children(memcg)) {
Glauber Costa09998212013-02-22 16:34:55 -08005677 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005678 return -EINVAL;
5679 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005680 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07005681 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005682 memcg_oom_recover(memcg);
Glauber Costa09998212013-02-22 16:34:55 -08005683 mutex_unlock(&memcg_create_mutex);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005684 return 0;
5685}
5686
Andrew Mortonc255a452012-07-31 16:43:02 -07005687#ifdef CONFIG_MEMCG_KMEM
Glauber Costacbe128e32012-04-09 19:36:34 -03005688static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005689{
Glauber Costa55007d82012-12-18 14:22:38 -08005690 int ret;
5691
Glauber Costa2633d7a2012-12-18 14:22:34 -08005692 memcg->kmemcg_id = -1;
Glauber Costa55007d82012-12-18 14:22:38 -08005693 ret = memcg_propagate_kmem(memcg);
5694 if (ret)
5695 return ret;
Glauber Costa2633d7a2012-12-18 14:22:34 -08005696
Glauber Costa1d62e432012-04-09 19:36:33 -03005697 return mem_cgroup_sockets_init(memcg, ss);
Michel Lespinasse573b4002013-04-29 15:08:13 -07005698}
Glauber Costae5671df2011-12-11 21:47:01 +00005699
Li Zefan10d5ebf2013-07-08 16:00:33 -07005700static void memcg_destroy_kmem(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005701{
Glauber Costa1d62e432012-04-09 19:36:33 -03005702 mem_cgroup_sockets_destroy(memcg);
Li Zefan10d5ebf2013-07-08 16:00:33 -07005703}
5704
5705static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
5706{
5707 if (!memcg_kmem_is_active(memcg))
5708 return;
5709
5710 /*
5711 * kmem charges can outlive the cgroup. In the case of slab
5712 * pages, for instance, a page contain objects from various
5713 * processes. As we prevent from taking a reference for every
5714 * such allocation we have to be careful when doing uncharge
5715 * (see memcg_uncharge_kmem) and here during offlining.
5716 *
5717 * The idea is that that only the _last_ uncharge which sees
5718 * the dead memcg will drop the last reference. An additional
5719 * reference is taken here before the group is marked dead
5720 * which is then paired with css_put during uncharge resp. here.
5721 *
5722 * Although this might sound strange as this path is called from
5723 * css_offline() when the referencemight have dropped down to 0
5724 * and shouldn't be incremented anymore (css_tryget would fail)
5725 * we do not have other options because of the kmem allocations
5726 * lifetime.
5727 */
5728 css_get(&memcg->css);
Glauber Costa7de37682012-12-18 14:22:07 -08005729
5730 memcg_kmem_mark_dead(memcg);
5731
5732 if (res_counter_read_u64(&memcg->kmem, RES_USAGE) != 0)
5733 return;
5734
Glauber Costa7de37682012-12-18 14:22:07 -08005735 if (memcg_kmem_test_and_clear_dead(memcg))
Li Zefan10d5ebf2013-07-08 16:00:33 -07005736 css_put(&memcg->css);
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005737}
Glauber Costae5671df2011-12-11 21:47:01 +00005738#else
Glauber Costacbe128e32012-04-09 19:36:34 -03005739static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costae5671df2011-12-11 21:47:01 +00005740{
5741 return 0;
5742}
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005743
Li Zefan10d5ebf2013-07-08 16:00:33 -07005744static void memcg_destroy_kmem(struct mem_cgroup *memcg)
5745{
5746}
5747
5748static void kmem_cgroup_css_offline(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +00005749{
5750}
Glauber Costae5671df2011-12-11 21:47:01 +00005751#endif
5752
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005753static struct cftype mem_cgroup_files[] = {
5754 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005755 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005756 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heoaf36f902012-04-01 12:09:55 -07005757 .read = mem_cgroup_read,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005758 .register_event = mem_cgroup_usage_register_event,
5759 .unregister_event = mem_cgroup_usage_unregister_event,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005760 },
5761 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005762 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005763 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005764 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005765 .read = mem_cgroup_read,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07005766 },
5767 {
Balbir Singh0eea1032008-02-07 00:13:57 -08005768 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005769 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Paul Menage856c13a2008-07-25 01:47:04 -07005770 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005771 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005772 },
5773 {
Balbir Singh296c81d2009-09-23 15:56:36 -07005774 .name = "soft_limit_in_bytes",
5775 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
5776 .write_string = mem_cgroup_write,
Tejun Heoaf36f902012-04-01 12:09:55 -07005777 .read = mem_cgroup_read,
Balbir Singh296c81d2009-09-23 15:56:36 -07005778 },
5779 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005780 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005781 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07005782 .trigger = mem_cgroup_reset,
Tejun Heoaf36f902012-04-01 12:09:55 -07005783 .read = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005784 },
Balbir Singh8697d332008-02-07 00:13:59 -08005785 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005786 .name = "stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005787 .read_seq_string = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08005788 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08005789 {
5790 .name = "force_empty",
5791 .trigger = mem_cgroup_force_empty_write,
5792 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08005793 {
5794 .name = "use_hierarchy",
Tejun Heof00baae2013-04-15 13:41:15 -07005795 .flags = CFTYPE_INSANE,
Balbir Singh18f59ea2009-01-07 18:08:07 -08005796 .write_u64 = mem_cgroup_hierarchy_write,
5797 .read_u64 = mem_cgroup_hierarchy_read,
5798 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08005799 {
5800 .name = "swappiness",
5801 .read_u64 = mem_cgroup_swappiness_read,
5802 .write_u64 = mem_cgroup_swappiness_write,
5803 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005804 {
5805 .name = "move_charge_at_immigrate",
5806 .read_u64 = mem_cgroup_move_charge_read,
5807 .write_u64 = mem_cgroup_move_charge_write,
5808 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005809 {
5810 .name = "oom_control",
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07005811 .read_map = mem_cgroup_oom_control_read,
5812 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07005813 .register_event = mem_cgroup_oom_register_event,
5814 .unregister_event = mem_cgroup_oom_unregister_event,
5815 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
5816 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005817 {
5818 .name = "pressure_level",
5819 .register_event = vmpressure_register_event,
5820 .unregister_event = vmpressure_unregister_event,
5821 },
Ying Han406eb0c2011-05-26 16:25:37 -07005822#ifdef CONFIG_NUMA
5823 {
5824 .name = "numa_stat",
Wanpeng Liab215882012-07-31 16:43:09 -07005825 .read_seq_string = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07005826 },
5827#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005828#ifdef CONFIG_MEMCG_KMEM
5829 {
5830 .name = "kmem.limit_in_bytes",
5831 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
5832 .write_string = mem_cgroup_write,
5833 .read = mem_cgroup_read,
5834 },
5835 {
5836 .name = "kmem.usage_in_bytes",
5837 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
5838 .read = mem_cgroup_read,
5839 },
5840 {
5841 .name = "kmem.failcnt",
5842 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
5843 .trigger = mem_cgroup_reset,
5844 .read = mem_cgroup_read,
5845 },
5846 {
5847 .name = "kmem.max_usage_in_bytes",
5848 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
5849 .trigger = mem_cgroup_reset,
5850 .read = mem_cgroup_read,
5851 },
Glauber Costa749c5412012-12-18 14:23:01 -08005852#ifdef CONFIG_SLABINFO
5853 {
5854 .name = "kmem.slabinfo",
5855 .read_seq_string = mem_cgroup_slabinfo_read,
5856 },
5857#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08005858#endif
Tejun Heo6bc10342012-04-01 12:09:55 -07005859 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07005860};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005861
Michal Hocko2d110852013-02-22 16:34:43 -08005862#ifdef CONFIG_MEMCG_SWAP
5863static struct cftype memsw_cgroup_files[] = {
5864 {
5865 .name = "memsw.usage_in_bytes",
5866 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
5867 .read = mem_cgroup_read,
5868 .register_event = mem_cgroup_usage_register_event,
5869 .unregister_event = mem_cgroup_usage_unregister_event,
5870 },
5871 {
5872 .name = "memsw.max_usage_in_bytes",
5873 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
5874 .trigger = mem_cgroup_reset,
5875 .read = mem_cgroup_read,
5876 },
5877 {
5878 .name = "memsw.limit_in_bytes",
5879 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
5880 .write_string = mem_cgroup_write,
5881 .read = mem_cgroup_read,
5882 },
5883 {
5884 .name = "memsw.failcnt",
5885 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
5886 .trigger = mem_cgroup_reset,
5887 .read = mem_cgroup_read,
5888 },
5889 { }, /* terminate */
5890};
5891#endif
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005892static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005893{
5894 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005895 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005896 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005897 /*
5898 * This routine is called against possible nodes.
5899 * But it's BUG to call kmalloc() against offline node.
5900 *
5901 * TODO: this routine can waste much memory for nodes which will
5902 * never be onlined. It's better to use memory hotplug callback
5903 * function.
5904 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005905 if (!node_state(node, N_NORMAL_MEMORY))
5906 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005907 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005908 if (!pn)
5909 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005910
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005911 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
5912 mz = &pn->zoneinfo[zone];
Hugh Dickinsbea8c152012-11-16 14:14:54 -08005913 lruvec_init(&mz->lruvec);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005914 mz->memcg = memcg;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005915 }
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005916 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005917 return 0;
5918}
5919
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005920static void free_mem_cgroup_per_zone_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005921{
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005922 kfree(memcg->nodeinfo[node]);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005923}
5924
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005925static struct mem_cgroup *mem_cgroup_alloc(void)
5926{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005927 struct mem_cgroup *memcg;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005928 size_t size = memcg_size();
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005929
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005930 /* Can be very big if nr_node_ids is very big */
Jan Blunckc8dad2b2009-01-07 18:07:53 -08005931 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005932 memcg = kzalloc(size, GFP_KERNEL);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005933 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005934 memcg = vzalloc(size);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005935
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005936 if (!memcg)
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005937 return NULL;
5938
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005939 memcg->stat = alloc_percpu(struct mem_cgroup_stat_cpu);
5940 if (!memcg->stat)
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005941 goto out_free;
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005942 spin_lock_init(&memcg->pcp_counter_lock);
5943 return memcg;
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005944
5945out_free:
5946 if (size < PAGE_SIZE)
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005947 kfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005948 else
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005949 vfree(memcg);
Dan Carpenterd2e61b82010-11-11 14:05:12 -08005950 return NULL;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005951}
5952
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08005953/*
Glauber Costac8b2a362012-12-18 14:22:13 -08005954 * At destroying mem_cgroup, references from swap_cgroup can remain.
5955 * (scanning all at force_empty is too costly...)
5956 *
5957 * Instead of clearing all references at force_empty, we remember
5958 * the number of reference from swap_cgroup and free mem_cgroup when
5959 * it goes down to 0.
5960 *
5961 * Removal of cgroup itself succeeds regardless of refs from swap.
Hugh Dickins59927fb2012-03-15 15:17:07 -07005962 */
Glauber Costac8b2a362012-12-18 14:22:13 -08005963
5964static void __mem_cgroup_free(struct mem_cgroup *memcg)
Hugh Dickins59927fb2012-03-15 15:17:07 -07005965{
Glauber Costac8b2a362012-12-18 14:22:13 -08005966 int node;
Glauber Costa45cf7eb2013-02-22 16:34:49 -08005967 size_t size = memcg_size();
Hugh Dickins59927fb2012-03-15 15:17:07 -07005968
Glauber Costac8b2a362012-12-18 14:22:13 -08005969 free_css_id(&mem_cgroup_subsys, &memcg->css);
5970
5971 for_each_node(node)
5972 free_mem_cgroup_per_zone_info(memcg, node);
5973
5974 free_percpu(memcg->stat);
5975
Glauber Costa3f134612012-05-29 15:07:11 -07005976 /*
5977 * We need to make sure that (at least for now), the jump label
5978 * destruction code runs outside of the cgroup lock. This is because
5979 * get_online_cpus(), which is called from the static_branch update,
5980 * can't be called inside the cgroup_lock. cpusets are the ones
5981 * enforcing this dependency, so if they ever change, we might as well.
5982 *
5983 * schedule_work() will guarantee this happens. Be careful if you need
5984 * to move this code around, and make sure it is outside
5985 * the cgroup_lock.
5986 */
Glauber Costaa8964b92012-12-18 14:22:09 -08005987 disarm_static_keys(memcg);
Glauber Costa3afe36b2012-05-29 15:07:10 -07005988 if (size < PAGE_SIZE)
5989 kfree(memcg);
5990 else
5991 vfree(memcg);
Hugh Dickins59927fb2012-03-15 15:17:07 -07005992}
Glauber Costa3afe36b2012-05-29 15:07:10 -07005993
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005994/*
5995 * Returns the parent mem_cgroup in memcgroup hierarchy with hierarchy enabled.
5996 */
Glauber Costae1aab162011-12-11 21:47:03 +00005997struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08005998{
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07005999 if (!memcg->res.parent)
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006000 return NULL;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006001 return mem_cgroup_from_res_counter(memcg->res.parent, res);
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006002}
Glauber Costae1aab162011-12-11 21:47:03 +00006003EXPORT_SYMBOL(parent_mem_cgroup);
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07006004
Li Zefan0eb253e2009-01-15 13:51:25 -08006005static struct cgroup_subsys_state * __ref
Tejun Heoeb954192013-08-08 20:11:23 -04006006mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006007{
Glauber Costad142e3e2013-02-22 16:34:52 -08006008 struct mem_cgroup *memcg;
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006009 long error = -ENOMEM;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006010 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006011
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006012 memcg = mem_cgroup_alloc();
6013 if (!memcg)
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006014 return ERR_PTR(error);
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006015
Bob Liu3ed28fa2012-01-12 17:19:04 -08006016 for_each_node(node)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006017 if (alloc_mem_cgroup_per_zone_info(memcg, node))
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006018 goto free_out;
Balbir Singhf64c3f52009-09-23 15:56:37 -07006019
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006020 /* root ? */
Tejun Heoeb954192013-08-08 20:11:23 -04006021 if (parent_css == NULL) {
Hillf Dantona41c58a2011-12-19 17:11:57 -08006022 root_mem_cgroup = memcg;
Glauber Costad142e3e2013-02-22 16:34:52 -08006023 res_counter_init(&memcg->res, NULL);
6024 res_counter_init(&memcg->memsw, NULL);
6025 res_counter_init(&memcg->kmem, NULL);
Balbir Singh18f59ea2009-01-07 18:08:07 -08006026 }
Balbir Singh28dbc4b2009-01-07 18:08:05 -08006027
Glauber Costad142e3e2013-02-22 16:34:52 -08006028 memcg->last_scanned_node = MAX_NUMNODES;
6029 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08006030 memcg->move_charge_at_immigrate = 0;
6031 mutex_init(&memcg->thresholds_lock);
6032 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07006033 vmpressure_init(&memcg->vmpressure);
Michal Hocko7d910c02013-09-12 15:13:28 -07006034 spin_lock_init(&memcg->soft_lock);
Glauber Costad142e3e2013-02-22 16:34:52 -08006035
6036 return &memcg->css;
6037
6038free_out:
6039 __mem_cgroup_free(memcg);
6040 return ERR_PTR(error);
6041}
6042
6043static int
Tejun Heoeb954192013-08-08 20:11:23 -04006044mem_cgroup_css_online(struct cgroup_subsys_state *css)
Glauber Costad142e3e2013-02-22 16:34:52 -08006045{
Tejun Heoeb954192013-08-08 20:11:23 -04006046 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6047 struct mem_cgroup *parent = mem_cgroup_from_css(css_parent(css));
Glauber Costad142e3e2013-02-22 16:34:52 -08006048 int error = 0;
6049
Tejun Heo63876982013-08-08 20:11:23 -04006050 if (!parent)
Glauber Costad142e3e2013-02-22 16:34:52 -08006051 return 0;
6052
Glauber Costa09998212013-02-22 16:34:55 -08006053 mutex_lock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006054
6055 memcg->use_hierarchy = parent->use_hierarchy;
6056 memcg->oom_kill_disable = parent->oom_kill_disable;
6057 memcg->swappiness = mem_cgroup_swappiness(parent);
6058
6059 if (parent->use_hierarchy) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006060 res_counter_init(&memcg->res, &parent->res);
6061 res_counter_init(&memcg->memsw, &parent->memsw);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006062 res_counter_init(&memcg->kmem, &parent->kmem);
Glauber Costa55007d82012-12-18 14:22:38 -08006063
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006064 /*
Li Zefan8d76a972013-07-08 16:00:36 -07006065 * No need to take a reference to the parent because cgroup
6066 * core guarantees its existence.
Daisuke Nishimura7bcc1bb2009-01-29 14:25:11 -08006067 */
Balbir Singh18f59ea2009-01-07 18:08:07 -08006068 } else {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006069 res_counter_init(&memcg->res, NULL);
6070 res_counter_init(&memcg->memsw, NULL);
Glauber Costa510fc4e2012-12-18 14:21:47 -08006071 res_counter_init(&memcg->kmem, NULL);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006072 /*
6073 * Deeper hierachy with use_hierarchy == false doesn't make
6074 * much sense so let cgroup subsystem know about this
6075 * unfortunate state in our controller.
6076 */
Glauber Costad142e3e2013-02-22 16:34:52 -08006077 if (parent != root_mem_cgroup)
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07006078 mem_cgroup_subsys.broken_hierarchy = true;
Balbir Singh18f59ea2009-01-07 18:08:07 -08006079 }
Glauber Costacbe128e32012-04-09 19:36:34 -03006080
6081 error = memcg_init_kmem(memcg, &mem_cgroup_subsys);
Glauber Costa09998212013-02-22 16:34:55 -08006082 mutex_unlock(&memcg_create_mutex);
Glauber Costad142e3e2013-02-22 16:34:52 -08006083 return error;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006084}
6085
Michal Hocko5f578162013-04-29 15:07:17 -07006086/*
6087 * Announce all parents that a group from their hierarchy is gone.
6088 */
6089static void mem_cgroup_invalidate_reclaim_iterators(struct mem_cgroup *memcg)
6090{
6091 struct mem_cgroup *parent = memcg;
6092
6093 while ((parent = parent_mem_cgroup(parent)))
Johannes Weiner519ebea2013-07-03 15:04:51 -07006094 mem_cgroup_iter_invalidate(parent);
Michal Hocko5f578162013-04-29 15:07:17 -07006095
6096 /*
6097 * if the root memcg is not hierarchical we have to check it
6098 * explicitely.
6099 */
6100 if (!root_mem_cgroup->use_hierarchy)
Johannes Weiner519ebea2013-07-03 15:04:51 -07006101 mem_cgroup_iter_invalidate(root_mem_cgroup);
Michal Hocko5f578162013-04-29 15:07:17 -07006102}
6103
Tejun Heoeb954192013-08-08 20:11:23 -04006104static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006105{
Tejun Heoeb954192013-08-08 20:11:23 -04006106 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07006107
Li Zefan10d5ebf2013-07-08 16:00:33 -07006108 kmem_cgroup_css_offline(memcg);
6109
Michal Hocko5f578162013-04-29 15:07:17 -07006110 mem_cgroup_invalidate_reclaim_iterators(memcg);
Michal Hockoab5196c2012-10-26 13:37:32 +02006111 mem_cgroup_reparent_charges(memcg);
Michal Hocko7d910c02013-09-12 15:13:28 -07006112 if (memcg->soft_contributed) {
6113 while ((memcg = parent_mem_cgroup(memcg)))
6114 atomic_dec(&memcg->children_in_excess);
Michal Hocko1be171d2013-09-12 15:13:32 -07006115
6116 if (memcg != root_mem_cgroup && !root_mem_cgroup->use_hierarchy)
6117 atomic_dec(&root_mem_cgroup->children_in_excess);
Michal Hocko7d910c02013-09-12 15:13:28 -07006118 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08006119 mem_cgroup_destroy_all_caches(memcg);
Michal Hocko33cb8762013-07-31 13:53:51 -07006120 vmpressure_cleanup(&memcg->vmpressure);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08006121}
6122
Tejun Heoeb954192013-08-08 20:11:23 -04006123static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006124{
Tejun Heoeb954192013-08-08 20:11:23 -04006125 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimurac268e992009-01-15 13:51:13 -08006126
Li Zefan10d5ebf2013-07-08 16:00:33 -07006127 memcg_destroy_kmem(memcg);
Li Zefan465939a2013-07-08 16:00:38 -07006128 __mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006129}
6130
Daisuke Nishimura02491442010-03-10 15:22:17 -08006131#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006132/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006133#define PRECHARGE_COUNT_AT_ONCE 256
6134static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006135{
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006136 int ret = 0;
6137 int batch_count = PRECHARGE_COUNT_AT_ONCE;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006138 struct mem_cgroup *memcg = mc.to;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006139
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006140 if (mem_cgroup_is_root(memcg)) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006141 mc.precharge += count;
6142 /* we don't need css_get for root */
6143 return ret;
6144 }
6145 /* try to charge at once */
6146 if (count > 1) {
6147 struct res_counter *dummy;
6148 /*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006149 * "memcg" cannot be under rmdir() because we've already checked
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006150 * by cgroup_lock_live_cgroup() that it is not removed and we
6151 * are still under the same cgroup_mutex. So we can postpone
6152 * css_get().
6153 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006154 if (res_counter_charge(&memcg->res, PAGE_SIZE * count, &dummy))
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006155 goto one_by_one;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006156 if (do_swap_account && res_counter_charge(&memcg->memsw,
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006157 PAGE_SIZE * count, &dummy)) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006158 res_counter_uncharge(&memcg->res, PAGE_SIZE * count);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006159 goto one_by_one;
6160 }
6161 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006162 return ret;
6163 }
6164one_by_one:
6165 /* fall back to one by one charge */
6166 while (count--) {
6167 if (signal_pending(current)) {
6168 ret = -EINTR;
6169 break;
6170 }
6171 if (!batch_count--) {
6172 batch_count = PRECHARGE_COUNT_AT_ONCE;
6173 cond_resched();
6174 }
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006175 ret = __mem_cgroup_try_charge(NULL,
6176 GFP_KERNEL, 1, &memcg, false);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006177 if (ret)
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006178 /* mem_cgroup_clear_mc() will do uncharge later */
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08006179 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006180 mc.precharge++;
6181 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006182 return ret;
6183}
6184
6185/**
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006186 * get_mctgt_type - get target type of moving charge
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006187 * @vma: the vma the pte to be checked belongs
6188 * @addr: the address corresponding to the pte to be checked
6189 * @ptent: the pte to be checked
Daisuke Nishimura02491442010-03-10 15:22:17 -08006190 * @target: the pointer the target page or swap ent will be stored(can be NULL)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006191 *
6192 * Returns
6193 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
6194 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
6195 * move charge. if @target is not NULL, the page is stored in target->page
6196 * with extra refcnt got(Callers should handle it).
Daisuke Nishimura02491442010-03-10 15:22:17 -08006197 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
6198 * target for charge migration. if @target is not NULL, the entry is stored
6199 * in target->ent.
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006200 *
6201 * Called with pte lock held.
6202 */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006203union mc_target {
6204 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006205 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006206};
6207
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006208enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006209 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006210 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08006211 MC_TARGET_SWAP,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006212};
6213
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006214static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
6215 unsigned long addr, pte_t ptent)
6216{
6217 struct page *page = vm_normal_page(vma, addr, ptent);
6218
6219 if (!page || !page_mapped(page))
6220 return NULL;
6221 if (PageAnon(page)) {
6222 /* we don't move shared anon */
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006223 if (!move_anon())
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006224 return NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006225 } else if (!move_file())
6226 /* we ignore mapcount for file pages */
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006227 return NULL;
6228 if (!get_page_unless_zero(page))
6229 return NULL;
6230
6231 return page;
6232}
6233
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006234#ifdef CONFIG_SWAP
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006235static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6236 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6237{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006238 struct page *page = NULL;
6239 swp_entry_t ent = pte_to_swp_entry(ptent);
6240
6241 if (!move_anon() || non_swap_entry(ent))
6242 return NULL;
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006243 /*
6244 * Because lookup_swap_cache() updates some statistics counter,
6245 * we call find_get_page() with swapper_space directly.
6246 */
Shaohua Li33806f02013-02-22 16:34:37 -08006247 page = find_get_page(swap_address_space(ent), ent.val);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006248 if (do_swap_account)
6249 entry->val = ent.val;
6250
6251 return page;
6252}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07006253#else
6254static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
6255 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6256{
6257 return NULL;
6258}
6259#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006260
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006261static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
6262 unsigned long addr, pte_t ptent, swp_entry_t *entry)
6263{
6264 struct page *page = NULL;
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006265 struct address_space *mapping;
6266 pgoff_t pgoff;
6267
6268 if (!vma->vm_file) /* anonymous vma */
6269 return NULL;
6270 if (!move_file())
6271 return NULL;
6272
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006273 mapping = vma->vm_file->f_mapping;
6274 if (pte_none(ptent))
6275 pgoff = linear_page_index(vma, addr);
6276 else /* pte_file(ptent) is true */
6277 pgoff = pte_to_pgoff(ptent);
6278
6279 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006280 page = find_get_page(mapping, pgoff);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006281
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006282#ifdef CONFIG_SWAP
6283 /* shmem/tmpfs may report page out on swap: account for that too. */
6284 if (radix_tree_exceptional_entry(page)) {
6285 swp_entry_t swap = radix_to_swp_entry(page);
6286 if (do_swap_account)
6287 *entry = swap;
Shaohua Li33806f02013-02-22 16:34:37 -08006288 page = find_get_page(swap_address_space(swap), swap.val);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07006289 }
6290#endif
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006291 return page;
6292}
6293
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006294static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006295 unsigned long addr, pte_t ptent, union mc_target *target)
6296{
Daisuke Nishimura02491442010-03-10 15:22:17 -08006297 struct page *page = NULL;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006298 struct page_cgroup *pc;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006299 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006300 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006301
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006302 if (pte_present(ptent))
6303 page = mc_handle_present_pte(vma, addr, ptent);
6304 else if (is_swap_pte(ptent))
6305 page = mc_handle_swap_pte(vma, addr, ptent, &ent);
Daisuke Nishimura87946a72010-05-26 14:42:39 -07006306 else if (pte_none(ptent) || pte_file(ptent))
6307 page = mc_handle_file_pte(vma, addr, ptent, &ent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006308
6309 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006310 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006311 if (page) {
6312 pc = lookup_page_cgroup(page);
6313 /*
6314 * Do only loose check w/o page_cgroup lock.
6315 * mem_cgroup_move_account() checks the pc is valid or not under
6316 * the lock.
6317 */
6318 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6319 ret = MC_TARGET_PAGE;
6320 if (target)
6321 target->page = page;
6322 }
6323 if (!ret || !target)
6324 put_page(page);
6325 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07006326 /* There is a swap entry and a page doesn't exist or isn't charged */
6327 if (ent.val && !ret &&
Bob Liu9fb4b7c2012-01-12 17:18:48 -08006328 css_id(&mc.from->css) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07006329 ret = MC_TARGET_SWAP;
6330 if (target)
6331 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006332 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006333 return ret;
6334}
6335
Naoya Horiguchi12724852012-03-21 16:34:28 -07006336#ifdef CONFIG_TRANSPARENT_HUGEPAGE
6337/*
6338 * We don't consider swapping or file mapped pages because THP does not
6339 * support them for now.
6340 * Caller should make sure that pmd_trans_huge(pmd) is true.
6341 */
6342static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6343 unsigned long addr, pmd_t pmd, union mc_target *target)
6344{
6345 struct page *page = NULL;
6346 struct page_cgroup *pc;
6347 enum mc_target_type ret = MC_TARGET_NONE;
6348
6349 page = pmd_page(pmd);
6350 VM_BUG_ON(!page || !PageHead(page));
6351 if (!move_anon())
6352 return ret;
6353 pc = lookup_page_cgroup(page);
6354 if (PageCgroupUsed(pc) && pc->mem_cgroup == mc.from) {
6355 ret = MC_TARGET_PAGE;
6356 if (target) {
6357 get_page(page);
6358 target->page = page;
6359 }
6360 }
6361 return ret;
6362}
6363#else
6364static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
6365 unsigned long addr, pmd_t pmd, union mc_target *target)
6366{
6367 return MC_TARGET_NONE;
6368}
6369#endif
6370
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006371static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
6372 unsigned long addr, unsigned long end,
6373 struct mm_walk *walk)
6374{
6375 struct vm_area_struct *vma = walk->private;
6376 pte_t *pte;
6377 spinlock_t *ptl;
6378
Naoya Horiguchi12724852012-03-21 16:34:28 -07006379 if (pmd_trans_huge_lock(pmd, vma) == 1) {
6380 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
6381 mc.precharge += HPAGE_PMD_NR;
6382 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006383 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006384 }
Dave Hansen03319322011-03-22 16:32:56 -07006385
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006386 if (pmd_trans_unstable(pmd))
6387 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006388 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6389 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006390 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006391 mc.precharge++; /* increment precharge temporarily */
6392 pte_unmap_unlock(pte - 1, ptl);
6393 cond_resched();
6394
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006395 return 0;
6396}
6397
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006398static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
6399{
6400 unsigned long precharge;
6401 struct vm_area_struct *vma;
6402
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006403 down_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006404 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6405 struct mm_walk mem_cgroup_count_precharge_walk = {
6406 .pmd_entry = mem_cgroup_count_precharge_pte_range,
6407 .mm = mm,
6408 .private = vma,
6409 };
6410 if (is_vm_hugetlb_page(vma))
6411 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006412 walk_page_range(vma->vm_start, vma->vm_end,
6413 &mem_cgroup_count_precharge_walk);
6414 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006415 up_read(&mm->mmap_sem);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006416
6417 precharge = mc.precharge;
6418 mc.precharge = 0;
6419
6420 return precharge;
6421}
6422
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006423static int mem_cgroup_precharge_mc(struct mm_struct *mm)
6424{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006425 unsigned long precharge = mem_cgroup_count_precharge(mm);
6426
6427 VM_BUG_ON(mc.moving_task);
6428 mc.moving_task = current;
6429 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006430}
6431
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006432/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
6433static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006434{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006435 struct mem_cgroup *from = mc.from;
6436 struct mem_cgroup *to = mc.to;
Li Zefan40503772013-07-08 16:00:34 -07006437 int i;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006438
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006439 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006440 if (mc.precharge) {
6441 __mem_cgroup_cancel_charge(mc.to, mc.precharge);
6442 mc.precharge = 0;
6443 }
6444 /*
6445 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
6446 * we must uncharge here.
6447 */
6448 if (mc.moved_charge) {
6449 __mem_cgroup_cancel_charge(mc.from, mc.moved_charge);
6450 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006451 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006452 /* we must fixup refcnts and charges */
6453 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006454 /* uncharge swap account from the old cgroup */
6455 if (!mem_cgroup_is_root(mc.from))
6456 res_counter_uncharge(&mc.from->memsw,
6457 PAGE_SIZE * mc.moved_swap);
Li Zefan40503772013-07-08 16:00:34 -07006458
6459 for (i = 0; i < mc.moved_swap; i++)
6460 css_put(&mc.from->css);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006461
6462 if (!mem_cgroup_is_root(mc.to)) {
6463 /*
6464 * we charged both to->res and to->memsw, so we should
6465 * uncharge to->res.
6466 */
6467 res_counter_uncharge(&mc.to->res,
6468 PAGE_SIZE * mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006469 }
Li Zefan40503772013-07-08 16:00:34 -07006470 /* we've already done css_get(mc.to) */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006471 mc.moved_swap = 0;
6472 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006473 memcg_oom_recover(from);
6474 memcg_oom_recover(to);
6475 wake_up_all(&mc.waitq);
6476}
6477
6478static void mem_cgroup_clear_mc(void)
6479{
6480 struct mem_cgroup *from = mc.from;
6481
6482 /*
6483 * we must clear moving_task before waking up waiters at the end of
6484 * task migration.
6485 */
6486 mc.moving_task = NULL;
6487 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006488 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006489 mc.from = NULL;
6490 mc.to = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006491 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006492 mem_cgroup_end_move(from);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006493}
6494
Tejun Heoeb954192013-08-08 20:11:23 -04006495static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006496 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006497{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006498 struct task_struct *p = cgroup_taskset_first(tset);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006499 int ret = 0;
Tejun Heoeb954192013-08-08 20:11:23 -04006500 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Glauber Costaee5e8472013-02-22 16:34:50 -08006501 unsigned long move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006502
Glauber Costaee5e8472013-02-22 16:34:50 -08006503 /*
6504 * We are now commited to this value whatever it is. Changes in this
6505 * tunable will only affect upcoming migrations, not the current one.
6506 * So we need to save it, and keep it going.
6507 */
6508 move_charge_at_immigrate = memcg->move_charge_at_immigrate;
6509 if (move_charge_at_immigrate) {
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006510 struct mm_struct *mm;
6511 struct mem_cgroup *from = mem_cgroup_from_task(p);
6512
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006513 VM_BUG_ON(from == memcg);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006514
6515 mm = get_task_mm(p);
6516 if (!mm)
6517 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006518 /* We move charges only when we move a owner of the mm */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006519 if (mm->owner == p) {
6520 VM_BUG_ON(mc.from);
6521 VM_BUG_ON(mc.to);
6522 VM_BUG_ON(mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006523 VM_BUG_ON(mc.moved_charge);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006524 VM_BUG_ON(mc.moved_swap);
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07006525 mem_cgroup_start_move(from);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006526 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006527 mc.from = from;
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07006528 mc.to = memcg;
Glauber Costaee5e8472013-02-22 16:34:50 -08006529 mc.immigrate_flags = move_charge_at_immigrate;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07006530 spin_unlock(&mc.lock);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006531 /* We set mc.moving_task later */
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006532
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006533 ret = mem_cgroup_precharge_mc(mm);
6534 if (ret)
6535 mem_cgroup_clear_mc();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006536 }
6537 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006538 }
6539 return ret;
6540}
6541
Tejun Heoeb954192013-08-08 20:11:23 -04006542static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006543 struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006544{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006545 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006546}
6547
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006548static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
6549 unsigned long addr, unsigned long end,
6550 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006551{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006552 int ret = 0;
6553 struct vm_area_struct *vma = walk->private;
6554 pte_t *pte;
6555 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006556 enum mc_target_type target_type;
6557 union mc_target target;
6558 struct page *page;
6559 struct page_cgroup *pc;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006560
Naoya Horiguchi12724852012-03-21 16:34:28 -07006561 /*
6562 * We don't take compound_lock() here but no race with splitting thp
6563 * happens because:
6564 * - if pmd_trans_huge_lock() returns 1, the relevant thp is not
6565 * under splitting, which means there's no concurrent thp split,
6566 * - if another thread runs into split_huge_page() just after we
6567 * entered this if-block, the thread must wait for page table lock
6568 * to be unlocked in __split_huge_page_splitting(), where the main
6569 * part of thp split is not executed yet.
6570 */
6571 if (pmd_trans_huge_lock(pmd, vma) == 1) {
Hugh Dickins62ade862012-05-18 11:28:34 -07006572 if (mc.precharge < HPAGE_PMD_NR) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006573 spin_unlock(&vma->vm_mm->page_table_lock);
6574 return 0;
6575 }
6576 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6577 if (target_type == MC_TARGET_PAGE) {
6578 page = target.page;
6579 if (!isolate_lru_page(page)) {
6580 pc = lookup_page_cgroup(page);
6581 if (!mem_cgroup_move_account(page, HPAGE_PMD_NR,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006582 pc, mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006583 mc.precharge -= HPAGE_PMD_NR;
6584 mc.moved_charge += HPAGE_PMD_NR;
6585 }
6586 putback_lru_page(page);
6587 }
6588 put_page(page);
6589 }
6590 spin_unlock(&vma->vm_mm->page_table_lock);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006591 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006592 }
6593
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006594 if (pmd_trans_unstable(pmd))
6595 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006596retry:
6597 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6598 for (; addr != end; addr += PAGE_SIZE) {
6599 pte_t ptent = *(pte++);
Daisuke Nishimura02491442010-03-10 15:22:17 -08006600 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006601
6602 if (!mc.precharge)
6603 break;
6604
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006605 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006606 case MC_TARGET_PAGE:
6607 page = target.page;
6608 if (isolate_lru_page(page))
6609 goto put;
6610 pc = lookup_page_cgroup(page);
Johannes Weiner7ec99d62011-03-23 16:42:36 -07006611 if (!mem_cgroup_move_account(page, 1, pc,
KAMEZAWA Hiroyuki2f3479b2012-05-29 15:07:04 -07006612 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006613 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006614 /* we uncharge from mc.from later. */
6615 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006616 }
6617 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006618put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006619 put_page(page);
6620 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006621 case MC_TARGET_SWAP:
6622 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006623 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006624 mc.precharge--;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006625 /* we fixup refcnts and charges later. */
6626 mc.moved_swap++;
6627 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006628 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006629 default:
6630 break;
6631 }
6632 }
6633 pte_unmap_unlock(pte - 1, ptl);
6634 cond_resched();
6635
6636 if (addr != end) {
6637 /*
6638 * We have consumed all precharges we got in can_attach().
6639 * We try charge one by one, but don't do any additional
6640 * charges to mc.to if we have failed in charge once in attach()
6641 * phase.
6642 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006643 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006644 if (!ret)
6645 goto retry;
6646 }
6647
6648 return ret;
6649}
6650
6651static void mem_cgroup_move_charge(struct mm_struct *mm)
6652{
6653 struct vm_area_struct *vma;
6654
6655 lru_add_drain_all();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006656retry:
6657 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
6658 /*
6659 * Someone who are holding the mmap_sem might be waiting in
6660 * waitq. So we cancel all extra charges, wake up all waiters,
6661 * and retry. Because we cancel precharges, we might not be able
6662 * to move enough charges, but moving charge is a best-effort
6663 * feature anyway, so it wouldn't be a big problem.
6664 */
6665 __mem_cgroup_clear_mc();
6666 cond_resched();
6667 goto retry;
6668 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006669 for (vma = mm->mmap; vma; vma = vma->vm_next) {
6670 int ret;
6671 struct mm_walk mem_cgroup_move_charge_walk = {
6672 .pmd_entry = mem_cgroup_move_charge_pte_range,
6673 .mm = mm,
6674 .private = vma,
6675 };
6676 if (is_vm_hugetlb_page(vma))
6677 continue;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006678 ret = walk_page_range(vma->vm_start, vma->vm_end,
6679 &mem_cgroup_move_charge_walk);
6680 if (ret)
6681 /*
6682 * means we have consumed all precharges and failed in
6683 * doing additional charge. Just abandon here.
6684 */
6685 break;
6686 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006687 up_read(&mm->mmap_sem);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006688}
6689
Tejun Heoeb954192013-08-08 20:11:23 -04006690static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006691 struct cgroup_taskset *tset)
Balbir Singh67e465a2008-02-07 00:13:54 -08006692{
Tejun Heo2f7ee562011-12-12 18:12:21 -08006693 struct task_struct *p = cgroup_taskset_first(tset);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006694 struct mm_struct *mm = get_task_mm(p);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006695
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006696 if (mm) {
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006697 if (mc.to)
6698 mem_cgroup_move_charge(mm);
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006699 mmput(mm);
6700 }
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006701 if (mc.to)
6702 mem_cgroup_clear_mc();
Balbir Singh67e465a2008-02-07 00:13:54 -08006703}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006704#else /* !CONFIG_MMU */
Tejun Heoeb954192013-08-08 20:11:23 -04006705static int mem_cgroup_can_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006706 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006707{
6708 return 0;
6709}
Tejun Heoeb954192013-08-08 20:11:23 -04006710static void mem_cgroup_cancel_attach(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006711 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006712{
6713}
Tejun Heoeb954192013-08-08 20:11:23 -04006714static void mem_cgroup_move_task(struct cgroup_subsys_state *css,
Li Zefan761b3ef2012-01-31 13:47:36 +08006715 struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006716{
6717}
6718#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006719
Tejun Heof00baae2013-04-15 13:41:15 -07006720/*
6721 * Cgroup retains root cgroups across [un]mount cycles making it necessary
6722 * to verify sane_behavior flag on each mount attempt.
6723 */
Tejun Heoeb954192013-08-08 20:11:23 -04006724static void mem_cgroup_bind(struct cgroup_subsys_state *root_css)
Tejun Heof00baae2013-04-15 13:41:15 -07006725{
6726 /*
6727 * use_hierarchy is forced with sane_behavior. cgroup core
6728 * guarantees that @root doesn't have any children, so turning it
6729 * on for the root memcg is enough.
6730 */
Tejun Heoeb954192013-08-08 20:11:23 -04006731 if (cgroup_sane_behavior(root_css->cgroup))
6732 mem_cgroup_from_css(root_css)->use_hierarchy = true;
Tejun Heof00baae2013-04-15 13:41:15 -07006733}
6734
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006735struct cgroup_subsys mem_cgroup_subsys = {
6736 .name = "memory",
6737 .subsys_id = mem_cgroup_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08006738 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006739 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006740 .css_offline = mem_cgroup_css_offline,
6741 .css_free = mem_cgroup_css_free,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006742 .can_attach = mem_cgroup_can_attach,
6743 .cancel_attach = mem_cgroup_cancel_attach,
Balbir Singh67e465a2008-02-07 00:13:54 -08006744 .attach = mem_cgroup_move_task,
Tejun Heof00baae2013-04-15 13:41:15 -07006745 .bind = mem_cgroup_bind,
Tejun Heo6bc10342012-04-01 12:09:55 -07006746 .base_cftypes = mem_cgroup_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006747 .early_init = 0,
KAMEZAWA Hiroyuki04046e12009-04-02 16:57:33 -07006748 .use_id = 1,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006749};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006750
Andrew Mortonc255a452012-07-31 16:43:02 -07006751#ifdef CONFIG_MEMCG_SWAP
Michal Hockoa42c3902010-11-24 12:57:08 -08006752static int __init enable_swap_account(char *s)
6753{
Michal Hockoa2c89902011-05-24 17:12:50 -07006754 if (!strcmp(s, "1"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006755 really_do_swap_account = 1;
Michal Hockoa2c89902011-05-24 17:12:50 -07006756 else if (!strcmp(s, "0"))
Michal Hockoa42c3902010-11-24 12:57:08 -08006757 really_do_swap_account = 0;
6758 return 1;
6759}
Michal Hockoa2c89902011-05-24 17:12:50 -07006760__setup("swapaccount=", enable_swap_account);
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006761
Michal Hocko2d110852013-02-22 16:34:43 -08006762static void __init memsw_file_init(void)
6763{
Michal Hocko6acc8b02013-02-22 16:34:45 -08006764 WARN_ON(cgroup_add_cftypes(&mem_cgroup_subsys, memsw_cgroup_files));
Michal Hocko2d110852013-02-22 16:34:43 -08006765}
Michal Hocko6acc8b02013-02-22 16:34:45 -08006766
6767static void __init enable_swap_cgroup(void)
6768{
6769 if (!mem_cgroup_disabled() && really_do_swap_account) {
6770 do_swap_account = 1;
6771 memsw_file_init();
6772 }
6773}
6774
Michal Hocko2d110852013-02-22 16:34:43 -08006775#else
Michal Hocko6acc8b02013-02-22 16:34:45 -08006776static void __init enable_swap_cgroup(void)
Michal Hocko2d110852013-02-22 16:34:43 -08006777{
6778}
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006779#endif
Michal Hocko2d110852013-02-22 16:34:43 -08006780
6781/*
Michal Hocko10813122013-02-22 16:35:41 -08006782 * subsys_initcall() for memory controller.
6783 *
6784 * Some parts like hotcpu_notifier() have to be initialized from this context
6785 * because of lock dependencies (cgroup_lock -> cpu hotplug) but basically
6786 * everything that doesn't depend on a specific mem_cgroup structure should
6787 * be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08006788 */
6789static int __init mem_cgroup_init(void)
6790{
6791 hotcpu_notifier(memcg_cpu_hotplug_callback, 0);
Michal Hocko6acc8b02013-02-22 16:34:45 -08006792 enable_swap_cgroup();
Michal Hockoe4777492013-02-22 16:35:40 -08006793 memcg_stock_init();
Michal Hocko2d110852013-02-22 16:34:43 -08006794 return 0;
6795}
6796subsys_initcall(mem_cgroup_init);