blob: ecc82b37c4ccf00fb863ecf6981de19bbccec52a [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.h - 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 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -08009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
19
20#ifndef _LINUX_MEMCONTROL_H
21#define _LINUX_MEMCONTROL_H
Hirokazu Takahashif8d665422009-01-07 18:08:02 -080022#include <linux/cgroup.h>
Ying Han456f9982011-05-26 16:25:38 -070023#include <linux/vm_event_item.h>
Glauber Costa7ae1e1d2012-12-18 14:21:56 -080024#include <linux/hardirq.h>
Glauber Costaa8964b92012-12-18 14:22:09 -080025#include <linux/jump_label.h>
Ying Han456f9982011-05-26 16:25:38 -070026
Pavel Emelianov78fb7462008-02-07 00:13:51 -080027struct mem_cgroup;
28struct page_cgroup;
Balbir Singh8697d332008-02-07 00:13:59 -080029struct page;
30struct mm_struct;
Glauber Costa2633d7a2012-12-18 14:22:34 -080031struct kmem_cache;
Pavel Emelianov78fb7462008-02-07 00:13:51 -080032
Sha Zhengju68b48762013-09-12 15:13:50 -070033/*
34 * The corresponding mem_cgroup_stat_names is defined in mm/memcontrol.c,
35 * These two lists should keep in accord with each other.
36 */
37enum mem_cgroup_stat_index {
38 /*
39 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
40 */
41 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
42 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
43 MEM_CGROUP_STAT_RSS_HUGE, /* # of pages charged as anon huge */
44 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
Sha Zhengju3ea67d02013-09-12 15:13:53 -070045 MEM_CGROUP_STAT_WRITEBACK, /* # of pages under writeback */
Sha Zhengju68b48762013-09-12 15:13:50 -070046 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
47 MEM_CGROUP_STAT_NSTATS,
Greg Thelen2a7106f2011-01-13 15:47:37 -080048};
49
Johannes Weiner56600482012-01-12 17:17:59 -080050struct mem_cgroup_reclaim_cookie {
51 struct zone *zone;
52 int priority;
53 unsigned int generation;
54};
55
Andrew Mortonc255a452012-07-31 16:43:02 -070056#ifdef CONFIG_MEMCG
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -080057/*
58 * All "charge" functions with gfp_mask should use GFP_KERNEL or
59 * (gfp_mask & GFP_RECLAIM_MASK). In current implementatin, memcg doesn't
60 * alloc memory but reclaims memory from all available zones. So, "where I want
61 * memory from" bits of gfp_mask has no meaning. So any bits of that field is
62 * available but adding a rule is better. charge functions' gfp_mask should
63 * be set to GFP_KERNEL or gfp_mask & GFP_RECLAIM_MASK for avoiding ambiguous
64 * codes.
65 * (Of course, if memcg does memory allocation in future, GFP_KERNEL is sane.)
66 */
Pavel Emelianov78fb7462008-02-07 00:13:51 -080067
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -080068extern int mem_cgroup_newpage_charge(struct page *page, struct mm_struct *mm,
Balbir Singhe1a1cd52008-02-07 00:14:02 -080069 gfp_t gfp_mask);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -080070/* for swap handling */
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080071extern int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
Johannes Weiner72835c82012-01-12 17:18:32 -080072 struct page *page, gfp_t mask, struct mem_cgroup **memcgp);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -080073extern void mem_cgroup_commit_charge_swapin(struct page *page,
Johannes Weiner72835c82012-01-12 17:18:32 -080074 struct mem_cgroup *memcg);
75extern void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -080076
Hugh Dickins82895462008-03-04 14:29:08 -080077extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
78 gfp_t gfp_mask);
Johannes Weiner925b7672012-01-12 17:18:15 -080079
80struct lruvec *mem_cgroup_zone_lruvec(struct zone *, struct mem_cgroup *);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070081struct lruvec *mem_cgroup_page_lruvec(struct page *, struct zone *);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -080082
83/* For coalescing uncharge for reducing memcg' overhead*/
84extern void mem_cgroup_uncharge_start(void);
85extern void mem_cgroup_uncharge_end(void);
86
Balbir Singh3c541e12008-02-07 00:14:41 -080087extern void mem_cgroup_uncharge_page(struct page *page);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -070088extern void mem_cgroup_uncharge_cache_page(struct page *page);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -070089
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070090bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
91 struct mem_cgroup *memcg);
David Rientjesffbdccf2013-07-03 15:01:23 -070092bool task_in_mem_cgroup(struct task_struct *task,
93 const struct mem_cgroup *memcg);
David Rientjes3062fc62008-02-07 00:14:03 -080094
Wu Fengguange42d9d52009-12-16 12:19:59 +010095extern struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page);
Balbir Singhcf475ad2008-04-29 01:00:16 -070096extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070097extern struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm);
Balbir Singhcf475ad2008-04-29 01:00:16 -070098
Glauber Costae1aab162011-12-11 21:47:03 +000099extern struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg);
Tejun Heo182446d2013-08-08 20:11:24 -0400100extern struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css);
Glauber Costae1aab162011-12-11 21:47:03 +0000101
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800102static inline
Johannes Weiner587af302012-10-08 16:34:12 -0700103bool mm_match_cgroup(const struct mm_struct *mm, const struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800104{
Johannes Weiner587af302012-10-08 16:34:12 -0700105 struct mem_cgroup *task_memcg;
106 bool match;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700107
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800108 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -0700109 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
110 match = __mem_cgroup_same_or_subtree(memcg, task_memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800111 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700112 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800113}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800114
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700115extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg);
Wu Fengguangd3242362009-12-16 12:19:59 +0100116
Johannes Weiner0030f532012-07-31 16:45:25 -0700117extern void
118mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
119 struct mem_cgroup **memcgp);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700120extern void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -0800121 struct page *oldpage, struct page *newpage, bool migration_ok);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800122
Andrew Morton694fbc02013-09-24 15:27:37 -0700123struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
124 struct mem_cgroup *,
125 struct mem_cgroup_reclaim_cookie *);
Johannes Weiner56600482012-01-12 17:17:59 -0800126void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
127
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800128/*
129 * For memory reclaim.
130 */
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700131int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec);
Ying Han889976d2011-05-26 16:25:33 -0700132int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700133unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700134void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int);
Balbir Singhe2224322009-04-02 16:57:39 -0700135extern void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
136 struct task_struct *p);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -0800137extern void mem_cgroup_replace_page_cache(struct page *oldpage,
138 struct page *newpage);
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800139
Johannes Weiner519e5242013-09-12 15:13:42 -0700140/**
141 * mem_cgroup_toggle_oom - toggle the memcg OOM killer for the current task
142 * @new: true to enable, false to disable
143 *
144 * Toggle whether a failed memcg charge should invoke the OOM killer
145 * or just return -ENOMEM. Returns the previous toggle state.
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700146 *
147 * NOTE: Any path that enables the OOM killer before charging must
148 * call mem_cgroup_oom_synchronize() afterward to finalize the
149 * OOM handling and clean up.
Johannes Weiner519e5242013-09-12 15:13:42 -0700150 */
151static inline bool mem_cgroup_toggle_oom(bool new)
152{
153 bool old;
154
155 old = current->memcg_oom.may_oom;
156 current->memcg_oom.may_oom = new;
157
158 return old;
159}
160
161static inline void mem_cgroup_enable_oom(void)
162{
163 bool old = mem_cgroup_toggle_oom(true);
164
165 WARN_ON(old == true);
166}
167
168static inline void mem_cgroup_disable_oom(void)
169{
170 bool old = mem_cgroup_toggle_oom(false);
171
172 WARN_ON(old == false);
173}
174
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700175static inline bool task_in_memcg_oom(struct task_struct *p)
176{
177 return p->memcg_oom.in_memcg_oom;
178}
179
180bool mem_cgroup_oom_synchronize(void);
181
Andrew Mortonc255a452012-07-31 16:43:02 -0700182#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -0800183extern int do_swap_account;
184#endif
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800185
186static inline bool mem_cgroup_disabled(void)
187{
188 if (mem_cgroup_subsys.disabled)
189 return true;
190 return false;
191}
192
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700193void __mem_cgroup_begin_update_page_stat(struct page *page, bool *locked,
194 unsigned long *flags);
195
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -0700196extern atomic_t memcg_moving;
197
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700198static inline void mem_cgroup_begin_update_page_stat(struct page *page,
199 bool *locked, unsigned long *flags)
200{
201 if (mem_cgroup_disabled())
202 return;
203 rcu_read_lock();
204 *locked = false;
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -0700205 if (atomic_read(&memcg_moving))
206 __mem_cgroup_begin_update_page_stat(page, locked, flags);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700207}
208
209void __mem_cgroup_end_update_page_stat(struct page *page,
210 unsigned long *flags);
211static inline void mem_cgroup_end_update_page_stat(struct page *page,
212 bool *locked, unsigned long *flags)
213{
214 if (mem_cgroup_disabled())
215 return;
216 if (*locked)
217 __mem_cgroup_end_update_page_stat(page, flags);
218 rcu_read_unlock();
219}
220
Greg Thelen2a7106f2011-01-13 15:47:37 -0800221void mem_cgroup_update_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700222 enum mem_cgroup_stat_index idx,
Greg Thelen2a7106f2011-01-13 15:47:37 -0800223 int val);
224
225static inline void mem_cgroup_inc_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700226 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800227{
228 mem_cgroup_update_page_stat(page, idx, 1);
229}
230
231static inline void mem_cgroup_dec_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700232 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800233{
234 mem_cgroup_update_page_stat(page, idx, -1);
235}
236
Andrew Morton0608f432013-09-24 15:27:41 -0700237unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
238 gfp_t gfp_mask,
239 unsigned long *total_scanned);
David Rientjesa63d83f2010-08-09 17:19:46 -0700240
David Rientjes68ae5642012-12-12 13:51:57 -0800241void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx);
242static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
243 enum vm_event_item idx)
244{
245 if (mem_cgroup_disabled())
246 return;
247 __mem_cgroup_count_vm_event(mm, idx);
248}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800249#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800250void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800251#endif
252
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700253#ifdef CONFIG_DEBUG_VM
254bool mem_cgroup_bad_page_check(struct page *page);
255void mem_cgroup_print_bad_page(struct page *page);
256#endif
Andrew Mortonc255a452012-07-31 16:43:02 -0700257#else /* CONFIG_MEMCG */
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800258struct mem_cgroup;
259
260static inline int mem_cgroup_newpage_charge(struct page *page,
Hugh Dickins82895462008-03-04 14:29:08 -0800261 struct mm_struct *mm, gfp_t gfp_mask)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800262{
263 return 0;
264}
265
Hugh Dickins82895462008-03-04 14:29:08 -0800266static inline int mem_cgroup_cache_charge(struct page *page,
267 struct mm_struct *mm, gfp_t gfp_mask)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800268{
Hugh Dickins82895462008-03-04 14:29:08 -0800269 return 0;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800270}
271
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800272static inline int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
Johannes Weiner72835c82012-01-12 17:18:32 -0800273 struct page *page, gfp_t gfp_mask, struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800274{
275 return 0;
276}
277
278static inline void mem_cgroup_commit_charge_swapin(struct page *page,
Johannes Weiner72835c82012-01-12 17:18:32 -0800279 struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800280{
281}
282
Johannes Weiner72835c82012-01-12 17:18:32 -0800283static inline void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800284{
285}
286
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800287static inline void mem_cgroup_uncharge_start(void)
288{
289}
290
291static inline void mem_cgroup_uncharge_end(void)
292{
293}
294
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800295static inline void mem_cgroup_uncharge_page(struct page *page)
296{
297}
298
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700299static inline void mem_cgroup_uncharge_cache_page(struct page *page)
300{
301}
302
Johannes Weiner925b7672012-01-12 17:18:15 -0800303static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
304 struct mem_cgroup *memcg)
305{
306 return &zone->lruvec;
307}
308
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700309static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
310 struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -0700311{
Johannes Weiner925b7672012-01-12 17:18:15 -0800312 return &zone->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800313}
314
Wu Fengguange42d9d52009-12-16 12:19:59 +0100315static inline struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
316{
317 return NULL;
318}
319
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700320static inline struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
321{
322 return NULL;
323}
324
Johannes Weiner587af302012-10-08 16:34:12 -0700325static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700326 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800327{
Johannes Weiner587af302012-10-08 16:34:12 -0700328 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800329}
330
David Rientjesffbdccf2013-07-03 15:01:23 -0700331static inline bool task_in_mem_cgroup(struct task_struct *task,
332 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800333{
David Rientjesffbdccf2013-07-03 15:01:23 -0700334 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800335}
336
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700337static inline struct cgroup_subsys_state
338 *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100339{
340 return NULL;
341}
342
Johannes Weiner0030f532012-07-31 16:45:25 -0700343static inline void
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -0700344mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
Johannes Weiner0030f532012-07-31 16:45:25 -0700345 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800346{
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800347}
348
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700349static inline void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -0800350 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800351{
352}
353
Johannes Weiner56600482012-01-12 17:17:59 -0800354static inline struct mem_cgroup *
355mem_cgroup_iter(struct mem_cgroup *root,
356 struct mem_cgroup *prev,
357 struct mem_cgroup_reclaim_cookie *reclaim)
358{
359 return NULL;
360}
361
362static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
363 struct mem_cgroup *prev)
364{
365}
366
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800367static inline bool mem_cgroup_disabled(void)
368{
369 return true;
370}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800371
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800372static inline int
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700373mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800374{
375 return 1;
376}
377
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800378static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700379mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800380{
381 return 0;
382}
383
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700384static inline void
385mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
386 int increment)
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800387{
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800388}
389
Balbir Singhe2224322009-04-02 16:57:39 -0700390static inline void
391mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
392{
393}
394
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700395static inline void mem_cgroup_begin_update_page_stat(struct page *page,
396 bool *locked, unsigned long *flags)
397{
398}
399
400static inline void mem_cgroup_end_update_page_stat(struct page *page,
401 bool *locked, unsigned long *flags)
402{
403}
404
Johannes Weiner519e5242013-09-12 15:13:42 -0700405static inline bool mem_cgroup_toggle_oom(bool new)
406{
407 return false;
408}
409
410static inline void mem_cgroup_enable_oom(void)
411{
412}
413
414static inline void mem_cgroup_disable_oom(void)
415{
416}
417
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700418static inline bool task_in_memcg_oom(struct task_struct *p)
419{
420 return false;
421}
422
423static inline bool mem_cgroup_oom_synchronize(void)
424{
425 return false;
426}
427
Greg Thelen2a7106f2011-01-13 15:47:37 -0800428static inline void mem_cgroup_inc_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700429 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800430{
431}
432
433static inline void mem_cgroup_dec_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700434 enum mem_cgroup_stat_index idx)
Balbir Singhd69b0422009-06-17 16:26:34 -0700435{
436}
437
Balbir Singh4e416952009-09-23 15:56:39 -0700438static inline
Andrew Morton0608f432013-09-24 15:27:41 -0700439unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
440 gfp_t gfp_mask,
441 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -0700442{
Andrew Morton0608f432013-09-24 15:27:41 -0700443 return 0;
Balbir Singh4e416952009-09-23 15:56:39 -0700444}
445
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800446static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800447{
448}
449
Ying Han456f9982011-05-26 16:25:38 -0700450static inline
451void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
452{
453}
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -0800454static inline void mem_cgroup_replace_page_cache(struct page *oldpage,
455 struct page *newpage)
456{
457}
Andrew Mortonc255a452012-07-31 16:43:02 -0700458#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800459
Andrew Mortonc255a452012-07-31 16:43:02 -0700460#if !defined(CONFIG_MEMCG) || !defined(CONFIG_DEBUG_VM)
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700461static inline bool
462mem_cgroup_bad_page_check(struct page *page)
463{
464 return false;
465}
466
467static inline void
468mem_cgroup_print_bad_page(struct page *page)
469{
470}
471#endif
472
Glauber Costae1aab162011-12-11 21:47:03 +0000473enum {
474 UNDER_LIMIT,
475 SOFT_LIMIT,
476 OVER_LIMIT,
477};
478
479struct sock;
David Rientjescd590852012-10-10 15:54:08 -0700480#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000481void sock_update_memcg(struct sock *sk);
482void sock_release_memcg(struct sock *sk);
483#else
484static inline void sock_update_memcg(struct sock *sk)
485{
486}
487static inline void sock_release_memcg(struct sock *sk)
488{
489}
David Rientjescd590852012-10-10 15:54:08 -0700490#endif /* CONFIG_INET && CONFIG_MEMCG_KMEM */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800491
492#ifdef CONFIG_MEMCG_KMEM
Glauber Costaa8964b92012-12-18 14:22:09 -0800493extern struct static_key memcg_kmem_enabled_key;
Glauber Costa749c5412012-12-18 14:23:01 -0800494
495extern int memcg_limited_groups_array_size;
Glauber Costaebe945c2012-12-18 14:23:10 -0800496
497/*
498 * Helper macro to loop through all memcg-specific caches. Callers must still
499 * check if the cache is valid (it is either valid or NULL).
500 * the slab_mutex must be held when looping through those caches
501 */
Glauber Costa749c5412012-12-18 14:23:01 -0800502#define for_each_memcg_cache_index(_idx) \
Glauber Costa91c777d2013-02-04 14:28:49 -0800503 for ((_idx) = 0; (_idx) < memcg_limited_groups_array_size; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -0800504
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800505static inline bool memcg_kmem_enabled(void)
506{
Glauber Costaa8964b92012-12-18 14:22:09 -0800507 return static_key_false(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800508}
509
510/*
511 * In general, we'll do everything in our power to not incur in any overhead
512 * for non-memcg users for the kmem functions. Not even a function call, if we
513 * can avoid it.
514 *
515 * Therefore, we'll inline all those functions so that in the best case, we'll
516 * see that kmemcg is off for everybody and proceed quickly. If it is on,
517 * we'll still do most of the flag checking inline. We check a lot of
518 * conditions, but because they are pretty simple, they are expected to be
519 * fast.
520 */
521bool __memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg,
522 int order);
523void __memcg_kmem_commit_charge(struct page *page,
524 struct mem_cgroup *memcg, int order);
525void __memcg_kmem_uncharge_pages(struct page *page, int order);
526
Glauber Costa2633d7a2012-12-18 14:22:34 -0800527int memcg_cache_id(struct mem_cgroup *memcg);
Glauber Costa943a4512012-12-18 14:23:03 -0800528int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
529 struct kmem_cache *root_cache);
Glauber Costa2633d7a2012-12-18 14:22:34 -0800530void memcg_release_cache(struct kmem_cache *cachep);
531void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep);
532
Glauber Costa55007d82012-12-18 14:22:38 -0800533int memcg_update_cache_size(struct kmem_cache *s, int num_groups);
534void memcg_update_array_size(int num_groups);
Glauber Costad7f25f82012-12-18 14:22:40 -0800535
536struct kmem_cache *
537__memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp);
538
Glauber Costa1f458cb2012-12-18 14:22:50 -0800539void mem_cgroup_destroy_cache(struct kmem_cache *cachep);
Glauber Costa7cf27982012-12-18 14:22:55 -0800540void kmem_cache_destroy_memcg_children(struct kmem_cache *s);
Glauber Costa1f458cb2012-12-18 14:22:50 -0800541
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800542/**
543 * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed.
544 * @gfp: the gfp allocation flags.
545 * @memcg: a pointer to the memcg this was charged against.
546 * @order: allocation order.
547 *
548 * returns true if the memcg where the current task belongs can hold this
549 * allocation.
550 *
551 * We return true automatically if this allocation is not to be accounted to
552 * any memcg.
553 */
554static inline bool
555memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
556{
557 if (!memcg_kmem_enabled())
558 return true;
559
560 /*
561 * __GFP_NOFAIL allocations will move on even if charging is not
562 * possible. Therefore we don't even try, and have this allocation
563 * unaccounted. We could in theory charge it with
564 * res_counter_charge_nofail, but we hope those allocations are rare,
565 * and won't be worth the trouble.
566 */
567 if (!(gfp & __GFP_KMEMCG) || (gfp & __GFP_NOFAIL))
568 return true;
569 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
570 return true;
571
572 /* If the test is dying, just let it go. */
573 if (unlikely(fatal_signal_pending(current)))
574 return true;
575
576 return __memcg_kmem_newpage_charge(gfp, memcg, order);
577}
578
579/**
580 * memcg_kmem_uncharge_pages: uncharge pages from memcg
581 * @page: pointer to struct page being freed
582 * @order: allocation order.
583 *
584 * there is no need to specify memcg here, since it is embedded in page_cgroup
585 */
586static inline void
587memcg_kmem_uncharge_pages(struct page *page, int order)
588{
589 if (memcg_kmem_enabled())
590 __memcg_kmem_uncharge_pages(page, order);
591}
592
593/**
594 * memcg_kmem_commit_charge: embeds correct memcg in a page
595 * @page: pointer to struct page recently allocated
596 * @memcg: the memcg structure we charged against
597 * @order: allocation order.
598 *
599 * Needs to be called after memcg_kmem_newpage_charge, regardless of success or
600 * failure of the allocation. if @page is NULL, this function will revert the
601 * charges. Otherwise, it will commit the memcg given by @memcg to the
602 * corresponding page_cgroup.
603 */
604static inline void
605memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
606{
607 if (memcg_kmem_enabled() && memcg)
608 __memcg_kmem_commit_charge(page, memcg, order);
609}
610
Glauber Costad7f25f82012-12-18 14:22:40 -0800611/**
612 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
613 * @cachep: the original global kmem cache
614 * @gfp: allocation flags.
615 *
616 * This function assumes that the task allocating, which determines the memcg
617 * in the page allocator, belongs to the same cgroup throughout the whole
618 * process. Misacounting can happen if the task calls memcg_kmem_get_cache()
619 * while belonging to a cgroup, and later on changes. This is considered
620 * acceptable, and should only happen upon task migration.
621 *
622 * Before the cache is created by the memcg core, there is also a possible
623 * imbalance: the task belongs to a memcg, but the cache being allocated from
624 * is the global cache, since the child cache is not yet guaranteed to be
625 * ready. This case is also fine, since in this case the GFP_KMEMCG will not be
626 * passed and the page allocator will not attempt any cgroup accounting.
627 */
628static __always_inline struct kmem_cache *
629memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
630{
631 if (!memcg_kmem_enabled())
632 return cachep;
633 if (gfp & __GFP_NOFAIL)
634 return cachep;
635 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
636 return cachep;
637 if (unlikely(fatal_signal_pending(current)))
638 return cachep;
639
640 return __memcg_kmem_get_cache(cachep, gfp);
641}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800642#else
Glauber Costa749c5412012-12-18 14:23:01 -0800643#define for_each_memcg_cache_index(_idx) \
644 for (; NULL; )
645
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800646static inline bool memcg_kmem_enabled(void)
647{
648 return false;
649}
650
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800651static inline bool
652memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
653{
654 return true;
655}
656
657static inline void memcg_kmem_uncharge_pages(struct page *page, int order)
658{
659}
660
661static inline void
662memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
663{
664}
Glauber Costa2633d7a2012-12-18 14:22:34 -0800665
666static inline int memcg_cache_id(struct mem_cgroup *memcg)
667{
668 return -1;
669}
670
Glauber Costa943a4512012-12-18 14:23:03 -0800671static inline int
672memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
673 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -0800674{
675 return 0;
676}
677
678static inline void memcg_release_cache(struct kmem_cache *cachep)
679{
680}
681
682static inline void memcg_cache_list_add(struct mem_cgroup *memcg,
683 struct kmem_cache *s)
684{
685}
Glauber Costad7f25f82012-12-18 14:22:40 -0800686
687static inline struct kmem_cache *
688memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
689{
690 return cachep;
691}
Glauber Costa7cf27982012-12-18 14:22:55 -0800692
693static inline void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
694{
695}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800696#endif /* CONFIG_MEMCG_KMEM */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800697#endif /* _LINUX_MEMCONTROL_H */
698